html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
    position: relative;
    min-height: 100%;
}

body {
    margin-bottom: 60px;
}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
    color: var(--bs-secondary-color);
    text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
    text-align: start;
}

:root {
    --navy: #0F2C4C;
    --navy-deep: #081B33;
    --blue: #163B63;
    --orange: #F2994A;
    --orange-deep: #E2680F;
    --bg: #F7FAFC;
    --paper: #FFFFFF;
    --ink: #172033;
    --ink-soft: #4B5768;
    --line: #E2E9F0;
    --radius-lg: 28px;
    --radius-md: 18px;
    --radius-sm: 10px;
    --shadow-soft: 0 20px 50px -25px rgba(15,44,76,0.35);
    --shadow-card: 0 12px 30px -18px rgba(15,44,76,0.25);
    --ease: cubic-bezier(.22,.61,.36,1);
    --container: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    * {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
        scroll-behavior: auto !important;
    }
}

body {
    margin: 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--ink);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    line-height: 1.5;
    overflow-x: hidden;
}

img, svg {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
}

button {
    font: inherit;
}

h1, h2, h3 {
    font-family: 'Fraunces', Georgia, serif;
    font-weight: 600;
    letter-spacing: -0.01em;
    margin: 0;
    color: var(--navy-deep);
}

.eyebrow {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--orange-deep);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

.eyebrow::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--orange);
    box-shadow: 0 0 0 4px rgba(242,153,74,0.18);
}

.eyebrow--light {
    color: var(--orange);
}

    .eyebrow--light::before {
        background: var(--orange);
        box-shadow: 0 0 0 4px rgba(242, 153, 74, 0.3);
    }

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

a:focus-visible, button:focus-visible, [tabindex]:focus-visible {
    outline: 3px solid var(--orange);
    outline-offset: 3px;
    border-radius: 6px;
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 26px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 0.98rem;
    text-decoration: none;
    border: 1px solid transparent;
    cursor: pointer;
    transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease);
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--orange), var(--orange-deep));
    color: #fff;
    box-shadow: 0 14px 28px -12px rgba(226,104,15,0.5);
}

    .btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 18px 34px -12px rgba(226,104,15,0.6);
    }

    .btn-primary:active {
        transform: translateY(0);
    }

.btn-secondary {
    background: transparent;
    color: var(--navy-deep);
    border-color: var(--line);
}

    .btn-secondary:hover {
        border-color: var(--orange);
        color: var(--orange-deep);
    }

.btn-ghost {
    background: rgba(255,255,255,0.12);
    color: #fff;
    border-color: rgba(255,255,255,0.35);
    backdrop-filter: blur(6px);
}

    .btn-ghost:hover {
        background: rgba(255,255,255,0.22);
    }

.btn-sm {
    padding: 10px 20px;
    font-size: 0.88rem;
}

.btn-lg {
    padding: 17px 36px;
    font-size: 1.05rem;
}

/* ---------- Header ---------- */
header.site {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(247,250,252,0.82);
    backdrop-filter: blur(14px) saturate(160%);
    border-bottom: 1px solid transparent;
    transition: border-color .3s var(--ease), box-shadow .3s var(--ease);
}

    header.site.scrolled {
        border-bottom-color: var(--line);
        box-shadow: 0 8px 24px -20px rgba(15,44,76,0.4);
    }

.nav-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
    max-width: var(--container);
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 9px;
    font-family: 'Fraunces', serif;
    font-weight: 600;
    font-size: 1.35rem;
    color: var(--navy-deep);
    text-decoration: none;
}

.logo-mark {
    width: 30px;
    height: 30px;
    border-radius: 9px;
    background: linear-gradient(135deg, var(--navy), var(--orange));
    position: relative;
    flex-shrink: 0;
}

    .logo-mark::after {
        content: "";
        position: absolute;
        inset: 7px;
        border-radius: 3px;
        background: linear-gradient(90deg, #fff 2px, transparent 2px) 0 0/6px 6px, linear-gradient(#fff 2px, transparent 2px) 0 0/6px 6px;
        opacity: 0.9;
    }

nav.primary-nav {
    display: flex;
    align-items: center;
    gap: 36px;
}

    nav.primary-nav a {
        text-decoration: none;
        font-size: 0.95rem;
        font-weight: 500;
        color: var(--ink-soft);
        transition: color .2s;
        position: relative;
    }

        nav.primary-nav a:hover {
            color: var(--navy-deep);
        }

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 14px;
}

