        /* ─── Couleurs officielles HANDICODE ─── */
        :root {
            --hc-navy:   #1B2F6E;
            --hc-red:    #C8102E;
            --hc-gray:   #6D6E71;
            --hc-dark:   #12234F;
            --hc-light:  #EEF1F8;
        }

        /* ─── Smooth scroll global ─── */
        html { scroll-behavior: smooth; }

        /* ─── Containers pleine largeur ─── */
        .max-w-7xl { max-width: 1520px !important; }
        .max-w-6xl { max-width: 1380px !important; }
        .max-w-5xl { max-width: 1240px !important; }
        /* Prose/articles conservent leur largeur réduite */
        .max-w-4xl { max-width:  860px !important; }
        .max-w-3xl { max-width:  720px !important; }
        .max-w-2xl { max-width:  600px !important; }
        /* Padding latéral plus serré sur grand écran */
        @media (min-width: 1024px) {
            .lg\:px-8 { padding-left: 2.5rem !important; padding-right: 2.5rem !important; }
        }

        /* ─── Nav : transition au scroll ─── */
        #main-nav {
            transition: height 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
        }
        #main-nav.nav-scrolled {
            box-shadow: 0 4px 24px rgba(27,47,110,0.12);
            background: rgba(255,255,255,0.98) !important;
        }
        #nav-logo { transition: height 0.3s ease; }
        #main-nav.nav-scrolled #nav-logo { height: 52px; }
        #nav-inner { transition: height 0.3s ease; }
        #main-nav.nav-scrolled #nav-inner { height: 56px; }

        /* ─── Reveal au scroll ─── */
        .reveal {
            opacity: 0;
            transform: translateY(28px);
            transition: opacity 0.7s cubic-bezier(.4,0,.2,1), transform 0.7s cubic-bezier(.4,0,.2,1);
        }
        .reveal.visible { opacity: 1; transform: translateY(0); }
        .reveal-left  { opacity:0; transform:translateX(-32px); transition: opacity 0.7s cubic-bezier(.4,0,.2,1), transform 0.7s cubic-bezier(.4,0,.2,1); }
        .reveal-left.visible { opacity:1; transform:translateX(0); }
        .reveal-right { opacity:0; transform:translateX(32px);  transition: opacity 0.7s cubic-bezier(.4,0,.2,1), transform 0.7s cubic-bezier(.4,0,.2,1); }
        .reveal-right.visible { opacity:1; transform:translateX(0); }
        .reveal-d1 { transition-delay:.08s }
        .reveal-d2 { transition-delay:.16s }
        .reveal-d3 { transition-delay:.24s }
        .reveal-d4 { transition-delay:.32s }

        /* ─── Button shine sweep ─── */
        .btn-shine { position:relative; overflow:hidden; }
        .btn-shine::after {
            content:''; position:absolute; top:-50%; left:-80%;
            width:50%; height:200%;
            background:linear-gradient(to right, transparent, rgba(255,255,255,0.28), transparent);
            transform:skewX(-20deg);
            transition:left .55s ease;
        }
        .btn-shine:hover::after { left:130%; }

        /* ─── Card hover lift ─── */
        .card-lift {
            transition: transform 0.3s cubic-bezier(.4,0,.2,1), box-shadow 0.3s cubic-bezier(.4,0,.2,1);
        }
        .card-lift:hover {
            transform: translateY(-6px);
            box-shadow: 0 20px 48px rgba(27,47,110,0.14);
        }

        /* ─── Gradient text ─── */
        .text-gradient {
            background: linear-gradient(135deg, #C8102E 0%, #E84060 50%, #C8102E 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        /* ─── Glassmorphism ─── */
        .glass {
            background: rgba(255,255,255,0.08);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border: 1px solid rgba(255,255,255,0.14);
        }

        /* ─── Animated gradient border on card hover ─── */
        .card-gradient-border {
            position: relative;
            border: 2px solid transparent;
            transition: border-color 0.3s ease;
        }
        .card-gradient-border::before {
            content:''; position:absolute; inset:-2px; border-radius:inherit;
            background: linear-gradient(135deg, var(--hc-navy), var(--hc-red));
            z-index:-1; opacity:0; transition:opacity 0.3s ease;
        }
        .card-gradient-border:hover::before { opacity:1; }
        .card-gradient-border:hover { border-color:transparent; }

        /* ─── Stats pulse ─── */
        @keyframes pulse-slow { 0%,100%{opacity:1} 50%{opacity:.7} }
        .pulse-dot { animation: pulse-slow 2s ease-in-out infinite; }

        /* ─── Hero shimmer nacré ─── */
        @keyframes nacreShift {
            0%   { opacity:.18; background-position:0% 50%; }
            50%  { opacity:.28; background-position:100% 50%; }
            100% { opacity:.18; background-position:0% 50%; }
        }
        .nacre-overlay {
            background-size: 300% 300%;
            animation: nacreShift 6s ease-in-out infinite;
        }

        /* ─── Accessibilité ─── */
        .skip-link {
            position:absolute; left:-9999px; top:0; z-index:100002;
            background:#12234F; color:#fff; padding:12px 20px; font-weight:800; font-size:.85rem;
            text-decoration:none; border-radius:0 0 12px 0;
        }
        .skip-link:focus { left:0; }
        a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible,
        textarea:focus-visible, [tabindex]:focus-visible, summary:focus-visible {
            outline: 3px solid #E84060; outline-offset: 2px; border-radius: 4px;
        }
        /* contraste renforcé des petits libellés secondaires */
        .hc-sub-strong { color:#5B6B86 !important; }

        /* ─── Dropdown smooth ─── */
        .dropdown-menu {
            opacity:0; transform:translateY(-6px) scale(0.97);
            transition:opacity .2s ease, transform .2s ease;
            pointer-events:none;
        }
        /* pont invisible : comble le gap bouton↔menu pour que le survol ne se rompe pas */
        .dropdown-menu::before {
            content:''; position:absolute; left:0; right:0; top:-10px; height:12px;
        }
        .group:hover .dropdown-menu,
        .group.open .dropdown-menu {
            opacity:1; transform:translateY(0) scale(1);
            pointer-events:auto;
        }
        .group.open button > svg { transform: rotate(180deg); }

        /* ─── Footer link hover bar ─── */
        .footer-link {
            position:relative; display:inline-block;
            color:#8CAED8; text-decoration:none;
            transition:color .2s ease;
        }
        .footer-link::after {
            content:''; position:absolute; left:0; bottom:-2px;
            width:0; height:1px; background:white;
            transition:width .25s ease;
        }
        .footer-link:hover { color:white !important; }
        .footer-link:hover::after { width:100%; }

        /* ─── Section divider wave ─── */
        .wave-divider svg { display:block; }

        /* ─── HERO section ─── */
        .hc-hero-section {
            background: #12234F;
            min-height: 620px;
            position: relative;
        }
        .hc-hero-image {
            width: 100%;
        }
        @media (min-width: 1024px) {
            .hc-hero-image {
                width: 70%;
            }
        }

        /* ─── Stats section grid ─── */
        .hc-stats-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
        }
        .hc-stat-item:nth-child(odd) {
            border-right: 1px solid rgba(255,255,255,.10);
        }
        .hc-stat-item:nth-child(3),
        .hc-stat-item:nth-child(4) {
            border-top: 1px solid rgba(255,255,255,.10);
        }
        @media (min-width: 768px) {
            .hc-stats-grid {
                grid-template-columns: repeat(4, 1fr);
            }
            .hc-stat-item:nth-child(3),
            .hc-stat-item:nth-child(4) {
                border-top: none;
            }
            .hc-stat-item:nth-child(odd) {
                border-right: 1px solid rgba(255,255,255,.10);
            }
            .hc-stat-item:nth-child(4) {
                border-right: none;
            }
        }

        /* ─── Hover buttons ─── */
        .btn-shine:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 32px rgba(27,47,110,0.28);
        }

        /* ══════════════════════════════════════════════
           COUCHE FX PREMIUM (globale)
        ══════════════════════════════════════════════ */
        html { scroll-behavior: smooth; }

        /* Barre de progression au scroll */
        #fx-progress {
            position: fixed; top: 0; left: 0; height: 3px; width: 0;
            background: linear-gradient(90deg, #1B2F6E 0%, #7C5CFF 50%, #C8102E 100%);
            z-index: 9999; box-shadow: 0 0 12px rgba(124,92,255,.6);
            transition: width .12s linear; pointer-events: none;
        }

        /* Grain cinématographique */
        #fx-grain {
            position: fixed; inset: 0; z-index: 9997; pointer-events: none; opacity: .035;
            mix-blend-mode: overlay;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
        }

        /* Curseur signature (desktop fin uniquement) */
        #fx-cursor, #fx-dot { position: fixed; top: 0; left: 0; z-index: 9998; pointer-events: none;
            border-radius: 50%; transform: translate(-50%,-50%); opacity: 0; }
        #fx-cursor { width: 34px; height: 34px; border: 1.5px solid rgba(27,47,110,.55);
            transition: width .25s ease, height .25s ease, border-color .25s ease, background .25s ease, opacity .3s ease; }
        #fx-dot { width: 6px; height: 6px; background: #C8102E; transition: opacity .3s ease; }
        body.fx-hover #fx-cursor { width: 56px; height: 56px; border-color: rgba(200,16,46,.6); background: rgba(200,16,46,.08); }
        body.fx-hover #fx-dot { opacity: 0; }

        /* Halo lumineux qui suit la souris sur les cartes premium */
        .fx-sheen { position: absolute; inset: 0; z-index: 2; pointer-events: none; border-radius: inherit;
            opacity: 0; transition: opacity .35s ease;
            background: radial-gradient(220px circle at var(--mx,50%) var(--my,50%), rgba(124,92,255,.14), transparent 60%); }
        .fx-card-host:hover .fx-sheen { opacity: 1; }

        /* Reveal : flou progressif en plus du fondu */
        .reveal, .reveal-left, .reveal-right { filter: blur(7px); }
        .reveal.visible, .reveal-left.visible, .reveal-right.visible { filter: blur(0); }


        @media (hover: none), (pointer: coarse) {
            #fx-cursor, #fx-dot { display: none !important; }
        }
        @media (prefers-reduced-motion: reduce) {
            html { scroll-behavior: auto; }
            #fx-grain, #fx-cursor, #fx-dot, .fx-sheen, .fx-aurora { display: none !important; }
            .reveal, .reveal-left, .reveal-right { filter: none !important; }
            .fx-marquee-track { animation: none !important; }
        }

        /* ── Aurores animées (sections sombres) ── */
        .fx-aurora {
            position: absolute; inset: -25%; z-index: 0; pointer-events: none; opacity: .55;
            background:
                radial-gradient(38% 38% at 18% 28%, rgba(124,92,255,.55), transparent 62%),
                radial-gradient(34% 34% at 82% 22%, rgba(80,160,255,.42), transparent 62%),
                radial-gradient(44% 44% at 62% 82%, rgba(200,16,46,.38), transparent 62%);
            filter: blur(46px); mix-blend-mode: screen;
            animation: fx-aurora 20s ease-in-out infinite;
        }
        @keyframes fx-aurora {
            0%,100% { transform: translate3d(0,0,0) scale(1); }
            33%     { transform: translate3d(4%,-3%,0) scale(1.12); }
            66%     { transform: translate3d(-3%,3%,0) scale(1.06); }
        }

        /* ── Bandeau défilant (marquee) ── */
        .fx-marquee { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
        .fx-marquee-track { display: inline-flex; align-items: center; white-space: nowrap; animation: fx-marq 34s linear infinite; will-change: transform; }
        .fx-marquee:hover .fx-marquee-track { animation-play-state: paused; }
        .fx-marquee-item { display: inline-flex; align-items: center; gap: 1.5rem; padding: 0 1.5rem; }
        @keyframes fx-marq { to { transform: translateX(-50%); } }

        /* ── Assistant HANDICODE flottant ── */
        #hc-assistant { position: fixed; bottom: 24px; right: 24px; z-index: 9995; }
        #hc-asst-btn {
            position: relative; width: 60px; height: 60px; border-radius: 18px; border: none; cursor: pointer;
            background: linear-gradient(135deg, #C8102E, #E84060); color: #fff;
            display: flex; align-items: center; justify-content: center;
            box-shadow: 0 12px 34px rgba(200,16,46,.42); transition: transform .3s cubic-bezier(.4,0,.2,1), border-radius .3s ease;
        }
        #hc-asst-btn:hover { transform: scale(1.07) rotate(-4deg); }
        #hc-assistant.open #hc-asst-btn { border-radius: 50%; transform: scale(.92); }
        #hc-asst-btn .hc-asst-ping { position: absolute; top: -3px; right: -3px; width: 14px; height: 14px; border-radius: 50%;
            background: #34d399; border: 2px solid #fff; }
        #hc-asst-btn .hc-asst-ping::after { content: ''; position: absolute; inset: -2px; border-radius: 50%;
            border: 2px solid #34d399; animation: hc-asst-ping 1.8s ease-out infinite; }
        @keyframes hc-asst-ping { 0% { transform: scale(.6); opacity: .9; } 100% { transform: scale(2.4); opacity: 0; } }
        #hc-assistant.dismissed .hc-asst-ping { display: none; }

        #hc-asst-panel {
            position: absolute; bottom: 74px; right: 0; width: 330px; max-width: calc(100vw - 48px);
            background: rgba(255,255,255,.92); backdrop-filter: blur(16px); border: 1px solid #E6EBF5;
            border-radius: 20px; box-shadow: 0 24px 60px rgba(18,35,79,.24); overflow: hidden;
            transform-origin: bottom right; transform: scale(.9) translateY(12px); opacity: 0; visibility: hidden;
            transition: transform .32s cubic-bezier(.34,1.4,.5,1), opacity .25s ease, visibility .32s;
        }
        #hc-assistant.open #hc-asst-panel { transform: scale(1) translateY(0); opacity: 1; visibility: visible; }
        .hc-asst-head { display: flex; align-items: center; gap: 11px; padding: 16px 18px;
            background: linear-gradient(135deg, #1B2F6E, #12234F); color: #fff; }
        .hc-asst-av { width: 38px; height: 38px; border-radius: 11px; background: rgba(255,255,255,.14);
            display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
        .hc-asst-close { margin-left: auto; background: rgba(255,255,255,.1); border: none; color: #fff; cursor: pointer;
            width: 28px; height: 28px; border-radius: 8px; display: flex; align-items: center; justify-content: center; transition: background .2s; }
        .hc-asst-close:hover { background: rgba(255,255,255,.22); }
        .hc-asst-body { padding: 14px; }
        .hc-asst-act { display: flex; align-items: center; gap: 12px; padding: 11px 13px; border-radius: 13px;
            text-decoration: none; color: #12234F; transition: background .2s, transform .2s; margin-bottom: 4px; }
        .hc-asst-act:hover { background: #F0F4FF; transform: translateX(3px); }
        .hc-asst-act .ic { width: 36px; height: 36px; border-radius: 10px; background: #F0F4FF; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
        .hc-asst-act:hover .ic { background: #fff; }
        .hc-asst-act .tx { font-weight: 700; font-size: .86rem; }
        .hc-asst-act .sb { font-size: .72rem; color: #6D6E71; font-weight: 500; }
        .hc-asst-foot { display: flex; border-top: 1px solid #EEF1F8; }
        .hc-asst-foot a { flex: 1; text-align: center; padding: 12px; font-size: .8rem; font-weight: 700; text-decoration: none; color: #1B2F6E; transition: background .2s; }
        .hc-asst-foot a:hover { background: #F7F9FF; }
        .hc-asst-foot a + a { border-left: 1px solid #EEF1F8; }
        .hc-asst-foot a.wa { color: #fff; background: #25D366; display: flex; align-items: center; justify-content: center; gap: 6px; }
        .hc-asst-foot a.wa:hover { background: #1ebe5b; }

        /* Chat */
        .hc-asst-chat { height: 230px; overflow-y: auto; padding: 14px; display: flex; flex-direction: column; gap: 8px; background: #F7F9FF; }
        .hc-asst-chat::-webkit-scrollbar { width: 6px; }
        .hc-asst-chat::-webkit-scrollbar-thumb { background: #cfd8ea; border-radius: 3px; }
        .hc-msg { max-width: 85%; padding: 9px 13px; border-radius: 14px; font-size: .84rem; line-height: 1.5; word-wrap: break-word; }
        .hc-msg.bot { align-self: flex-start; background: #fff; color: #1f2937; border: 1px solid #E6EBF5; border-bottom-left-radius: 4px; }
        .hc-msg.user { align-self: flex-end; background: linear-gradient(135deg,#1B2F6E,#12234F); color: #fff; border-bottom-right-radius: 4px; }
        .hc-msg a { color: #1B2F6E; font-weight: 700; text-decoration: underline; }
        .hc-typing { align-self: flex-start; display: inline-flex; gap: 4px; padding: 12px 14px; background: #fff; border: 1px solid #E6EBF5; border-radius: 14px; }
        .hc-typing span { width: 6px; height: 6px; border-radius: 50%; background: #9DB4FF; animation: hc-typing 1.2s infinite; }
        .hc-typing span:nth-child(2) { animation-delay: .2s; } .hc-typing span:nth-child(3) { animation-delay: .4s; }
        @keyframes hc-typing { 0%,60%,100% { opacity: .3; transform: translateY(0); } 30% { opacity: 1; transform: translateY(-3px); } }
        .hc-asst-sugg { display: flex; flex-wrap: wrap; gap: 6px; padding: 10px 12px 4px; background: #F7F9FF; }
        .hc-asst-sugg button { font-size: .72rem; font-weight: 700; color: #1B2F6E; background: #fff; border: 1px solid #DDEAFF; border-radius: 20px; padding: 6px 11px; cursor: pointer; transition: all .2s; }
        .hc-asst-sugg button:hover { background: #1B2F6E; color: #fff; border-color: #1B2F6E; }
        .hc-asst-inputbar { display: flex; gap: 8px; padding: 10px 12px; background: #F7F9FF; border-top: 1px solid #EEF1F8; }
        .hc-asst-inputbar input { flex: 1; border: 1px solid #DDEAFF; border-radius: 11px; padding: 9px 13px; font-size: .84rem; outline: none; background: #fff; color: #12234F; }
        .hc-asst-inputbar input:focus { border-color: #1B2F6E; }
        #hc-chat-send { width: 38px; height: 38px; flex-shrink: 0; border: none; border-radius: 11px; background: linear-gradient(135deg,#C8102E,#E84060); cursor: pointer; display: flex; align-items: center; justify-content: center; }
        #hc-chat-send:hover { filter: brightness(1.05); }

        @media (max-width: 600px) { #hc-assistant { bottom: 16px; right: 16px; } }

        /* ── Transition de page (rideau) ── */
        html::before {
            content: ''; position: fixed; inset: 0; z-index: 100000; pointer-events: none;
            background: linear-gradient(135deg, #1B2F6E 0%, #12234F 55%, #0C1838 100%);
            opacity: 0; visibility: hidden;
            transition: opacity .4s ease, visibility .4s ease;
        }
        html::after {
            content: ''; position: fixed; top: 50%; left: 50%; width: 44px; height: 44px;
            margin: -22px 0 0 -22px; border-radius: 50%; z-index: 100001; pointer-events: none;
            border: 3px solid rgba(255,255,255,.15); border-top-color: #E84060;
            opacity: 0; transition: opacity .3s ease;
        }
        html.fx-cover::before { opacity: 1; visibility: visible; }
        html.fx-cover::after  { opacity: 1; animation: fx-spin .8s linear infinite; }
        @keyframes fx-spin { to { transform: rotate(360deg); } }
        @media (prefers-reduced-motion: reduce) {
            html::before, html::after { display: none !important; }
        }

        /* ─────────────────────────────────────────────
           SEO : classes extraites des styles inline répétés
           (déclarations identiques aux styles inline d'origine,
            aucun changement visuel)
        ───────────────────────────────────────────── */

        /* Cartes réalisations ($works, ×18) */
        .hc-work { display:flex;flex-direction:column;border-radius:20px;overflow:hidden;text-decoration:none;background:rgba(255,255,255,.04);border:1px solid rgba(255,255,255,.1);box-shadow:0 12px 40px rgba(0,0,0,.25);transition:transform .4s cubic-bezier(.4,0,.2,1),box-shadow .4s,border-color .4s; }
        .hc-work__shot { position:relative;height:188px;overflow:hidden; }
        .hc-work__img { position:absolute;inset:0;width:100%;height:100%;object-fit:cover;object-position:top center;z-index:1; }
        .hc-work__bar { position:relative;z-index:2;display:flex;align-items:center;gap:8px;padding:10px 12px;background:rgba(0,0,0,.22); }
        .hc-dot { width:9px;height:9px;border-radius:50%; }
        .hc-dot--r { background:#FF5F57; }
        .hc-dot--y { background:#FEBC2E; }
        .hc-dot--g { background:#28C840; }
        .hc-work__url { flex:1;margin-left:6px;background:rgba(255,255,255,.16);border-radius:7px;padding:4px 11px;font-size:.7rem;color:rgba(255,255,255,.92);font-weight:600;letter-spacing:.01em;white-space:nowrap;overflow:hidden;text-overflow:ellipsis; }
        .hc-work__arrow { position:absolute;right:14px;bottom:14px;z-index:2;opacity:.9; }
        .hc-work__body { padding:1.5rem 1.5rem 1.6rem;display:flex;flex-direction:column;flex:1; }
        .hc-work__cat { font-size:.64rem;font-weight:800;letter-spacing:.1em;text-transform:uppercase;color:#9DB4FF;margin-bottom:.5rem; }
        .hc-work__desc { font-size:.86rem;color:#C7D6F0;line-height:1.7;margin:0 0 1.1rem;flex:1; }
        .hc-work__tags { display:flex;flex-wrap:wrap;gap:.4rem;margin-bottom:1.1rem; }
        .hc-chip { font-size:.66rem;font-weight:700;padding:4px 10px;border-radius:20px;background:rgba(255,255,255,.07);color:#B9CBEC;border:1px solid rgba(255,255,255,.12); }
        .hc-work__foot { display:flex;align-items:center;justify-content:space-between;gap:.5rem; }
        .hc-work-go { display:inline-flex;align-items:center;gap:7px;font-size:.84rem;font-weight:700;color:#fff;transition:gap .25s; }
        .hc-work__access { font-size:.64rem;color:#7E93BC;text-align:right; }

        /* Cartes solutions ($solutions, ×4) */
        .hc-sol { text-decoration:none;border-radius:22px;overflow:hidden;box-shadow:0 4px 20px rgba(27,47,110,.08); }
        .hc-sol__head { position:relative;padding:2rem 1.75rem 1.75rem;overflow:hidden; }
        .hc-sol__c1 { position:absolute;top:-30px;right:-30px;width:110px;height:110px;border-radius:50%;background:rgba(255,255,255,.07); }
        .hc-sol__c2 { position:absolute;bottom:-20px;left:50%;width:80px;height:80px;border-radius:50%;background:rgba(255,255,255,.05); }
        .hc-sol__tag { display:inline-block;font-size:.62rem;font-weight:800;letter-spacing:.1em;color:rgba(255,255,255,.75);text-transform:uppercase;border:1px solid rgba(255,255,255,.22);border-radius:20px;padding:3px 9px;margin-bottom:1.5rem; }
        .hc-sol__ic { width:62px;height:62px;border-radius:18px;background:rgba(255,255,255,.18);display:flex;align-items:center;justify-content:center;transition:transform .3s ease; }
        .hc-sol__body { background:white;padding:1.5rem 1.75rem;flex:1;display:flex;flex-direction:column; }
        .hc-sol__title { font-weight:800;color:#0F172A;font-size:.98rem;margin-bottom:.55rem;line-height:1.3; }
        .hc-sol__desc { font-size:.82rem;color:#6D6E71;line-height:1.7;flex:1;margin-bottom:1.25rem; }
        .hc-sol__more { display:inline-flex;align-items:center;gap:6px;font-size:.8rem;font-weight:700;transition:gap .25s ease; }

        /* Cartes articles blog ($latestPosts) */
        .hc-post { text-decoration:none;border:1.5px solid #EEF1F8; }
        .hc-post__thumb { height:196px;overflow:hidden; }
        .hc-post__img { width:100%;height:100%;object-fit:cover;transition:transform .7s ease; }
        .hc-post__thumb--ph { height:196px;background:linear-gradient(135deg,#EEF1F8 0%,#dce5f5 100%);display:flex;align-items:center;justify-content:center; }
        .hc-post__body { padding:1.5rem;display:flex;flex-direction:column;flex:1; }
        .hc-post__meta { display:flex;align-items:center;gap:8px;margin-bottom:.75rem; }
        .hc-post__cat { font-size:.7rem;font-weight:700;padding:3px 10px;border-radius:20px;background:#EEF1F8;color:#1B2F6E; }
        .hc-post__date { font-size:.7rem;color:#9BA8C0; }
        .hc-post__title { font-weight:800;color:#0F172A;font-size:.95rem;line-height:1.45;flex:1;margin-bottom:.75rem;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden; }
        .hc-post__exc { font-size:.82rem;color:#9BA8C0;line-height:1.6;margin-bottom:1rem;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden; }
        .hc-post__more { display:flex;align-items:center;gap:6px;font-size:.83rem;font-weight:700;color:#C8102E; }

        /* Nav desktop : liens/boutons du méga-menu */
        .hc-nav-item { display:flex;align-items:center;padding:6px 12px;border-radius:8px;font-size:.82rem;font-weight:800;letter-spacing:.05em;text-transform:uppercase;color:#374151;text-decoration:none;transition:all .2s ease; }
        .hc-nav-item:hover { color:#1B2F6E;background:#F0F4FF; }
        .hc-nav-item--btn { gap:5px;background:transparent;border:0;cursor:pointer; }
        .hc-nav-pro { display:inline-flex;align-items:center;justify-content:center;width:34px;height:34px;border-radius:8px;margin-right:12px;color:#C2CADA;text-decoration:none;transition:all .2s ease; }
        .hc-nav-pro:hover { color:#1B2F6E;background:#F0F4FF; }
        /* Nav mobile */
        .hc-mnav { display:block;padding:9px 4px;font-size:.72rem;font-weight:800;letter-spacing:.08em;text-transform:uppercase;color:#374151;text-decoration:none; }
        .hc-mnav-sub { display:block;padding:6px 4px 6px 16px;font-size:.7rem;color:#9BA8C0;text-decoration:none; }

        /* Méga-menu : items de dropdown */
        .hc-menu-label { padding:6px 16px 8px;font-size:.62rem;font-weight:800;letter-spacing:.12em;color:#9BA8C0;text-transform:uppercase; }
        .hc-menu-ico { width:34px;height:34px;border-radius:10px;flex-shrink:0;display:flex;align-items:center;justify-content:center; }
        .hc-menu-ico--navy { background:#1B2F6E12; }
        .hc-menu-ico--red { background:#C8102E12; }
        .hc-menu-title { font-size:.82rem;font-weight:700;color:#111827; }
        .hc-menu-sub { font-size:.72rem;color:#9BA8C0;margin-top:1px; }
        .hc-reddot { width:6px;height:6px;border-radius:50%;background:#C8102E;flex-shrink:0; }
        .hc-menu-city { font-size:.82rem;font-weight:700;color:#111827; }
        .hc-menu-citysub { font-size:.7rem;color:#9BA8C0; }

        /* Marquee mots-clés */
        .hc-kw { display:inline-flex;align-items:center;gap:1.5rem; }
        .hc-kw-word { font-weight:800;font-size:.95rem;letter-spacing:-.01em;color:#12234F; }

        /* Étapes "Comment ça marche" ($steps, ×3) */
        .hc-step { border-radius:24px;overflow:hidden;box-shadow:0 8px 32px rgba(27,47,110,.09); }
        .hc-step__head { position:relative;padding:2.25rem 2rem 2rem;overflow:hidden; }
        .hc-step__num { position:absolute;right:-8px;bottom:-20px;font-size:7rem;font-weight:900;color:rgba(255,255,255,.07);line-height:1;letter-spacing:-.04em;user-select:none;pointer-events:none; }
        .hc-step__circle { position:absolute;top:-24px;right:-24px;width:120px;height:120px;border-radius:50%;background:rgba(255,255,255,.05); }
        .hc-step__badge { display:inline-block;font-size:.65rem;font-weight:800;letter-spacing:.12em;color:rgba(255,255,255,.7);text-transform:uppercase;border:1px solid rgba(255,255,255,.2);border-radius:20px;padding:3px 10px;margin-bottom:1.25rem; }
        .hc-step__ic { width:56px;height:56px;border-radius:16px;background:rgba(255,255,255,.15);display:flex;align-items:center;justify-content:center;margin-bottom:1.25rem;backdrop-filter:blur(4px); }
        .hc-step__title { font-size:1.2rem;font-weight:900;color:white;margin:0;line-height:1.25; }
        .hc-step__body { background:white;padding:1.75rem 2rem; }
        .hc-step__desc { font-size:.875rem;color:#4E5A72;line-height:1.75;margin:0 0 1.25rem; }
        .hc-step__tag { display:inline-flex;align-items:center;gap:6px;font-size:.75rem;font-weight:700;padding:5px 12px;border-radius:20px; }

        /* Cartes équipe/fondateurs (×3) */
        .hc-team { border-radius:24px;overflow:hidden;box-shadow:0 4px 24px rgba(18,35,79,.08);border:1px solid #EAEDF5;transition:transform .3s ease,box-shadow .3s ease;display:flex;flex-direction:column;height:100%; }
        .hc-team:hover { transform:translateY(-6px);box-shadow:0 20px 50px rgba(18,35,79,.14); }
        .hc-team__ph { position:relative;height:260px;overflow:hidden;background:#12234F; }
        .hc-team__img { width:100%;height:100%;object-fit:cover;object-position:center 22%;transition:transform .5s ease; }
        .hc-team:hover .hc-team__img { transform:scale(1.04); }
        .hc-team__grad { position:absolute;inset:0;background:linear-gradient(to top,rgba(18,35,79,.72) 0%,transparent 55%); }
        .hc-team__badgewrap { position:absolute;bottom:1.1rem;left:1.2rem; }
        .hc-team__badge { font-size:.6rem;font-weight:800;letter-spacing:.1em;text-transform:uppercase;color:white;background:#C8102E;border-radius:20px;padding:3px 10px; }
        .hc-team__body { padding:1.5rem;flex:1;display:flex;flex-direction:column; }
        .hc-team__name { font-weight:900;color:#12234F;font-size:1.05rem;margin:0 0 .2rem; }
        .hc-team__role { font-size:.75rem;color:#C8102E;font-weight:700;margin:0 0 .85rem;letter-spacing:.04em; }
        .hc-team__bio { font-size:.83rem;color:#6D6E71;line-height:1.75;margin:0 0 1.1rem; }
        .hc-team__tags { display:flex;gap:.5rem;flex-wrap:wrap;margin-top:auto;padding-top:.25rem; }
        .hc-team__tag { font-size:.67rem;font-weight:700;padding:3px 10px;border-radius:20px; }

        /* Stats hero ($stats, ×4) */
        .hc-stat-item { text-align:center;padding:2.25rem 1.5rem; }
        .hc-stat-num { font-size:clamp(2.6rem,5vw,3.8rem);line-height:1;color:white;letter-spacing:-.025em; }
        .hc-stat-label { font-size:.72rem;color:rgba(255,255,255,.5);margin-top:.55rem;letter-spacing:.06em;text-transform:uppercase;font-weight:700; }

        /* Footer & liens divers */
        .hc-flink { color:#B8CEEC;text-decoration:none; }
        .hc-flink2 { color:#88A6D4;text-decoration:none;transition:color .2s; }
        .hc-rule { width:26px;height:2px;background:#C8102E;display:inline-block; }

        /* Points forts / features (×3) */
        .hc-feat { display:flex;align-items:flex-start;gap:12px;padding:14px 16px;border-radius:14px;background:white;border:1px solid #EEF1F8; }
        .hc-feat__ic { width:36px;height:36px;border-radius:10px;display:flex;align-items:center;justify-content:center;flex-shrink:0;margin-top:1px; }
        .hc-feat__t { font-weight:700;color:#0F172A;font-size:.9rem; }
        .hc-feat__d { font-size:.78rem;color:#9BA8C0;margin-top:2px; }

        /* Bandeau logos partenaires (×6) */
        .hc-logo { height:46px;padding:0 1.25rem;border-radius:10px;display:flex;align-items:center;justify-content:center;font-size:.72rem;font-weight:800;letter-spacing:.04em;color:white;opacity:.5;transition:opacity .25s ease;cursor:default; }
        .hc-logo:hover { opacity:1; }
