/* ═══════════════════════════════════════════════
           TOKENS
           ═══════════════════════════════════════════════ */
        :root {
            --navy: #0b1929;
            --navy-mid: #122240;
            --navy-light: #1a3258;
            --gold: #c9a54e;
            --gold-light: #ddb963;
            --gold-pale: rgba(201,165,78,0.10);
            --gold-glow: rgba(201,165,78,0.06);
            --cream: #f8f5ef;
            --cream-mid: #f0ece3;
            --white: #ffffff;
            --text: #1e1e1e;
            --text-mid: #555;
            --text-light: #7a7a7a;
            --border: rgba(0,0,0,0.07);
            --radius: 6px;
        }
        * { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; scroll-padding-top: 116px; }
        body.bar-hidden { scroll-padding-top: 80px; }
        body.bar-hidden nav { top: 0 !important; }
        body {
            font-family: 'Outfit', sans-serif;
            color: var(--text);
            background: var(--cream);
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
        }
        img { max-width: 100%; display: block; }

        /* ═══════════════════════════════════════════════
           ANIMATIONS
           ═══════════════════════════════════════════════ */
        .reveal {
            opacity: 0; transform: translateY(36px);
            transition: opacity 0.75s cubic-bezier(.23,1,.32,1),
                        transform 0.75s cubic-bezier(.23,1,.32,1);
        }
        .reveal.visible { opacity: 1; transform: translateY(0); }
        @keyframes fadeUp {
            from { opacity: 0; transform: translateY(28px); }
            to   { opacity: 1; transform: translateY(0); }
        }
        @keyframes pulse-dot { 0%,100%{opacity:1} 50%{opacity:.4} }
        @keyframes marquee { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }
        @keyframes announce-glow {
            0%, 100% { opacity: 1; }
            50% { opacity: .85; }
        }


        /* ── Témoignages ── */
        .temoignages {
            background: linear-gradient(160deg, #0d1f35 0%, var(--navy) 100%);
            padding: 5rem 0;
        }
        .temo-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.75rem;
        }
        .temo-card {
            background: rgba(255,255,255,.04);
            border: 1px solid rgba(201,165,78,.18);
            border-radius: 10px;
            padding: 2rem 2rem 1.6rem;
            display: flex;
            flex-direction: column;
            gap: 1.4rem;
            transition: border-color .3s, transform .25s;
        }
        .temo-card:hover {
            border-color: rgba(201,165,78,.45);
            transform: translateY(-3px);
        }
        .temo-icon { width: 28px; height: 28px; flex-shrink: 0; margin-bottom: .5rem; }
        .temo-quote { display: flex; flex-direction: column; flex: 1; }
        .temo-text {
            font-size: .92rem;
            line-height: 1.75;
            color: rgba(255,255,255,.8);
            font-style: italic;
            margin: 0;
        }
        .temo-author {
            display: flex;
            align-items: flex-start;
            gap: .9rem;
            padding-top: 1.2rem;
            border-top: 1px solid rgba(255,255,255,.08);
        }
        .temo-dot {
            width: 8px; height: 8px;
            border-radius: 50%;
            background: var(--gold);
            flex-shrink: 0;
            margin-top: 5px;
        }
        .temo-func {
            font-size: .82rem;
            font-weight: 600;
            color: var(--gold);
            letter-spacing: .4px;
        }
        .temo-etab {
            font-size: .77rem;
            color: rgba(255,255,255,.45);
            margin-top: .15rem;
        }
        @media (max-width: 768px) {
            .temo-grid { grid-template-columns: 1fr; }
        }


        /* ── Preuves sociales LinkedIn ── */
        .social-proof {
            background: var(--navy);
            padding: 4rem 0 4.5rem;
            border-top: 1px solid rgba(255,255,255,.06);
        }
        .sp-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
            margin-top: 2.5rem;
        }
        .sp-card {
            background: rgba(255,255,255,.03);
            border: 1px solid rgba(201,165,78,.15);
            border-radius: 10px;
            padding: 1.6rem 1.8rem 1.4rem;
            display: flex;
            flex-direction: column;
            gap: 1rem;
            transition: border-color .3s, transform .25s;
            text-decoration: none;
        }
        .sp-card:hover {
            border-color: rgba(201,165,78,.4);
            transform: translateY(-3px);
        }
        .sp-tag {
            display: inline-block;
            font-size: .65rem;
            font-weight: 700;
            letter-spacing: 1.2px;
            text-transform: uppercase;
            color: var(--gold);
            background: rgba(201,165,78,.1);
            padding: .25rem .7rem;
            border-radius: 3px;
            width: fit-content;
        }
        .sp-text {
            font-size: .88rem;
            line-height: 1.7;
            color: rgba(255,255,255,.75);
            flex: 1;
        }
        .sp-stats {
            display: flex;
            gap: 1.2rem;
            padding-top: .9rem;
            border-top: 1px solid rgba(255,255,255,.07);
            align-items: center;
        }
        .sp-stat {
            display: flex;
            align-items: center;
            gap: .35rem;
            font-size: .75rem;
            color: rgba(255,255,255,.45);
        }
        .sp-stat strong { color: rgba(255,255,255,.7); font-weight: 600; }
        .sp-cta-line {
            display: flex;
            align-items: center;
            gap: .4rem;
            font-size: .7rem;
            color: var(--gold);
            letter-spacing: .8px;
            text-transform: uppercase;
            font-weight: 600;
        }
        @media (max-width: 768px) {
            .sp-grid { grid-template-columns: 1fr; }
        }

        /* ═══════════════════════════════════════════════
           NAV
           ═══════════════════════════════════════════════ */
        /* ── Barre d'annonce ouvrage ── */
        .announce-bar {
            position: fixed; top: 0; left: 0; width: 100%; z-index: 200;
            background: linear-gradient(90deg, #0d1e38 0%, #122240 50%, #0d1e38 100%);
            animation: announce-glow 4s ease-in-out 3;
            border-bottom: 1px solid rgba(201,165,78,.25);
            padding: .55rem 1rem;
            display: flex; align-items: center; justify-content: center; gap: 1rem;
            transition: transform .35s ease, opacity .35s ease;
        }
        .announce-bar.hidden { transform: translateY(-100%); opacity: 0; pointer-events: none; }
        .announce-bar-dot {
            width: 6px; height: 6px; border-radius: 50%; background: var(--gold);
            animation: pulse-dot 1.8s ease infinite; flex-shrink: 0;
        }
        .announce-bar-text {
            font-size: .78rem; color: rgba(255,255,255,.75);
            font-weight: 400; letter-spacing: .2px;
        }
        .announce-bar-text strong { color: #fff; font-weight: 600; }
        .announce-bar-link {
            font-size: .78rem; font-weight: 700; color: var(--gold);
            text-decoration: none; white-space: nowrap;
            border-bottom: 1px solid rgba(201,165,78,.4);
            transition: border-color .3s, color .3s;
        }
        .announce-bar-link:hover { color: var(--gold-light); border-color: var(--gold-light); }
        .announce-bar-close {
            position: absolute; right: 1rem;
            background: none; border: none; cursor: pointer;
            color: rgba(255,255,255,.35); font-size: 1rem; line-height: 1;
            transition: color .3s; padding: .2rem .4rem;
        }
        .announce-bar-close:hover { color: rgba(255,255,255,.7); }
        @media (max-width: 768px) {
            .announce-bar { padding: .5rem 2.5rem .5rem .8rem; gap: .5rem; }
            .announce-bar-text { font-size: .7rem; }
            .announce-bar-text .ab-hide-mobile { display: none; }
        }

        nav {
            position: fixed; top: 36px; width: 100%; z-index: 100;
            padding: 1.1rem 2.5rem;
            display: flex; justify-content: space-between; align-items: center;
            transition: all .35s ease;
        }
        nav.scrolled {
            background: rgba(11,25,41,.97);
            backdrop-filter: blur(16px);
            padding: .75rem 2.5rem;
            box-shadow: 0 2px 24px rgba(0,0,0,.25);
        }
        .nav-logo {
            font-family: 'Playfair Display', serif;
            font-size: 1.25rem; font-weight: 700; color: #fff;
            letter-spacing: 1.5px; text-transform: uppercase;
        }
        .nav-logo span { color: var(--gold); }
        .nav-links { display: flex; gap: 2rem; list-style: none; }
        .nav-links a {
            color: rgba(255,255,255,.65); text-decoration: none;
            font-size: .8rem; font-weight: 500; letter-spacing: .8px;
            text-transform: uppercase; transition: color .3s; position: relative;
        }
        .nav-links a::after {
            content:''; position: absolute; bottom: -3px; left: 0;
            width: 0; height: 1.5px; background: var(--gold); transition: width .3s;
        }
        .nav-links a:hover { color: #fff; }
        .nav-links a:hover::after { width: 100%; }
        .nav-cta-small {
            background: var(--gold); color: var(--navy) !important;
            padding: .45rem 1.1rem; border-radius: var(--radius);
            font-weight: 600 !important; letter-spacing: .5px !important;
        }
        .nav-cta-small::after { display: none !important; }
        .nav-cta-small:hover { background: var(--gold-light); }
        .nav-burger {
            display: none; background: none; border: none; cursor: pointer;
            padding: .4rem; position: relative; z-index: 101;
        }
        .nav-burger span {
            display: block; width: 22px; height: 2px; background: #fff;
            margin: 5px 0; transition: all .3s;
        }
        .nav-burger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
        .nav-burger.active span:nth-child(2) { opacity: 0; }
        .nav-burger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
        @media (max-width: 1024px) {
            .nav-burger { display: block; }
            .nav-links {
                display: none; position: fixed; top: 0; left: 0;
                width: 100%; height: 100vh;
                background: rgba(11,25,41,.97); backdrop-filter: blur(16px);
                flex-direction: column; align-items: center;
                justify-content: center; gap: 1.8rem;
                z-index: 100;
            }
            .nav-links.open { display: flex; }
            .nav-links a { font-size: 1.1rem; }
            .nav-cta-small { padding: .6rem 1.5rem !important; font-size: .9rem !important; }
        }

        /* ═══════════════════════════════════════════════
           HERO — conversion-oriented
           ═══════════════════════════════════════════════ */
        .hero {
            min-height: 100vh; background: var(--navy);
            display: flex; align-items: center;
            position: relative; overflow: hidden;
            padding: 7rem 0 5rem;
        }
        .hero::before {
            content:''; position: absolute; inset: 0;
            background:
                radial-gradient(ellipse 70% 55% at 68% 35%, rgba(201,165,78,.05) 0%, transparent 70%),
                radial-gradient(ellipse 45% 70% at 10% 90%, rgba(26,50,88,.45) 0%, transparent 55%);
            pointer-events: none;
        }
        .hero-deco {
            position: absolute; border: 1px solid rgba(201,165,78,.05);
            border-radius: 50%; pointer-events: none;
        }
        .hero-deco.d1 { top: 6%; right: -6%; width: 520px; height: 520px; }
        .hero-deco.d2 { bottom: -12%; left: -8%; width: 380px; height: 380px; border-color: rgba(255,255,255,.02); }
        .hero-line { position: absolute; background: rgba(201,165,78,.035); }
        .hero-line.h { width: 100%; height: 1px; }
        .hero-line.v { height: 100%; width: 1px; }

        .hero-inner {
            position: relative; z-index: 2;
            max-width: 1280px; margin: 0 auto; width: 100%;
            padding: 0 3rem;
            display: grid; grid-template-columns: 1.2fr .8fr;
            gap: 4rem; align-items: center;
        }

        /* Left */
        .hero-badge {
            display: inline-flex; align-items: center; gap: .55rem;
            background: rgba(201,165,78,.08); border: 1px solid rgba(201,165,78,.2);
            padding: .45rem 1.1rem; border-radius: 50px;
            color: var(--gold); font-size: .72rem; font-weight: 600;
            letter-spacing: 1.5px; text-transform: uppercase;
            margin-bottom: 1.8rem;
            opacity:0; animation: fadeUp .7s .25s forwards;
        }
        .hero-badge .dot {
            width: 6px; height: 6px; background: var(--gold);
            border-radius: 50%; animation: pulse-dot 2s infinite;
        }
        .hero h1 {
            font-family: 'Playfair Display', serif;
            font-size: 3.2rem; font-weight: 800; color: #fff;
            line-height: 1.15; margin-bottom: 1.4rem;
            opacity:0; animation: fadeUp .7s .4s forwards;
        }
        .hero h1 em {
            font-style: italic; font-weight: 500;
            color: var(--gold); display: block;
            font-size: 2.6rem; margin-top: .2rem;
        }
        .hero-sub {
            font-size: 1.05rem; color: rgba(255,255,255,.5);
            line-height: 1.75; margin-bottom: 1.2rem; max-width: 540px;
            font-weight: 300;
            opacity:0; animation: fadeUp .7s .55s forwards;
        }
        .hero-proof {
            display: flex; gap: 1.8rem; margin-bottom: 2.2rem;
            opacity:0; animation: fadeUp .7s .65s forwards;
        }
        .hero-proof-item {
            display: flex; align-items: center; gap: .5rem;
            color: rgba(255,255,255,.45); font-size: .82rem; font-weight: 400;
        }
        .hero-proof-item svg { flex-shrink: 0; }
        a.hero-proof-item:hover { color: var(--gold); }
        .hero-actions {
            display: flex; gap: 1rem; align-items: center; flex-wrap: wrap;
            opacity:0; animation: fadeUp .7s .75s forwards;
        }
        .btn-primary {
            display: inline-flex; align-items: center; gap: .7rem;
            background: var(--gold); color: var(--navy);
            padding: .95rem 1.8rem; text-decoration: none;
            font-weight: 600; font-size: .85rem;
            letter-spacing: .8px; text-transform: uppercase;
            border-radius: var(--radius); border: none; cursor: pointer;
            transition: all .3s;
        }
        .btn-primary:hover {
            background: var(--gold-light); transform: translateY(-2px);
            box-shadow: 0 8px 28px rgba(201,165,78,.3);
        }
        .btn-primary svg { transition: transform .3s; }
        .btn-primary:hover svg { transform: translateX(3px); }
        .btn-ghost {
            display: inline-flex; align-items: center; gap: .6rem;
            color: rgba(255,255,255,.55); text-decoration: none;
            font-size: .85rem; font-weight: 500;
            padding: .95rem 1.4rem;
            border: 1px solid rgba(255,255,255,.12);
            border-radius: var(--radius); transition: all .3s;
        }
        .btn-ghost:hover {
            color: var(--gold); border-color: rgba(201,165,78,.3);
            background: rgba(201,165,78,.05);
        }

        /* Right — photo + stats */
        .hero-photo-wrapper {
            text-align: center; margin-bottom: 1.5rem;
        }
        .hero-photo {
            width: 160px; height: 160px;
            border-radius: 50%;
            border: 3px solid rgba(201,165,78,.35);
            box-shadow: 0 0 0 8px rgba(201,165,78,.08), 0 12px 40px rgba(0,0,0,.3);
            object-fit: cover;
            margin: 0 auto;
            display: block;
        }
        .hero-photo-name {
            font-family: 'Playfair Display', serif;
            font-size: 1.3rem; font-weight: 700; color: #fff;
            margin-top: 1rem; letter-spacing: .5px;
        }
        .hero-photo-title {
            font-size: .78rem; color: var(--gold);
            font-weight: 500; letter-spacing: 1px; text-transform: uppercase;
            margin-top: .3rem;
        }
        .hero-photo-container {
            position: relative; display: inline-block; cursor: pointer;
        }
        .hero-play-btn {
            position: absolute; bottom: 6px; right: 6px;
            width: 36px; height: 36px;
            background: rgba(201,165,78,.92);
            border-radius: 50%; border: none; cursor: pointer;
            display: flex; align-items: center; justify-content: center;
            box-shadow: 0 2px 8px rgba(0,0,0,.3);
            transition: transform .25s, background .25s;
            z-index: 2;
        }
        .hero-play-btn:hover { transform: scale(1.12); background: var(--gold); }
        .hero-play-btn svg { margin-left: 2px; }
        .video-modal-overlay {
            display: none; position: fixed; inset: 0;
            background: rgba(10,12,20,.88);
            z-index: 9999;
            align-items: center; justify-content: center;
            flex-direction: column; gap: 1rem;
            opacity: 0; transition: opacity .3s;
        }
        .video-modal-overlay.active { display: flex; opacity: 1; }
        .video-modal-content {
            width: 92%; max-width: 520px;
            border-radius: 12px; overflow: hidden;
            background: #000;
            box-shadow: 0 20px 60px rgba(0,0,0,.5);
        }
        .video-modal-content video { width: 100%; display: block; }
        .video-modal-close {
            background: rgba(255,255,255,.08);
            border: 1px solid rgba(255,255,255,.15);
            color: rgba(255,255,255,.7); padding: .45rem 1.4rem;
            border-radius: 50px; font-size: .8rem; cursor: pointer;
            letter-spacing: .5px; transition: all .25s;
        }
        .video-modal-close:hover {
            background: rgba(255,255,255,.15);
            color: #fff; border-color: rgba(255,255,255,.3);
        }
        .hero-stats {
            display: grid; grid-template-columns: 1fr 1fr;
            gap: 1rem;
            opacity:0; animation: fadeUp .7s .85s forwards;
        }
        .stat-card {
            background: rgba(255,255,255,.02);
            border: 1px solid rgba(255,255,255,.05);
            padding: 1.6rem 1.2rem; text-align: center;
            border-radius: var(--radius); transition: all .35s;
        }
        .stat-card:hover {
            background: rgba(201,165,78,.04);
            border-color: rgba(201,165,78,.15);
            transform: translateY(-3px);
        }
        .stat-card:nth-child(2), .stat-card:nth-child(4) { margin-top: 1rem; }
        .stat-num {
            font-family: 'Playfair Display', serif;
            font-size: 2.5rem; font-weight: 700; color: var(--gold); line-height: 1;
        }
        .stat-lbl {
            font-size: .7rem; color: rgba(255,255,255,.4);
            text-transform: uppercase; letter-spacing: 1.5px;
            font-weight: 500; margin-top: .35rem;
        }

        /* ═══════════════════════════════════════════════
           TRUST MARQUEE
           ═══════════════════════════════════════════════ */
        .trust-bar {
            background: var(--white);
            border-bottom: 1px solid var(--border);
            overflow: hidden; padding: 1.2rem 0;
        }
        .trust-track {
            display: flex; gap: 3.5rem; align-items: center;
            animation: marquee 28s linear infinite;
            width: max-content;
        }
        .trust-item {
            white-space: nowrap; font-size: .75rem; font-weight: 600;
            letter-spacing: 2px; text-transform: uppercase;
            color: var(--navy); opacity: .7;
            display: flex; align-items: center; gap: .5rem;
        }
        .trust-item .td { width: 4px; height: 4px; background: var(--gold); border-radius: 50%; flex-shrink: 0; }

        /* ═══════════════════════════════════════════════
           SHARED SECTION STYLES
           ═══════════════════════════════════════════════ */
        .container { max-width: 1200px; margin: 0 auto; }
        section { padding: 6rem 2.5rem; }
        .s-label {
            font-size: .7rem; font-weight: 700; letter-spacing: 3px;
            text-transform: uppercase; color: var(--gold); margin-bottom: .8rem;
        }
        .s-heading {
            font-family: 'Playfair Display', serif;
            font-size: 2.5rem; font-weight: 700; color: var(--navy);
            line-height: 1.18; margin-bottom: 1.2rem;
        }
        .s-desc {
            font-size: 1rem; color: var(--text-mid);
            line-height: 1.75; max-width: 620px; font-weight: 300;
        }

        /* ═══════════════════════════════════════════════
           POUR QUI
           ═══════════════════════════════════════════════ */
        .pour-qui { background: var(--white); }
        .pq-grid {
            margin-top: 3rem;
            display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem;
        }
        .pq-card {
            padding: 2rem 1.5rem; border: 1px solid var(--border);
            border-radius: var(--radius); transition: all .35s;
            position: relative; overflow: hidden;
        }
        .pq-card::after {
            content:''; position: absolute; bottom: 0; left: 0;
            width: 0; height: 3px; background: var(--gold);
            transition: width .35s;
        }
        .pq-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,.06); }
        .pq-card:hover::after { width: 100%; }
        .pq-icon {
            width: 44px; height: 44px; border-radius: 10px;
            background: var(--gold-pale);
            display: flex; align-items: center; justify-content: center;
            margin-bottom: 1.2rem;
        }
        .pq-icon svg { width: 20px; height: 20px; stroke: var(--gold); fill: none; stroke-width: 1.8; }
        .pq-card h3 {
            font-family: 'Playfair Display', serif;
            font-size: 1.15rem; font-weight: 700; color: var(--navy);
            margin-bottom: .6rem; line-height: 1.3;
        }
        .pq-card p { font-size: .88rem; color: var(--text-light); line-height: 1.6; font-weight: 300; }

        /* ═══════════════════════════════════════════════
           EXPERTISE IA — highlight banner
           ═══════════════════════════════════════════════ */
        .expertise-ia {
            background: var(--navy); position: relative; padding: 5rem 2.5rem;
        }
        .expertise-ia::before {
            content:''; position: absolute; inset: 0;
            background: radial-gradient(ellipse 60% 55% at 30% 50%, rgba(201,165,78,.06), transparent 65%);
            pointer-events: none;
        }
        .eia-inner {
            max-width: 1200px; margin: 0 auto; position: relative; z-index: 1;
            display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: center;
        }
        .eia-text .s-heading { color: #fff; }
        .eia-quote {
            font-family: 'Playfair Display', serif;
            font-size: 1.15rem; font-style: italic;
            color: rgba(255,255,255,.65); line-height: 1.7;
            border-left: 3px solid var(--gold); padding-left: 1.5rem;
            margin-top: 1.5rem;
        }
        .eia-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
        .eia-card {
            background: rgba(255,255,255,.03);
            border: 1px solid rgba(255,255,255,.06);
            border-radius: var(--radius); padding: 1.4rem; transition: all .3s;
        }
        .eia-card:hover {
            background: rgba(201,165,78,.05);
            border-color: rgba(201,165,78,.18); transform: translateY(-3px);
        }
        .eia-card h4 {
            font-family: 'Playfair Display', serif;
            font-size: 1rem; font-weight: 700; color: var(--gold); margin-bottom: .4rem;
        }
        .eia-card p { font-size: .82rem; color: rgba(255,255,255,.45); line-height: 1.55; font-weight: 300; }

        /* ═══════════════════════════════════════════════
           PROBLÈMES
           ═══════════════════════════════════════════════ */
        .problemes { background: var(--cream); }
        .prob-grid {
            margin-top: 3rem;
            display: grid; grid-template-columns: 1fr 1fr; gap: 1rem;
        }
        .prob-item {
            display: flex; gap: 1rem; align-items: flex-start;
            padding: 1.4rem 1.6rem;
            background: var(--white); border: 1px solid var(--border);
            border-radius: var(--radius); transition: all .3s;
        }
        .prob-item:hover { transform: translateX(4px); border-color: rgba(201,165,78,.25); }
        .prob-check {
            flex-shrink: 0; width: 28px; height: 28px;
            background: var(--gold-pale); border-radius: 50%;
            display: flex; align-items: center; justify-content: center;
            margin-top: 2px;
        }
        .prob-check svg { width: 14px; height: 14px; stroke: var(--gold); fill: none; stroke-width: 2.5; }
        .prob-item p { font-size: .92rem; color: var(--text); line-height: 1.55; }
        .prob-item strong { font-weight: 600; color: var(--navy); }

        /* ═══════════════════════════════════════════════
           OFFRES — 3 columns
           ═══════════════════════════════════════════════ */
        .offres { background: var(--navy); position: relative; }
        .offres::before {
            content:''; position: absolute; inset: 0;
            background: radial-gradient(ellipse 55% 50% at 75% 50%, rgba(201,165,78,.04), transparent 70%);
            pointer-events: none;
        }
        .offres-inner { position: relative; z-index: 1; }
        .offres .s-heading { color: #fff; }
        .offres .s-desc { color: rgba(255,255,255,.45); }
        .off-grid {
            margin-top: 3rem;
            display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
        }
        .off-card {
            background: rgba(255,255,255,.03);
            border: 1px solid rgba(255,255,255,.06);
            border-radius: var(--radius);
            padding: 2.2rem 1.8rem;
            transition: all .35s;
            display: flex; flex-direction: column;
        }
        .off-card:hover {
            background: rgba(201,165,78,.05);
            border-color: rgba(201,165,78,.18);
            transform: translateY(-5px);
        }
        .off-num {
            font-family: 'Playfair Display', serif;
            font-size: 3.2rem; font-weight: 800; color: rgba(201,165,78,.5);
            line-height: 1; margin-bottom: .8rem;
            -webkit-text-stroke: 1px rgba(201,165,78,.25);
        }
        .off-card h3 {
            font-family: 'Playfair Display', serif;
            font-size: 1.3rem; font-weight: 700; color: #fff;
            margin-bottom: .8rem;
        }
        .off-card ul { list-style: none; padding: 0; flex: 1; }
        .off-card li {
            position: relative; padding-left: 1rem;
            margin-bottom: .5rem; color: rgba(255,255,255,.55);
            font-size: .88rem; line-height: 1.55; font-weight: 300;
        }
        .off-card li::before {
            content:''; position: absolute; left: 0; top: .55rem;
            width: 4px; height: 4px; background: var(--gold); border-radius: 50%;
        }
        .off-cta {
            margin-top: 1.5rem;
            color: var(--gold); text-decoration: none;
            font-size: .82rem; font-weight: 600; letter-spacing: .5px;
            display: inline-flex; align-items: center; gap: .4rem;
            transition: gap .3s;
        }
        .off-cta:hover { gap: .7rem; }

        /* ═══════════════════════════════════════════════
           PROCESS — 3 steps
           ═══════════════════════════════════════════════ */
        .process { background: var(--white); }
        .proc-grid {
            margin-top: 3rem;
            display: grid; grid-template-columns: repeat(3, 1fr); gap: 0;
        }
        .proc-step {
            padding: 2.5rem 2rem; text-align: center;
            position: relative;
        }
        .proc-step:not(:last-child)::after {
            content:''; position: absolute; top: 50%; right: 0;
            width: 40px; height: 1px; background: var(--gold);
            transform: translateX(50%); z-index: 2;
        }
        .proc-num {
            width: 52px; height: 52px; border-radius: 50%;
            background: var(--gold); color: var(--navy);
            font-family: 'Playfair Display', serif;
            font-size: 1.3rem; font-weight: 700;
            display: flex; align-items: center; justify-content: center;
            margin: 0 auto 1.2rem;
        }
        .proc-step h3 {
            font-family: 'Playfair Display', serif;
            font-size: 1.15rem; font-weight: 700; color: var(--navy);
            margin-bottom: .5rem;
        }
        .proc-step p {
            font-size: .88rem; color: var(--text-light); line-height: 1.6; font-weight: 300;
        }

        /* ═══════════════════════════════════════════════
           CONFÉRENCES SIGNATURE
           ═══════════════════════════════════════════════ */
        .conferences { background: var(--cream-mid); }
        .conf-intro {
            max-width: 700px; margin: 0 auto 3rem;
            text-align: center; font-size: .95rem;
            line-height: 1.75; color: var(--text-mid); font-weight: 300;
        }
        .conf-intro p + p { margin-top: .5rem; }
        .conf-sub-d { font-size: 1rem; color: var(--text-mid); line-height: 1.7; max-width: 680px; margin: 0 auto; font-weight: 300; }
        .conf-sub-m { display: none; }
        .conf-grid {
            display: flex; flex-direction: column; gap: 1.4rem; margin-top: 3rem;
        }
        .conf-card {
            background: var(--white); border: 1px solid var(--border);
            border-radius: var(--radius); padding: 2.2rem 2.4rem 1.8rem;
            display: grid; grid-template-columns: 50px 1fr;
            gap: 1.4rem; align-items: start;
            position: relative; overflow: hidden; transition: all .35s;
        }
        .conf-card::before {
            content:''; position: absolute; top: 0; left: 0;
            width: 4px; height: 100%;
            background: linear-gradient(180deg, var(--gold), var(--gold-light));
            opacity: 0; transition: opacity .35s;
        }
        .conf-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 40px rgba(0,0,0,.06);
            border-color: rgba(201,165,78,.2);
        }
        .conf-card:hover::before { opacity: 1; }
        .conf-num {
            font-family: 'Playfair Display', serif;
            font-size: 2.8rem; font-weight: 800; color: var(--gold);
            opacity: .18; line-height: 1; text-align: center;
            transition: opacity .35s;
        }
        .conf-card:hover .conf-num { opacity: .45; }
        .conf-card-title {
            font-family: 'Playfair Display', serif;
            font-size: 1.3rem; font-weight: 700; color: var(--navy);
            line-height: 1.3; margin-bottom: .8rem;
        }
        .conf-problem {
            font-size: .88rem; color: var(--text); line-height: 1.7;
            margin-bottom: .4rem; font-weight: 300;
        }
        .conf-problem strong { color: var(--navy); font-weight: 600; }
        .conf-objective {
            font-size: .84rem; color: var(--navy); font-weight: 500;
            line-height: 1.6; padding-top: .6rem;
            border-top: 1px solid var(--border); margin-top: .5rem;
        }
        .conf-obj-label {
            font-size: .65rem; font-weight: 700; letter-spacing: 2px;
            text-transform: uppercase; color: var(--gold); margin-right: .3rem;
        }
        .conf-cta {
            display: inline-flex; align-items: center; gap: .4rem;
            font-size: .82rem; font-weight: 600; color: var(--navy);
            text-decoration: none; padding: .5rem 1.1rem;
            border: 1.5px solid var(--navy); border-radius: var(--radius);
            margin-top: .9rem; transition: all .3s; white-space: nowrap;
        }
        .conf-cta:hover { background: var(--navy); color: var(--white); }
        .conf-cta svg { width: 13px; height: 13px; transition: transform .3s; }
        .conf-cta:hover svg { transform: translateX(3px); }
        .conf-global {
            background: var(--navy); border-radius: var(--radius);
            padding: 2.8rem 3rem; text-align: center;
            position: relative; overflow: hidden; margin-top: 3rem;
        }
        .conf-global::before {
            content:''; position: absolute; top: -60%; right: -20%;
            width: 400px; height: 400px;
            background: radial-gradient(circle, rgba(201,165,78,.07) 0%, transparent 70%);
            pointer-events: none;
        }
        .conf-global p {
            font-size: .95rem; color: rgba(255,255,255,.8);
            line-height: 1.7; max-width: 620px; margin: 0 auto 1.6rem;
            position: relative; font-weight: 300;
        }
        .conf-global-btn {
            display: inline-flex; align-items: center; gap: .5rem;
            font-size: .86rem; font-weight: 600; color: var(--navy);
            background: var(--gold); text-decoration: none;
            padding: .8rem 1.8rem; border-radius: var(--radius);
            transition: all .3s; position: relative;
        }
        .conf-global-btn:hover {
            background: var(--gold-light); transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(201,165,78,.3);
        }
        .conf-global-btn svg { width: 14px; height: 14px; transition: transform .3s; }
        .conf-global-btn:hover svg { transform: translateX(3px); }

        /* ═══════════════════════════════════════════════
           DOMAINES D'INTERVENTION
           ═══════════════════════════════════════════════ */
        .domaines { background: var(--white); }
        .dom-intro {
            max-width: 700px; margin: 0 auto 3rem;
            text-align: center; font-size: .95rem;
            line-height: 1.75; color: var(--text-mid); font-weight: 300;
        }
        .dom-intro p + p { margin-top: .5rem; }
        .dom-groups {
            display: grid; grid-template-columns: repeat(3, 1fr);
            gap: 1.4rem; margin-top: 3rem;
        }
        .dom-group {
            background: var(--cream); border: 1px solid var(--border);
            border-radius: var(--radius); padding: 1.8rem 1.5rem 1.4rem;
            position: relative; overflow: hidden; transition: all .35s;
        }
        .dom-group::before {
            content:''; position: absolute; top: 0; left: 0;
            width: 100%; height: 3px; opacity: 0; transition: opacity .35s;
        }
        .dom-group:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 40px rgba(0,0,0,.06);
            border-color: rgba(201,165,78,.2);
        }
        .dom-group:hover::before { opacity: 1; }
        .dom-group--qvct::before { background: linear-gradient(90deg, var(--gold), var(--gold-light)); }
        .dom-group--lead::before { background: linear-gradient(90deg, var(--navy-light), #2a5580); }
        .dom-group--ia::before   { background: linear-gradient(90deg, #3a7ca5, #5ba0c8); }
        .dom-group-icon {
            width: 40px; height: 40px; border-radius: 10px;
            display: flex; align-items: center; justify-content: center;
            margin-bottom: .9rem;
        }
        .dom-group--qvct .dom-group-icon { background: var(--gold-pale); }
        .dom-group--lead .dom-group-icon { background: rgba(26,50,88,.08); }
        .dom-group--ia .dom-group-icon   { background: rgba(58,124,165,.08); }
        .dom-group-icon svg { width: 20px; height: 20px; fill: none; stroke-width: 1.8; }
        .dom-group--qvct .dom-group-icon svg { stroke: var(--gold); }
        .dom-group--lead .dom-group-icon svg { stroke: var(--navy-light); }
        .dom-group--ia .dom-group-icon svg   { stroke: #3a7ca5; }
        .dom-group-title {
            font-family: 'Playfair Display', serif;
            font-size: 1.15rem; font-weight: 700; color: var(--navy);
            margin-bottom: .8rem; line-height: 1.3;
        }
        .dom-chips { display: flex; flex-wrap: wrap; gap: .45rem; list-style: none; }
        .dom-chip {
            font-size: .76rem; font-weight: 500; color: var(--text);
            background: var(--white); border: 1px solid var(--border);
            border-radius: 20px; padding: .35rem .75rem; line-height: 1.4;
            transition: all .25s;
        }
        .dom-chip:hover {
            border-color: var(--gold); color: var(--navy);
            background: var(--gold-pale);
        }
        .preuves { background: var(--cream); }
        .preuves-grid {
            margin-top: 3rem;
            display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
        }
        .preuve-card {
            background: var(--white); border: 1px solid var(--border);
            border-radius: var(--radius); padding: 2rem;
            text-align: center; transition: all .3s;
        }
        .preuve-card:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(0,0,0,.05); }
        .preuve-badge {
            display: inline-block;
            background: var(--gold-pale); border: 1px solid rgba(201,165,78,.2);
            padding: .3rem .9rem; border-radius: 50px;
            font-size: .7rem; font-weight: 600; color: var(--gold);
            letter-spacing: 1px; text-transform: uppercase;
            margin-bottom: 1rem;
        }
        .preuve-card h3 {
            font-family: 'Playfair Display', serif;
            font-size: 1.6rem; font-weight: 700; color: var(--navy);
            margin-bottom: .4rem;
        }
        .preuve-card p { font-size: .85rem; color: var(--text-light); line-height: 1.5; }
        .preuve-card .preuve-link {
            display: inline-flex; align-items: center; gap: .35rem;
            color: var(--gold); text-decoration: none; font-size: .78rem;
            font-weight: 600; margin-top: .8rem; letter-spacing: .3px;
            transition: gap .3s;
        }
        .preuve-card .preuve-link:hover { gap: .6rem; }
        .pub-link { color: inherit; text-decoration: none; transition: color .2s; }
        .pub-link:hover h4 { color: var(--gold-light); }
        .pub-link:hover { color: var(--gold-light); }

        /* ═══════════════════════════════════════════════
           PUBLICATIONS — condensed
           ═══════════════════════════════════════════════ */
        .publications { background: var(--navy); position: relative; }
        .publications::before {
            content:''; position: absolute; inset: 0;
            background: radial-gradient(ellipse 50% 50% at 80% 50%, rgba(201,165,78,.03), transparent);
            pointer-events: none;
        }
        .pub-inner { position: relative; z-index: 1; }
        .publications .s-heading { color: #fff; }
        .publications .s-desc { color: rgba(255,255,255,.4); }
        .pub-list { margin-top: 2.5rem; display: flex; flex-direction: column; gap: .8rem; }
        .pub-item {
            display: grid; grid-template-columns: 60px 1fr auto;
            gap: 1.2rem; align-items: center;
            padding: 1.2rem 1.5rem;
            background: rgba(255,255,255,.02);
            border: 1px solid rgba(255,255,255,.04);
            border-radius: var(--radius); transition: all .25s;
        }
        .pub-item:hover { background: rgba(201,165,78,.04); border-color: rgba(201,165,78,.12); }
        .pub-yr {
            font-family: 'Playfair Display', serif;
            font-size: 1.5rem; font-weight: 700; color: var(--gold);
        }
        .pub-info h4 {
            font-family: 'Playfair Display', serif;
            font-size: 1.05rem; font-weight: 600; color: #fff; margin-bottom: .15rem;
        }
        .pub-info p { color: rgba(255,255,255,.35); font-size: .82rem; font-weight: 300; }
        .pub-tag {
            background: rgba(201,165,78,.1); border: 1px solid rgba(201,165,78,.2);
            color: var(--gold); padding: .2rem .7rem;
            font-size: .65rem; font-weight: 600; letter-spacing: .8px;
            text-transform: uppercase; white-space: nowrap; border-radius: 3px;
        }

        /* ═══════════════════════════════════════════════
           ECOSYSTEM
           ═══════════════════════════════════════════════ */
        .ecosystem { background: var(--white); }
        .eco-layout {
            margin-top: 3rem;
            display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center;
        }
        .eco-text p {
            font-size: .95rem; color: var(--text-mid); line-height: 1.75; font-weight: 300;
            margin-bottom: 1.5rem;
        }
        .eco-link {
            display: inline-flex; align-items: center; gap: .5rem;
            color: var(--gold); text-decoration: none; font-weight: 600;
            font-size: .9rem; border-bottom: 1px solid rgba(201,165,78,.3);
            padding-bottom: .2rem; transition: all .3s;
        }
        .eco-link:hover { border-color: var(--gold); }
        .eco-stats {
            display: grid; grid-template-columns: 1fr 1fr; gap: 1rem;
        }
        .eco-stat {
            background: var(--cream); padding: 1.5rem; border-radius: var(--radius);
            text-align: center; border: 1px solid var(--border);
        }
        .eco-stat-num {
            font-family: 'Playfair Display', serif;
            font-size: 2.2rem; font-weight: 700; color: var(--gold); line-height: 1;
        }
        .eco-stat-lbl { font-size: .75rem; color: var(--text-light); margin-top: .3rem; font-weight: 400; }

        /* ═══════════════════════════════════════════════
           CONTACT FORM
           ═══════════════════════════════════════════════ */
        .contact {
            background: linear-gradient(160deg, var(--navy) 0%, var(--navy-mid) 100%);
            position: relative;
        }
        .contact::before {
            content:''; position: absolute; inset: 0;
            background: radial-gradient(circle at 30% 60%, rgba(201,165,78,.06), transparent 50%);
            pointer-events: none;
        }
        .contact-inner {
            position: relative; z-index: 1;
            display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start;
        }
        .contact .s-heading { color: #fff; }
        .contact-left p {
            color: rgba(255,255,255,.45); font-size: .95rem;
            line-height: 1.75; font-weight: 300; margin-bottom: 2rem;
        }
        .contact-trust {
            display: flex; flex-direction: column; gap: .8rem;
        }
        .contact-trust-item {
            display: flex; align-items: center; gap: .7rem;
            color: rgba(255,255,255,.5); font-size: .85rem; font-weight: 400;
        }
        .contact-trust-item svg { flex-shrink: 0; stroke: var(--gold); }

        .form-card {
            background: rgba(255,255,255,.04);
            border: 1px solid rgba(255,255,255,.08);
            border-radius: var(--radius);
            padding: 2.5rem;
        }
        .form-card h3 {
            font-family: 'Playfair Display', serif;
            font-size: 1.3rem; font-weight: 700; color: #fff;
            margin-bottom: .5rem;
        }
        .form-card .form-sub {
            color: rgba(255,255,255,.4); font-size: .85rem;
            margin-bottom: 1.8rem; font-weight: 300;
        }
        .form-row { margin-bottom: 1rem; }
        .form-row label {
            display: block; color: rgba(255,255,255,.5);
            font-size: .78rem; font-weight: 500; letter-spacing: .5px;
            text-transform: uppercase; margin-bottom: .4rem;
        }
        .form-row input, .form-row select, .form-row textarea {
            width: 100%; padding: .75rem 1rem;
            background: rgba(255,255,255,.05);
            border: 1px solid rgba(255,255,255,.1);
            border-radius: var(--radius);
            color: #fff; font-family: 'Outfit', sans-serif;
            font-size: .9rem; font-weight: 300;
            transition: border-color .3s;
            outline: none;
        }
        .form-row input::placeholder, .form-row textarea::placeholder {
            color: rgba(255,255,255,.25);
        }
        .form-row input:focus, .form-row select:focus, .form-row textarea:focus {
            border-color: rgba(201,165,78,.4);
        }
        .form-row select option { background: var(--navy); color: #fff; }
        .form-row select optgroup {
            background: var(--navy-mid); color: var(--gold);
            font-size: .72rem; font-weight: 700;
            letter-spacing: .8px; text-transform: uppercase;
        }
        .form-row select optgroup option {
            font-size: .88rem; font-weight: 300;
            text-transform: none; letter-spacing: 0;
            color: #fff; padding-left: .5rem;
        }
        .form-row textarea { min-height: 80px; resize: vertical; }
        .form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
        .form-submit {
            width: 100%; margin-top: .5rem;
            padding: 1rem;
            background: var(--gold); color: var(--navy);
            font-family: 'Outfit', sans-serif;
            font-weight: 600; font-size: .9rem;
            letter-spacing: .8px; text-transform: uppercase;
            border: none; border-radius: var(--radius); cursor: pointer;
            transition: all .3s;
        }
        .form-submit:hover {
            background: var(--gold-light);
            box-shadow: 0 6px 24px rgba(201,165,78,.3);
        }
        .form-note {
            margin-top: .8rem; text-align: center;
            color: rgba(255,255,255,.25); font-size: .72rem; font-weight: 300;
        }

        /* ═══════════════════════════════════════════════
           FOOTER
           ═══════════════════════════════════════════════ */
        footer {
            background: #060d18; padding: 3rem 2.5rem;
        }
        .footer-inner {
            max-width: 1200px; margin: 0 auto;
            display: flex; justify-content: space-between; align-items: center;
        }
        .footer-brand {
            font-family: 'Playfair Display', serif;
            font-size: 1.15rem; font-weight: 700; color: #fff;
        }
        .footer-brand span { color: var(--gold); }
        .footer-links { display: flex; gap: 1.8rem; }
        .footer-links a {
            color: rgba(255,255,255,.6); text-decoration: none;
            font-size: .8rem; transition: color .3s;
        }
        .footer-links a:hover { color: var(--gold); }
        .footer-copy {
            color: rgba(255,255,255,.6); font-size: .72rem;
            max-width: 1200px; margin: 1.5rem auto 0;
            text-align: center;
            border-top: 1px solid rgba(255,255,255,.05);
            padding-top: 1.5rem;
        }

        /* ═══════════════════════════════════════════════
           RESPONSIVE
           ═══════════════════════════════════════════════ */
        @media (max-width: 1024px) {
            .hero-inner { grid-template-columns: 1fr; }
            .hero h1 { font-size: 2.6rem; }
            .hero h1 em { font-size: 2.1rem; }
            .hero-stats { grid-template-columns: repeat(4, 1fr); }
            .stat-card:nth-child(2), .stat-card:nth-child(4) { margin-top: 0; }
            .pq-grid { grid-template-columns: 1fr 1fr; }
            .off-grid { grid-template-columns: 1fr; }
            .contact-inner { grid-template-columns: 1fr; }
            .eco-layout { grid-template-columns: 1fr; }
            .eia-inner { grid-template-columns: 1fr; }
            .preuves-grid { grid-template-columns: repeat(2,1fr) !important; }
            .dom-groups { grid-template-columns: 1fr 1fr; }
        }
        @media (max-width: 768px) {
            nav { padding: .9rem 1.2rem; }
            section { padding: 4rem 1.2rem; }
            .hero { padding: 7rem 0 3rem; min-height: auto; }
            .hero-inner { padding: 0 1.2rem; }
            .hero h1 { font-size: 2rem; }
            .hero h1 em { font-size: 1.7rem; }
            .hero-proof { flex-direction: column; gap: .6rem; }
            .hero-stats { grid-template-columns: 1fr 1fr; }
            .hero-actions { flex-direction: column; align-items: stretch; gap: .8rem; }
            .hero-actions .btn-primary { justify-content: center; }
            .hero-actions .btn-ghost { justify-content: center; }
            .s-heading { font-size: 2rem; }
            .pq-grid { grid-template-columns: 1fr; }
            .prob-grid { grid-template-columns: 1fr; }
            .proc-grid { grid-template-columns: 1fr; }
            .proc-step:not(:last-child)::after { display: none; }
            .preuves-grid { grid-template-columns: 1fr !important; }
            .conf-sub-d { display: none; }
            .conf-sub-m { display: block; font-size: .92rem; color: var(--text-mid); max-width: 600px; margin: 0 auto; line-height: 1.65; font-weight: 300; }
            .conf-card { grid-template-columns: 1fr; padding: 1.6rem 1.3rem 1.3rem; gap: 0; }
            .conf-num { font-size: 2rem; text-align: left; margin-bottom: .2rem; }
            .conf-card-title { font-size: 1.15rem; }
            .conf-global { padding: 2rem 1.3rem; }
            .dom-groups { grid-template-columns: 1fr; }
            .eia-cards { grid-template-columns: 1fr; }
            .expertise-ia { padding: 3.5rem 1.2rem; }
            .eco-stats { grid-template-columns: 1fr 1fr; }
            .pub-item { grid-template-columns: 1fr; gap: .5rem; }
            .pub-tag { justify-self: start; }
            .form-grid-2 { grid-template-columns: 1fr; }
            .footer-inner { flex-direction: column; gap: 1rem; text-align: center; }
            .footer-links { flex-wrap: wrap; justify-content: center; }
        }
        /* ═══════════════════════════════════════════════
           BLOG WEKA — VITRINE
           ═══════════════════════════════════════════════ */
        .blog-weka { background: var(--cream); }
        /* Subtle gold separator between light sections */
        .section-sep {
            display: block; width: 60px; height: 1.5px;
            background: var(--gold); opacity: .35;
            margin: 0 auto; border: none;
        }
        .bw-grid {
            display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem;
            margin-top: .5rem;
        }
        .bw-card {
            background: var(--white); border: 1px solid var(--border);
            border-radius: var(--radius); padding: 1.5rem 1.4rem 1.3rem;
            display: flex; flex-direction: column; transition: all .3s;
        }
        .bw-card:hover {
            border-color: rgba(201,165,78,.3);
            box-shadow: 0 8px 24px rgba(0,0,0,.06);
            transform: translateY(-2px);
        }
        .bw-tag {
            display: inline-block; font-size: .62rem; font-weight: 600;
            letter-spacing: .8px; text-transform: uppercase;
            padding: .2rem .6rem; border-radius: 3px;
            margin-bottom: .7rem; width: fit-content;
        }
        .bw-ia { background: rgba(59,130,246,.1); color: #2563eb; }
        .bw-mgt { background: rgba(201,165,78,.12); color: #9a7d2e; }
        .bw-qvct { background: rgba(236,72,153,.08); color: #be185d; }
        .bw-qual { background: rgba(16,185,129,.1); color: #059669; }
        .bw-risk { background: rgba(239,68,68,.08); color: #dc2626; }
        .bw-rh { background: rgba(139,92,246,.1); color: #7c3aed; }
        .bw-medico { background: rgba(245,158,11,.1); color: #b45309; }
        .bw-card h4 {
            font-family: 'Playfair Display', serif;
            font-size: .95rem; font-weight: 700; color: var(--navy);
            line-height: 1.35; margin-bottom: .5rem;
        }
        .bw-card p {
            font-size: .82rem; color: var(--text-mid); line-height: 1.6;
            font-weight: 300; flex: 1; margin-bottom: .8rem;
        }
        .bw-link {
            display: inline-flex; align-items: center; gap: .3rem;
            font-size: .75rem; font-weight: 600; color: var(--gold);
            text-decoration: none; transition: color .2s;
        }
        .bw-link:hover { color: var(--gold-light); }
        .bw-card-footer {
            display: flex; justify-content: space-between; align-items: center;
            padding-top: .7rem; border-top: 1px solid var(--border); margin-top: auto;
        }
        .bw-date {
            font-size: .72rem; color: var(--text-light); font-weight: 400;
        }
        .bw-cta {
            display: inline-flex; align-items: center; gap: .5rem;
            background: var(--navy); color: #fff; padding: .75rem 2rem;
            border-radius: var(--radius); font-size: .85rem; font-weight: 600;
            text-decoration: none; transition: all .3s;
        }
        .bw-cta:hover { background: var(--navy-mid); }
        @media (max-width: 900px) {
            .bw-grid { grid-template-columns: repeat(2, 1fr); }
        }
        @media (max-width: 600px) {
            .bw-grid { grid-template-columns: 1fr; }
        }
        /* ═══════════════════════════════════════════════
           LEGAL MODALS
           ═══════════════════════════════════════════════ */
        .legal-overlay {
            display: none; position: fixed; inset: 0; z-index: 9999;
            background: rgba(11,25,41,.85); backdrop-filter: blur(12px);
            justify-content: center; align-items: flex-start;
            padding: 4rem 1.5rem; overflow-y: auto;
        }
        .legal-overlay.open { display: flex; }
        .legal-modal {
            background: var(--white); border-radius: 8px;
            max-width: 780px; width: 100%; padding: 3rem 3rem 2.5rem;
            position: relative; box-shadow: 0 20px 60px rgba(0,0,0,.3);
        }
        .legal-modal h2 {
            font-family: 'Playfair Display', serif; font-size: 1.6rem;
            font-weight: 700; color: var(--navy); margin-bottom: 1.5rem;
        }
        .legal-modal h3 {
            font-size: .95rem; font-weight: 600; color: var(--navy);
            margin: 1.6rem 0 .5rem;
        }
        .legal-modal p, .legal-modal li {
            font-size: .88rem; line-height: 1.75; color: var(--text-mid);
        }
        .legal-modal ul { margin: .5rem 0 .5rem 1.2rem; }
        .legal-close {
            position: absolute; top: 1.2rem; right: 1.2rem;
            background: none; border: none; cursor: pointer;
            font-size: 1.4rem; color: var(--text-mid); transition: color .3s;
        }
        .legal-close:hover { color: var(--navy); }
        @media (max-width: 768px) {
            .legal-modal { padding: 2rem 1.5rem; }
        }

        /* ── Lancement ouvrage LEH ── */
        .ouvrage { background: var(--navy); position: relative; overflow: hidden; }
        .ouvrage::before {
            content: ''; position: absolute; inset: 0;
            background: radial-gradient(ellipse at 70% 50%, rgba(201,165,78,.07) 0%, transparent 60%);
            pointer-events: none;
        }
        .ouvrage-inner {
            display: grid; grid-template-columns: 260px 1fr; gap: 4rem; align-items: center;
            position: relative; z-index: 1;
        }
        /* Real cover image */
        .ouvrage-cover { display: flex; align-items: center; justify-content: center; }
        .book-img-wrap {
            position: relative; display: inline-block;
            filter: drop-shadow(-8px 16px 32px rgba(0,0,0,.55))
                    drop-shadow(-2px 4px 8px rgba(201,165,78,.15));
            transition: transform .35s cubic-bezier(.23,1,.32,1), filter .35s;
        }
        .book-img-wrap:hover {
            transform: translateY(-6px) rotate(-1deg);
            filter: drop-shadow(-12px 24px 40px rgba(0,0,0,.6))
                    drop-shadow(-2px 4px 8px rgba(201,165,78,.2));
        }
        .book-img-wrap img {
            width: 210px; height: auto;
            border-radius: 2px 6px 6px 2px;
            display: block;
        }
        /* Tranche gauche simulée */
        .book-img-wrap::before {
            content: '';
            position: absolute; left: -6px; top: 2px; bottom: 2px; width: 6px;
            background: linear-gradient(to right, rgba(201,165,78,.4), rgba(201,165,78,.08));
            border-radius: 2px 0 0 2px;
            transform: skewY(-0.5deg);
        }
        /* Nouveauté badge */
        .ouvrage-badge {
            display: inline-flex; align-items: center; gap: .5rem;
            background: rgba(201,165,78,.1); border: 1px solid rgba(201,165,78,.28);
            color: var(--gold); padding: .3rem .9rem; border-radius: 3px;
            font-size: .7rem; font-weight: 700; letter-spacing: .8px;
            text-transform: uppercase; margin-bottom: 1.2rem;
        }
        .ouvrage-badge::before {
            content: ''; width: 6px; height: 6px; border-radius: 50%;
            background: var(--gold); animation: pulse-dot 1.8s ease infinite; flex-shrink: 0;
        }
        /* Content */
        .ouvrage-title {
            font-family: 'Playfair Display', serif; font-size: 1.85rem;
            font-weight: 700; color: #fff; line-height: 1.25; margin-bottom: .8rem;
        }
        .ouvrage-title em { color: var(--gold); font-style: italic; }
        .ouvrage-subtitle {
            display: block; font-size: 1rem; color: rgba(255,255,255,.55);
            font-family: 'Outfit', sans-serif; font-weight: 400; margin-top: .35rem;
        }
        .ouvrage-meta {
            display: flex; gap: 1.4rem; flex-wrap: wrap;
            font-size: .8rem; color: rgba(255,255,255,.45); margin-bottom: 1.2rem;
        }
        .ouvrage-meta span { display: flex; align-items: center; gap: .4rem; }
        .ouvrage-desc {
            font-size: .95rem; color: rgba(255,255,255,.72); line-height: 1.78;
            margin-bottom: 1rem; max-width: 560px;
        }
        .ouvrage-prefaciers {
            font-size: .8rem; color: rgba(255,255,255,.4); margin-bottom: 1.5rem;
        }
        .ouvrage-prefaciers strong { color: rgba(255,255,255,.62); }
        /* CTAs */
        .ouvrage-ctas { display: flex; gap: .9rem; flex-wrap: wrap; margin-bottom: .8rem; }
        .btn-ouvrage-primary {
            display: inline-flex; align-items: center; gap: .55rem;
            background: var(--gold); color: var(--navy);
            padding: .72rem 1.4rem; border-radius: var(--radius);
            font-weight: 700; font-size: .88rem; text-decoration: none;
            transition: background .3s, transform .2s; white-space: nowrap;
        }
        .btn-ouvrage-primary:hover { background: var(--gold-light); transform: translateY(-2px); }
        .btn-ouvrage-ghost {
            display: inline-flex; align-items: center; gap: .55rem;
            border: 1px solid rgba(201,165,78,.38); color: var(--gold);
            padding: .72rem 1.4rem; border-radius: var(--radius);
            font-weight: 600; font-size: .88rem; text-decoration: none;
            transition: border-color .3s, background .3s; white-space: nowrap;
        }
        .btn-ouvrage-ghost:hover { border-color: var(--gold); background: rgba(201,165,78,.08); }
        .ouvrage-price { font-size: .76rem; color: rgba(255,255,255,.38); }
        .ouvrage-price strong { color: var(--gold); }
        /* Pont livre → services */
        .ouvrage-pont {
            margin-top: 2rem; padding-top: 1.6rem;
            border-top: 1px solid rgba(201,165,78,.1);
            font-size: .86rem; color: rgba(255,255,255,.45); line-height: 1.72;
            max-width: 560px;
        }
        /* Micro-CTA auteur avant footer */
        .auteur-cta { background: var(--cream-mid); text-align: center; padding: 3.5rem 0; }
        .auteur-cta h3 {
            font-family: 'Playfair Display', serif; font-size: 1.5rem;
            color: var(--navy); margin-bottom: .6rem; line-height: 1.35;
        }
        .auteur-cta p { font-size: .9rem; color: var(--text-mid); max-width: 520px; margin: 0 auto 1.5rem; line-height: 1.65; }
        @media (max-width: 1024px) {
            .ouvrage-inner { grid-template-columns: 180px 1fr; gap: 2.5rem; }
            .book-img-wrap img { width: 170px; }
        }
        @media (max-width: 768px) {
            .ouvrage-inner { grid-template-columns: 1fr; gap: 2rem; }
            .ouvrage-cover { justify-content: flex-start; }
            .book-img-wrap img { width: 140px; }
            .ouvrage-title { font-size: 1.4rem; }
            .ouvrage-ctas { flex-direction: column; }
            .btn-ouvrage-primary, .btn-ouvrage-ghost { justify-content: center; }
        }
    


@media (max-width: 768px) {
    .cta-diagnostic { padding: 1.5rem 1.2rem !important; margin: 2rem auto !important; }
}



/* ── Variables autonomes (fallback si hors index.html) ── */
.jlsc { --navy:#0b1929; --gold:#c9a54e; --gold2:#ddb963; --cream:#f0ece3; }

/* ── Section ── */
.jlsc { padding:5rem 0; background:var(--cream-mid,#f0ece3); }
.jlsc-inner { max-width:640px; margin:0 auto; padding:0 1.5rem; }

/* ── Header section ── */
.jlsc-hd { text-align:center; margin-bottom:2.5rem; }

/* ── Shell fixe 560×560 ── */
#jlsc-cv {
  width:100%; max-width:560px;
  aspect-ratio:1/1;
  position:relative; overflow:hidden;
  background:#0b1929;
  border:1px solid rgba(201,165,78,.2);
  border-radius:6px;
  box-shadow:0 20px 60px rgba(11,25,41,.2);
  margin:0 auto;
}

/* ── Slides ── */
.jlsc-sl {
  position:absolute; inset:0;
  display:none; flex-direction:column;
  padding:clamp(22px,5%,36px) clamp(24px,6%,38px) clamp(18px,4%,28px);
  font-family:'Outfit',sans-serif;
}
.jlsc-sl.on { display:flex; }

/* ── Éléments internes ── */
.jlsc-row1 { display:flex; justify-content:space-between; align-items:center; margin-bottom:14px; }
.jlsc-tag  { font-size:clamp(9px,1.8vw,11px); font-weight:600; letter-spacing:2px; color:#c9a54e; text-transform:uppercase; }
.jlsc-num  { font-size:clamp(9px,1.7vw,11px); font-weight:600; letter-spacing:2px; color:rgba(201,165,78,.42); }
.jlsc-rule { width:38px; height:2px; background:#c9a54e; margin-bottom:16px; flex-shrink:0; }

.jlsc-ttl  {
  font-family:'Playfair Display',serif;
  font-size:clamp(16px,4vw,26px);
  font-weight:800; line-height:1.2; color:#fff;
  margin-bottom:14px; flex-shrink:0;
}
.jlsc-ttl.cover { font-size:clamp(20px,5vw,32px); }

.jlsc-bod  { font-size:clamp(11px,2.2vw,14px); line-height:1.65; color:rgba(255,255,255,.78); }

.jlsc-lst  { list-style:none; display:flex; flex-direction:column; gap:10px; }
.jlsc-lst li { display:flex; gap:9px; font-size:clamp(11px,2.2vw,13px); line-height:1.55; color:rgba(255,255,255,.82); align-items:flex-start; }
.jlsc-mk   { color:#c9a54e; flex-shrink:0; font-size:clamp(12px,2.4vw,15px); line-height:1.4; }

.jlsc-box  { margin-top:18px; padding:11px 14px; border-left:2.5px solid #c9a54e; background:rgba(201,165,78,.06); }
.jlsc-box p { font-size:clamp(10px,2vw,13px); color:rgba(255,255,255,.65); font-style:italic; line-height:1.55; }

.jlsc-ft   {
  margin-top:auto; padding-top:11px;
  border-top:1px solid rgba(201,165,78,.15);
  display:flex; justify-content:space-between; align-items:flex-end;
  flex-shrink:0;
}
.jlsc-fn   { font-size:clamp(8px,1.6vw,10px); font-weight:700; letter-spacing:1.5px; color:#c9a54e; text-transform:uppercase; }
.jlsc-fsub { font-size:clamp(7px,1.3vw,9px);  color:rgba(255,255,255,.25); margin-top:2px; }
.jlsc-fu   { font-size:clamp(7px,1.3vw,9px);  color:rgba(255,255,255,.28); }

/* ── Navigation ── */
.jlsc-nav  { display:flex; align-items:center; justify-content:space-between; margin-top:12px; max-width:560px; margin-left:auto; margin-right:auto; }
.jlsc-btn  {
  background:none; border:1px solid rgba(201,165,78,.3);
  color:#c9a54e; cursor:pointer; border-radius:3px;
  padding:6px 16px; font-size:12px; font-family:'Outfit',sans-serif;
  transition:background .15s;
}
.jlsc-btn:hover    { background:rgba(201,165,78,.09); }
.jlsc-btn:disabled { opacity:.2; cursor:default; }
.jlsc-dots { display:flex; gap:6px; align-items:center; }
.jlsc-dot  {
  width:7px; height:7px; border-radius:50%;
  background:rgba(201,165,78,.22); border:none;
  cursor:pointer; padding:0; transition:all .2s;
}
.jlsc-dot.on { background:#c9a54e; width:18px; border-radius:4px; }
.jlsc-hint { font-size:11px; color:var(--text-light,#7a7a7a); text-align:center; margin-top:6px; max-width:560px; margin-left:auto; margin-right:auto; }

/* Back-to-top button */
.back-to-top {
    position: fixed; bottom: 2rem; right: 2rem;
    width: 48px; height: 48px; border-radius: 50%;
    border: 2px solid var(--gold); background: var(--navy); color: var(--gold);
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 2px 8px rgba(0,0,0,.25);
    cursor: pointer; z-index: 9999;
    opacity: 0; visibility: hidden;
    transition: opacity .3s, visibility .3s, background .3s, color .3s, transform .3s;
}
.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover {
    background: var(--gold); color: var(--navy);
    transform: translateY(-3px);
}
@media(max-width:768px){
    .back-to-top { width: 40px; height: 40px; bottom: 1rem; right: auto; left: 1rem; }
    .back-to-top.visible { opacity: 1; }
}
        /* ── Étude de cas ── */
        .home-section { padding: 4rem 0; }
        .cta-link {
            color: var(--navy); font-weight: 600; font-size: .92rem;
            text-decoration: none; border-bottom: 2px solid var(--gold);
            padding-bottom: 2px; transition: border-color .3s, color .3s;
        }
        .cta-link:hover { color: var(--gold); }
