﻿/* Landing layout -------------------------------------------------- */

body.landing::before,
body.landing::after {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

body.landing::before {
    background: radial-gradient(
            520px circle at 18% 12%,
            rgba(79, 70, 229, 0.32),
            transparent 55%
        ),
        radial-gradient(
            820px circle at 78% -5%,
            rgba(56, 189, 248, 0.28),
            transparent 60%
        ),
        linear-gradient(135deg, #fdfbff 0%, #ecf2ff 55%, #d5e7ff 100%);
    animation: landingGradient 22s ease-in-out infinite alternate;
}

body.landing::after {
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'%3e%3cfilter id='n'%3e%3cfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3e%3c/filter%3e%3crect width='120' height='120' filter='url(%23n)' opacity='.25'/%3e%3c/svg%3e");
    mix-blend-mode: multiply;
    opacity: 0.04;
}

body.landing > * {
    position: relative;
    z-index: 2;
}

/* Reveal animations ---------------------------------------------- */
[data-reveal],
.will-reveal {
    opacity: 0;
    transform: translate3d(0, 20px, 0);
    transition: transform 0.65s var(--ease-smooth),
        opacity 0.65s var(--ease-smooth);
    transition-delay: var(--reveal-delay, 0s);
    will-change: transform, opacity;
}

[data-reveal][data-reveal="fade-right"] {
    transform: translate3d(-24px, 0, 0);
}

[data-reveal][data-reveal="fade-left"] {
    transform: translate3d(24px, 0, 0);
}

[data-reveal][data-reveal="scale"] {
    transform: scale(0.95);
}

[data-reveal].is-visible,
.will-reveal.is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

.ghost--strong {
    border-color: rgba(79, 70, 229, 0.35);
    background: rgba(255, 255, 255, 0.4);
}

.landing-main {
    width: min(100%, 1200px);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: clamp(2.5rem, 6vw, 4.5rem);
}

/* Cards ---------------------------------------------------------- */
.glass-card {
    border-radius: 32px;
    padding: clamp(1.75rem, 5vw, 2.8rem);
    border: 1px solid transparent;
    background: linear-gradient(
                135deg,
                rgba(255, 255, 255, 0.98),
                rgba(244, 248, 255, 0.94)
            )
            padding-box,
        linear-gradient(
                120deg,
                rgba(79, 70, 229, 0.25),
                rgba(56, 189, 248, 0.18)
            )
            border-box;
    box-shadow: 0 35px 90px rgba(15, 23, 42, 0.22);
    backdrop-filter: blur(12px);
    position: relative;
    overflow: hidden;
}

.glass-card::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(
        circle at 22% 18%,
        rgba(79, 70, 229, 0.18),
        transparent 62%
    );
    pointer-events: none;
}

/* Hero ----------------------------------------------------------- */
.hero {
    position: relative;
    padding: clamp(0.75rem, 1.5vw, 1.5rem) 0;
}

.hero::before {
    content: "";
    position: absolute;
    inset: -8% -12%;
    background: radial-gradient(
            380px circle at 18% 16%,
            rgba(79, 70, 229, 0.22),
            transparent 58%
        ),
        radial-gradient(
            320px circle at 86% 4%,
            rgba(14, 165, 233, 0.18),
            transparent 55%
        ),
        linear-gradient(
            120deg,
            rgba(79, 70, 229, 0.08),
            rgba(14, 165, 233, 0.05)
        );
    filter: blur(40px);
    opacity: 0.9;
    pointer-events: none;
    z-index: 0;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
    gap: clamp(1.75rem, 4vw, 3rem);
    align-items: stretch;
    position: relative;
    z-index: 1;
}

/* Stack en colonne sur petits écrans */
@media (max-width: 900px) {
    .hero-grid {
        grid-template-columns: minmax(0, 1fr);
    }
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    background: linear-gradient(
        145deg,
        rgba(255, 255, 255, 0.98),
        rgba(247, 249, 255, 0.96)
    );
    border-radius: var(--radius-xl);
    padding: clamp(2.1rem, 4.5vw, 3rem);
    border: 1px solid rgba(79, 70, 229, 0.26);
    box-shadow: 0 40px 90px rgba(15, 23, 42, 0.16),
        0 18px 40px rgba(79, 70, 229, 0.14);
    position: relative;
    overflow: hidden;
    isolation: isolate;
    transform-style: preserve-3d;
}

.hero-content::before,
.hero-content::after {
    content: "";
    position: absolute;
    border-radius: inherit;
    pointer-events: none;
    z-index: 0;
}

.hero-content::before {
    inset: -18% 42% auto -22%;
    height: 70%;
    background: radial-gradient(
        circle at 20% 40%,
        rgba(79, 70, 229, 0.16),
        transparent 55%
    );
}

.hero-content::after {
    inset: 8% 14% -24% auto;
    width: 52%;
    background: radial-gradient(
        circle at 60% 40%,
        rgba(14, 165, 233, 0.14),
        transparent 55%
    );
}

.hero-content > * {
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    margin: 0;
    font-size: clamp(2.25rem, 4.4vw, 3.5rem);
    line-height: 1.05;
    letter-spacing: -0.02em;
}

.hero-lead {
    margin: 0;
    color: var(--text-high);
    font-size: 1.08rem;
    max-width: 54ch;
    font-weight: 600;
}

.hero-subcopy {
    margin: 0;
    color: var(--muted);
    font-size: 0.97rem;
    max-width: 62ch;
}

.hero-title-row {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-rating-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.65rem 0.95rem;
    background: linear-gradient(
        120deg,
        rgba(255, 255, 255, 0.9),
        rgba(247, 251, 255, 0.98)
    );
    border: 1px solid rgba(79, 70, 229, 0.32);
    border-radius: 999px;
    box-shadow: 0 16px 40px rgba(79, 70, 229, 0.18),
        0 8px 18px rgba(14, 165, 233, 0.14);
    color: #f59e0b;
    transform-origin: center;
    transition: transform 0.25s ease, box-shadow 0.25s ease,
        border-color 0.25s ease;
    animation: heroBadgePulse 10s ease-in-out infinite alternate;
}

.hero-rating-badge:hover,
.hero-rating-badge:focus-visible {
    transform: translateY(-2px) scale(1.01);
    border-color: rgba(79, 70, 229, 0.45);
    box-shadow: 0 20px 48px rgba(79, 70, 229, 0.24),
        0 12px 24px rgba(14, 165, 233, 0.16);
}

.badge-google-word {
    display: inline-flex;
    align-items: center;
    gap: 1px;
    font-weight: 700;
    letter-spacing: -0.04em;
    font-size: 0.95rem;
}

.google-letter {
    display: inline-block;
}

.google-letter--blue {
    color: #4285f4;
}

.google-letter--red {
    color: #ea4335;
}

.google-letter--yellow {
    color: #fbbc05;
}

.google-letter--green {
    color: #34a853;
}

.badge-stars {
    display: inline-flex;
    align-items: center;
    gap: 0.12rem;
}

.badge-stars svg {
    width: 17px;
    height: 17px;
    fill: currentColor;
    filter: drop-shadow(0 4px 10px rgba(250, 204, 21, 0.35));
    opacity: 0.95;
    transition: transform 0.25s ease;
}

.hero-rating-badge:hover .badge-stars svg,
.hero-rating-badge:focus-visible .badge-stars svg {
    transform: translateY(-1px) scale(1.04);
}

.badge-note {
    color: var(--text-mid);
    font-weight: 700;
    font-size: 0.9rem;
}

.hero-benefits {
    list-style: none;
    padding: 0;
    margin: 0.35rem 0 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 0.75rem;
}

.hero-benefits li {
    position: relative;
    padding: 0.85rem 1rem 0.85rem 2.4rem;
    background: rgba(79, 70, 229, 0.06);
    border: 1px solid rgba(79, 70, 229, 0.14);
    border-radius: 16px;
    color: var(--text-high);
    font-size: 0.95rem;
    line-height: 1.45;
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.06);
}

