/* ============================================
   SB ECOM — Premium Agency Stylesheet
   ============================================ */

/* Tokens — LIGHT MODE */
:root {
    /* Brand */
    --brand-500: #046cbe;
    --brand-400: #0578d2;
    --brand-300: #1a8cd8;
    --accent: #0891b2;
    --accent-2: #0e7490;
    --accent-glow: #06b6d4;

    /* Neutrals (light) */
    --bg-0: #fafaf7;
    --bg-1: #f4f4f0;
    --bg-2: #ffffff;
    --surface: #ffffff;
    --surface-2: #fafbfc;
    --surface-hi: #f1f5f9;
    --border: rgba(15, 23, 42, 0.08);
    --border-hi: rgba(15, 23, 42, 0.16);

    /* Text */
    --text: #0a1020;
    --text-2: #475569;
    --text-3: #64748b;
    --text-4: #94a3b8;

    /* Effects */
    --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.06), 0 1px 3px rgba(15, 23, 42, 0.08);
    --shadow-md: 0 4px 12px -2px rgba(15, 23, 42, 0.08), 0 2px 4px rgba(15, 23, 42, 0.04);
    --shadow-lg: 0 24px 50px -12px rgba(15, 23, 42, 0.18);
    --shadow-xl: 0 32px 80px -20px rgba(15, 23, 42, 0.25);
    --shadow-glow: 0 20px 60px -10px rgba(4, 108, 190, 0.3);
    --radius: 18px;
    --radius-lg: 24px;
    --radius-xl: 32px;

    /* Easing */
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);

    /* Layout */
    --container: 1240px;
    --gutter: clamp(1.25rem, 4vw, 2.5rem);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
*:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 6px; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
    font-family: 'Inter Tight', system-ui, -apple-system, sans-serif;
    background: var(--bg-0);
    color: var(--text);
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    font-feature-settings: "ss01", "cv11";
}

img, svg { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; background: none; border: 0; color: inherit; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

/* ============================================
   Ambient background
   ============================================ */
.ambient-bg {
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
}

.ambient-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(15, 23, 42, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(15, 23, 42, 0.04) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 30%, transparent 90%);
    -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 30%, transparent 90%);
}

.ambient-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.65;
    will-change: transform;
}

.ambient-glow-1 {
    top: -10%;
    left: -5%;
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, rgba(4, 108, 190, 0.18), transparent 60%);
    animation: floatSlow 22s ease-in-out infinite;
}

.ambient-glow-2 {
    top: 30%;
    right: -10%;
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.14), transparent 60%);
    animation: floatSlow 28s ease-in-out -8s infinite;
}

@keyframes floatSlow {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(40px, -30px) scale(1.05); }
}

.ambient-noise {
    position: absolute;
    inset: 0;
    opacity: 0.025;
    mix-blend-mode: multiply;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ============================================
   Buttons
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.95rem 1.5rem;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: -0.01em;
    transition: all 0.25s var(--ease);
    cursor: pointer;
    white-space: nowrap;
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
}

.btn svg { width: 16px; height: 16px; transition: transform 0.25s var(--ease); }
.btn:hover svg { transform: translateX(2px); }

.btn-primary {
    background: linear-gradient(135deg, #1182d4 0%, #046cbe 100%);
    color: white;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 8px 24px -8px rgba(4, 108, 190, 0.5);
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 12px 36px -8px rgba(4, 108, 190, 0.7);
    background: linear-gradient(135deg, #1c93e8 0%, #0578d2 100%);
}

.btn-ghost {
    background: var(--surface);
    color: var(--text);
    border-color: var(--border-hi);
    box-shadow: var(--shadow-sm);
}

.btn-ghost:hover {
    background: var(--surface-hi);
    border-color: var(--border-hi);
    box-shadow: var(--shadow-md);
}

.btn-sm { padding: 0.6rem 1.1rem; font-size: 0.85rem; }
.btn-block { width: 100%; justify-content: center; padding: 1.1rem; }

/* ============================================
   Navigation
   ============================================ */
.site-nav {
    position: fixed;
    top: 1rem;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 2rem);
    max-width: var(--container);
    z-index: 100;
    transition: all 0.3s var(--ease);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: 0.75rem 0.75rem 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: saturate(180%) blur(24px);
    -webkit-backdrop-filter: saturate(180%) blur(24px);
    border: 1px solid var(--border);
    border-radius: 999px;
    box-shadow: 0 8px 30px -10px rgba(15, 23, 42, 0.12);
}

.site-nav.scrolled .nav-inner {
    background: rgba(255, 255, 255, 0.92);
    border-color: var(--border-hi);
    box-shadow: 0 12px 40px -10px rgba(15, 23, 42, 0.15);
}

.nav-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    font-size: 1.05rem;
    color: var(--text);
}

.brand-text {
    font-size: 1.15rem;
    font-weight: 800;
    letter-spacing: -0.04em;
    color: var(--text);
    line-height: 1;
    white-space: nowrap;
}
.nav-brand { flex-shrink: 0; }
.brand-text em {
    font-style: normal;
    background: linear-gradient(135deg, var(--brand-400) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.footer-brand .brand-text { font-size: 1.4rem; }


.nav-menu {
    display: flex;
    gap: 0.25rem;
}

.nav-menu a {
    padding: 0.5rem 0.9rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-2);
    border-radius: 999px;
    transition: all 0.2s var(--ease);
}

.nav-menu a:hover {
    color: var(--text);
    background: var(--surface-hi);
}

.nav-actions { display: flex; align-items: center; gap: 0.5rem; }

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 38px;
    height: 38px;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: var(--surface);
    border: 1px solid var(--border);
}

.nav-toggle {
    background: var(--surface-hi);
}
.nav-toggle span {
    width: 16px;
    height: 1.5px;
    background: var(--text);
    border-radius: 2px;
    transition: all 0.3s var(--ease);
}

.nav-toggle[aria-expanded="true"] span:first-child { transform: translateY(3.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:last-child { transform: translateY(-3px) rotate(-45deg); }

@media (max-width: 920px) {
    .nav-menu {
        position: absolute;
        top: calc(100% + 0.75rem);
        left: 0;
        right: 0;
        flex-direction: column;
        gap: 0.25rem;
        padding: 1rem;
        background: rgba(255, 255, 255, 0.96);
        backdrop-filter: blur(24px);
        border: 1px solid var(--border);
        border-radius: var(--radius-lg);
        opacity: 0;
        transform: translateY(-10px);
        pointer-events: none;
        transition: all 0.25s var(--ease);
        box-shadow: var(--shadow-lg);
    }
    .nav-menu.open {
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
    }
    .nav-menu a { padding: 0.85rem 1.1rem; }
    .nav-toggle { display: flex; }
    /* Keep CTA visible on mobile — compact */
    .nav-actions .btn { padding: 0.55rem 0.95rem; font-size: 0.78rem; }
    .nav-actions .btn svg { width: 14px; height: 14px; }
}

@media (max-width: 480px) {
    .brand-text { font-size: 0.95rem; }
    .nav-inner { padding: 0.55rem 0.55rem 0.55rem 1rem; gap: 0.5rem; }
    /* Compact CTA at very small screens — show just icon + minimal text */
    .nav-actions .btn { padding: 0.5rem 0.75rem; font-size: 0.75rem; gap: 0.3rem; }
    .nav-actions .btn span { display: none; }
    .nav-actions .btn::after { content: 'Appel'; font-weight: 600; }
}

/* ============================================
   Layout helpers
   ============================================ */
section {
    padding: clamp(4rem, 10vw, 8rem) var(--gutter);
    position: relative;
}

.section-head {
    max-width: 720px;
    margin: 0 auto clamp(3rem, 6vw, 5rem);
    text-align: center;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.45rem 1rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--text-2);
    letter-spacing: 0.02em;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
}

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

.eyebrow-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 12px var(--accent);
    animation: pulse 2.5s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.85); }
}

.section-title {
    font-size: clamp(2rem, 5vw, 3.4rem);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin-bottom: 1.25rem;
}

.section-sub {
    font-size: clamp(1rem, 1.5vw, 1.15rem);
    color: var(--text-2);
    line-height: 1.6;
    max-width: 560px;
    margin: 0 auto;
}