.burger {
    display: none;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    border: 1px solid var(--line);
    background: #fff;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

    .burger span, .burger span::before, .burger span::after {
        content: "";
        display: block;
        width: 18px;
        height: 2px;
        background: var(--navy-deep);
        position: relative;
        transition: transform .25s var(--ease), opacity .25s var(--ease);
    }

        .burger span::before {
            position: absolute;
            top: -6px;
        }

        .burger span::after {
            position: absolute;
            top: 6px;
        }

    .burger.open span {
        background: transparent;
    }

        .burger.open span::before {
            transform: translateY(6px) rotate(45deg);
        }

        .burger.open span::after {
            transform: translateY(-6px) rotate(-45deg);
        }

.mobile-menu {
    display: none;
    position: fixed;
    inset: 0 0 auto 0;
    top: 64px;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    padding: 20px 24px 28px;
    flex-direction: column;
    gap: 18px;
    z-index: 99;
    box-shadow: 0 20px 40px -20px rgba(15,44,76,0.3);
}

    .mobile-menu.open {
        display: flex;
    }

    .mobile-menu a {
        text-decoration: none;
        color: var(--navy-deep);
        font-weight: 600;
        font-size: 1.05rem;
    }

    .mobile-menu .btn {
        width: 100%;
    }

/* ---------- Hero (vidéo en arrière-plan) ---------- */
.hero-video {
    position: relative;
    min-height: calc(100vh - 60px);
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--navy-deep);
}

.hero-video__media {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-video__overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(100deg, rgba(8, 27, 51, 0.85) 0%, rgba(8, 27, 51, 0.55) 40%, rgba(8, 27, 51, 0.18) 75%, rgba(8, 27, 51, 0.05) 100%),
        linear-gradient(0deg, rgba(8, 27, 51, 0.45) 0%, transparent 35%);
    pointer-events: none;
}

.hero-video__content {
    position: relative;
    z-index: 1;
    padding-top: 64px;
    padding-bottom: 120px;
    max-width: var(--container);
    margin: 0 auto;
}

.hero-video__content .eyebrow {
    margin-bottom: 22px;
}

.hero-video__content h1,
.hero-video__content .hero-sub {
    max-width: 760px;
}

.hero-video h1 {
    font-size: clamp(2.4rem, 5vw, 3.9rem);
    line-height: 1.06;
    margin-bottom: 22px;
    color: #fff;
}

.hero-video .accent {
    color: var(--orange);
}

.hero-sub {
    font-size: 1.18rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.82);
    max-width: 560px;
    margin-bottom: 34px;
}

.hero-ctas {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 36px;
}

.hero-trust {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    font-size: 0.85rem;
    color: var(--ink-soft);
}

    .hero-trust span {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .hero-trust svg {
        flex-shrink: 0;
    }

.hero-trust--light {
    color: rgba(255, 255, 255, 0.78);
}

.hero-video__stats {
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 28px;
    max-width: var(--container);
    margin: 0 auto;
    display: flex;
    gap: 48px;
    z-index: 1;
}

    .hero-video__stats .stat {
        display: flex;
        flex-direction: column;
    }

        .hero-video__stats .stat strong {
            font-family: 'Fraunces', serif;
            font-size: 1.5rem;
            color: #fff;
        }

        .hero-video__stats .stat span {
            font-size: 0.78rem;
            color: rgba(255, 255, 255, 0.6);
            text-transform: uppercase;
            letter-spacing: 0.06em;
        }

/* ---------- Video embed (how it works) ---------- */
.video-embed {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: linear-gradient(160deg, var(--navy-deep), var(--navy) 70%, var(--blue));
    box-shadow: var(--shadow-soft);
    animation: floatSlow2 8s ease-in-out infinite;
}

@keyframes floatSlow2 {
    0%,100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

.video-embed iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.video-embed .video-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    text-align: center;
    padding: 24px;
}

    .video-embed .video-placeholder::before {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient(420px 220px at 20% 15%, rgba(242,153,74,0.16), transparent 60%), radial-gradient(360px 220px at 85% 90%, rgba(22,60,99,0.5), transparent 60%);
        pointer-events: none;
    }

.play-btn {
    width: 76px;
    height: 76px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--orange), var(--orange-deep));
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 16px 34px -12px rgba(226,104,15,0.6);
    position: relative;
    z-index: 1;
}

    .play-btn::after {
        content: "";
        position: absolute;
        inset: -10px;
        border-radius: 50%;
        border: 1.5px solid rgba(242,153,74,0.45);
        animation: pulseRing 2.4s ease-out infinite;
    }