.hero-benefits li::before {
    content: "";
    position: absolute;
    width: 0.95rem;
    height: 0.95rem;
    border-radius: 50%;
    left: 0.9rem;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, var(--primary-700), var(--primary));
    box-shadow: 0 8px 18px rgba(79, 70, 229, 0.32);
}

/* Micro-animation discrète pour le badge Google */
@keyframes heroBadgePulse {
    0% {
        box-shadow: 0 12px 28px rgba(79, 70, 229, 0.18),
            0 8px 16px rgba(14, 165, 233, 0.14);
    }
    50% {
        box-shadow: 0 18px 42px rgba(79, 70, 229, 0.22),
            0 12px 22px rgba(14, 165, 233, 0.16);
    }
    100% {
        box-shadow: 0 16px 40px rgba(79, 70, 229, 0.26),
            0 10px 20px rgba(14, 165, 233, 0.18);
    }
}

.hero-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 0.5rem;
}

.hero-action__primary {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    flex: 1 1 220px;
}

.hero-action__primary small {
    font-size: 0.85rem;
    color: var(--muted);
}

.hero-actions .primary,
.hero-actions .ghost--strong {
    padding: 0.85rem 1.9rem;
    font-size: 0.95rem;
    line-height: 1.2;
    border-radius: 999px;
}

.hero-actions .primary {
    background: linear-gradient(135deg, var(--primary-700), var(--primary));
    box-shadow: 0 18px 40px rgba(79, 70, 229, 0.35);
    color: #ffffff;
    transition: transform 0.15s ease-out, box-shadow 0.15s ease-out;
}

.hero-actions .primary:hover,
.hero-actions .primary:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 22px 50px rgba(79, 70, 229, 0.42);
}

.hero-actions .primary:active {
    transform: scale(0.98);
    box-shadow: 0 14px 32px rgba(79, 70, 229, 0.3);
}

.hero-actions .ghost--strong {
    border-color: rgba(79, 70, 229, 0.35);
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary-700, #4338ca);
    box-shadow: inset 0 0 0 1px rgba(79, 70, 229, 0.08);
    transition: border-color 0.15s ease-out, background 0.15s ease-out;
}

.hero-actions .ghost--strong:hover,
.hero-actions .ghost--strong:focus-visible {
    border-color: rgba(79, 70, 229, 0.55);
    background: rgba(255, 255, 255, 0.98);
}

/* Responsive hero stack & CTA */
@media (max-width: 640px) {
    .hero-title-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-rating-badge {
        width: 100%;
        justify-content: space-between;
    }

    .badge-note {
        font-size: 0.85rem;
    }
}

@media (max-width: 540px) {
    .hero-rating-badge {
        width: 100%;
        display: flex;
        flex-direction: column;
        border-radius: 12px;
    }
}
@media (max-width: 500px) {
    .hero-actions {
        align-items: stretch;
    }

    .hero-actions .ghost--strong {
        width: 100%;
        text-align: center;
    }
}
/* Signals & rating ------------------------------------------------ */