.grad {
    background: linear-gradient(135deg, var(--brand-500) 0%, var(--accent-glow) 60%, var(--accent) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ============================================
   Reveal animations (fallback for browsers without scroll-driven anim)
   ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

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

@media (prefers-reduced-motion: reduce) {
    .reveal { opacity: 1; transform: none; transition: none; }
    *, *::before, *::after {
        animation-duration: 0.001s !important;
        transition-duration: 0.001s !important;
    }
}

/* ============================================
   SCROLL-DRIVEN ANIMATIONS (Apple-style)
   Modern browsers: Chrome/Edge 115+, Safari 26+
   ============================================ */
@supports (animation-timeline: view()) {
    @media (prefers-reduced-motion: no-preference) {

        /* Hero: epic zoom-out as you scroll past */
        .hero-inner {
            animation: heroZoomOut linear both;
            animation-timeline: scroll(root);
            animation-range: 0vh 80vh;
        }

        @keyframes heroZoomOut {
            0% { transform: scale(1) translateY(0); opacity: 1; filter: blur(0); }
            70% { opacity: 0.8; }
            100% { transform: scale(1.6) translateY(-40px); opacity: 0; filter: blur(8px); }
        }

        /* Hero orb: zoom in dramatically */
        .hero-orb {
            animation: orbZoomIn linear both;
            animation-timeline: scroll(root);
            animation-range: 0vh 100vh;
        }

        @keyframes orbZoomIn {
            0% { transform: translate(-50%, -50%) scale(1); opacity: 0.4; }
            100% { transform: translate(-50%, -30%) scale(2.5); opacity: 0; }
        }

        /* Section titles: scale pop on entrance */
        .section-head {
            animation: titlePop linear both;
            animation-timeline: view();
            animation-range: entry 0% cover 35%;
        }

        @keyframes titlePop {
            from { transform: scale(0.85) translateY(60px); opacity: 0; filter: blur(6px); }
            to { transform: scale(1) translateY(0); opacity: 1; filter: blur(0); }
        }

        /* Bento services: dramatic 3D entry */
        .services .bento-card {
            animation: bentoEntry linear both;
            animation-timeline: view();
            animation-range: entry 0% cover 40%;
        }

        @keyframes bentoEntry {
            from {
                transform: perspective(1500px) rotateX(35deg) translateY(120px) scale(0.85);
                opacity: 0;
                filter: blur(8px);
            }
            to {
                transform: perspective(1500px) rotateX(0) translateY(0) scale(1);
                opacity: 1;
                filter: blur(0);
            }
        }

        /* Stagger bento cards by index */
        .services .bento-card:nth-child(2) { animation-delay: 0; animation-range: entry 5% cover 45%; }
        .services .bento-card:nth-child(3) { animation-range: entry 10% cover 50%; }
        .services .bento-card:nth-child(4) { animation-range: entry 15% cover 55%; }
        .services .bento-card:nth-child(5) { animation-range: entry 20% cover 60%; }
        .services .bento-card:nth-child(6) { animation-range: entry 25% cover 65%; }

        /* Channel cards: alternate slide + scale */
        .channels .channel {
            animation: channelEntry linear both;
            animation-timeline: view();
            animation-range: entry 0% cover 45%;
        }

        @keyframes channelEntry {
            from {
                transform: perspective(1200px) rotateY(-25deg) translateX(-80px) scale(0.9);
                opacity: 0;
                filter: blur(6px);
            }
            to {
                transform: perspective(1200px) rotateY(0) translateX(0) scale(1);
                opacity: 1;
                filter: blur(0);
            }
        }

        .channels .channel:nth-child(2) {
            animation-name: channelEntryCenter;
        }
        .channels .channel:nth-child(3) {
            animation-name: channelEntryRight;
        }

        @keyframes channelEntryCenter {
            from {
                transform: perspective(1200px) translateY(80px) scale(0.9);
                opacity: 0;
                filter: blur(6px);
            }
            to {
                transform: none;
                opacity: 1;
                filter: blur(0);
            }
        }

        @keyframes channelEntryRight {
            from {
                transform: perspective(1200px) rotateY(25deg) translateX(80px) scale(0.9);
                opacity: 0;
                filter: blur(6px);
            }
            to {
                transform: perspective(1200px) rotateY(0) translateX(0) scale(1);
                opacity: 1;
                filter: blur(0);
            }
        }

        /* Process steps: alternate slide */
        .process .step:nth-child(odd) {
            animation: stepFromLeft linear both;
            animation-timeline: view();
            animation-range: entry 0% cover 50%;
        }
        .process .step:nth-child(even) {
            animation: stepFromRight linear both;
            animation-timeline: view();
            animation-range: entry 0% cover 50%;
        }

        @keyframes stepFromLeft {
            from { transform: translateX(-100px) scale(0.95); opacity: 0; filter: blur(4px); }
            to { transform: translateX(0) scale(1); opacity: 1; filter: blur(0); }
        }
        @keyframes stepFromRight {
            from { transform: translateX(100px) scale(0.95); opacity: 0; filter: blur(4px); }
            to { transform: translateX(0) scale(1); opacity: 1; filter: blur(0); }
        }

        /* Results chart: dramatic build-up */
        .results-chart, .rm-card {
            animation: resultsBuild linear both;
            animation-timeline: view();
            animation-range: entry 5% cover 45%;
        }

        @keyframes resultsBuild {
            from {
                transform: scale(0.85) translateY(80px);
                opacity: 0;
                filter: blur(8px);
            }
            to {
                transform: scale(1) translateY(0);
                opacity: 1;
                filter: blur(0);
            }
        }

        /* Testimonials: arc rise */
        .quote {
            animation: quoteArc linear both;
            animation-timeline: view();
            animation-range: entry 0% cover 50%;
        }

        @keyframes quoteArc {
            from { transform: translateY(80px) rotateZ(-2deg) scale(0.92); opacity: 0; }
            to { transform: translateY(0) rotateZ(0) scale(1); opacity: 1; }
        }

        /* FAQ items: slide + fade */
        .faq-item {
            animation: faqIn linear both;
            animation-timeline: view();
            animation-range: entry 0% cover 60%;
        }

        @keyframes faqIn {
            from { transform: translateX(-30px); opacity: 0; filter: blur(3px); }
            to { transform: translateX(0); opacity: 1; filter: blur(0); }
        }

        /* Contact card: dramatic scale */
        .contact-card {
            animation: contactReveal linear both;
            animation-timeline: view();
            animation-range: entry 0% entry 100%;
        }

        @keyframes contactReveal {
            from { transform: scale(0.9) translateY(60px); opacity: 0; filter: blur(6px); }
            to { transform: scale(1) translateY(0); opacity: 1; filter: blur(0); }
        }

        /* Disable old reveal class entirely when scroll-driven works */
        .reveal { opacity: 1; transform: none; transition: none; }
    }
}

/* ============================================
   HERO
   ============================================ */
.hero {
    min-height: 100vh;
    padding-top: clamp(7rem, 14vw, 10rem);
    padding-bottom: clamp(4rem, 8vw, 6rem);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-inner {
    max-width: 920px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.55rem 1.1rem;
    background: rgba(0, 212, 255, 0.08);
    border: 1px solid rgba(0, 212, 255, 0.18);
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--accent-2);
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    animation: fadeUp 0.8s var(--ease-out);
}

.hero-badge .dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #4ade80;
    box-shadow: 0 0 12px #4ade80;
    animation: pulse 2s infinite;
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-title {
    font-size: clamp(2.5rem, 7vw, 5.2rem);
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.045em;
    margin-bottom: 1.75rem;
    animation: fadeUp 1s 0.1s var(--ease-out) backwards;
}

.hero-title em {
    font-family: 'Instrument Serif', Georgia, serif;
    font-style: italic;
    font-weight: 400;
    letter-spacing: -0.02em;
    color: var(--text);
}

.hero-sub {
    font-size: clamp(1.05rem, 1.6vw, 1.25rem);
    color: var(--text-2);
    line-height: 1.55;
    max-width: 620px;
    margin: 0 auto 2.5rem;
    animation: fadeUp 1s 0.2s var(--ease-out) backwards;
}

.hero-sub strong {
    color: var(--text);
    font-weight: 600;
}

.hero-cta {
    display: flex;
    gap: 0.85rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeUp 1s 0.3s var(--ease-out) backwards;
}

.hero-trust {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: clamp(1rem, 4vw, 3rem);
    margin-top: clamp(3rem, 6vw, 5rem);
    padding: 1.5rem 2rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    flex-wrap: wrap;
    animation: fadeUp 1s 0.4s var(--ease-out) backwards;
    box-shadow: var(--shadow-md);
}

.trust-item { display: flex; flex-direction: column; gap: 0.25rem; text-align: center; }
.trust-num {
    font-size: clamp(1.4rem, 2.5vw, 1.8rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, var(--text), var(--brand-500));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.trust-label { font-size: 0.75rem; color: var(--text-3); text-transform: uppercase; letter-spacing: 0.05em; }
.trust-divider { width: 1px; height: 32px; background: var(--border-hi); }

@media (max-width: 600px) {
    .trust-divider { display: none; }
    .hero-trust { gap: 1.5rem 2rem; padding: 1.25rem; }
}

/* Hero orb */
.hero-orb {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80vmin;
    height: 80vmin;
    z-index: 0;
    pointer-events: none;
    opacity: 0.4;
}

.orb-ring, .orb-ring-2, .orb-core {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 1px solid var(--border-hi);
}

.orb-ring {
    inset: 10%;
    animation: spin 60s linear infinite;
}

.orb-ring::before, .orb-ring::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 20px var(--accent);
}
.orb-ring::before { top: -4px; left: 50%; transform: translateX(-50%); }
.orb-ring::after { bottom: -4px; left: 50%; transform: translateX(-50%); background: var(--brand-400); box-shadow: 0 0 20px var(--brand-400); }

.orb-ring-2 {
    inset: 25%;
    animation: spin 90s linear reverse infinite;
}
.orb-ring-2::before {
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent-2);
    top: 50%;
    right: -3px;
    transform: translateY(-50%);
    box-shadow: 0 0 16px var(--accent-2);
}

.orb-core {
    inset: 40%;
    background: radial-gradient(circle, rgba(4, 108, 190, 0.3), transparent 70%);
    border: none;
    filter: blur(20px);
    animation: pulse-orb 4s ease-in-out infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }
@keyframes pulse-orb { 0%, 100% { opacity: 0.5; } 50% { opacity: 1; } }

/* ============================================
   MARQUEE
   ============================================ */
.marquee {
    padding: 3rem 0;
    overflow: hidden;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: rgba(15, 23, 42, 0.015);
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 15%, #000 85%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 15%, #000 85%, transparent);
}

.marquee-track {
    display: flex;
    align-items: center;
    gap: 3rem;
    width: max-content;
    animation: scroll 40s linear infinite;
    font-size: 1.5rem;
    font-weight: 500;
    letter-spacing: -0.02em;
    color: var(--text-3);
    white-space: nowrap;
}

.marquee-track .bullet {
    color: var(--brand-500);
    font-size: 0.5rem;
    opacity: 0.7;
}

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

/* ============================================
   SERVICES (Bento)
   ============================================ */
.bento {
    max-width: var(--container);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1.25rem;
}

.bento-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: border-color 0.4s var(--ease-out), background 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out), transform 0.5s var(--ease-out);
    transform-style: preserve-3d;
    will-change: transform;
    box-shadow: var(--shadow-sm);
}

.bento-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(600px circle at var(--mx, 50%) var(--my, 50%), rgba(4, 108, 190, 0.15), transparent 40%);
    opacity: 0;
    transition: opacity 0.5s var(--ease);
    pointer-events: none;
}

.bento-card:hover {
    border-color: var(--border-hi);
    box-shadow: var(--shadow-lg), 0 0 40px -10px rgba(8, 145, 178, 0.15);
}

.bento-card:hover::before { opacity: 1; }

