        /* ================================================================
       DESIGN TOKENS — identiques à homepage-prototype.html
       ================================================================ */
        :root {
            --bg-dark: #0B0E14;
            --bg-darker: #05070a;
            --bg-mid: #0f1219;
            --card-bg: #151820;
            --card-hover: #1E222D;

            --text-white: #FFFFFF;
            --text-gray: #9CA3AF;
            --text-muted: #6B7280;

            --accent-blue: #3B82F6;
            --accent-blue-dim: rgba(59, 130, 246, 0.1);
            --accent-blue-border: rgba(59, 130, 246, 0.2);
            --accent-purple: #8B5CF6;
            --accent-green: #10B981;
            --accent-red: #EF4444;
            --accent-yellow: #F59E0B;
            --accent-orange: #F97316;
            --accent-pink: #EC4899;
            --accent-gray: #9CA3AF;

            --accent-gold: #D4A84B;
            --accent-gold-light: #F0C87A;
            --accent-gold-dim: rgba(212, 168, 75, 0.08);
            --accent-gold-border: rgba(212, 168, 75, 0.2);

            --border-light: rgba(255, 255, 255, 0.08);
            --border-gold: rgba(212, 168, 75, 0.25);
            --logo-sep: #333333;

            --radius: 16px;
            --radius-sm: 10px;

            --font-body: 'Inter', system-ui, sans-serif;
            --font-mono: 'Inter', system-ui, sans-serif;
            --font-display: 'Inter', system-ui, sans-serif;

            --navbar-h: 72px;
            --navbar-offset: 80px;

            /* LED borders for suite cards */
            --accent-blue-border-led: #1e6fff;
            --accent-purple-border: #bd00ff;
            --accent-green-border: #00ff7f;
        }

        /* ================================================================
       RESET
       ================================================================ */
        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
            scrollbar-width: none;
            -ms-overflow-style: none;
            width: 100vw;
            overflow-x: hidden;
        }

        html::-webkit-scrollbar {
            width: 0;
            display: none;
        }

        body {
            font-family: var(--font-body);
            background: var(--bg-dark);
            color: var(--text-gray);
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
            overflow-x: hidden;
            scrollbar-width: none;
        }

        body::-webkit-scrollbar {
            width: 0;
        }

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

        a {
            color: inherit;
            text-decoration: none;
        }

        button {
            cursor: pointer;
            border: none;
            background: none;
            font: inherit;
        }

        ul {
            list-style: none;
        }

        a:focus-visible,
        button:focus-visible,
        summary:focus-visible {
            outline: 2px solid var(--accent-blue);
            outline-offset: 2px;
        }

        /* ================================================================
       TYPOGRAPHIE
       ================================================================ */
        h2 {
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 800;
            letter-spacing: -1.5px;
            background: linear-gradient(180deg, #fff 0%, #ccc 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1.1;
        }

        h3 {
            font-size: 1.6rem;
            font-weight: 700;
            letter-spacing: -0.5px;
            color: var(--text-white);
        }

        p {
            color: var(--text-gray);
            font-size: 1.05rem;
            line-height: 1.7;
        }

        .label-upper {
            font-size: 0.72rem;
            font-weight: 700;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: var(--text-muted);
        }

        .accent-blue {
            color: var(--accent-blue);
        }

        /* ================================================================
       LAYOUT
       ================================================================ */
        .container {
            max-width: 1100px;
            margin: 0 auto;
            padding: 0 24px;
        }

        .container-wide {
            max-width: 1450px;
            margin: 0 auto;
            padding: 0 24px;
        }

        section {
            padding: 100px 0;
        }

        /* ================================================================
       NAVBAR — floating pill, identique à homepage
       ================================================================ */
        /* ── Sidenav verticale droite ── */
        .sidenav {
            position: fixed;
            right: 12px;
            top: 50%;
            transform: translateY(-50%);
            z-index: 1000;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 2px;
            background: rgba(11, 14, 20, 0.82);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 16px;
            padding: 10px 6px;
        }

        .sn-item {
            width: 38px;
            height: 38px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 10px;
            color: rgba(255, 255, 255, 0.35);
            transition: all 0.2s;
            text-decoration: none;
            position: relative;
            cursor: pointer;
            border: none;
            background: none;
        }

        .sn-item:hover {
            color: var(--accent-blue);
            background: rgba(59, 130, 246, 0.08);
        }

        .sn-item.active {
            color: var(--accent-blue);
            background: rgba(59, 130, 246, 0.1);
        }

        .sn-item[data-page="surm"]:hover {
            color: var(--accent-gold);
            background: rgba(212, 168, 75, 0.08);
        }

        .sn-item::before {
            content: attr(data-label);
            position: absolute;
            right: calc(100% + 10px);
            top: 50%;
            transform: translateY(-50%);
            background: rgba(11, 14, 20, 0.96);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 8px;
            padding: 5px 10px;
            font-size: 0.7rem;
            font-weight: 600;
            color: #fff;
            white-space: nowrap;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.15s;
        }

        .sn-item:hover::before {
            opacity: 1;
        }

        .sn-sep {
            width: 22px;
            height: 1px;
            background: rgba(255, 255, 255, 0.07);
            margin: 3px 0;
        }

        .sn-letter {
            font-size: 15px;
            font-weight: 700;
            line-height: 1;
            letter-spacing: -0.5px;
        }

        .sn-letter--sm {
            font-size: 11px;
            letter-spacing: 0.5px;
        }

        .sn-item[data-page="andrea"] {
            color: var(--accent-blue);
        }

        .sn-item[data-page="andrea"]:hover {
            color: var(--accent-blue);
            background: rgba(59, 130, 246, 0.12);
        }

        /* ── Mobile topbar ── */
        .mobile-topbar {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            height: 56px;
            background: rgba(11, 14, 20, 0.92);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.07);
            align-items: center;
            justify-content: space-between;
            padding: 0 20px;
        }

        .mobile-brand {
            font-size: 0.95rem;
            font-weight: 800;
            color: #fff;
            letter-spacing: -0.3px;
        }

        .mobile-menu-btn {
            font-size: 1.4rem;
            color: var(--text-white);
            padding: 6px;
            background: none;
            border: none;
            cursor: pointer;
        }

        .mobile-nav-links {
            display: none;
            position: fixed;
            top: 56px;
            left: 0;
            right: 0;
            background: rgba(11, 14, 20, 0.98);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
            flex-direction: column;
            padding: 16px 20px;
            gap: 4px;
        }

        .mobile-nav-links.active {
            display: flex;
        }

        .mobile-nav-links a {
            font-size: 0.92rem;
            font-weight: 500;
            color: rgba(255, 255, 255, 0.7);
            padding: 10px 12px;
            border-radius: 8px;
            text-decoration: none;
        }

        .mobile-nav-links a:hover {
            color: #fff;
            background: rgba(255, 255, 255, 0.05);
        }

        /* ================================================================
       HERO — Andrea page
       ================================================================ */
        /* ── Bandeau ticker fondateur ── */
        .founder-ticker-wrap {
            position: relative;
            margin-top: 0;
            background: rgba(59, 130, 246, 0.06);
            border-bottom: 1px solid rgba(59, 130, 246, 0.15);
            overflow: hidden;
            height: 34px;
            display: flex;
            align-items: center;
        }

        .founder-ticker {
            display: flex;
            align-items: center;
            white-space: nowrap;
            font-size: 0.72rem;
            font-weight: 600;
            letter-spacing: 0.3px;
            will-change: transform;
        }

        .founder-ticker>* {
            padding-right: 20px;
        }

        .founder-ticker span:not(.ticker-dot) {
            color: #fff;
        }

        .ticker-dot {
            color: var(--accent-blue);
            opacity: 0.6;
        }

        .andrea-hero {
            position: relative;
            min-height: calc(100vh - 34px);
            display: grid;
            grid-template-rows: 1fr 68px;
            background: linear-gradient(145deg, #090d19 0%, #0b1120 100%);
            overflow: hidden;
            padding: 0;
        }

        /* Grille de fond identique aux path-side de la homepage */
        .andrea-hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background-image:
                linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
            background-size: 48px 48px;
            background-attachment: fixed;
            pointer-events: none;
            z-index: 0;
            -webkit-mask-image: linear-gradient(to bottom, black 60%, transparent 90%);
            mask-image: linear-gradient(to bottom, black 60%, transparent 90%);
        }

        .andrea-hero-glow {
            position: absolute;
            top: -200px;
            left: -150px;
            width: 800px;
            height: 800px;
            background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 65%);
            pointer-events: none;
            z-index: 0;
        }

        .andrea-hero-body {
            grid-row: 1;
            display: flex;
            align-items: center;
            padding: 24px 0 60px;
            position: relative;
            z-index: 1;
        }

        .andrea-hero-inner {
            display: grid;
            grid-template-columns: 1fr;
            gap: 48px;
            align-items: start;
            width: 100%;
        }

        /* Eyebrow tag */
        .andrea-eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            font-size: 0.68rem;
            font-weight: 700;
            letter-spacing: 3.5px;
            text-transform: uppercase;
            color: var(--accent-blue);
            margin-bottom: 24px;
            padding: 7px 16px;
            border: 1px solid rgba(59, 130, 246, 0.25);
            border-radius: 20px;
            background: rgba(59, 130, 246, 0.07);
        }

        .andrea-eyebrow-dot {
            width: 5px;
            height: 5px;
            border-radius: 50%;
            background: var(--accent-blue);
            box-shadow: 0 0 8px rgba(59, 130, 246, 0.9);
            animation: blink 2s ease-in-out infinite;
        }

        @keyframes blink {

            0%,
            100% {
                opacity: 1
            }

            50% {
                opacity: 0.35
            }
        }

        /* H1 */
        .andrea-hero h1 {
            font-size: clamp(2.6rem, 5vw, 4rem);
            font-weight: 900;
            letter-spacing: -2.5px;
            line-height: 1.05;
            color: var(--text-white);
            margin-bottom: 24px;
        }

        /* ===== HERO — bloc texte+bouton a gauche, illustration (carte) a droite ===== */
        /* hero plus large que le reste du site pour pousser la carte loin a droite */
        .andrea-hero .container {
            max-width: 1640px;
            padding: 0 40px;
        }

        .hero-stage {
            position: relative;
            display: grid;
            grid-template-columns: minmax(0, 1fr) 400px;
            align-items: start;
            gap: 64px;
        }

        .hero-textblock {
            grid-column: 1;
            position: relative;
            z-index: 2;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 22px;
        }

        .hero-card-zone {
            grid-column: 2;
            position: relative;
            z-index: 2;
            justify-self: end;
            align-self: start;
            width: min(380px, 100%);
            transform: translateX(24px);
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        /* tagline + bouton sur la meme ligne (continuite), bouton pousse a droite vers C-K */
        .hero-bottomrow {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 32px;
            width: 100%;
        }

        .hero-bottomrow .hero-tagline {
            margin: 0;
        }

        /* lead-in : typo slogan logo (uppercase espace) */
        .hero-leadin {
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 5px;
            font-size: clamp(0.9rem, 1.7vw, 1.4rem);
            color: var(--text-gray);
        }

        .hero-monument {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 6px;
            text-align: left;
        }

        /* mot-monument : grande taille conservee, la colonne gauche s'elargit pour le loger */
        .hero-stock-word {
            display: block;
            font-weight: 900;
            font-size: clamp(4.5rem, 13vw, 13rem);
            line-height: 0.82;
            letter-spacing: -2px;
            color: var(--accent-blue);
        }

        /* tagline : 1ere partie grise, suite blanche (style DIROXI) */
        .hero-tagline {
            font-size: 1.05rem;
            line-height: 1.6;
            color: var(--text-white);
            text-align: left;
            margin: 0;
            max-width: 440px;
        }

        .hero-tagline-muted {
            color: var(--text-gray);
        }

        /* 2e phrase sur une ligne au desktop (dans les 440px), mais doit pouvoir
           wrapper en mobile sinon elle deborde a droite (insecable = ~366px) */
        .hero-tagline-strong { white-space: nowrap; }

        .hero-card-zone .andrea-target {
            margin-bottom: 12px;
        }

        .hero-card-zone .pred-card {
            width: 100%;
        }

        @media (max-width: 768px) {
            .hero-stage {
                display: flex;
                flex-direction: column;
                align-items: center;
                text-align: center;
                min-height: auto;
                gap: 40px;
                padding: 56px 0 24px;
            }

            .hero-textblock {
                align-items: center;
                text-align: center;
                gap: 32px;
            }

            .hero-monument {
                align-items: center;
                text-align: center;
            }

            .hero-leadin,
            .hero-tagline {
                text-align: center;
            }

            .hero-tagline-strong { white-space: normal; }

            .hero-card-zone {
                justify-self: center;
                width: 100%;
                max-width: 420px;
                margin: 0 auto;
                transform: none;
                align-items: center;
            }

            .hero-bottomrow {
                flex-direction: column;
                align-items: center;
                gap: 28px;
            }

            .hero-stock-word {
                font-size: clamp(3.5rem, 20vw, 7rem);
            }
        }

        /* Description */
        .andrea-sub {
            font-size: 1.05rem;
            line-height: 1.75;
            color: rgba(255, 255, 255, 0.5);
            max-width: 500px;
            margin-bottom: 36px;
        }

        /* CTAs */
        .andrea-cta-group {
            display: flex;
            align-items: center;
            gap: 14px;
            flex-wrap: wrap;
            margin-bottom: 32px;
        }

        .btn-andrea-primary {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 14px 32px;
            border-radius: 10px;
            font-size: 0.92rem;
            font-weight: 700;
            background: var(--accent-blue);
            color: #fff;
            transition: transform 0.2s, box-shadow 0.2s;
            text-decoration: none;
        }

        .btn-andrea-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 32px rgba(59, 130, 246, 0.35);
        }

        .btn-andrea-ghost {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 14px 24px;
            border-radius: 10px;
            font-size: 0.88rem;
            font-weight: 600;
            color: rgba(255, 255, 255, 0.6);
            border: 1px solid rgba(255, 255, 255, 0.12);
            transition: all 0.2s;
            text-decoration: none;
        }

        .btn-andrea-ghost:hover {
            color: rgba(255, 255, 255, 0.9);
            border-color: rgba(255, 255, 255, 0.25);
            background: rgba(255, 255, 255, 0.04);
        }

        /* Target badge */
        .andrea-target {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 0.78rem;
            font-weight: 600;
            color: #93C5FD;
            padding: 6px 12px;
            border-radius: 7px;
            background: rgba(59, 130, 246, 0.07);
            border: 1px solid rgba(59, 130, 246, 0.15);
            width: fit-content;
        }

        /* Hero visual — pred card */
        .andrea-hero-visual {
            position: relative;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 28px;
        }

        /* Stats strip — identique à .hero-stats homepage */
        .andrea-hero-stats {
            grid-row: 2;
            height: 68px;
            background: #05070b;
            border-top: 1px solid rgba(255, 255, 255, 0.07);
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            z-index: 20;
            position: relative;
        }

        .h-stat {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 13px;
            border-right: 1px solid rgba(255, 255, 255, 0.06);
            height: 100%;
        }

        .h-stat:last-child {
            border-right: none;
        }

        .h-stat-icon {
            color: var(--accent-blue);
            flex-shrink: 0;
            display: flex;
            align-items: center;
        }

        .h-stat-body {
            display: flex;
            flex-direction: column;
            gap: 4px;
        }

        .h-stat-num {
            font-size: 0.92rem;
            font-weight: 800;
            color: #fff;
            letter-spacing: -0.2px;
            line-height: 1;
            white-space: nowrap;
        }

        .h-stat-lbl {
            font-size: 0.6rem;
            font-weight: 500;
            color: rgba(255, 255, 255, 0.28);
            letter-spacing: 0.4px;
            line-height: 1;
            white-space: nowrap;
        }

        /* ================================================================
       PRED CARD (hero visual)
       ================================================================ */
        .pred-card {
            border-radius: 16px;
            padding: 28px 24px 0;
            border: 1px solid rgba(59, 130, 246, 0.3);
            background: rgba(59, 130, 246, 0.05);
            display: flex;
            flex-direction: column;
            gap: 20px;
            box-shadow: 0 0 60px rgba(59, 130, 246, 0.08);
        }

        .pred-header {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .pred-alert-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: #3B82F6;
            box-shadow: 0 0 8px #3B82F6;
            flex-shrink: 0;
            animation: pulse-dot 2s infinite;
        }

        @keyframes pulse-dot {

            0%,
            100% {
                opacity: 1
            }

            50% {
                opacity: 0.4
            }
        }

        .pred-type {
            font-family: var(--font-mono);
            font-size: 0.65rem;
            font-weight: 700;
            color: #3B82F6;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            flex: 1;
        }

        .pred-time {
            font-family: var(--font-mono);
            font-size: 0.6rem;
            color: var(--text-muted);
        }

        .pred-product {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .pred-sku {
            font-family: var(--font-mono);
            font-size: 0.68rem;
            color: var(--text-gray);
        }

        .pred-stock-row {
            display: flex;
            align-items: flex-start;
            gap: 16px;
        }

        .pred-stat {
            text-align: center;
        }

        .pred-stat-val {
            font-family: var(--font-mono);
            font-size: 1.6rem;
            font-weight: 700;
            color: #fff;
            line-height: 1;
        }

        .pred-stat-val.danger {
            color: #EF4444;
        }

        .pred-stat-lbl {
            font-size: 0.6rem;
            color: var(--text-muted);
            margin-top: 3px;
        }

        .pred-arrow {
            display: flex;
            align-items: flex-start;
            padding-top: 4px;
            color: var(--text-muted);
            flex-shrink: 0;
        }

        .pred-reco {
            background: rgba(255, 255, 255, 0.04);
            border-radius: 8px;
            padding: 12px;
        }

        .pred-reco-label {
            font-size: 0.6rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: var(--text-muted);
            margin-bottom: 4px;
            font-family: var(--font-mono);
        }

        .pred-reco-text {
            font-size: 0.88rem;
            color: #fff;
            line-height: 1.4;
        }

        .pred-reco-text strong {
            color: #3B82F6;
        }

        .pred-risk-bar {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .pred-risk-label {
            font-size: 0.6rem;
            color: var(--text-muted);
            flex: 1;
        }

        .pred-bar-track {
            flex: 2;
            height: 4px;
            background: rgba(255, 255, 255, 0.08);
            border-radius: 2px;
            overflow: hidden;
        }

        .pred-bar-fill {
            height: 100%;
            background: linear-gradient(90deg, #3B82F6, #EF4444);
            border-radius: 2px;
        }

        .pred-risk-pct {
            font-family: var(--font-mono);
            font-size: 0.72rem;
            font-weight: 700;
            color: #EF4444;
            flex-shrink: 0;
        }

        .pred-sources {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 14px 0;
            border-top: 1px solid rgba(255, 255, 255, 0.06);
        }

        .pred-sources-label {
            font-family: var(--font-mono);
            font-size: 0.58rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: var(--text-muted);
            margin-right: 4px;
        }

        /* ================================================================
       ABOUT
       ================================================================ */
        .about-section {
            background: var(--bg-dark);
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }

        .about-section .container {
            max-width: 1140px;
        }

        .about-layout {
            display: grid;
            grid-template-columns: 1.2fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .about-stats {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px;
        }

        .stat-card {
            background: rgba(59, 130, 246, 0.03);
            border: 1px solid rgba(59, 130, 246, 0.18);
            border-radius: 16px;
            padding: 24px 18px;
            position: relative;
            overflow: hidden;
            transition: border-color 0.3s;
        }

        .stat-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: linear-gradient(90deg, var(--accent-blue), transparent);
        }

        .stat-value {
            font-family: var(--font-mono);
            font-size: 2.8rem;
            font-weight: 700;
            color: #fff;
            letter-spacing: -1px;
        }

        .stat-label {
            font-size: 0.72rem;
            color: var(--text-muted);
            margin-top: 6px;
            line-height: 1.3;
        }

        .about-text {
            display: flex;
            flex-direction: column;
            gap: 20px;
            transform: translateX(-20px);
        }

        .about-text h2 {
            text-align: left;
        }

        .about-integ-label {
            font-family: var(--font-mono);
            font-size: 0.62rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: var(--text-muted);
            display: block;
            margin-bottom: 14px;
        }

        .about-integ-logos {
            display: flex;
            align-items: center;
            gap: 12px 16px;
            flex-wrap: wrap;
        }

        .integ-item {
            display: flex;
            align-items: center;
            gap: 6px;
            opacity: 0.45;
            transition: opacity 0.2s;
        }

        .integ-item:hover {
            opacity: 1;
        }

        .integ-name {
            font-size: 0.75rem;
            font-weight: 600;
            color: var(--text-gray);
            white-space: nowrap;
        }

        /* ================================================================
       SUITE ANDREA — cartes avec panneau moteurs ML
       ================================================================ */
        .section-services {
            padding: 100px 0;
            position: relative;
            z-index: 2;
            overflow: hidden;
            background: #07090E;
        }

        .section-services::before {
            content: '';
            position: absolute;
            inset: 0;
            pointer-events: none;
            z-index: 0;
            background-image:
                linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
            background-size: 48px 48px;
            background-attachment: fixed;
            -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 15%, black 85%, transparent 100%);
            mask-image: linear-gradient(to bottom, transparent 0%, black 15%, black 85%, transparent 100%);
        }

        .section-services .container {
            position: relative;
            z-index: 1;
        }

        .section-header {
            text-align: center;
            max-width: 700px;
            margin: 0 auto 50px;
        }

        .section-header .label-upper-sm {
            font-size: 13px;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: var(--text-gray);
            margin-bottom: 10px;
            font-weight: 600;
            display: block;
        }

        .section-header .section-title {
            font-size: clamp(2rem, 4vw, 2.5rem);
            font-weight: 700;
            margin-bottom: 15px;
            color: #FFFFFF;
        }

        .suites-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            align-items: stretch;
        }

        .suite-card-outer {
            position: relative;
            border-radius: 16px;
            overflow: hidden;
            height: 100%;
            transition: transform 0.4s ease, box-shadow 0.3s;
        }

        .suite-card-outer:not(.open):hover {
            transform: translateY(-5px);
        }

        .suite-card-outer:has(.saas-supply):not(.open):hover {
            box-shadow: 0 2px 100px rgba(30, 111, 255, 0.15);
        }

        .suite-card-outer:has(.saas-growth):not(.open):hover {
            box-shadow: 0 2px 100px rgba(189, 0, 255, 0.15);
        }

        .suite-card-outer:has(.saas-cfo):not(.open):hover {
            box-shadow: 0 2px 100px rgba(0, 255, 127, 0.15);
        }

        .suite-card {
            position: relative;
            border-radius: 16px;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            text-align: left;
            transition: border-color 0.3s;
            height: 100%;
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid rgba(255, 255, 255, 0.07);
        }

        .saas-supply {
            --cluster-color: #3B82F6;
            --cluster-rgb: 59, 130, 246;
        }

        .saas-growth {
            --cluster-color: #8B5CF6;
            --cluster-rgb: 139, 92, 246;
        }

        .saas-cfo {
            --cluster-color: #10B981;
            --cluster-rgb: 16, 185, 129;
        }

        .suite-card-outer:hover .suite-card {
            border-color: rgba(255, 255, 255, 0.14);
        }

        /* Header coloré */
        .sc-header {
            padding: 22px 24px 20px;
            background: linear-gradient(135deg, rgba(var(--cluster-rgb), 0.18) 0%, rgba(var(--cluster-rgb), 0.04) 100%);
            border-bottom: 1px solid rgba(var(--cluster-rgb), 0.2);
        }

        .sc-category {
            font-size: 0.62rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: rgb(var(--cluster-rgb));
            font-weight: 700;
            display: block;
            margin-bottom: 10px;
        }

        .sc-title {
            font-size: 1.45rem;
            font-weight: 700;
            letter-spacing: -0.5px;
            color: #fff;
            margin-bottom: 8px;
        }

        .sc-tagline {
            font-size: 0.82rem;
            color: rgba(255, 255, 255, 0.55);
            line-height: 1.5;
        }

        /* Body features */
        .sc-body {
            padding: 6px 24px 4px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }

        .sc-feature {
            display: flex;
            flex-direction: column;
            padding: 13px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }

        .sc-feature:last-child {
            border-bottom: none;
        }

        .sc-feat-title {
            font-size: 0.87rem;
            font-weight: 700;
            color: #fff;
            margin-bottom: 6px;
        }

        .sc-feat-row {
            display: flex;
            align-items: flex-start;
            gap: 0;
        }

        .sc-feat-left {
            flex: 1;
            min-width: 0;
            padding-right: 14px;
        }

        .sc-feat-desc {
            font-size: 0.78rem;
            color: var(--text-gray);
            line-height: 1.5;
        }

        .sc-feat-signals {
            display: flex;
            flex-direction: column;
            gap: 7px;
            padding-left: 14px;
            border-left: 1px solid rgba(255, 255, 255, 0.08);
            flex-shrink: 0;
            width: 38%;
            overflow: hidden;
        }

        .sc-feat-signal {
            display: flex;
            align-items: flex-start;
            flex-wrap: nowrap;
            gap: 7px;
            font-size: 0.70rem;
            color: #6B7280;
            line-height: 1.35;
        }

        .sc-feat-signal svg {
            color: rgb(var(--cluster-rgb));
            flex-shrink: 0;
            margin-top: 2px;
        }

        /* Footer */
        .sc-footer {
            padding: 0 24px 20px;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 10px;
        }

        .suite-included-badge {
            position: absolute;
            top: 14px;
            right: 14px;
            font-size: 0.58rem;
            text-transform: uppercase;
            letter-spacing: 0.8px;
            color: rgba(255, 255, 255, 0.4);
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            padding: 4px 10px;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .suite-included-badge strong {
            color: rgba(255, 255, 255, 0.7);
            font-weight: 700;
        }

        .suite-badge-dot {
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: rgb(var(--cluster-rgb));
            box-shadow: 0 0 6px rgb(var(--cluster-rgb));
            flex-shrink: 0;
            animation: pulse-dot 2s infinite;
        }

        .card-engines-btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 10px 20px;
            border-radius: 10px;
            border: 1px solid rgba(255, 255, 255, 0.12);
            color: var(--text-gray);
            font-size: 0.78rem;
            font-weight: 600;
            cursor: pointer;
            background: transparent;
            transition: all .2s;
            font-family: var(--font-body);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .card-engines-btn:hover {
            color: #fff;
            border-color: rgba(255, 255, 255, 0.3);
            background: rgba(255, 255, 255, 0.04);
        }

        /* Panneau moteurs ML */
        .engines-panel {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            border-radius: 16px;
            padding: 28px 24px;
            display: flex;
            flex-direction: column;
            transform: translateX(100%);
            transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
            z-index: 10;
            background: #08090d;
            border: 1px solid rgba(var(--cluster-rgb), 0.25);
        }

        .engines-panel::before {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: 16px;
            background: linear-gradient(160deg, rgba(var(--cluster-rgb), 0.18) 0%, transparent 55%);
            pointer-events: none;
            z-index: 0;
        }

        .engines-panel>* {
            position: relative;
            z-index: 1;
        }

        .suite-card-outer.open .engines-panel {
            transform: translateX(0);
        }

        .suite-card-outer:has(.saas-supply) .engines-panel {
            --cluster-rgb: 59, 130, 246;
        }

        .suite-card-outer:has(.saas-growth) .engines-panel {
            --cluster-rgb: 139, 92, 246;
        }

        .suite-card-outer:has(.saas-cfo) .engines-panel {
            --cluster-rgb: 16, 185, 129;
        }

        .engines-panel-header {
            font-size: 0.62rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: rgba(255, 255, 255, 0.35);
            margin-bottom: 18px;
            padding-bottom: 12px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.07);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .engine-close-btn {
            background: transparent;
            border: 1px solid rgba(255, 255, 255, 0.12);
            color: rgba(255, 255, 255, 0.4);
            cursor: pointer;
            font-size: 0.72rem;
            padding: 4px 10px;
            border-radius: 6px;
            transition: all .2s;
            font-family: var(--font-body);
            font-weight: 700;
        }

        .engine-close-btn:hover {
            color: #fff;
            border-color: rgba(255, 255, 255, 0.3);
        }

        .engine-list {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 8px;
            flex: 1;
        }

        .engine-item {
            border-left: 3px solid rgba(var(--cluster-rgb), 0.5);
            border-radius: 0 10px 10px 0;
            background: rgba(var(--cluster-rgb), 0.04);
            padding: 13px 16px;
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
            gap: 5px;
            transition: background .2s;
        }

        .engine-item:hover {
            background: rgba(var(--cluster-rgb), 0.09);
        }

        .engine-name {
            font-size: 0.87rem;
            font-weight: 700;
            color: #fff;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .engine-name::before {
            content: '';
            width: 5px;
            height: 5px;
            border-radius: 50%;
            background: rgb(var(--cluster-rgb));
            flex-shrink: 0;
        }

        .engine-desc {
            font-size: 0.76rem;
            color: var(--text-gray);
            line-height: 1.5;
            padding-left: 13px;
        }

        .engine-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 5px;
            padding-left: 13px;
            margin: 3px 0 2px;
        }

        .engine-tag {
            font-size: 0.64rem;
            font-weight: 600;
            letter-spacing: 0.3px;
            color: rgb(var(--cluster-rgb));
            background: rgba(var(--cluster-rgb), 0.1);
            border: 1px solid rgba(var(--cluster-rgb), 0.2);
            border-radius: 20px;
            padding: 2px 9px;
            white-space: nowrap;
        }

        /* ================================================================
       FONDATEUR
       ================================================================ */
        .section-fondateur {
            background: var(--bg-dark);
            padding: 80px 0;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }

        .contact-split {
            display: grid;
            grid-template-columns: 1.1fr 1.3fr 1.1fr;
            gap: 34px;
            align-items: start;
        }

        .contact-left {
            display: flex;
            flex-direction: column;
            padding-top: 40px;
        }

        .contact-left h2 {
            font-size: clamp(2.8rem, 5vw, 4.2rem);
            font-weight: 800;
            letter-spacing: -2.5px;
            margin: 10px 0 20px;
            background: linear-gradient(135deg, #fff 60%, rgba(255, 255, 255, 0.5));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1.05;
        }

        .contact-left>p {
            font-size: 0.95rem;
            color: var(--text-muted);
            line-height: 1.7;
            margin-bottom: 24px;
        }

        .contact-pills {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .contact-pill {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 0.82rem;
            font-weight: 600;
            color: #93C5FD;
            background: rgba(59, 130, 246, 0.06);
            border: 1px solid rgba(59, 130, 246, 0.2);
            border-radius: 30px;
            padding: 10px 18px;
            width: fit-content;
        }

        .contact-pill svg {
            color: var(--accent-blue);
            flex-shrink: 0;
        }

        .contact-founder-col {
            display: flex;
            flex-direction: column;
            align-self: center;
        }

        .contact-founder-eyebrow {
            font-family: var(--font-mono);
            font-size: 0.65rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 2.5px;
            color: var(--accent-blue);
            display: block;
            margin-bottom: 20px;
        }

        .contact-founder-intro {
            font-size: 0.88rem;
            color: var(--text-muted);
            line-height: 1.6;
            margin-bottom: 24px;
        }

        .contact-perks {
            list-style: none;
        }

        .contact-perks li {
            font-size: 0.85rem;
            color: var(--text-gray);
            display: flex;
            align-items: center;
            gap: 16px;
            padding: 14px 0;
            border-bottom: 1px solid var(--border-light);
        }

        .contact-perks li:first-child {
            border-top: 1px solid var(--border-light);
        }

        .contact-perks li strong {
            font-size: 1.25rem;
            color: #fff;
            font-weight: 800;
            letter-spacing: -0.5px;
            min-width: 56px;
            flex-shrink: 0;
        }

        /* ================================================================
       TARIFICATION
       ================================================================ */
        .section-pricing {
            padding: 100px 0;
            background: linear-gradient(180deg, rgba(59, 130, 246, 0.07) 0%, var(--bg-dark) 220px);
            position: relative;
            overflow: hidden;
            border-top: 1px solid rgba(59, 130, 246, 0.25);
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        }

        .section-pricing::before {
            content: '';
            position: absolute;
            inset: 0;
            pointer-events: none;
            z-index: 0;
            background-image: linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
            background-size: 48px 48px;
            background-attachment: fixed;
            -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 15%, black 85%, transparent 100%);
            mask-image: linear-gradient(to bottom, transparent 0%, black 15%, black 85%, transparent 100%);
        }

        .section-pricing .container {
            position: relative;
            z-index: 1;
        }

        .pricing-intro {
            text-align: center;
            margin-bottom: 35px;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 14px 32px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 0.88rem;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            text-decoration: none;
            transition: all 0.25s ease;
            cursor: pointer;
            border: none;
        }

        .btn-primary {
            background: var(--text-white);
            color: var(--bg-dark);
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 0 28px rgba(255, 255, 255, 0.25);
        }

        .btn-outline {
            border: 1px solid rgba(255, 255, 255, 0.2);
            color: var(--text-white);
            background: transparent;
        }

        .btn-outline:hover {
            border-color: rgba(255, 255, 255, 0.5);
            background: rgba(255, 255, 255, 0.05);
        }

        /* Journey Stepper */
        .journey-stepper {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 0;
            max-width: 1000px;
            margin: 0 auto 70px;
            position: relative;
        }

        .journey-stepper::before {
            content: '';
            position: absolute;
            top: 31px;
            left: calc(16.66%);
            right: calc(16.66%);
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1) 20%, rgba(255, 255, 255, 0.1) 80%, transparent);
            z-index: 0;
        }

        .journey-step {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            padding: 0 20px;
            position: relative;
            z-index: 1;
        }

        .journey-node {
            width: 64px;
            height: 64px;
            border-radius: 50%;
            background: var(--bg-dark);
            border: 1px solid rgba(255, 255, 255, 0.12);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.1rem;
            font-weight: 800;
            color: var(--text-gray);
            margin-bottom: 20px;
            flex-shrink: 0;
            position: relative;
            z-index: 1;
        }

        .step-monthly .journey-node {
            background: var(--bg-dark);
            border-color: rgba(59, 130, 246, 0.35);
            color: var(--accent-blue);
        }

        .journey-label {
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--text-white);
            margin-bottom: 8px;
        }

        .journey-desc {
            font-size: 0.9rem;
            color: var(--text-muted);
            line-height: 1.6;
            margin-bottom: 16px;
        }

        .journey-price-badge {
            font-size: 1.4rem;
            font-weight: 800;
            color: var(--text-white);
            line-height: 1.1;
        }

        .journey-price-badge.free {
            color: var(--text-white);
        }

        .journey-time {
            font-size: 0.8rem;
            font-weight: 700;
            color: var(--text-muted);
            margin-top: 4px;
            opacity: 0.7;
        }

        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            align-items: center;
        }

        .price-card {
            background: rgba(21, 24, 32, 0.85);
            border-radius: 24px;
            padding: 40px 30px;
            text-align: center;
            display: flex;
            flex-direction: column;
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.05);
            transition: transform .4s, border-color .3s, box-shadow .3s;
        }

        .price-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: linear-gradient(90deg, transparent, var(--price-color), transparent);
            opacity: 0.3;
            transition: opacity .4s;
        }

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

        .card-lite {
            --price-color: #06B6D4;
            padding: 24px 22px;
            background: rgba(6, 182, 212, 0.03);
            border-color: rgba(6, 182, 212, 0.12);
        }

        .card-lite:hover {
            transform: translateY(-6px);
            border-color: var(--price-color);
        }

        .card-lite .price-amount {
            font-size: 2rem;
        }

        .card-supply {
            --price-color: var(--accent-blue);
            padding: 50px 36px;
            background: linear-gradient(160deg, rgba(59, 130, 246, 0.08) 0%, rgba(21, 24, 32, 0.95) 100%);
            border-color: rgba(59, 130, 246, 0.25);
            box-shadow: 0 0 60px rgba(59, 130, 246, 0.08), 0 20px 40px rgba(0, 0, 0, 0.4);
        }

        .card-supply:hover {
            transform: translateY(-6px);
            border-color: var(--price-color);
        }

        .card-growth {
            --price-color: var(--accent-purple);
            padding: 50px 36px;
            background: linear-gradient(160deg, rgba(139, 92, 246, 0.08) 0%, rgba(21, 24, 32, 0.95) 100%);
            border-color: rgba(139, 92, 246, 0.25);
            box-shadow: 0 0 60px rgba(139, 92, 246, 0.08), 0 20px 40px rgba(0, 0, 0, 0.4);
        }

        .card-growth:hover {
            transform: translateY(-6px);
            border-color: var(--price-color);
        }

        .price-card.featured {
            --price-color: var(--accent-green);
            padding: 50px 36px;
            background: linear-gradient(160deg, rgba(16, 185, 129, 0.08) 0%, rgba(21, 24, 32, 0.95) 100%);
            border-color: rgba(16, 185, 129, 0.25);
            box-shadow: 0 0 60px rgba(16, 185, 129, 0.08), 0 20px 40px rgba(0, 0, 0, 0.4);
        }

        .price-card.featured:hover {
            transform: translateY(-6px);
        }

        .price-badge-limit {
            display: inline-block;
            font-size: 0.68rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            padding: 3px 10px;
            border-radius: 20px;
            margin-bottom: 12px;
            background: rgba(6, 182, 212, 0.1);
            border: 1px solid rgba(6, 182, 212, 0.25);
            color: #06B6D4;
        }

        .multipack-block {
            margin-top: 48px;
            padding: 32px 40px;
            border-radius: 20px;
            background: rgba(21, 24, 32, 0.6);
            border: 1px solid rgba(255, 255, 255, 0.07);
            text-align: center;
        }

        .multipack-title {
            font-size: 0.72rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            color: var(--text-gray);
            font-family: var(--font-mono);
            margin-bottom: 24px;
        }

        .multipack-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            max-width: 600px;
            margin: 0 auto;
        }

        .multipack-option {
            padding: 24px 20px;
            border-radius: 14px;
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid rgba(255, 255, 255, 0.08);
        }

        .multipack-option.premium {
            border-color: rgba(212, 168, 75, 0.2);
            background: rgba(212, 168, 75, 0.03);
        }

        .multipack-price {
            font-family: var(--font-mono);
            font-size: 2rem;
            font-weight: 800;
            color: #fff;
            display: block;
            margin-bottom: 4px;
        }

        .multipack-label {
            font-size: 0.8rem;
            color: var(--text-muted);
            display: block;
            margin-bottom: 14px;
        }

        .multipack-saving {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 0.72rem;
            font-weight: 700;
            padding: 3px 10px;
            border-radius: 20px;
            background: rgba(16, 185, 129, 0.1);
            border: 1px solid rgba(16, 185, 129, 0.2);
            color: #10B981;
        }

        .price-ribbon {
            position: absolute;
            top: 22px;
            left: -28px;
            width: 108px;
            background: #ef4444;
            color: #fff;
            font-size: 11px;
            font-weight: 800;
            text-align: center;
            padding: 6px 0;
            transform: rotate(-45deg);
            letter-spacing: 0.08em;
            z-index: 2;
            box-shadow: 0 2px 8px rgba(239, 68, 68, 0.4);
        }

        .roi-module-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 14px;
        }

        .roi-mode-switch {
            display: flex;
            border-radius: 20px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            overflow: hidden;
        }

        .roi-mode-btn {
            padding: 5px 16px;
            border: none;
            cursor: pointer;
            font-family: var(--font-mono);
            font-size: 0.7rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            background: transparent;
            color: var(--text-muted);
            transition: all .2s;
            white-space: nowrap;
        }

        .roi-mode-btn.active {
            background: rgba(255, 255, 255, 0.08);
            color: #fff;
        }

        .pricing-combo-hint {
            text-align: center;
            margin-top: 24px;
            font-size: 0.82rem;
            color: var(--text-gray);
            letter-spacing: 0.01em;
        }

        .price-step {
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            color: var(--text-gray);
            margin-bottom: 12px;
            display: block;
            font-family: var(--font-mono);
        }

        .price-amount {
            font-family: var(--font-mono);
            font-size: 2.8rem;
            font-weight: 800;
            color: #fff;
            margin-bottom: 4px;
            display: block;
        }

        .price-sub {
            font-size: 1rem;
            font-weight: 700;
            margin-bottom: 24px;
            display: block;
        }

        .price-features {
            list-style: none;
            text-align: left;
            margin-bottom: 28px;
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .price-features li {
            display: flex;
            gap: 10px;
            align-items: flex-start;
            font-size: 0.85rem;
            color: var(--text-gray);
        }

        .price-features li::before {
            content: '✓';
            color: var(--price-color);
            flex-shrink: 0;
            font-size: 0.75rem;
            font-weight: 700;
            margin-top: 2px;
        }

        .price-features li strong {
            color: var(--text-white);
            margin-right: 5px;
            font-weight: 600;
        }

        .price-addon {
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 8px;
            padding: 12px 16px;
            margin-bottom: 20px;
            text-align: center;
        }

        .price-addon-title {
            font-size: 0.8rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-family: var(--font-mono);
        }

        .section-reassurance {
            padding: 70px 0;
            background: var(--bg-darker);
            border-top: 1px solid rgba(59, 130, 246, 0.1);
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        }

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

        .rc-item {
            text-align: center;
            padding: 0 20px;
        }

        .rc-icon-box {
            width: 48px;
            height: 48px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 14px;
        }

        .rc-blue .rc-icon-box {
            background: rgba(59, 130, 246, 0.08);
            border: 1px solid rgba(59, 130, 246, 0.2);
            color: var(--accent-blue);
        }

        .rc-purple .rc-icon-box {
            background: rgba(139, 92, 246, 0.08);
            border: 1px solid rgba(139, 92, 246, 0.2);
            color: var(--accent-purple);
        }

        .rc-green .rc-icon-box {
            background: rgba(16, 185, 129, 0.08);
            border: 1px solid rgba(16, 185, 129, 0.2);
            color: var(--accent-green);
        }

        .rc-item h4 {
            font-size: 0.9rem;
            font-weight: 700;
            color: var(--text-white);
            margin-bottom: 6px;
        }

        .rc-metric {
            font-size: 0.7rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            margin-top: 2px;
            margin-bottom: 8px;
            opacity: 0.7;
        }

        .rc-blue .rc-metric {
            color: var(--accent-blue);
        }

        .rc-purple .rc-metric {
            color: var(--accent-purple);
        }

        .rc-green .rc-metric {
            color: var(--accent-green);
        }

        .rc-item p {
            font-size: 0.78rem;
            color: var(--text-muted);
            line-height: 1.5;
            max-width: 220px;
            margin: 0 auto;
        }

        /* Neon tags pour suite cards */
        .tag-blue {
            --tag-color: #3B82F6;
            --tag-color-rgb: 59, 130, 246;
        }

        .tag-green {
            --tag-color: #10B981;
            --tag-color-rgb: 16, 185, 129;
        }

        .tag-purple {
            --tag-color: #8B5CF6;
            --tag-color-rgb: 139, 92, 246;
        }

        .tag-neon {
            display: inline-flex;
            align-items: center;
            font-size: 0.7rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            padding: 4px 14px;
            border-radius: 20px;
            margin-bottom: 18px;
            border: 1px solid rgba(var(--tag-color-rgb), 0.3);
            background: rgba(var(--tag-color-rgb), 0.1);
            color: var(--tag-color);
        }

        /* ================================================================
       FAQ
       ================================================================ */
        .section-faq {
            padding: 80px 0;
            background: var(--bg-dark);
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        }

        .faq-wrapper {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-item {
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        }

        .faq-item:first-child {
            border-top: 1px solid rgba(255, 255, 255, 0.06);
        }

        details {
            width: 100%;
        }

        summary {
            list-style: none;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 22px 0;
            font-size: 0.95rem;
            font-weight: 600;
            color: var(--text-white);
            cursor: pointer;
            gap: 16px;
        }

        summary::-webkit-details-marker {
            display: none;
        }

        summary::after {
            content: '+';
            font-size: 1.4rem;
            font-weight: 300;
            color: var(--text-gray);
            flex-shrink: 0;
            transition: transform 0.2s;
        }

        details[open] summary::after {
            transform: rotate(45deg);
            color: #EF4444;
        }

        .faq-answer {
            padding: 0 0 22px;
            font-size: 0.88rem;
            color: var(--text-gray);
            line-height: 1.75;
        }

        /* ================================================================
       CONTACT
       ================================================================ */
        .section-contact {
            padding: 72px 0 90px;
            background: var(--bg-darker);
            position: relative;
            overflow: hidden;
        }

        .section-contact::before {
            content: '';
            position: absolute;
            inset: 0;
            pointer-events: none;
            z-index: 0;
            background-image: linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
            background-size: 48px 48px;
            background-attachment: fixed;
            -webkit-mask-image: linear-gradient(to bottom, black 0%, black 88%, transparent 100%);
            mask-image: linear-gradient(to bottom, black 0%, black 88%, transparent 100%);
        }

        .section-contact .container-wide {
            position: relative;
            z-index: 1;
            max-width: 1300px;
        }

        .contact-right {
            background: var(--card-bg);
            border: 1px solid var(--border-light);
            border-radius: 20px;
            padding: 40px;
        }

        .a-form-group {
            display: flex;
            flex-direction: column;
            gap: 6px;
            margin-bottom: 16px;
        }

        .a-form-group label {
            font-size: 0.78rem;
            font-weight: 600;
            color: var(--text-muted);
            letter-spacing: 0.5px;
        }

        .a-form-input,
        .a-form-select,
        .a-form-textarea,
        .section-contact .wpcf7-form-control:not(.wpcf7-submit) {
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 8px;
            padding: 12px 16px;
            color: var(--text-white);
            font-family: var(--font-body);
            font-size: 0.9rem;
            transition: border-color 0.2s;
            width: 100%;
        }

        .a-form-input:focus,
        .a-form-select:focus,
        .a-form-textarea:focus,
        .section-contact .wpcf7-form-control:not(.wpcf7-submit):focus {
            outline: none;
            border-color: rgba(59, 130, 246, 0.5);
        }

        .a-form-input::placeholder,
        .a-form-textarea::placeholder,
        .section-contact .wpcf7-form-control::placeholder {
            color: #4B5563;
        }

        .a-form-textarea,
        .section-contact textarea.wpcf7-form-control {
            resize: vertical;
            min-height: 90px;
        }

        .a-form-select,
        .section-contact select.wpcf7-form-control {
            appearance: none;
            cursor: pointer;
        }

        .a-form-select option,
        .section-contact select.wpcf7-form-control option {
            background: #1a1d25;
        }

        .a-form-2col {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px;
        }

        .a-form-submit,
        .section-contact .wpcf7-submit {
            width: 100%;
            padding: 15px;
            background: var(--accent-blue);
            color: #fff;
            font-weight: 700;
            font-size: 0.95rem;
            border-radius: 10px;
            border: none;
            cursor: pointer;
            transition: all 0.2s;
            margin-top: 6px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }

        .a-form-submit:hover,
        .section-contact .wpcf7-submit:hover {
            box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.3);
            opacity: 0.92;
        }

        .a-form-notice {
            font-size: 0.74rem;
            color: #4B5563;
            text-align: center;
            margin-top: 12px;
            line-height: 1.5;
        }

        /* ================================================================
       FOOTER — identique à homepage-prototype.html
       ================================================================ */
        .footer-v2 {
            background: #000;
            border-top: 1px solid var(--border-light);
            padding: 70px 0 0;
            position: relative;
            z-index: 2;
        }

        .footer-v2 .container-wide {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 40px;
        }

        .footer-main {
            display: grid;
            grid-template-columns: 1.6fr 1fr 1fr 1.3fr;
            gap: 48px;
            padding-bottom: 56px;
        }

        .footer-brand .logo-container {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 24px;
        }

        .logo-icon {
            width: 60px;
            height: 45px;
            flex-shrink: 0;
        }

        .nn-line {
            stroke: #FFFFFF;
            stroke-width: 1px;
            stroke-linecap: round;
            fill: none;
        }

        .nn-node {
            fill: #FFFFFF;
            stroke: #FFFFFF;
            stroke-width: 1.5px;
        }

        .logo-sep {
            width: 1px;
            height: 40px;
            background: var(--logo-sep);
            flex-shrink: 0;
            margin: 0 10px 0 5px;
        }

        .logo-txt-block {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
        }

        .logo-brand {
            font-size: 18px;
            font-weight: 800;
            color: var(--text-white);
            line-height: 1;
        }

        .logo-slogan {
            font-size: 7px;
            font-weight: 700;
            color: var(--text-gray);
            letter-spacing: 3px;
            text-transform: uppercase;
            line-height: 1.3;
            margin-top: 6px;
        }

        .footer-contact-list {
            display: flex;
            flex-direction: column;
            gap: 10px;
            margin-bottom: 28px;
        }

        .footer-contact-list li {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 0.875rem;
            color: var(--text-gray);
        }

        .footer-contact-list svg {
            flex-shrink: 0;
            opacity: 0.6;
        }

        .footer-social {
            display: flex;
            gap: 10px;
        }

        .footer-social a {
            width: 38px;
            height: 38px;
            border: 1px solid rgba(255, 255, 255, 0.15);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-gray);
            transition: color 0.2s, border-color 0.2s;
        }

        .footer-social a:hover {
            color: var(--text-white);
            border-color: rgba(255, 255, 255, 0.45);
        }

        .footer-col-title {
            font-size: 0.8rem;
            font-weight: 700;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            color: var(--text-white);
            margin-bottom: 20px;
        }

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

        .footer-col-links a {
            font-size: 0.9rem;
            color: var(--text-gray);
            transition: color 0.2s;
        }

        .footer-col-links a:hover {
            color: var(--text-white);
        }

        .footer-bottom {
            border-top: 1px solid var(--border-light);
            padding: 20px 0;
        }

        .footer-bottom p {
            text-align: center;
            color: var(--text-muted);
            font-size: 0.82rem;
            margin: 0;
        }

        .phrase-signature {
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
            padding: 36px 24px;
            text-align: center;
        }

        .phrase-signature p {
            font-size: 1.05rem;
            font-weight: 600;
            color: rgba(255, 255, 255, 0.55);
            letter-spacing: 0.12em;
            text-transform: uppercase;
            margin: 0;
        }

        /* ================================================================
       RESPONSIVE
       ================================================================ */
        @media (max-width: 1200px) {
            .suites-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .suites-grid .suite-card-outer:has(.saas-cfo) {
                grid-column: 1 / -1;
                width: calc(50% - 15px);
                justify-self: center;
            }

            .pricing-grid {
                grid-template-columns: repeat(2, 1fr);
                max-width: 800px;
                margin: 40px auto 0;
            }

            .price-card.featured {
                grid-column: 1 / -1;
                max-width: 50%;
                justify-self: center;
            }

            .reassurance-grid {
                grid-template-columns: repeat(2, 1fr);
                max-width: 800px;
                margin: 0 auto;
                gap: 24px;
            }

            .roi-layout-3col {
                gap: 36px;
            }

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

            .andrea-hero-visual {
                display: none;
            }
        }

        @media (max-width: 1024px) {
            .sidenav {
                display: none;
            }

            .mobile-topbar {
                display: flex;
            }

            .nav-item,
            .nav-pill-andrea,
            .nav-pill-surm {
                width: 100%;
                text-align: center;
            }

            .nav-cta-client {
                margin: 4px 0 0;
                display: inline-block;
                width: 100%;
                text-align: center;
            }

            .nav-sep {
                display: none;
            }

            .about-layout {
                grid-template-columns: 1fr;
            }

            .roi-layout-3col {
                grid-template-columns: 1fr;
            }

            .footer-main {
                grid-template-columns: 1fr 1fr;
            }

            .journey-stepper::before {
                display: none;
            }
        }

        @media (max-width: 768px) {
            section {
                padding: 60px 0;
            }

            .andrea-hero-stats {
                display: none;
            }

            .suites-grid,
            .pricing-grid,
            .reassurance-grid {
                grid-template-columns: 1fr;
            }

            .suites-grid .suite-card-outer:has(.saas-cfo),
            .price-card.featured {
                width: 100%;
                max-width: 100%;
            }

            .about-stats {
                grid-template-columns: 1fr 1fr;
                text-align: center;
            }

            .about-layout {
                grid-template-columns: 1fr;
                gap: 32px;
                text-align: center;
            }

            .about-text {
                align-items: center;
                text-align: center;
                transform: none;
            }

            .about-text h2 {
                text-align: center;
            }

            .about-integ-logos {
                justify-content: center;
            }

            .contact-split {
                grid-template-columns: 1fr;
                gap: 40px;
            }

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

            .journey-stepper {
                grid-template-columns: 1fr;
                max-width: 300px;
                margin-left: auto;
                margin-right: auto;
                gap: 40px;
            }

            .journey-stepper::before {
                display: none;
            }

            .cal-ultimate-fix {
                height: 850px;
            }

            .roi-metrics {
                grid-template-columns: 1fr;
            }

            .andrea-hero h1 {
                letter-spacing: -1.5px;
            }
        }

        @media (max-width: 600px) {
            .footer-v2 .container-wide {
                padding: 0 24px;
            }
        }

        /* Fix overflow + centrage total section Audit Data Flash (mobile)
       1) min-width:0 sur enfants grid pour borner la colonne au viewport
       2) text-align:center sur les 3 colonnes et leur contenu interne */
        @media (max-width: 1024px) {
            .section-contact .contact-split {
                min-width: 0;
            }

            .section-contact .contact-left,
            .section-contact .contact-right,
            .section-contact .contact-founder-col {
                min-width: 0;
                max-width: 100%;
                overflow-wrap: break-word;
                word-wrap: break-word;
                text-align: center;
                align-items: center;
            }

            .section-contact .contact-left h2 {
                font-size: clamp(2rem, 7vw, 2.6rem);
                letter-spacing: -1px;
            }

            .section-contact .contact-pills {
                align-items: center;
            }

            .section-contact .contact-right {
                padding: 24px;
            }

            .section-contact .contact-right input,
            .section-contact .contact-right select,
            .section-contact .contact-right textarea {
                max-width: 100%;
                width: 100%;
                box-sizing: border-box;
                text-align: center;
            }

            .section-contact .contact-right label,
            .section-contact .a-form-group,
            .section-contact .a-form-group label {
                text-align: center;
            }

            .section-contact .a-form-2col {
                justify-items: center;
            }

            .section-contact .contact-founder-eyebrow,
            .section-contact .contact-founder-intro {
                text-align: center;
            }
        }