.hero-signals {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 0.95rem;
    padding: 0;
    margin: 1.75rem 0 0;
}

.hero-signals li {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.85rem 1rem;
    border-radius: 18px;
    background: rgba(79, 70, 229, 0.06);
    border: 1px solid rgba(79, 70, 229, 0.18);
    transform: translateY(8px);
    opacity: 0;
    transition: transform 0.5s var(--ease-smooth),
        opacity 0.5s var(--ease-smooth);
}

/* classe activée par ton JS */
.hero-signals.is-visible li {
    transform: translateY(0);
    opacity: 1;
}

.hero-signal__icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(79, 70, 229, 0.14);
    border: 1px solid rgba(79, 70, 229, 0.28);
    color: var(--primary);
}

.hero-signal__icon svg {
    width: 20px;
    height: 20px;
    display: block;
}

.hero-rating {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    color: var(--muted);
    margin-top: 1.25rem;
    font-size: 0.9rem;
}

/* Colonne droite (visuels) ----------------------------------------- */

.hero-visual {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

/* --------------------------------------------------
   Metrics & hero chart styles
   Diagramme 200 avis 5★ + animation
-------------------------------------------------- */

.hero-metrics {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    gap: 1.1rem;
    padding: 1.5rem 1.75rem;
    border-radius: 1.25rem;
    background: var(--panel-strong, rgba(255, 255, 255, 0.98));
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.18);
    max-width: 100%;
    width: 100%;
    height: 100%;
    margin-inline: auto;
}

.hero-metrics__head {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.hero-metrics__eyebrow-row,
.hero-metrics__badge {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    flex-wrap: wrap;
    margin-bottom: 0.1rem;
}

.hero-metrics__head h2 {
    margin: 0;
}

.hero-metrics__headline {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.85rem;
    padding: 0.95rem 1.1rem;
    border-radius: 18px;
    background: linear-gradient(
        120deg,
        rgba(79, 70, 229, 0.1),
        rgba(14, 165, 233, 0.08)
    );
    border: 1px solid rgba(79, 70, 229, 0.2);
    box-shadow: 0 14px 32px rgba(15, 23, 42, 0.1);
    font-size: 1rem;
    line-height: 1.25;
    font-weight: 800;
    color: #0f172a;
}

.hero-metrics__stat {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.45rem 0.85rem;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: inset 0 0 0 1px rgba(79, 70, 229, 0.18),
        0 10px 22px rgba(79, 70, 229, 0.15);
}

.hero-metrics__stat-number {
    font-size: 2.05rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--primary, #4f46e5);
    line-height: 1;
}

.hero-metrics__stat-text {
    display: flex;
    flex-direction: column;
    gap: 0.08rem;
}

.hero-metrics__stat-label {
    font-weight: 700;
}

.hero-metrics__stat-sub {
    font-size: 0.9rem;
    color: var(--muted, #64748b);
    letter-spacing: 0.01em;
}

.hero-metrics__divider {
    width: 1px;
    height: 36px;
    background: linear-gradient(
        to bottom,
        rgba(15, 23, 42, 0),
        rgba(15, 23, 42, 0.22),
        rgba(15, 23, 42, 0)
    );
    min-height: 36px;
}

.hero-metrics__tagline {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-high);
    letter-spacing: -0.01em;
}

.hero-metrics__lead {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.35rem;
    font-size: 0.98rem;
    line-height: 1.55;
    color: var(--text-high);
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(79, 70, 229, 0.14);
    border-radius: 16px;
    padding: 1rem 1.05rem 1rem 1.15rem;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.09);
    margin: 0;
}

.hero-metrics__lead::before {
    display: none;
}