.bento-lg { grid-column: span 3; grid-row: span 2; padding: 2.5rem; }
.bento-card:not(.bento-lg):not(.bento-mini) { grid-column: span 3; }
.bento-mini { grid-column: span 2; padding: 1.5rem; display: flex; gap: 1rem; align-items: center; }

/* Uniform grid: 6 equal cards (3 cols, 2 rows) */
.bento.bento-uniform { grid-template-columns: repeat(3, 1fr); }
.bento.bento-uniform .bento-card {
    grid-column: span 1;
    grid-row: span 1;
    display: flex;
    flex-direction: column;
    padding: 2rem;
}
.bento.bento-uniform .bento-card .bento-link { margin-top: auto; padding-top: 1rem; }

.bento-card-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.25rem;
}
.bento-card-top .bento-icon { margin-bottom: 0; }

.bento-price {
    display: inline-flex;
    align-items: center;
    padding: 0.4rem 0.85rem;
    background: linear-gradient(135deg, var(--brand-500), var(--accent));
    color: white;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    box-shadow: 0 4px 16px -4px rgba(0, 212, 255, 0.4);
    white-space: nowrap;
}
.bento-price.soft {
    background: var(--surface-hi);
    color: var(--text-3);
    border: 1px solid var(--border);
    font-weight: 500;
    box-shadow: none;
}

.bento-badge-corner {
    position: absolute;
    top: 0;
    right: 1.5rem;
    transform: translateY(-50%);
    z-index: 2;
}

@media (max-width: 920px) {
    .bento { grid-template-columns: repeat(2, 1fr); }
    .bento-lg, .bento-card:not(.bento-lg):not(.bento-mini), .bento-mini { grid-column: span 2; }
    .bento.bento-uniform { grid-template-columns: repeat(2, 1fr); }
    .bento.bento-uniform .bento-card { grid-column: span 1; }
}
@media (max-width: 600px) {
    .bento.bento-uniform { grid-template-columns: 1fr; }
    .bento.bento-uniform .bento-card { grid-column: span 1; }
}

.bento-badge {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    padding: 0.3rem 0.75rem;
    background: linear-gradient(135deg, var(--brand-500), var(--accent));
    color: white;
    font-size: 0.7rem;
    font-weight: 600;
    border-radius: 999px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.bento-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(4, 108, 190, 0.1), rgba(8, 145, 178, 0.06));
    border: 1px solid rgba(8, 145, 178, 0.2);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--brand-500);
}
.bento-icon svg { width: 28px; height: 28px; }
.icon-alt {
    background: var(--surface-hi);
    border-color: var(--border);
    color: var(--text-2);
}

.bento-tag {
    display: inline-block;
    padding: 0.3rem 0.75rem;
    background: var(--surface-hi);
    border: 1px solid var(--border);
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-2);
    margin-bottom: 1rem;
    letter-spacing: 0.01em;
}

.bento-title {
    font-size: clamp(1.3rem, 2vw, 1.6rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin-bottom: 0.75rem;
    color: var(--text);
}

.bento-lg .bento-title { font-size: clamp(1.6rem, 2.5vw, 2rem); }

.bento-text {
    color: var(--text-2);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.bento-list {
    margin-bottom: 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.bento-list li {
    display: flex;
    gap: 0.65rem;
    align-items: flex-start;
    color: var(--text-2);
    font-size: 0.92rem;
}

.bento-list svg {
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    margin-top: 3px;
    color: var(--accent);
}

.bento-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--accent-2);
    font-weight: 500;
    font-size: 0.9rem;
    transition: gap 0.25s var(--ease);
}
.bento-link:hover { gap: 0.65rem; color: var(--accent); }
.bento-link svg { width: 14px; height: 14px; }

.bento-mini h4 { font-size: 1rem; font-weight: 600; margin-bottom: 0.2rem; letter-spacing: -0.01em; }
.bento-mini p { font-size: 0.85rem; color: var(--text-3); line-height: 1.45; }

.bento-mini-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--surface-hi);
    border: 1px solid var(--border);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
}
.bento-mini-icon svg { width: 22px; height: 22px; }

/* ============================================
   PILLARS (3 piliers replacing 6 services bento)
   ============================================ */

.pillars {
    max-width: var(--container);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
@media (max-width: 920px) {
    .pillars { grid-template-columns: 1fr; gap: 1.25rem; }
}

.pillar {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2.25rem 2rem;
    position: relative;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s var(--ease);
    overflow: hidden;
}
.pillar::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 100% 0%, rgba(8, 145, 178, 0.05), transparent 50%);
    opacity: 0;
    transition: opacity 0.4s var(--ease);
    pointer-events: none;
}
.pillar:hover {
    transform: translateY(-4px);
    border-color: var(--border-hi);
    box-shadow: var(--shadow-lg);
}
.pillar:hover::before { opacity: 1; }

.pillar-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--accent-2);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    padding: 0.35rem 0.75rem 0.35rem 0.5rem;
    background: rgba(8, 145, 178, 0.08);
    border: 1px solid rgba(8, 145, 178, 0.2);
    border-radius: 999px;
}
.pillar-tag::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 8px var(--accent);
}

.pillar-title {
    font-size: clamp(1.4rem, 2.3vw, 1.75rem);
    font-weight: 700;
    letter-spacing: -0.025em;
    line-height: 1.15;
    margin-bottom: 0.7rem;
    color: var(--text);
}
.pillar-title em {
    font-family: 'Instrument Serif', Georgia, serif;
    font-style: italic;
    font-weight: 400;
}
.pillar-title a { color: inherit; text-decoration: none; transition: color 0.2s var(--ease); }
.pillar-title a:hover { color: var(--brand-500); }

.pillar-hub-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: 1.25rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--accent-2);
    transition: gap 0.25s var(--ease), color 0.2s var(--ease);
}
.pillar-hub-link:hover { gap: 0.7rem; color: var(--accent); }
.pillar-hub-link svg { width: 15px; height: 15px; }
.pillar-title .amp {
    font-family: 'Instrument Serif', Georgia, serif;
    font-style: italic;
    font-weight: 400;
    color: var(--accent);
    margin: 0 0.05em;
}

.pillar-tagline {
    font-size: 0.95rem;
    color: var(--brand-500);
    font-weight: 600;
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
    line-height: 1.4;
}

.pillar-text {
    color: var(--text-2);
    line-height: 1.6;
    font-size: 0.95rem;
    margin-bottom: 1.75rem;
    flex: 1;
}

.pillar-services {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--border);
}

.pillar-service {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.85rem 1rem;
    background: var(--surface-hi);
    border: 1px solid var(--border);
    border-radius: 12px;
    transition: all 0.25s var(--ease);
    text-decoration: none;
    color: var(--text);
}
.pillar-service:hover {
    border-color: var(--accent);
    background: rgba(8, 145, 178, 0.06);
    transform: translateX(2px);
}
.pillar-service strong {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text);
    letter-spacing: -0.01em;
}
.pillar-service span {
    display: block;
    font-size: 0.78rem;
    color: var(--text-3);
    margin-top: 0.15rem;
    line-height: 1.4;
}
.pillar-service svg {
    width: 14px;
    height: 14px;
    color: var(--accent);
    flex-shrink: 0;
    transition: transform 0.25s var(--ease);
}
.pillar-service:hover svg { transform: translateX(3px); }

/* Featured pillar (Stratégie & Scaling) */
.pillar-featured {
    background: linear-gradient(135deg, #ffffff, #f0f9ff);
    border-color: rgba(8, 145, 178, 0.3);
    box-shadow: var(--shadow-md), 0 0 0 1px rgba(8, 145, 178, 0.15);
}
.pillar-featured:hover {
    box-shadow: var(--shadow-xl), 0 0 0 1px rgba(8, 145, 178, 0.25);
}
.pillar-featured .pillar-tag {
    background: linear-gradient(135deg, var(--brand-500), var(--accent-glow));
    border-color: transparent;
    color: #fff;
    box-shadow: 0 4px 14px -3px rgba(8, 145, 178, 0.4);
}
.pillar-featured .pillar-tag::before {
    background: #fff;
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.6);
}

.pillar-badge {
    position: absolute;
    top: 0;
    right: 1.5rem;
    transform: translateY(-50%);
    padding: 0.4rem 1rem;
    background: linear-gradient(135deg, var(--brand-500), var(--accent-glow));
    color: white;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    box-shadow: 0 4px 16px rgba(8, 145, 178, 0.35);
    white-space: nowrap;
    z-index: 2;
}

/* Scroll-driven animation for pillars — softer, completes faster */
@supports (animation-timeline: view()) {
    @media (prefers-reduced-motion: no-preference) {
        @keyframes pillarEntry {
            from {
                transform: translateY(40px) scale(0.98);
                opacity: 0;
            }
            to {
                transform: translateY(0) scale(1);
                opacity: 1;
            }
        }
        .services .pillar {
            animation: pillarEntry linear both;
            animation-timeline: view();
            animation-range: entry 0% entry 90%;
        }
    }
}

/* ============================================
   RÉALISATIONS (portfolio section)
   ============================================ */

.realisations {
    padding: clamp(4rem, 9vw, 7rem) var(--gutter);
}