/* ==========================================================================
   PATCHS DE FINITION (Bordures, Descriptions Tarifs et Alignements)
   ========================================================================== */

/* 1) Correction Hover : Allume la bordure de la carte Trésorerie (490€) au survol */
.price-card.featured:hover {
    transform: translateY(-6px);
    border-color: var(--price-color);
}

/* 2) Correction Tarifs Mobile : Force l'affichage des descriptions dans le journey stepper */
@media (max-width: 768px) {
    .journey-desc {
        display: block !important;
        font-size: 0.9rem;
        line-height: 1.5;
        margin-bottom: 12px;
        padding: 0 10px;
    }
    .journey-time {
        display: block !important;
        margin-top: 8px;
    }
    .journey-step {
        padding: 0 15px;
    }
}

/* 3) Sécurité Illustrations Mobile : Empêche les boîtes d'illustrations de déborder si l'écran est très petit */
@media (max-width: 600px) {
    .illu-card {
        max-width: 100% !important;
    }
    .ic-box {
        padding: 16px !important;
    }
    .ic-row {
        gap: 10px !important;
        flex-wrap: wrap;
    }
    .ic-stat-val {
        font-size: 1.3rem !important;
    }
    .ic-seg-row {
        grid-template-columns: 85px 1fr !important;
    }
}