.hero-metrics__lead-kicker {
    font-weight: 800;
    color: var(--primary-700, #4338ca);
    letter-spacing: -0.005em;
    display: block;
}

.hero-metrics__lead-note {
    color: var(--text-high);
    line-height: 1.5;
}

.hero-metrics__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    background: linear-gradient(
        120deg,
        rgba(79, 70, 229, 0.12),
        rgba(14, 165, 233, 0.18)
    );
    color: var(--primary-700, #4338ca);
    font-weight: 700;
    font-size: 0.82rem;
    box-shadow: inset 0 0 0 1px rgba(79, 70, 229, 0.18);
}

.hero-metrics__bullets {
    list-style: none;
    margin: 0.2rem 0 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 0.55rem;
}

.hero-metrics__bullets li {
    padding: 0.65rem 0.75rem;
    border-radius: 12px;
    background: rgba(79, 70, 229, 0.06);
    border: 1px solid rgba(79, 70, 229, 0.12);
    font-size: 0.86rem;
    color: var(--text-high);
    display: flex;
    align-items: center;
    gap: 0.45rem;
    line-height: 1.35;
}

.hero-metrics__bullets strong {
    color: var(--primary, #4f46e5);
}

/* Conteneur du diagramme */

.hero-metrics__chart {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 0.75rem;
    height: 240px;
    padding: 0.75rem 0.25rem 0.25rem;
    z-index: 0;
    background-image: linear-gradient(
            to right,
            rgba(79, 70, 229, 0.16) 1px,
            transparent 1px
        ),
        linear-gradient(to top, rgba(100, 116, 139, 0.18) 1px, transparent 1px);
    background-size: 42px 100%, 100% 36px;
    background-position: 0.5rem 0.5rem;
    background-repeat: repeat;
    background-clip: padding-box;
}

/* Ligne horizontale légère (repère) */

.hero-metrics__chart::before {
    content: "";
    position: absolute;
    inset: 0.75rem 0.25rem auto;
    height: 1px;
    background: linear-gradient(
        to right,
        rgba(148, 163, 184, 0.25),
        rgba(148, 163, 184, 0.05)
    );
    z-index: 2;
    pointer-events: none;
}

/* Colonne du diagramme (une par semaine) */

.hero-metrics__bar {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    gap: 0.4rem;
    height: 100%;
    position: relative;
    z-index: 1;
}

/* Barre verticale : version fiabilisée 
   -> pas de scaleY : les barres sont toujours visibles, même si l'animation casse. */

.hero-metrics__bar-inner {
    width: 65%;
    max-width: 2.5rem;
    min-width: 0.75rem;
    border-radius: 999px;
    background: linear-gradient(
        180deg,
        var(--primary, #4f46e5),
        color-mix(in srgb, var(--primary, #4f46e5) 60%, #22c55e 40%)
    );
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.45);
    height: calc(var(--bar-height, 0) * 1%);
    opacity: 0;
    transform: translateY(10px);
    animation: heroMetricsBarGrow 0.8s ease-out forwards;
    animation-delay: var(--bar-delay, 0s);
}

/* Labels sous les barres */

.hero-metrics__bar-label {
    display: block;
    text-align: center;
    font-size: 0.72rem;
    line-height: 1.25;
    color: var(--muted, #64748b);
    white-space: nowrap;
}

/* Répartition des barres pour un total de 200 avis */

.hero-metrics__bar-inner--w1 {
    --bar-height: 45; /* Sem. 1 */
    --bar-delay: 0s;
}

.hero-metrics__bar-inner--w2 {
    --bar-height: 75; /* Sem. 2 */
    --bar-delay: 0.08s;
}

.hero-metrics__bar-inner--w3 {
    --bar-height: 85; /* Sem. 3 */
    --bar-delay: 0.16s;
}

.hero-metrics__bar-inner--w4 {
    --bar-height: 92; /* Sem. 4 */
    --bar-delay: 0.24s;
}

/* Footer KPIs + note */

.hero-metrics__footer {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 0.35rem;
}

.hero-metrics__note {
    flex: 1;
    min-width: 190px;
    font-size: 0.78rem;
    line-height: 1.5;
    color: var(--muted, #64748b);
    justify-content: space-between;
}

/* Animation des barres : fade + slide, pas de scaleY */

@keyframes heroMetricsBarGrow {
    0% {
        opacity: 0;
        transform: translateY(12px);
    }
    40% {
        opacity: 1;
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Accessibilité : si animations réduites, on affiche direct */

@media (prefers-reduced-motion: reduce) {
    .hero-metrics__bar-inner {
        animation: none;
        opacity: 1;
        transform: none;
    }
}

/* Responsif : ajustements mobiles */

@media (max-width: 1100px) {
    .hero-metrics {
        margin-top: 1.5rem;
        display: grid;
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .hero-metrics__chart {
        height: 180px;
        max-height: 180px;
    }

    .hero-metrics__headline {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
        width: 100%;
    }

    .hero-metrics__stat {
        width: 100%;
    }

    .hero-metrics__divider {
        display: none;
    }

    .hero-metrics__lead {
        padding: 0.95rem 1rem;
    }

    .hero-metrics__bullets {
        display: grid;
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }

    .hero-metrics__badge {
        font-size: 0.78rem;
    }

    .advantages-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    /* Si une carte est seule sur la dernière ligne (compteur impair), elle occupe toute la largeur */
    .advantages-grid > .advantage-card:last-child:nth-child(odd) {
        grid-column: 1 / -1;
    }

    .advantages-tags {
        gap: 0.35rem;
    }
}

@media (max-width: 640px) {
    .advantages-grid {
        grid-template-columns: 1fr;
    }

    .advantages-grid .advantage-card:nth-child(n + 3) {
        grid-column: auto;
    }

    .advantage-card__top {
        align-items: flex-start;
    }

    .advantage-card__eyebrow {
        max-width: 100%;
    }
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.1rem;
    align-items: stretch;
    grid-auto-rows: 1fr;
}

.advantage-card {
    position: relative;
    overflow: hidden;
    padding: clamp(1.4rem, 3vw, 1.9rem);
    border: 1px solid transparent;
    background: linear-gradient(
                135deg,
                rgba(255, 255, 255, 0.98),
                rgba(244, 247, 255, 0.96)
            )
            padding-box,
        linear-gradient(
                135deg,
                rgba(79, 70, 229, 0.25),
                rgba(56, 189, 248, 0.22)
            )
            border-box;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.12);
    transform: translateY(0);
    transition: transform 0.2s ease, box-shadow 0.25s ease;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    height: 100%;
}

.advantage-card::after {
    content: "";
    position: absolute;
    inset: -30% 50% auto -20%;
    height: 60%;
    background: radial-gradient(
        circle at 30% 40%,
        rgba(79, 70, 229, 0.16),
        transparent 60%
    );
    pointer-events: none;
    z-index: 0;
    filter: blur(10px);
}

.advantage-card:hover,
.advantage-card:focus-within {
    transform: translateY(-6px);
    box-shadow: 0 26px 60px rgba(15, 23, 42, 0.15);
}

.advantage-card > * {
    position: relative;
    z-index: 1;
}

.advantage-card__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.65rem;
}

.advantage-card__icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: linear-gradient(
        135deg,
        rgba(79, 70, 229, 0.18),
        rgba(56, 189, 248, 0.18)
    );
    color: #0f172a;
    box-shadow: 0 10px 24px rgba(79, 70, 229, 0.22);
    font-size: 1.1rem;
}

.advantages-grid .advantage-card:nth-child(1) .advantage-card__icon {
    background: linear-gradient(
        135deg,
        rgba(59, 130, 246, 0.2),
        rgba(56, 189, 248, 0.26)
    );
}

.advantages-grid .advantage-card:nth-child(2) .advantage-card__icon {
    background: linear-gradient(
        135deg,
        rgba(244, 114, 182, 0.22),
        rgba(250, 204, 21, 0.25)
    );
}

.advantages-grid .advantage-card:nth-child(3) .advantage-card__icon {
    background: linear-gradient(
        135deg,
        rgba(52, 211, 153, 0.2),
        rgba(59, 130, 246, 0.25)
    );
}

/* Grille responsive pour toutes les tailles d'écran */
.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 1.1rem;
    align-items: stretch;
    grid-auto-rows: 1fr;
}

/* Option : sur très grands écrans, fixe à 4 colonnes max pour garder des cartes lisibles */
@media (min-width: 1280px) {
    .advantages-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

/* Tablettes / mid (2 colonnes stables) */
@media (max-width: 960px) {
    .advantages-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    /* Si une carte est seule sur la dernière ligne (impair), elle prend toute la largeur */
    .advantages-grid > .advantage-card:last-child:nth-child(odd) {
        grid-column: 1 / -1;
    }
}

/* Mobile : 1 colonne full width */
@media (max-width: 640px) {
    .advantages-grid {
        grid-template-columns: 1fr;
    }

    .advantages-grid > .advantage-card:last-child:nth-child(odd) {
        grid-column: auto;
    }

    .advantage-card__top {
        align-items: flex-start;
    }
}

.advantage-card {
    position: relative;
    overflow: hidden;
    padding: clamp(1.4rem, 3vw, 1.9rem);
    border: 1px solid transparent;
    background: linear-gradient(
                135deg,
                rgba(255, 255, 255, 0.98),
                rgba(244, 247, 255, 0.96)
            )
            padding-box,
        linear-gradient(
                135deg,
                rgba(79, 70, 229, 0.25),
                rgba(56, 189, 248, 0.22)
            )
            border-box;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.12);
    transform: translateY(0);
    transition: transform 0.2s ease, box-shadow 0.25s ease;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    height: 100%;
}

.advantage-card::after {
    content: "";
    position: absolute;
    inset: -30% 50% auto -20%;
    height: 60%;
    background: radial-gradient(
        circle at 30% 40%,
        rgba(79, 70, 229, 0.16),
        transparent 60%
    );
    pointer-events: none;
    z-index: 0;
    filter: blur(10px);
}

.advantage-card:hover,
.advantage-card:focus-within {
    transform: translateY(-6px);
    box-shadow: 0 26px 60px rgba(15, 23, 42, 0.15);
}

.advantage-card > * {
    position: relative;
    z-index: 1;
}

.advantage-card__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.65rem;
}

.advantage-card__icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: linear-gradient(
        135deg,
        rgba(79, 70, 229, 0.18),
        rgba(56, 189, 248, 0.18)
    );
    color: #0f172a;
    box-shadow: 0 10px 24px rgba(79, 70, 229, 0.22);
    font-size: 1.1rem;
}

.advantages-grid .advantage-card:nth-child(1) .advantage-card__icon {
    background: linear-gradient(
        135deg,
        rgba(59, 130, 246, 0.2),
        rgba(56, 189, 248, 0.26)
    );
}

.advantages-grid .advantage-card:nth-child(2) .advantage-card__icon {
    background: linear-gradient(
        135deg,
        rgba(244, 114, 182, 0.22),
        rgba(250, 204, 21, 0.25)
    );
}

.advantages-grid .advantage-card:nth-child(3) .advantage-card__icon {
    background: linear-gradient(
        135deg,
        rgba(52, 211, 153, 0.2),
        rgba(59, 130, 246, 0.25)
    );
}

.advantages-grid .advantage-card:nth-child(4) .advantage-card__icon {
    background: linear-gradient(
        135deg,
        rgba(99, 102, 241, 0.22),
        rgba(15, 23, 42, 0.45)
    );
    color: #e5e7eb;
}

.advantage-card__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.35rem 0.8rem;
    border-radius: 999px;
    background: linear-gradient(
        120deg,
        rgba(79, 70, 229, 0.14),
        rgba(14, 165, 233, 0.14)
    );
    color: var(--primary-700, #4338ca);
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.02em;
}

.advantage-card h3 {
    letter-spacing: -0.01em;
}

.advantage-card p {
    margin: 0;
    color: var(--text-high);
    font-weight: 600;
    min-height: 3.2em;
    display: flex;
    align-items: flex-start;
}

.advantage-card__points {
    list-style: none;
    margin: 0.65rem 0 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    justify-content: space-between;
    padding-top: 0.4rem;
    height: 100%;
}

.advantage-card__points li {
    position: relative;
    padding-left: 1.35rem;
    color: var(--text-high);
    font-size: 0.95rem;
    line-height: 1.4;
}

.advantage-card__points li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55rem;
    width: 0.65rem;
    height: 0.65rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-700), var(--primary));
    box-shadow: 0 0 0 6px rgba(79, 70, 229, 0.12);
    transform: translateY(-50%);
}