.realisations-grid {
    max-width: var(--container);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
@media (max-width: 920px) { .realisations-grid { grid-template-columns: repeat(2, 1fr); gap: 1.25rem; } }
@media (max-width: 600px) { .realisations-grid { grid-template-columns: 1fr; } }

.realisation {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.4s var(--ease);
    box-shadow: var(--shadow-sm);
}
.realisation:hover {
    transform: translateY(-5px);
    border-color: var(--border-hi);
    box-shadow: var(--shadow-lg);
}

.realisation-link {
    display: block;
    color: inherit;
    text-decoration: none;
    height: 100%;
}

.realisation-visual {
    aspect-ratio: 16 / 11;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.realisation-browser {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.65rem 0.9rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
    position: relative;
    z-index: 2;
}
.realisation-browser span {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: rgba(15, 23, 42, 0.15);
}
.realisation-browser span:first-child { background: #ef4444; opacity: 0.7; }
.realisation-browser span:nth-child(2) { background: #f59e0b; opacity: 0.7; }
.realisation-browser span:nth-child(3) { background: #22c55e; opacity: 0.7; }

.realisation-url {
    flex: 1;
    margin-left: 0.5rem;
    padding: 0.2rem 0.7rem;
    background: rgba(15, 23, 42, 0.06);
    border-radius: 999px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.7rem;
    color: var(--text-3);
    text-align: center;
}

.realisation-preview {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}
.realisation-preview::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.25), transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.15), transparent 50%);
    pointer-events: none;
}

.rp-mark {
    font-family: 'Inter Tight', sans-serif;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    color: rgba(255, 255, 255, 0.85);
    letter-spacing: -0.04em;
    z-index: 1;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

/* Different gradients for visual variety */
.real-grad-1 .realisation-preview { background: linear-gradient(135deg, #046cbe, #0891b2); }
.real-grad-2 .realisation-preview { background: linear-gradient(135deg, #7c3aed, #db2777); }
.real-grad-3 .realisation-preview { background: linear-gradient(135deg, #059669, #0891b2); }
.real-grad-4 .realisation-preview { background: linear-gradient(135deg, #ea580c, #db2777); }
.real-grad-5 .realisation-preview { background: linear-gradient(135deg, #0f172a, #475569); }
.real-grad-6 .realisation-preview { background: linear-gradient(135deg, #0891b2, #06b6d4); }
.real-grad-7 .realisation-preview { background: linear-gradient(135deg, #dc2626, #ea580c); }

.realisation-info {
    padding: 1.5rem;
}

.realisation-cat {
    display: inline-block;
    padding: 0.25rem 0.7rem;
    background: rgba(8, 145, 178, 0.08);
    border: 1px solid rgba(8, 145, 178, 0.2);
    color: var(--accent-2);
    border-radius: 999px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 0.85rem;
}

.realisation-info h3 {
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 0.5rem;
    color: var(--text);
}

.realisation-info p {
    font-size: 0.9rem;
    color: var(--text-2);
    line-height: 1.55;
    margin: 0;
}

.realisations-cta {
    max-width: var(--container);
    margin: 2.5rem auto 0;
    text-align: center;
}

/* Scroll-driven animations (stagger by index) */
@supports (animation-timeline: view()) {
    @media (prefers-reduced-motion: no-preference) {
        .realisations .realisation {
            animation: pillarEntry linear both;
            animation-timeline: view();
            animation-range: entry 5% entry 95%;
        }
    }
}

/* ============================================
   EXPERTISE (Channels)
   ============================================ */
.channels {
    max-width: var(--container);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

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

.channel {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: all 0.4s var(--ease);
    box-shadow: var(--shadow-sm);
}

.channel:hover {
    border-color: var(--border-hi);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.channel-head {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border);
}

.channel-logo {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: var(--surface-hi);
    border: 1px solid var(--border);
}
.channel-logo svg { width: 28px; height: 28px; }
.channel-logo.tiktok { background: rgba(0, 0, 0, 0.6); border-color: rgba(255, 255, 255, 0.15); }

.channel-head h3 {
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}
.channel-head p { font-size: 0.85rem; color: var(--text-3); margin-top: 0.15rem; }

.channel-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.channel-stat {
    padding: 1rem;
    background: var(--surface-2);
    border-radius: 12px;
    text-align: center;
    border: 1px solid var(--border);
}

.channel-stat .num {
    display: block;
    font-size: 1.6rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--text), var(--brand-500));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.02em;
}
.channel-stat .lab {
    display: block;
    font-size: 0.72rem;
    color: var(--text-3);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-top: 0.2rem;
}

.channel-chart {
    height: 60px;
    display: flex;
    align-items: flex-end;
    gap: 4px;
}

.channel-chart .bar {
    flex: 1;
    background: linear-gradient(180deg, var(--accent), var(--brand-500));
    border-radius: 3px 3px 0 0;
    opacity: 0.55;
    transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
    transform-origin: bottom;
    transform: scaleY(0);
}

.channel:hover .channel-chart .bar { opacity: 0.95; }
.channel-chart.in .bar { transform: scaleY(1); }

/* ============================================
   PROCESS
   ============================================ */
.steps {
    max-width: 920px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.step {
    display: flex;
    gap: 2rem;
    padding: 2rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: all 0.4s var(--ease);
    box-shadow: var(--shadow-sm);
}

.step:hover {
    border-color: var(--border-hi);
    background: var(--surface-2);
}

.step-num {
    flex-shrink: 0;
    font-family: 'JetBrains Mono', monospace;
    font-size: 2.5rem;
    font-weight: 500;
    background: linear-gradient(135deg, var(--brand-400), var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.04em;
    line-height: 1;
}

.step-body { flex: 1; }
.step-body h3 {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}
.step-body p { color: var(--text-2); margin-bottom: 0.75rem; line-height: 1.55; }

.step-time {
    display: inline-block;
    padding: 0.25rem 0.7rem;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.2);
    color: var(--accent-2);
    border-radius: 999px;
    font-size: 0.75rem;
    font-family: 'JetBrains Mono', monospace;
    letter-spacing: 0.02em;
}

@media (max-width: 600px) {
    .step { flex-direction: column; gap: 1rem; padding: 1.5rem; }
    .step-num { font-size: 1.8rem; }
}

/* ============================================
   RESULTS
   ============================================ */
.results-grid {
    max-width: var(--container);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 1.5rem;
}

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

.results-chart {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

.results-chart::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 100% 0%, rgba(0, 212, 255, 0.08), transparent 50%);
    pointer-events: none;
}

.rc-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
    position: relative;
}

.rc-label {
    display: block;
    font-size: 0.78rem;
    color: var(--text-3);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 0.4rem;
}

.rc-head h4 {
    font-size: clamp(1.4rem, 2.5vw, 1.8rem);
    font-weight: 700;
    letter-spacing: -0.02em;
}

.rc-pill {
    padding: 0.4rem 0.85rem;
    background: linear-gradient(135deg, var(--brand-500), var(--accent));
    color: white;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 600;
    box-shadow: 0 4px 16px rgba(0, 212, 255, 0.3);
}

.rc-bars {
    display: flex;
    align-items: flex-end;
    justify-content: space-around;
    height: 280px;
    gap: 1rem;
    padding-top: 2rem;
    padding-bottom: 38px;
    border-bottom: 1px dashed var(--border-hi);
    position: relative;
}

.rc-bar {
    flex: 1;
    max-width: 70px;
    height: var(--h);
    background: linear-gradient(180deg, var(--accent) 0%, var(--brand-500) 100%);
    border-radius: 8px 8px 0 0;
    position: relative;
    transition: all 0.5s var(--ease-out);
    transform-origin: bottom;
    transform: scaleY(0);
    box-shadow: 0 -4px 24px rgba(0, 212, 255, 0.2);
}

.results-chart.in .rc-bar { transform: scaleY(1); }
.results-chart.in .rc-bar:nth-child(1) { transition-delay: 0s; }
.results-chart.in .rc-bar:nth-child(2) { transition-delay: 0.1s; }
.results-chart.in .rc-bar:nth-child(3) { transition-delay: 0.2s; }
.results-chart.in .rc-bar:nth-child(4) { transition-delay: 0.3s; }
.results-chart.in .rc-bar:nth-child(5) { transition-delay: 0.4s; }

.rc-bar .v {
    position: absolute;
    top: -28px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--text);
    font-weight: 700;
    font-size: 0.85rem;
    font-family: 'JetBrains Mono', monospace;
}
.rc-bar .m {
    position: absolute;
    bottom: -28px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--text-3);
    font-size: 0.78rem;
    font-family: 'JetBrains Mono', monospace;
}

.results-metrics {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    align-content: stretch;
}

.rm-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s var(--ease);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.rm-card:hover {
    border-color: var(--border-hi);
    transform: translateY(-2px);
}

.rm-num {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 700;
    background: linear-gradient(135deg, var(--text) 20%, var(--brand-500));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.03em;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.rm-lab { color: var(--text-3); font-size: 0.85rem; }

/* ============================================
   TESTIMONIALS
   ============================================ */
.quotes {
    max-width: var(--container);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

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

.quote {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s var(--ease);
}

.quote:hover {
    border-color: var(--border-hi);
    transform: translateY(-3px);
}

.quote blockquote {
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--text);
    margin-bottom: 1.5rem;
    font-weight: 400;
    letter-spacing: -0.01em;
    font-family: 'Instrument Serif', Georgia, serif;
    font-style: italic;
}

.quote figcaption {
    display: flex;
    gap: 0.85rem;
    align-items: center;
    padding-top: 1.25rem;
    border-top: 1px solid var(--border);
}

.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--brand-500), var(--accent));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.95rem;
    color: white;
    flex-shrink: 0;
}

.quote figcaption strong {
    display: block;
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--text);
}
.quote figcaption span {
    font-size: 0.8rem;
    color: var(--text-3);
}

/* ============================================
   FAQ
   ============================================ */
.faq-list {
    max-width: 760px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.faq-item {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all 0.3s var(--ease);
    box-shadow: var(--shadow-sm);
}

.faq-item[open] {
    background: var(--surface-2);
    border-color: var(--border-hi);
}

.faq-item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.35rem 1.75rem;
    font-weight: 600;
    font-size: 1.02rem;
    letter-spacing: -0.01em;
    cursor: pointer;
    list-style: none;
    user-select: none;
    transition: color 0.2s var(--ease);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--accent-2); }

.faq-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 999px;
    background: var(--surface-hi);
    border: 1px solid var(--border);
    position: relative;
    transition: all 0.3s var(--ease);
}
.faq-icon::before, .faq-icon::after {
    content: '';
    position: absolute;
    background: var(--text);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: transform 0.3s var(--ease);
}
.faq-icon::before { width: 10px; height: 1.5px; }
.faq-icon::after { width: 1.5px; height: 10px; }

.faq-item[open] .faq-icon { background: var(--accent); border-color: var(--accent); }
.faq-item[open] .faq-icon::before, .faq-item[open] .faq-icon::after { background: var(--bg-0); }
.faq-item[open] .faq-icon::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }

.faq-content {
    padding: 0 1.75rem 1.5rem;
    color: var(--text-2);
    line-height: 1.65;
    font-size: 0.95rem;
}

/* ============================================
   CONTACT
   ============================================ */
.contact { padding-bottom: clamp(5rem, 10vw, 8rem); }

.contact-card {
    max-width: var(--container);
    margin: 0 auto;
    background: linear-gradient(135deg, #ffffff, #f7fafc);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: clamp(2rem, 5vw, 4rem);
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: clamp(2rem, 5vw, 4rem);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.contact-card::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(8, 145, 178, 0.1), transparent 70%);
    pointer-events: none;
}

@media (max-width: 920px) {
    .contact-card { grid-template-columns: 1fr; }
}

.contact-info { position: relative; z-index: 1; }
.contact-info h2 {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 1.25rem;
}
.contact-info p {
    color: var(--text-2);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.contact-links {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 2.5rem;
}
.contact-links li {
    display: flex;
    gap: 1rem;
    align-items: center;
    color: var(--text-2);
    font-size: 0.95rem;
    line-height: 1.5;
}
.contact-links a:hover { color: var(--accent-2); }

.ci-icon {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
}
.ci-icon svg { width: 20px; height: 20px; }

.contact-stats {
    display: flex;
    gap: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
}
.contact-stats div { display: flex; flex-direction: column; gap: 0.2rem; }
.contact-stats strong {
    font-size: 1.4rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--text), var(--brand-500));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.02em;
}
.contact-stats span { font-size: 0.78rem; color: var(--text-3); text-transform: uppercase; letter-spacing: 0.05em; }

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
    position: relative;
    z-index: 1;
}

.field { display: flex; flex-direction: column; gap: 0.4rem; }
.field label {
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--text-2);
    letter-spacing: 0.01em;
}

.field input, .field textarea, .field select {
    width: 100%;
    padding: 0.95rem 1.15rem;
    background: #ffffff;
    border: 1px solid var(--border-hi);
    border-radius: 12px;
    color: var(--text);
    font-family: inherit;
    font-size: 0.95rem;
    transition: all 0.25s var(--ease);
    box-shadow: inset 0 1px 2px rgba(15, 23, 42, 0.05);
}

.field input:hover, .field textarea:hover, .field select:hover { border-color: rgba(15, 23, 42, 0.25); }
.field input:focus, .field textarea:focus, .field select:focus {
    outline: none;
    border-color: var(--accent);
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(8, 145, 178, 0.12), inset 0 1px 2px rgba(15, 23, 42, 0.04);
}

.field textarea { resize: vertical; min-height: 110px; }

.field select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%230891b2' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1.15rem center;
    padding-right: 2.5rem;
}

.form-note {
    font-size: 0.78rem;
    color: var(--text-3);
    text-align: center;
    margin-top: 0.25rem;
}

/* ============================================
   NOTRE HISTOIRE (story section)
   ============================================ */

.story {
    padding: clamp(5rem, 10vw, 9rem) var(--gutter);
    position: relative;
}

.story-grid {
    max-width: var(--container);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: clamp(2rem, 6vw, 5rem);
    align-items: center;
}

.story-content .eyebrow { margin-bottom: 1.5rem; }
.story-content .section-title {
    text-align: left;
    font-size: clamp(1.9rem, 4.5vw, 3rem);
    line-height: 1.05;
    margin-bottom: 1.75rem;
}

.story-lead {
    font-size: clamp(1.05rem, 1.5vw, 1.2rem);
    line-height: 1.6;
    color: var(--text);
    margin-bottom: 1.25rem;
    font-weight: 400;
}
.story-lead strong { font-weight: 600; }

.story-text {
    color: var(--text-2);
    line-height: 1.65;
    font-size: 1rem;
    margin-bottom: 1.1rem;
}
.story-text strong { color: var(--text); font-weight: 600; }

.story-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    padding: 1.75rem 0;
    margin: 2rem 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.story-stat strong {
    display: block;
    font-size: clamp(1.5rem, 2.5vw, 1.9rem);
    font-weight: 700;
    background: linear-gradient(135deg, var(--brand-500), var(--accent-glow));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.02em;
    line-height: 1.05;
    margin-bottom: 0.4rem;
}
.story-stat span {
    display: block;
    font-size: 0.8rem;
    color: var(--text-3);
    line-height: 1.4;
}

.story-cta { margin-top: 0.5rem; }

/* Photos */
.story-photos {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    align-items: center;
}

.founder-card {
    position: relative;
    transition: all 0.4s var(--ease-out);
}
.founder-card.founder-1 { transform: translateY(-1.5rem) rotate(-1.5deg); }
.founder-card.founder-2 { transform: translateY(1.5rem) rotate(1.5deg); }
.founder-card:hover { transform: translateY(-2rem) rotate(0) scale(1.02); z-index: 2; }
.founder-card.founder-2:hover { transform: translateY(0.5rem) rotate(0) scale(1.02); z-index: 2; }

.founder-img {
    position: relative;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-xl);
    background: var(--surface-hi);
}
.founder-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(4, 108, 190, 0.15) 100%);
    pointer-events: none;
}
.founder-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-out);
}
.founder-card:hover .founder-img img { transform: scale(1.05); }