@keyframes pulseRing {
    0% {
        transform: scale(0.9);
        opacity: 0.8;
    }

    100% {
        transform: scale(1.35);
        opacity: 0;
    }
}

.video-placeholder p {
    position: relative;
    z-index: 1;
    color: rgba(255,255,255,0.75);
    font-size: 0.92rem;
    margin: 0;
    max-width: 260px;
}

.video-placeholder .video-label {
    position: relative;
    z-index: 1;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--orange);
}

/* ---------- Section shared ---------- */
section {
    padding: 96px 0;
}

.section-head {
    max-width: 640px;
    margin: 0 0 56px;
}

    .section-head.center {
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }

    .section-head h2 {
        font-size: clamp(1.8rem, 3vw, 2.4rem);
        margin-top: 16px;
        line-height: 1.15;
    }

    .section-head p {
        color: var(--ink-soft);
        font-size: 1.02rem;
        margin-top: 14px;
    }

.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .7s var(--ease), transform .7s var(--ease);
}

    .reveal.in {
        opacity: 1;
        transform: translateY(0);
    }

/* ---------- Audience (pour qui ?) ---------- */
.audience {
    background: var(--paper);
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.audience-card {
    background: var(--bg);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 36px 30px;
    transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}

    .audience-card:hover {
        transform: translateY(-4px);
        border-color: rgba(242, 153, 74, 0.5);
        box-shadow: var(--shadow-card);
    }

.audience-icon {
    font-size: 2.2rem;
    margin-bottom: 18px;
}

.audience-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.audience-card p {
    color: var(--ink-soft);
    font-size: 0.95rem;
    margin: 0;
}

/* ---------- Features ---------- */
.features {
    background: var(--bg);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    padding: 30px 28px;
    transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}

    .feature-card:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-card);
    }

    .feature-card svg {
        margin-bottom: 18px;
    }

    .feature-card h3 {
        font-size: 1.1rem;
        margin-bottom: 8px;
    }

    .feature-card p {
        color: var(--ink-soft);
        font-size: 0.92rem;
        margin: 0;
    }

/* ---------- How it works (steps + video) ---------- */
.how {
    background: var(--paper);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 56px;
}

.step {
    position: relative;
    padding: 28px 26px;
    border-radius: var(--radius-md);
    background: var(--bg);
    border: 1px solid var(--line);
}

.step-num {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    color: var(--orange-deep);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
}

    .step-num::before {
        content: "";
        width: 28px;
        height: 1px;
        background: var(--orange);
    }

.step h3 {
    font-size: 1.15rem;
    margin-bottom: 8px;
}

.step p {
    color: var(--ink-soft);
    font-size: 0.93rem;
    margin: 0;
}

    .how .video-embed {
        max-width: 860px;
        margin: 0 auto;
        animation: none;
    }

/* ---------- Proof (réassurance) ---------- */
.proof {
    background: linear-gradient(135deg, var(--navy-deep), var(--navy));
    padding: 64px 0;
}

.proof-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: center;
}

.proof-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

    .proof-item strong {
        font-family: 'Fraunces', serif;
        font-size: 2rem;
        color: #fff;
    }

    .proof-item span {
        font-size: 0.85rem;
        color: rgba(255, 255, 255, 0.6);
    }

/* ---------- FAQ ---------- */
.faq {
    background: var(--bg);
}

.faq-list {
    max-width: 720px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.faq-item {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    padding: 0 24px;
    transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
}

    .faq-item[open] {
        border-color: rgba(242, 153, 74, 0.55);
        box-shadow: var(--shadow-card);
    }

.faq-item summary {
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
    color: var(--navy-deep);
    padding: 20px 0;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

    .faq-item summary::-webkit-details-marker {
        display: none;
    }

    .faq-item summary::after {
        content: "+";
        font-size: 1.4rem;
        font-weight: 400;
        color: var(--orange-deep);
        transition: transform .25s var(--ease);
        flex-shrink: 0;
    }

    .faq-item[open] summary::after {
        transform: rotate(45deg);
    }

.faq-item p {
    color: var(--ink-soft);
    font-size: 0.95rem;
    margin: 0 0 20px;
}

/* ---------- Final CTA ---------- */
.final-cta {
    background: radial-gradient(1200px 400px at 50% -10%, rgba(242,153,74,0.3), transparent 60%), linear-gradient(135deg, var(--navy-deep), var(--navy));
    color: #fff;
    text-align: center;
    padding: 100px 0;
    position: relative;
}

    .final-cta h2 {
        color: #fff;
        font-size: clamp(2rem, 4vw, 2.9rem);
        line-height: 1.15;
        margin-bottom: 16px;
    }

    .final-cta p {
        color: rgba(255,255,255,0.78);
        font-size: 1.08rem;
        max-width: 520px;
        margin: 0 auto 36px;
    }

    .final-cta .btn-primary {
        box-shadow: 0 18px 40px -14px rgba(242,153,74,0.55);
    }

    .final-cta .eyebrow {
        margin-bottom: 18px;
    }

.final-cta__note {
    margin-top: 22px;
    margin-bottom: 0;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.55);
}

/* ---------- Colors / produit ---------- */
.colors {
    background: var(--bg);
}

.colors-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.color-card {
    margin: 0;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 32px 24px 22px;
    text-align: center;
    transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}

    .color-card:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-card);
    }

    .color-card img {
        width: 100%;
        max-width: 220px;
        margin: 0 auto 18px;
        border-radius: var(--radius-md);
        background: #fff;
    }

    .color-card figcaption {
        font-family: 'IBM Plex Mono', monospace;
        font-size: 0.78rem;
        letter-spacing: 0.12em;
        text-transform: uppercase;
        color: var(--ink-soft);
    }