.feature-card {
    min-height: 180px;
}

/* Démo / section suivante ----------------------------------------- */

.hero-demo {
    border-radius: 32px;
    padding: clamp(1.5rem, 4vw, 2.6rem);
    background: linear-gradient(
                135deg,
                rgba(255, 255, 255, 0.99),
                rgba(241, 247, 255, 0.94)
            )
            padding-box,
        linear-gradient(
                120deg,
                rgba(79, 70, 229, 0.25),
                rgba(56, 189, 248, 0.22)
            )
            border-box;
    border: 1px solid transparent;
    box-shadow: 0 30px 80px rgba(15, 23, 42, 0.18);
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.hero-demo__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.hero-demo__header p {
    margin: 0 0 0.15rem;
}

.hero-demo__header h3 {
    margin: 0 0 0.35rem;
}

.hero-demo__status {
    border-radius: 999px;
    padding: 0.35rem 0.85rem;
    border: 1px solid rgba(56, 189, 248, 0.5);
    background: rgba(56, 189, 248, 0.12);
    color: var(--primary-700);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
    white-space: nowrap;
}

.hero-demo__media {
    margin: 0;
    border-radius: 24px;
    border: 1px solid rgba(79, 70, 229, 0.2);
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.25);
    background: radial-gradient(
            circle at 20% 20%,
            rgba(56, 189, 248, 0.22),
            transparent 55%
        ),
        rgba(15, 23, 42, 0.96);
    min-height: clamp(100px, 30vw, 200px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-demo__icon {
    width: clamp(80px, 12vw, 140px);
    height: clamp(80px, 12vw, 140px);
    border-radius: 26px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(2.5rem, 4vw, 4rem);
    color: #ffffff;
    background: linear-gradient(
        135deg,
        rgba(79, 70, 229, 0.6),
        rgba(56, 189, 248, 0.5)
    );
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35),
        0 18px 40px rgba(0, 0, 0, 0.35);
}

.hero-demo__meta {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 0.75rem;
}

.hero-demo__meta div {
    border-radius: 18px;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(79, 70, 229, 0.18);
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.hero-demo__meta span {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--muted);
}

.hero-demo__meta strong {
    font-size: 1.05rem;
}

.hero-demo__cta {
    border-radius: 22px;
    border: 1px solid rgba(56, 189, 248, 0.25);
    background: rgba(56, 189, 248, 0.08);
    padding: 1rem 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.hero-demo__cta p {
    margin: 0;
}

.hero-link {
    font-weight: 600;
    color: var(--primary);
    text-decoration: underline;
    align-self: flex-start;
}
/* Winners strip (dark) ------------------------------------------- */
.winners-section {
    position: relative;
    /* Full-bleed : ignore les contraintes du parent centré */
    width: 100vw;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;

    padding: clamp(1rem, 4vw, 2.5rem) 0;
    background: radial-gradient(
            circle at 10% 20%,
            rgba(56, 189, 248, 0.12),
            transparent 45%
        ),
        radial-gradient(
            circle at 80% 20%,
            rgba(79, 70, 229, 0.16),
            transparent 50%
        ),
        #020617;
    border-top: 1px solid rgba(15, 23, 42, 0.9);
    border-bottom: 1px solid rgba(15, 23, 42, 0.95);
}

/* Conteneur interne, toujours limité en largeur */
.winners-shell {
    width: min(100%, 1200px);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 0 clamp(1rem, 4vw, 2rem);
}

.winners-head {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    color: rgba(248, 250, 252, 0.96);
}

.winners-head h2 {
    color: var(--text--light);
}

.winners-head p {
    margin: 0;
    color: rgba(226, 232, 240, 0.8);
}

.winners-carousel {
    overflow: hidden;
    position: relative;
    mask-image: linear-gradient(
        90deg,
        transparent,
        black 10%,
        black 90%,
        transparent
    );
}

.winners-carousel__track {
    display: flex;
    align-items: stretch;
    gap: clamp(0.75rem, 2vw, 1.5rem);
    will-change: transform;
}

.winners-carousel__track.is-animated {
    animation: winnersMarquee 28s linear infinite;
}

.winner-card {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.65rem;
    align-items: center;
    border-radius: 20px;
    padding: 0.75rem 1rem;
    border: 1px solid rgba(148, 163, 184, 0.45);
    background: rgba(15, 23, 42, 0.9);
    min-width: clamp(240px, 24vw, 320px);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.75);
}

.winner-card__media {
    width: clamp(48px, 5vw, 60px);
    height: clamp(48px, 5vw, 60px);
    border-radius: 16px;
    background: rgba(15, 23, 42, 0.9);
    border: 1px solid rgba(148, 163, 184, 0.4);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: #ffffff;
    font-size: 1.4rem;
}

.winner-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.winner-card strong {
    display: block;
    margin: 0;
    font-size: 0.9rem;
    color: rgba(248, 250, 252, 0.98);
    line-height: 1.25;
}

.winner-card small {
    display: block;
    margin-top: 0.1rem;
    font-size: 0.8rem;
    color: rgba(226, 232, 240, 0.82);
}

.winner-card--placeholder {
    opacity: 0.55;
}

.winners-empty {
    margin: 0;
    font-size: 0.85rem;
    color: rgba(226, 232, 240, 0.82);
}

@keyframes winnersMarquee {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

/* Sections ------------------------------------------------------- */
.section {
    display: flex;
    flex-direction: column;
    gap: clamp(1.5rem, 4vw, 2.5rem);
}

.section-head {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    max-width: 640px;
}

.section-sublead {
    margin: 0;
    color: var(--text-high);
    font-size: 1rem;
    line-height: 1.6;
    max-width: 68ch;
    font-weight: 600;
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--muted);
    font-size: 0.78rem;
    margin: 0;
}

.section-head h2 {
    margin: 0;
    font-size: clamp(1.9rem, 3.3vw, 2.8rem);
}

.section-head p {
    margin: 0;
    color: var(--muted);
}

.hero-points,
.feature-grid {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hero-points {
    display: grid;
    gap: 0.45rem;
    color: var(--muted);
}

.hero-points li {
    padding-left: 1.2rem;
    position: relative;
}

.hero-points li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
}

.advantages {
    position: relative;
}

.advantages::before {
    content: "";
    position: absolute;
    inset: -6% -4% auto -4%;
    height: 38%;
    border-radius: 30px;
    background: radial-gradient(
            circle at 20% 40%,
            rgba(79, 70, 229, 0.08),
            transparent 55%
        ),
        radial-gradient(
            circle at 80% 20%,
            rgba(56, 189, 248, 0.08),
            transparent 55%
        );
    filter: blur(8px);
    opacity: 0.9;
    pointer-events: none;
}

.advantages-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.35rem;
}