.founder-card figcaption {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    right: 1rem;
    padding: 0.85rem 1.1rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    z-index: 1;
}
.founder-card figcaption strong {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text);
    letter-spacing: -0.01em;
}
.founder-card figcaption span {
    display: block;
    font-size: 0.78rem;
    color: var(--text-3);
    margin-top: 0.1rem;
}

@media (max-width: 920px) {
    .story-grid { grid-template-columns: 1fr; gap: 3rem; }
    .story-content .section-title { text-align: center; }
    .story-content .eyebrow,
    .story-content .story-lead,
    .story-content .story-text,
    .story-cta { text-align: center; }
    .story-stats { grid-template-columns: repeat(3, 1fr); gap: 0.75rem; text-align: center; }
    .story-cta a { margin: 0 auto; }
}
@media (max-width: 600px) {
    .story-photos { grid-template-columns: 1fr 1fr; gap: 0.75rem; max-width: 420px; margin: 0 auto; }
    .story-stats { gap: 0.5rem; }
    .story-stat strong { font-size: 1.3rem; }
    .story-stat span { font-size: 0.72rem; }
}

/* ============================================
   FUNNEL HUB PAGES (pillar funnels)
   ============================================ */

/* --- Pain points ("Vous vous reconnaissez ?") --- */
.funnel-pains {
    padding: clamp(4rem, 8vw, 6rem) var(--gutter);
    position: relative;
}
.pains-grid {
    max-width: var(--container);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}
@media (max-width: 920px) { .pains-grid { grid-template-columns: 1fr; } }

.pain-card {
    padding: 2rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s var(--ease);
    position: relative;
}
.pain-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--border-hi); }
.pain-card .pain-x {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(220, 38, 38, 0.08);
    border: 1px solid rgba(220, 38, 38, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #dc2626;
    margin-bottom: 1.25rem;
}
.pain-card .pain-x svg { width: 20px; height: 20px; }
.pain-card h3 { font-size: 1.1rem; font-weight: 700; letter-spacing: -0.02em; margin-bottom: 0.5rem; color: var(--text); }
.pain-card p { font-size: 0.92rem; color: var(--text-2); line-height: 1.55; margin: 0; }

.funnel-pains-bridge {
    max-width: 680px;
    margin: 2.5rem auto 0;
    text-align: center;
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    color: var(--text);
    line-height: 1.45;
    font-weight: 500;
    letter-spacing: -0.01em;
}
.funnel-pains-bridge em {
    font-family: 'Instrument Serif', Georgia, serif;
    font-style: italic;
    font-weight: 400;
    background: linear-gradient(135deg, var(--brand-500), var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* --- Path choice (the funnel split — 2 routes) --- */
.path-choice {
    padding: clamp(4rem, 8vw, 7rem) var(--gutter);
}
.paths {
    max-width: var(--container);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}
@media (max-width: 820px) { .paths { grid-template-columns: 1fr; } }

.path-card {
    display: flex;
    flex-direction: column;
    padding: clamp(1.75rem, 3vw, 2.5rem);
    background: var(--surface);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
    transition: all 0.4s var(--ease-out);
    text-decoration: none;
    color: inherit;
    position: relative;
    overflow: hidden;
}
.path-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 100% 0%, rgba(8, 145, 178, 0.06), transparent 55%);
    opacity: 0;
    transition: opacity 0.4s var(--ease);
    pointer-events: none;
}
.path-card:hover {
    border-color: var(--accent);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}
.path-card:hover::before { opacity: 1; }

.path-num {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent-2);
    margin-bottom: 1rem;
}
.path-card h3 {
    font-size: clamp(1.4rem, 2.5vw, 1.9rem);
    font-weight: 700;
    letter-spacing: -0.025em;
    line-height: 1.1;
    margin-bottom: 0.6rem;
    color: var(--text);
}
.path-card h3 em {
    font-family: 'Instrument Serif', Georgia, serif;
    font-style: italic;
    font-weight: 400;
}
.path-tagline {
    font-size: 0.98rem;
    color: var(--brand-500);
    font-weight: 600;
    margin-bottom: 1.25rem;
    letter-spacing: -0.01em;
}
.path-card > p {
    color: var(--text-2);
    line-height: 1.6;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}
.path-features {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin-bottom: 1.75rem;
    flex: 1;
}
.path-features li {
    display: flex;
    gap: 0.6rem;
    align-items: flex-start;
    color: var(--text-2);
    font-size: 0.92rem;
    line-height: 1.45;
}
.path-features svg { flex-shrink: 0; width: 16px; height: 16px; margin-top: 3px; color: var(--accent); }

.path-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--border);
}
.path-price {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text);
    letter-spacing: -0.01em;
}
.path-price span { font-size: 0.78rem; font-weight: 400; color: var(--text-3); }
.path-go {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--accent-2);
    transition: gap 0.25s var(--ease);
}
.path-card:hover .path-go { gap: 0.7rem; color: var(--accent); }
.path-go svg { width: 16px; height: 16px; }