.colors-note {
    text-align: center;
    color: var(--ink-soft);
    margin: 32px 0 0;
    font-size: 1rem;
}

    .colors-note strong {
        color: var(--navy-deep);
    }

/* ---------- Témoignages ---------- */
.testimonials {
    background: var(--paper);
    border-top: 1px solid var(--line);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial-card {
    margin: 0;
    background: var(--bg);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 30px 28px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

    .testimonial-card p {
        margin: 0;
        font-size: 1rem;
        line-height: 1.6;
        color: var(--ink);
    }

    .testimonial-card footer {
        margin-top: auto;
        font-family: 'IBM Plex Mono', monospace;
        font-size: 0.8rem;
        color: var(--orange-deep);
        letter-spacing: 0.04em;
    }

/* ---------- Footer ---------- */
footer.site {
    background: var(--navy-deep);
    color: rgba(255,255,255,0.65);
    padding: 64px 0 32px;
    font-size: 0.9rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.12);
    margin-bottom: 24px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 9px;
    font-family: 'Fraunces', serif;
    font-size: 1.25rem;
    color: #fff;
    font-weight: 600;
    margin-bottom: 14px;
}

.footer-brand p {
    max-width: 380px;
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0 0 18px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-size: 0.84rem;
    color: rgba(255, 255, 255, 0.45);
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

    .footer-col h4 {
        font-family: 'IBM Plex Mono', monospace;
        font-size: 0.72rem;
        letter-spacing: 0.12em;
        text-transform: uppercase;
        color: var(--orange);
        margin: 0 0 8px;
        font-weight: 500;
    }

    .footer-col a {
        text-decoration: none;
        color: rgba(255,255,255,0.65);
        font-weight: 500;
        transition: color .2s;
        width: fit-content;
    }

        .footer-col a:hover {
            color: #fff;
        }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.45);
}

/* ---------- Sticky mobile CTA ---------- */
.mobile-cta-bar {
    display: none;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 90;
    padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
    background: rgba(247,250,252,0.92);
    backdrop-filter: blur(14px);
    border-top: 1px solid var(--line);
}

    .mobile-cta-bar .btn {
        width: 100%;
    }

/* ---------- Responsive ---------- */
@media (max-width:980px) {
    .audience-grid, .features-grid, .steps, .colors-grid, .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .proof-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }

    .hero-video__stats {
        gap: 32px;
    }
}

@media (max-width:720px) {
    nav.primary-nav .nav-links {
        display: none;
    }

    .nav-cta .btn-secondary {
        display: none;
    }

    .burger {
        display: flex;
    }

    section {
        padding: 64px 0;
    }

    .hero-video {
        min-height: 92vh;
    }

    .hero-video__content {
        padding-top: 48px;
        padding-bottom: 140px;
    }

    .hero-video__stats {
        bottom: 16px;
        gap: 24px;
        flex-wrap: wrap;
    }

        .hero-video__stats .stat strong {
            font-size: 1.2rem;
        }

    .hero-ctas .btn {
        flex: 1 1 auto;
    }

    .hero-trust {
        font-size: 0.8rem;
        gap: 16px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .proof-grid {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }

    .faq-list {
        padding: 0 4px;
    }

    .footer-top {
        flex-direction: column;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    body {
        padding-bottom: 84px;
    }

    .mobile-cta-bar {
        display: block;
    }

    .play-btn {
        width: 60px;
        height: 60px;
    }
}