.advantages-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.45rem 0.8rem;
    border-radius: 999px;
    background: rgba(79, 70, 229, 0.1);
    border: 1px solid rgba(79, 70, 229, 0.24);
    color: var(--primary-700, #4338ca);
    font-weight: 700;
    font-size: 0.82rem;
}

/* Témoignages ---------------------------------------------------- */
.testimonial-card {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding: clamp(1.5rem, 3vw, 2.2rem);
    border-radius: 24px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    background: #ffffff;
    box-shadow: 0 20px 60px rgba(15, 23, 42, 0.12);
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(251, 191, 36, 0.16);
    display: grid;
    place-items: center;
    font-weight: 600;
    color: #92400e;
}

.testimonial-name {
    margin: 0;
    font-weight: 600;
}

.testimonial-meta {
    margin: 0;
    font-size: 0.85rem;
    color: var(--muted);
}

.testimonial-badge {
    margin-left: auto;
    padding: 0.25rem 0.65rem;
    border-radius: 8px;
    background: #4285f4;
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 600;
}

.testimonial-stars {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 1.2rem;
    color: #fbbf24;
}

.testimonial-stars time {
    font-size: 0.85rem;
    color: var(--muted);
}

.testimonial-card blockquote {
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.5;
    color: var(--text);
}
/* Pricing -------------------------------------------------------- */