.path-card.path-featured {
    background: linear-gradient(135deg, #ffffff, #f0f9ff);
    border-color: rgba(8, 145, 178, 0.35);
}
.path-card.path-featured:hover { box-shadow: var(--shadow-xl); }

.path-extra {
    max-width: var(--container);
    margin: 1.5rem auto 0;
    text-align: center;
}
.path-extra a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-3);
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.2s var(--ease);
}
.path-extra a:hover { color: var(--accent-2); }
.path-extra svg { width: 15px; height: 15px; }

/* Scroll anim for path cards */
@supports (animation-timeline: view()) {
    @media (prefers-reduced-motion: no-preference) {
        .paths .path-card,
        .pains-grid .pain-card {
            animation: pillarEntry linear both;
            animation-timeline: view();
            animation-range: entry 5% entry 95%;
        }
    }
}

/* ============================================
   SERVICE PAGES
   ============================================ */

.svc-hero {
    min-height: 70vh;
    padding-top: clamp(8rem, 14vw, 11rem);
    padding-bottom: clamp(4rem, 8vw, 6rem);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.svc-hero-inner {
    max-width: 820px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.svc-hero-icon {
    width: 72px;
    height: 72px;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(4, 108, 190, 0.12), rgba(8, 145, 178, 0.06));
    border: 1px solid rgba(8, 145, 178, 0.25);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.75rem;
    color: var(--brand-500);
    box-shadow: 0 12px 40px -10px rgba(4, 108, 190, 0.2);
}
.svc-hero-icon svg { width: 36px; height: 36px; }

.svc-hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1rem;
    background: rgba(8, 145, 178, 0.08);
    border: 1px solid rgba(8, 145, 178, 0.25);
    border-radius: 999px;
    font-size: 0.78rem;
    color: var(--accent-2);
    margin-bottom: 1.5rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-weight: 500;
}

.svc-hero h1 {
    font-size: clamp(2.2rem, 5.5vw, 4rem);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.04em;
    margin-bottom: 1.5rem;
}
.svc-hero h1 em {
    font-family: 'Instrument Serif', Georgia, serif;
    font-style: italic;
    font-weight: 400;
}

.svc-hero-sub {
    font-size: clamp(1.05rem, 1.6vw, 1.2rem);
    color: var(--text-2);
    line-height: 1.6;
    max-width: 620px;
    margin: 0 auto 2rem;
}
.svc-hero-sub strong { color: var(--text); font-weight: 600; }

.svc-hero-meta {
    display: inline-flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1rem 1.75rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 999px;
    margin-top: 2rem;
    flex-wrap: wrap;
    justify-content: center;
    box-shadow: var(--shadow-md);
}
.svc-hero-meta .meta-item {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    text-align: center;
}
.svc-hero-meta .meta-num {
    font-size: 1.15rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--text), var(--brand-500));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.02em;
}
.svc-hero-meta .meta-lab {
    font-size: 0.7rem;
    color: var(--text-3);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.svc-hero-meta .meta-div {
    width: 1px;
    height: 28px;
    background: var(--border-hi);
}

/* Use cases */
.use-cases {
    max-width: var(--container);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
@media (max-width: 920px) { .use-cases { grid-template-columns: 1fr; } }

.use-case {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s var(--ease);
}
.use-case:hover {
    border-color: var(--border-hi);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}
.use-case-emoji {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: var(--surface-hi);
    border: 1px solid var(--border);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    color: var(--accent);
}
.use-case-emoji svg { width: 26px; height: 26px; }
.use-case h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
    letter-spacing: -0.02em;
}
.use-case p {
    color: var(--text-2);
    line-height: 1.55;
    font-size: 0.95rem;
}

/* Deliverables */
.deliverables {
    max-width: 980px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem 2rem;
    padding: 2.5rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}
.deliverables li {
    display: flex;
    gap: 0.85rem;
    align-items: flex-start;
    padding: 0.85rem 0;
    color: var(--text);
    border-bottom: 1px solid var(--border);
    font-size: 0.98rem;
}
.deliverables li:nth-last-child(-n+2) { border-bottom: 0; }
.deliverables li svg {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    margin-top: 2px;
    color: var(--accent);
}
.deliverables li strong { color: var(--text); font-weight: 600; }
.deliverables li span.lab { display: block; font-size: 0.85rem; color: var(--text-3); font-weight: 400; margin-top: 0.15rem; }
@media (max-width: 720px) {
    .deliverables { grid-template-columns: 1fr; padding: 1.5rem; }
    .deliverables li:nth-last-child(2) { border-bottom: 1px solid var(--border); }
}

/* Pricing tiers */
.pricing {
    max-width: var(--container);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
@media (max-width: 920px) { .pricing { grid-template-columns: 1fr; } }

.tier {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2.25rem 2rem;
    position: relative;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s var(--ease);
}
.tier:hover { border-color: var(--border-hi); transform: translateY(-3px); box-shadow: var(--shadow-md); }

.tier.tier-popular {
    background: linear-gradient(135deg, #ffffff, #f0f9ff);
    border-color: rgba(8, 145, 178, 0.4);
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl), 0 0 0 1px rgba(8, 145, 178, 0.2);
}
.tier.tier-popular:hover { transform: translateY(-12px); }

.tier-badge {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 0.4rem 1rem;
    background: linear-gradient(135deg, var(--brand-500), var(--accent));
    color: white;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    box-shadow: 0 4px 16px rgba(0, 212, 255, 0.4);
    white-space: nowrap;
}

.tier-name {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-2);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.5rem;
}
.tier-price {
    font-size: clamp(2.2rem, 4vw, 2.8rem);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.03em;
    margin-bottom: 0.3rem;
}
.tier-price span { font-size: 0.95rem; font-weight: 400; color: var(--text-3); margin-left: 0.3rem; }
.tier-desc {
    color: var(--text-2);
    line-height: 1.55;
    font-size: 0.92rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border);
}
.tier-features {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    margin-bottom: 2rem;
    flex: 1;
}
.tier-features li {
    display: flex;
    gap: 0.65rem;
    align-items: flex-start;
    color: var(--text-2);
    font-size: 0.92rem;
    line-height: 1.5;
}
.tier-features svg {
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    margin-top: 4px;
    color: var(--accent);
}
.tier .btn { width: 100%; justify-content: center; }

/* Final CTA */
.final-cta {
    max-width: var(--container);
    margin: 0 auto;
    padding: clamp(3rem, 6vw, 5rem) clamp(2rem, 5vw, 4rem);
    background: linear-gradient(135deg, #ffffff, #f0f9ff);
    border: 1px solid var(--border-hi);
    border-radius: var(--radius-xl);
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}
.final-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(8, 145, 178, 0.08), transparent 60%);
    pointer-events: none;
}
.final-cta h2 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 1rem;
    position: relative;
}
.final-cta p {
    color: var(--text-2);
    max-width: 520px;
    margin: 0 auto 2rem;
    line-height: 1.6;
    position: relative;
}
.final-cta-actions {
    display: inline-flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    position: relative;
}

/* Cross-sell related services */
.cross-sell {
    max-width: var(--container);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}
@media (max-width: 720px) { .cross-sell { grid-template-columns: 1fr; } }

.cross-sell a {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: all 0.3s var(--ease);
    box-shadow: var(--shadow-sm);
}
.cross-sell a:hover {
    border-color: var(--border-hi);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}
.cross-sell .cs-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--surface-hi);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--accent);
}
.cross-sell .cs-icon svg { width: 22px; height: 22px; }
.cross-sell strong { display: block; font-size: 0.95rem; font-weight: 600; }
.cross-sell span { display: block; font-size: 0.82rem; color: var(--text-3); margin-top: 0.15rem; }

/* ============================================
   LE MOT DES FONDATEURS
   ============================================ */

.founders-word {
    padding: clamp(5rem, 9vw, 8rem) var(--gutter);
}

.founders-word-inner {
    max-width: 820px;
    margin: 0 auto;
}

.founders-word .section-head { margin-bottom: 3rem; }

.fw-quote {
    position: relative;
    padding: clamp(2rem, 4vw, 3.5rem) clamp(1.5rem, 3vw, 3rem);
    background: linear-gradient(135deg, #ffffff, #f4f9ff);
    border: 1px solid var(--border-hi);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    overflow: hidden;
}
.fw-quote::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 100% 0%, rgba(8, 145, 178, 0.08), transparent 60%);
    pointer-events: none;
}

.fw-quote-mark {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    width: 50px;
    height: 50px;
    color: var(--accent);
    opacity: 0.15;
}

.fw-quote blockquote {
    font-family: 'Inter Tight', system-ui, sans-serif;
    font-size: clamp(1.15rem, 2vw, 1.45rem);
    line-height: 1.55;
    color: var(--text);
    font-weight: 400;
    letter-spacing: -0.015em;
    margin: 0 0 2.5rem;
    position: relative;
    z-index: 1;
}
.fw-quote blockquote em {
    font-family: 'Instrument Serif', Georgia, serif;
    font-style: italic;
    font-size: 1.1em;
    background: linear-gradient(135deg, var(--brand-500), var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 400;
    letter-spacing: -0.01em;
}

.fw-authors {
    display: flex;
    gap: 2rem;
    padding-top: 1.75rem;
    border-top: 1px solid var(--border);
    position: relative;
    z-index: 1;
    flex-wrap: wrap;
}

.fw-author {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}
.fw-author img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center 25%;
    border: 2px solid #fff;
    box-shadow: 0 4px 12px -2px rgba(15, 23, 42, 0.15);
}
.fw-author strong {
    display: block;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text);
    font-family: 'Inter Tight', sans-serif;
    letter-spacing: -0.01em;
}
.fw-author span {
    display: block;
    font-size: 0.78rem;
    color: var(--text-3);
    margin-top: 0.1rem;
    font-family: 'Inter Tight', sans-serif;
}

@media (max-width: 600px) {
    .fw-authors { gap: 1.5rem; flex-direction: column; }
}

/* ============================================
   NOS TECHNOLOGIES (stack)
   ============================================ */

.tech-stack {
    padding: clamp(4rem, 8vw, 7rem) var(--gutter);
}