.pricing-card {
    display: grid;
    grid-template-columns: minmax(0, 2fr) auto;
    align-items: center;
    gap: clamp(1rem, 2vw, 1.5rem);
    padding: clamp(1.4rem, 3vw, 2rem);
}

/* Badge pricing à droite sur desktop, bien visible */
.pricing-badge {
    background: rgba(56, 189, 248, 0.12);
    border-radius: 999px;
    padding: 0.5rem 1rem;
    font-weight: 600;
    color: var(--accent);
    white-space: nowrap;
    justify-self: flex-end;
}

/* Bloc estimation (si utilisé dans la carte) */
.quote-estimate {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.estimate-annual {
    font-size: 1.6rem;
    font-weight: 700;
}

.estimate-tier {
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 0.25rem;
}

.estimate-monthly {
    color: var(--muted);
}

.estimate-list {
    list-style: none;
    padding: 0;
    margin: 0.5rem 0 0;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    color: var(--muted);
}

/* Tablet : deux colonnes mais plus souple */
@media (max-width: 960px) {
    .pricing-card {
        grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
        gap: 1rem;
    }

    .pricing-badge {
        justify-self: flex-start;
        text-align: left;
        white-space: normal;
    }
}

/* Mobile : carte en colonne, texte puis badge dessous */
@media (max-width: 640px) {
    .pricing-card {
        grid-template-columns: 1fr;
        align-items: flex-start;
        gap: 0.85rem;
    }

    .pricing-card > div {
        width: 100%;
    }

    .pricing-badge {
        justify-self: flex-start;
        align-self: flex-start;
        font-size: 0.9rem;
        max-width: 100%;
    }
}

/* Steps timeline ------------------------------------------------- */
.steps-timeline {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1.4rem;
    position: relative;
}

.step-card {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1.2rem;
    background: var(--panel-strong);
    border: 1px solid rgba(79, 70, 229, 0.18);
    border-radius: 26px;
    padding: clamp(1.2rem, 3vw, 1.8rem);
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.14);
}

.step-card__marker {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
}

.step-card__marker span:first-child {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: rgba(79, 70, 229, 0.08);
    border: 1px solid rgba(79, 70, 229, 0.26);
    font-weight: 600;
    color: var(--primary);
}

.step-card__rail {
    width: 2px;
    flex: 1;
    background: linear-gradient(180deg, rgba(79, 70, 229, 0.5), transparent);
}

.step-card__rail--end {
    background: linear-gradient(180deg, rgba(79, 70, 229, 0.5), var(--bg));
}

.step-card__body {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.step-card__body h3 {
    margin: 0;
}

.step-card__body p {
    margin: 0;
    color: var(--muted);
}

.step-card__kicker {
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    color: var(--primary);
    text-transform: uppercase;
}

.step-card small {
    color: var(--muted);
}

.step-card--highlight {
    background: linear-gradient(
        135deg,
        rgba(79, 70, 229, 0.05),
        rgba(255, 255, 255, 0.98)
    );
    border-color: rgba(79, 70, 229, 0.35);
}

/* Média dans les steps ------------------------------------------- */
.step-media {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.step-media-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text);
}

.step-media-slot {
    border-radius: 20px;
    border: 1px dashed rgba(79, 70, 229, 0.35);
    padding: 1rem;
    font-size: 0.9rem;
    color: var(--muted);
    background: rgba(79, 70, 229, 0.04);

    /* Pour centrer proprement le GIF */
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
}

/* Le GIF lui-même */
.step-media-gif {
    max-width: 100%;
    height: auto;
    border-radius: 16px;
    display: block;
}

/* Stats pills ---------------------------------------------------- */
.stats-pills {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.8rem;
    margin: 0;
    padding: 0;
}

.stats-pill {
    border-radius: 999px;
    padding: 0.85rem 1.4rem;
    background: linear-gradient(
        120deg,
        rgba(79, 70, 229, 0.18),
        rgba(56, 189, 248, 0.16)
    );
    border: 1px solid rgba(79, 70, 229, 0.45);
    display: inline-flex;
    flex-direction: column;
    gap: 0.15rem;
    position: relative;
}

.stats-pill span {
    font-weight: 600;
    color: var(--text);
}

.stats-pill small {
    font-size: 0.8rem;
    color: var(--muted);
}

.stats-pill[data-tooltip]:hover::after,
.stats-pill[data-tooltip]:focus-visible::after {
    content: attr(data-tooltip);
    position: absolute;
    left: 50%;
    bottom: calc(100% + 8px);
    transform: translateX(-50%);
    background: #0a0f1c;
    color: #ffffff;
    padding: 0.4rem 0.7rem;
    border-radius: 10px;
    font-size: 0.75rem;
    white-space: nowrap;
    box-shadow: 0 10px 25px rgba(10, 15, 28, 0.45);
    z-index: 5;
}

@media (max-width: 1100px) {
    .stats-pills {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .stats-pill:nth-child(3) {
        grid-column: 1 / -1;
    }
}

@media (max-width: 640px) {
    .stats-pills {
        grid-template-columns: 1fr;
    }
}

/* Partners ------------------------------------------------------- */
.partner-card {
    border-radius: 30px;
    padding: clamp(1.5rem, 3vw, 2.2rem);
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(79, 70, 229, 0.22);
    box-shadow: 0 20px 60px rgba(15, 23, 42, 0.16);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.partner-usecases {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.partner-usecases li {
    padding: 0.55rem 1.1rem;
    border-radius: 999px;
    border: 1px solid rgba(79, 70, 229, 0.25);
    background: rgba(79, 70, 229, 0.08);
    font-weight: 600;
    color: var(--primary-700);
}

.partner-note {
    margin: 0;
    color: var(--muted);
    font-size: 0.9rem;
}

/* Sidebar contact déjà présente, on harmonise juste les couleurs */
.contact-sidebar {
    position: sticky;
    top: clamp(80px, 10vh, 140px);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-sla {
    padding: 1.2rem 1.4rem;
    border-radius: 24px;
    border: 1px solid rgba(148, 163, 184, 0.25);
    background: rgba(255, 255, 255, 0.98);
}

.contact-actions {
    padding: 1.2rem 1.4rem;
    border-radius: 26px;
    border: 1px solid rgba(79, 70, 229, 0.2);
    background: rgba(255, 255, 255, 0.96);
}

.contact-actions__grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 0.75rem;
}

.contact-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    padding: 0.65rem 1.25rem;
    border-radius: 999px;
    background: var(--primary);
    color: #ffffff;
    border: 1px solid transparent;
    font-weight: 600;
}

.contact-chip--ghost {
    background: transparent;
    color: var(--text);
    border-color: rgba(79, 70, 229, 0.35);
}

/* Toast ---------------------------------------------------------- */
.toast-stack {
    position: fixed;
    bottom: 100px;
    right: clamp(16px, 4vw, 48px);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    z-index: 10;
}

.toast {
    min-width: 220px;
    max-width: 320px;
    border-radius: 18px;
    padding: 0.85rem 1.15rem;
    backdrop-filter: blur(10px);
    background: rgba(15, 23, 42, 0.94);
    border: 1px solid rgba(56, 189, 248, 0.45);
    color: #e5f0ff;
    transform: translateY(10px);
    opacity: 0;
    transition: all 0.25s var(--ease-smooth);
}

.toast.toast--visible {
    opacity: 1;
    transform: translateY(0);
}

.toast--success {
    border-color: rgba(34, 197, 94, 0.7);
}

.toast--error {
    border-color: rgba(225, 29, 72, 0.8);
}

/* Responsive ----------------------------------------------------- */
@media (max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-sidebar {
        position: static;
    }
}

@media (max-width: 600px) {
    .hero-signals {
        grid-template-columns: 1fr;
    }

    .hero-device__hud {
        grid-template-columns: 1fr;
    }

    .step-card {
        grid-template-columns: 1fr;
    }

    .form-footer {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-winners__list {
        grid-template-columns: 1fr;
    }
}

/* Motion --------------------------------------------------------- */
@keyframes landingGradient {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.08) translate3d(2%, -2%, 0);
    }
}

@media (prefers-reduced-motion: reduce) {
    body.landing::before {
        animation: none;
    }

    [data-reveal],
    .will-reveal {
        transition: none;
        opacity: 1;
        transform: none;
    }
}