.tech-grid {
    max-width: var(--container);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.tech-cat {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 2rem;
    align-items: center;
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--border);
}
.tech-cat:last-child { border-bottom: 0; }

.tech-cat-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text-3);
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.tech-logos {
    display: flex;
    gap: 0.85rem;
    flex-wrap: wrap;
    align-items: center;
}

.tech-logo {
    width: 56px;
    height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 14px;
    transition: all 0.3s var(--ease);
    box-shadow: var(--shadow-sm);
    cursor: help;
    padding: 12px;
}
.tech-logo:hover {
    transform: translateY(-3px);
    border-color: var(--border-hi);
    box-shadow: var(--shadow-md);
}
.tech-logo img,
.tech-logo svg {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}
/* Klaviyo & Slack come monochrome (black) from CDN — keep them subtle */
.tech-logo.tech-mono img { opacity: 0.85; }

.tech-note {
    max-width: var(--container);
    margin: 2.5rem auto 0;
    text-align: center;
    color: var(--text-3);
    font-size: 0.92rem;
    font-style: italic;
}
.tech-note em {
    font-style: italic;
    color: var(--accent-2);
    font-weight: 500;
}

@media (max-width: 720px) {
    .tech-cat {
        grid-template-columns: 1fr;
        gap: 0.85rem;
        padding: 1.25rem 0;
    }
    .tech-logo { width: 48px; height: 48px; }
    .tech-logo svg { width: 24px; height: 24px; }
}

/* ============================================
   ORIENTATION QUIZ (modal funnel)
   ============================================ */

.quiz-overlay {
    position: fixed;
    inset: 0;
    z-index: 999;
    background: rgba(15, 23, 42, 0.45);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    opacity: 0;
    transition: opacity 0.35s var(--ease-out);
}
.quiz-overlay[hidden] { display: none; }
.quiz-overlay.show { opacity: 1; }

.quiz-card {
    width: 100%;
    max-width: 580px;
    max-height: calc(100vh - 2rem);
    overflow-y: auto;
    background: #ffffff;
    border-radius: var(--radius-xl);
    box-shadow: 0 40px 80px -20px rgba(15, 23, 42, 0.4), 0 0 0 1px rgba(15, 23, 42, 0.06);
    position: relative;
    transform: translateY(30px) scale(0.97);
    transition: transform 0.4s var(--ease-out);
    overflow-x: hidden;
}
.quiz-overlay.show .quiz-card { transform: translateY(0) scale(1); }

.quiz-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 36px;
    height: 36px;
    background: var(--surface-hi);
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s var(--ease);
    z-index: 10;
    color: var(--text-2);
}
.quiz-close:hover { background: var(--border-hi); color: var(--text); transform: rotate(90deg); }
.quiz-close svg { width: 16px; height: 16px; }

.quiz-back {
    position: absolute;
    top: 1.25rem;
    left: 1.5rem;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: none;
    border: 0;
    color: var(--text-3);
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    padding: 0.4rem 0.65rem;
    border-radius: 8px;
    transition: all 0.2s var(--ease);
}
.quiz-back:hover { background: var(--surface-hi); color: var(--text); }
.quiz-back svg { width: 14px; height: 14px; }

.quiz-step {
    display: none;
    padding: 2.5rem clamp(1.5rem, 4vw, 2.5rem);
    animation: quizStepIn 0.4s var(--ease-out);
}
.quiz-step-active { display: block; }

@keyframes quizStepIn {
    from { opacity: 0; transform: translateX(20px); }
    to { opacity: 1; transform: translateX(0); }
}

.quiz-progress {
    height: 3px;
    background: var(--border);
    border-radius: 999px;
    overflow: hidden;
    margin-bottom: 2rem;
    margin-top: 1rem;
}
.quiz-progress-bar {
    display: block;
    height: 100%;
    background: linear-gradient(90deg, var(--brand-500), var(--accent-glow));
    border-radius: 999px;
    transition: width 0.4s var(--ease);
}

.quiz-step .eyebrow {
    margin-bottom: 1rem;
}

.quiz-step h2 {
    font-size: clamp(1.5rem, 3.5vw, 2rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 0.85rem;
    color: var(--text);
}

.quiz-sub {
    color: var(--text-2);
    font-size: 0.98rem;
    line-height: 1.5;
    margin-bottom: 1.75rem;
}

.quiz-options {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.quiz-option {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 0.25rem;
    padding: 1.1rem 3rem 1.1rem 1.25rem;
    background: var(--surface);
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    cursor: pointer;
    transition: all 0.25s var(--ease);
    position: relative;
    color: var(--text);
    font-family: inherit;
}
.quiz-option:hover {
    border-color: var(--accent);
    background: rgba(8, 145, 178, 0.04);
    transform: translateX(3px);
}
.quiz-option:hover .qo-arrow { transform: translateX(4px); color: var(--accent); }

.qo-label {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text);
    letter-spacing: -0.01em;
}
.qo-desc {
    font-size: 0.85rem;
    color: var(--text-3);
    line-height: 1.4;
}
.qo-arrow {
    position: absolute;
    right: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    color: var(--text-4);
    transition: all 0.25s var(--ease);
}

.qo-featured {
    background: linear-gradient(135deg, rgba(8, 145, 178, 0.08), rgba(4, 108, 190, 0.04));
    border-color: rgba(8, 145, 178, 0.35);
}
.qo-featured:hover {
    background: linear-gradient(135deg, rgba(8, 145, 178, 0.12), rgba(4, 108, 190, 0.06));
}
.qo-badge {
    display: inline-block;
    align-self: flex-start;
    padding: 0.2rem 0.55rem;
    background: linear-gradient(135deg, var(--brand-500), var(--accent-glow));
    color: white;
    border-radius: 999px;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 0.3rem;
}

.quiz-skip {
    width: 100%;
    padding: 0.75rem;
    background: none;
    border: 0;
    color: var(--text-3);
    font-size: 0.88rem;
    font-weight: 500;
    cursor: pointer;
    text-align: center;
    border-radius: 8px;
    transition: all 0.2s var(--ease);
    font-family: inherit;
}
.quiz-skip:hover { background: var(--surface-hi); color: var(--text); }

@media (max-width: 480px) {
    .quiz-step { padding: 2rem 1.25rem; }
    .quiz-card { max-height: 100vh; border-radius: var(--radius-lg); }
    .quiz-step h2 { font-size: 1.35rem; }
}

/* ============================================
   COOKIE BANNER (CNIL-compliant)
   ============================================ */

.cookie-banner {
    position: fixed;
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    z-index: 1000;
    max-width: 560px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid var(--border-hi);
    border-radius: var(--radius-lg);
    box-shadow: 0 24px 60px -15px rgba(15, 23, 42, 0.25), 0 0 0 1px rgba(15, 23, 42, 0.04);
    padding: 1.25rem 1.5rem;
    backdrop-filter: blur(20px);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.35s var(--ease-out), transform 0.35s var(--ease-out);
}
.cookie-banner.show {
    opacity: 1;
    transform: translateY(0);
}

.cookie-inner {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cookie-text strong {
    display: block;
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.35rem;
    letter-spacing: -0.01em;
}
.cookie-text p {
    color: var(--text-2);
    font-size: 0.82rem;
    line-height: 1.5;
    margin: 0;
}

.cookie-actions {
    display: flex;
    gap: 0.5rem;
    justify-content: flex-end;
}
.cookie-actions .btn { padding: 0.55rem 1rem; font-size: 0.82rem; }

.cookie-link {
    display: inline-block;
    font-size: 0.75rem;
    color: var(--text-3);
    text-decoration: underline;
    text-decoration-color: rgba(15, 23, 42, 0.15);
    text-underline-offset: 3px;
    margin-top: -0.25rem;
}
.cookie-link:hover { color: var(--accent-2); }

@media (min-width: 720px) {
    .cookie-inner { flex-direction: row; align-items: center; gap: 1.5rem; flex-wrap: wrap; }
    .cookie-text { flex: 1; min-width: 240px; }
    .cookie-actions { flex-shrink: 0; }
    .cookie-link { width: 100%; order: 99; margin-top: 0; }
}

/* ============================================
   MERCI PAGE
   ============================================ */

.merci-section {
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(7rem, 12vw, 10rem) var(--gutter) 4rem;
}

.merci-card {
    max-width: 660px;
    width: 100%;
    margin: 0 auto;
    padding: clamp(2.5rem, 5vw, 4rem);
    background: linear-gradient(135deg, #ffffff, #f4f9ff);
    border: 1px solid var(--border-hi);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.merci-card::before {
    content: '';
    position: absolute;
    top: -150px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(8, 145, 178, 0.12), transparent 70%);
    pointer-events: none;
}

.merci-check {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    color: var(--accent);
    position: relative;
    animation: checkPop 0.6s var(--ease-out);
}
.merci-check svg { width: 100%; height: 100%; }

@keyframes checkPop {
    0% { transform: scale(0) rotate(-45deg); opacity: 0; }
    60% { transform: scale(1.15) rotate(8deg); }
    100% { transform: scale(1) rotate(0); opacity: 1; }
}

.merci-card .eyebrow { margin-bottom: 1.25rem; position: relative; }

.merci-card h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 1.25rem;
    position: relative;
}

.merci-lead {
    color: var(--text-2);
    font-size: clamp(1rem, 1.4vw, 1.15rem);
    line-height: 1.6;
    margin-bottom: 2.5rem;
    position: relative;
}
.merci-lead strong { color: var(--text); font-weight: 600; }

.merci-next {
    padding: 1.75rem;
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 2rem;
    text-align: left;
    backdrop-filter: blur(8px);
    position: relative;
}
.merci-next h2 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-3);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1.25rem;
    text-align: center;
}

.merci-steps {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.merci-steps li {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}
.merci-step-num {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--brand-500), var(--accent-glow));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.95rem;
    box-shadow: 0 4px 12px -2px rgba(4, 108, 190, 0.4);
}
.merci-steps strong {
    display: block;
    font-size: 0.98rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 0.15rem;
}
.merci-steps span {
    display: block;
    font-size: 0.88rem;
    color: var(--text-3);
    line-height: 1.45;
}

.merci-actions {
    display: flex;
    gap: 0.85rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
    position: relative;
}

.merci-urgent {
    color: var(--text-3);
    font-size: 0.88rem;
    position: relative;
}
.merci-urgent a {
    color: var(--accent-2);
    text-decoration: underline;
    text-decoration-color: rgba(8, 145, 178, 0.3);
    text-underline-offset: 3px;
}
.merci-urgent a:hover { color: var(--accent); }

/* ============================================
   EARLY ACCESS / Premiers clients (replaces fake testimonials)
   ============================================ */

.early-access {
    padding: clamp(4rem, 8vw, 7rem) var(--gutter);
}

.early-access-card {
    max-width: 880px;
    margin: 0 auto;
    padding: clamp(2.5rem, 6vw, 4.5rem);
    background: linear-gradient(135deg, #ffffff, #f4f9ff);
    border: 1px solid var(--border-hi);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    position: relative;
    overflow: hidden;
    text-align: center;
}
.early-access-card::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(8, 145, 178, 0.1), transparent 70%);
    pointer-events: none;
}
.early-access-card::after {
    content: '';
    position: absolute;
    bottom: -150px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(4, 108, 190, 0.08), transparent 70%);
    pointer-events: none;
}

.early-access-card .eyebrow { margin-bottom: 1.5rem; position: relative; }
.early-access-card .section-title {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    margin-bottom: 1.5rem;
    position: relative;
}

.early-lead {
    font-size: clamp(1.05rem, 1.5vw, 1.2rem);
    color: var(--text);
    line-height: 1.55;
    margin-bottom: 1rem;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}
.early-lead strong { font-weight: 600; }

.early-text {
    color: var(--text-2);
    line-height: 1.65;
    margin-bottom: 2.5rem;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

.early-perks {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin-bottom: 2.5rem;
    position: relative;
}
@media (max-width: 720px) { .early-perks { grid-template-columns: 1fr; } }

.early-perk {
    padding: 1.5rem 1.25rem;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    text-align: center;
    backdrop-filter: blur(8px);
    transition: all 0.3s var(--ease);
}
.early-perk:hover {
    border-color: var(--border-hi);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}
.early-perk strong {
    display: block;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.15rem;
    letter-spacing: -0.01em;
}
.early-perk span {
    display: block;
    font-size: 0.82rem;
    color: var(--text-3);
    line-height: 1.4;
}

.early-cta { position: relative; }
.early-cta .btn { margin-bottom: 0.75rem; }
.early-note {
    color: var(--text-3);
    font-size: 0.82rem;
    margin-top: 0.5rem;
}

/* ============================================
   LEGAL PAGES (prose)
   ============================================ */

.legal-hero {
    padding: clamp(7rem, 14vw, 10rem) var(--gutter) clamp(3rem, 6vw, 5rem);
    text-align: center;
}
.legal-hero-inner {
    max-width: 720px;
    margin: 0 auto;
}
.legal-hero h1 {
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.04em;
    margin: 1rem 0 0.75rem;
}
.legal-hero h1 em {
    font-family: 'Instrument Serif', Georgia, serif;
    font-style: italic;
    font-weight: 400;
}
.legal-updated {
    color: var(--text-3);
    font-size: 0.9rem;
    font-family: 'JetBrains Mono', monospace;
}

.legal-content {
    max-width: 760px;
    margin: 0 auto;
    padding: 0 var(--gutter) clamp(5rem, 10vw, 8rem);
    color: var(--text);
    font-size: 1rem;
    line-height: 1.7;
}
.legal-content h2 {
    font-size: clamp(1.25rem, 2.3vw, 1.5rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin: 2.5rem 0 1rem;
    color: var(--text);
}
.legal-content h2:first-of-type { margin-top: 0; }
.legal-content p { margin-bottom: 1rem; color: var(--text-2); }
.legal-content ul { margin: 0.5rem 0 1.5rem 0; padding-left: 1.5rem; list-style: disc; }
.legal-content ul li { margin-bottom: 0.5rem; color: var(--text-2); list-style: disc; }
.legal-content ul li::marker { color: var(--accent); }
.legal-content strong { color: var(--text); font-weight: 600; }
.legal-content a {
    color: var(--accent-2);
    text-decoration: underline;
    text-decoration-color: rgba(8, 145, 178, 0.3);
    text-underline-offset: 3px;
    transition: all 0.2s var(--ease);
}
.legal-content a:hover { color: var(--accent); text-decoration-color: var(--accent); }

.legal-tldr {
    padding: 1.25rem 1.5rem;
    background: rgba(8, 145, 178, 0.06);
    border-left: 3px solid var(--accent);
    border-radius: 8px;
    margin-bottom: 2.5rem;
    font-size: 0.95rem;
    line-height: 1.55;
}
.legal-tldr strong { color: var(--accent-2); }

.legal-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0 1.5rem;
    font-size: 0.92rem;
    background: var(--surface);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}
.legal-table th {
    background: var(--surface-hi);
    padding: 0.85rem 1rem;
    text-align: left;
    font-weight: 600;
    color: var(--text);
    border-bottom: 1px solid var(--border);
}
.legal-table td {
    padding: 0.75rem 1rem;
    color: var(--text-2);
    border-bottom: 1px solid var(--border);
}
.legal-table tr:last-child td { border-bottom: 0; }

/* ============================================
   ABOUT PAGE
   ============================================ */

.about-story {
    padding: clamp(4rem, 8vw, 6rem) var(--gutter);
}
.about-story-inner {
    max-width: 820px;
    margin: 0 auto;
    text-align: left;
}
.about-story-inner .eyebrow { margin-bottom: 1.5rem; }
.about-story-inner .section-title {
    text-align: left;
    font-size: clamp(1.9rem, 4.5vw, 3rem);
    margin-bottom: 2rem;
}

.prose-block {
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--text-2);
}
.prose-block .lead {
    font-size: clamp(1.15rem, 1.8vw, 1.4rem);
    color: var(--text);
    font-weight: 500;
    margin-bottom: 1.5rem;
    line-height: 1.45;
    letter-spacing: -0.01em;
}
.prose-block p { margin-bottom: 1.25rem; }
.prose-block strong { color: var(--text); font-weight: 600; }
.prose-block em { font-family: 'Instrument Serif', Georgia, serif; font-style: italic; color: var(--text); font-weight: 400; }

/* Founders detailed */
.founders-section { padding-top: clamp(3rem, 6vw, 5rem); }

.founders-grid {
    max-width: var(--container);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}
@media (max-width: 920px) { .founders-grid { grid-template-columns: 1fr; gap: 2.5rem; } }

.founder-detailed {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem 2rem;
    box-shadow: var(--shadow-md);
    transition: all 0.4s var(--ease);
    text-align: center;
}
.founder-detailed:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--border-hi);
}

.founder-detailed-photo {
    width: 160px;
    height: 160px;
    margin: 0 auto 1.5rem;
    overflow: hidden;
    border-radius: 50%;
    background: var(--surface-hi);
    position: relative;
    box-shadow: 0 12px 32px -8px rgba(4, 108, 190, 0.35), 0 0 0 6px rgba(255, 255, 255, 0.8), 0 0 0 7px rgba(8, 145, 178, 0.15);
}
.founder-detailed-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 25%;
    transition: transform 0.6s var(--ease);
    display: block;
}
.founder-detailed:hover .founder-detailed-photo img { transform: scale(1.08); }

.founder-detailed-info { padding: 0; }
.founder-role {
    display: inline-block;
    padding: 0.3rem 0.75rem;
    background: rgba(8, 145, 178, 0.1);
    border: 1px solid rgba(8, 145, 178, 0.25);
    color: var(--accent-2);
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 0.85rem;
}
.founder-detailed-info h3 {
    font-size: clamp(1.5rem, 2.3vw, 1.8rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 0.3rem;
    color: var(--text);
}
.founder-specialty {
    font-size: 0.9rem;
    color: var(--brand-500);
    font-weight: 600;
    margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
}
.founder-bio {
    color: var(--text-2);
    line-height: 1.65;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    text-align: left;
}
.founder-skills {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--border);
    text-align: left;
}
.founder-skills li {
    display: flex;
    gap: 0.6rem;
    align-items: flex-start;
    color: var(--text-2);
    font-size: 0.9rem;
    line-height: 1.45;
}
.founder-skills svg {
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    margin-top: 3px;
    color: var(--accent);
}

/* Who we serve */
.who-grid {
    max-width: var(--container);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}
@media (max-width: 720px) { .who-grid { grid-template-columns: 1fr; } }

.who-col {
    padding: 2rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}
.who-col h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    letter-spacing: -0.01em;
}
.who-yes h3 { color: #15803d; }
.who-no h3 { color: #b91c1c; }
.who-col ul {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}
.who-col ul li {
    color: var(--text-2);
    line-height: 1.55;
    font-size: 0.95rem;
    padding-left: 1rem;
    position: relative;
}
.who-col ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.6rem;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--text-3);
}

/* Footer bottom links */
.footer-bottom a {
    color: var(--text-3);
    transition: color 0.2s var(--ease);
}
.footer-bottom a:hover { color: var(--accent-2); }

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    border-top: 1px solid var(--border);
    padding: clamp(3rem, 6vw, 5rem) var(--gutter) 2rem;
    background: linear-gradient(180deg, transparent, rgba(15, 23, 42, 0.025));
}

.footer-inner {
    max-width: var(--container);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand p {
    color: var(--text-3);
    font-size: 0.92rem;
    line-height: 1.55;
    margin-top: 1rem;
    max-width: 320px;
}

.footer-cols {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.footer-cols h5 {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 1rem;
}

.footer-cols a {
    display: block;
    padding: 0.35rem 0;
    color: var(--text-3);
    font-size: 0.92rem;
    transition: color 0.2s var(--ease);
}
.footer-cols a:hover { color: var(--accent-2); }

.footer-bottom {
    max-width: var(--container);
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    color: var(--text-4);
    font-size: 0.85rem;
}

@media (max-width: 920px) {
    .footer-cols { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
    .footer-inner { grid-template-columns: 1fr; }
    .footer-cols { grid-template-columns: 1fr 1fr; }
}
