:root {
            --navy-deep: #080D42;
            --navy-mid: #061B45;
            --navy-light: #0A2555;
            --blue-main: #116DFF;
            --blue-bright: #0093D9;
            --blue-glow: #4DA3FF;
            --blue-pale: #8EC5FF;
            --accent: #2C87F9;
            --green: #00C853;
            --white: #E4F1F2;
            --white-90: rgba(228,241,242,0.9);
            --white-70: rgba(228,241,242,0.7);
            --white-50: rgba(228,241,242,0.5);
            --white-40: rgba(228,241,242,0.4);
            --white-20: rgba(228,241,242,0.2);
            --white-10: rgba(228,241,242,0.06);
        }

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

        html {
            scroll-behavior: smooth;
            -webkit-hyphens: manual;
            hyphens: manual;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            color: var(--white);
            background: var(--navy-deep);
            line-height: 1.6;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        /* ========== PLEXUS CANVAS ========== */
        #plexus-canvas {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
            pointer-events: none;
        }

        body > *:not(#plexus-canvas) {
            position: relative;
            z-index: 1;
        }

        /* ========== UTILITY ========== */
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 clamp(20px, 5vw, 80px);
        }

        .section {
            padding: clamp(60px, 10vw, 120px) 0;
            position: relative;
        }

        .section-alt {
            background: linear-gradient(180deg, rgba(6,27,69,0.5) 0%, rgba(8,13,66,0.8) 100%);
        }

        .kicker {
            display: inline-block;
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 2.5px;
            text-transform: uppercase;
            color: var(--accent);
            margin-bottom: 12px;
        }

        .section-title {
            font-size: clamp(28px, 2rem + 2vw, 48px);
            font-weight: 800;
            line-height: 1.15;
            margin-bottom: 16px;
            letter-spacing: -0.5px;
        }

        .section-subtitle {
            font-size: clamp(15px, 1rem + 0.3vw, 18px);
            color: var(--white-70);
            max-width: 640px;
            line-height: 1.7;
        }

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

        .mx-auto {
            margin-left: auto;
            margin-right: auto;
        }

        /* ========== GLASS CARD ========== */
        .glass {
            background: rgba(228,241,242,0.04);
            border: 1px solid rgba(17, 109, 255, 0.18);
            border-radius: 16px;
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            overflow: hidden;
            min-width: 0;
            overflow-wrap: break-word;
            word-break: break-word;
            transition: transform 0.35s cubic-bezier(.25,.46,.45,.94), border-color 0.3s ease, box-shadow 0.3s ease;
        }

        .glass:hover {
            border-color: rgba(17, 109, 255, 0.4);
            transform: translateY(-4px);
            box-shadow: 0 12px 40px rgba(17, 109, 255, 0.12);
        }

        @supports not (backdrop-filter: blur(1px)) {
            .glass { background: rgba(6, 27, 69, 0.85) !important; }
        }

        /* ========== CTA BUTTON ========== */
        .cta-primary {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 16px 40px;
            background: linear-gradient(135deg, var(--blue-main), var(--blue-bright));
            color: #e4f1f2;
            text-decoration: none;
            border-radius: 4px;
            font-family: 'Inter', sans-serif;
            font-weight: 700;
            font-size: 15px;
            letter-spacing: 0.5px;
            border: 1px solid rgba(228,241,242,0.1);
            box-shadow: 0 4px 24px rgba(17, 109, 255, 0.35), 0 0 60px rgba(44, 135, 249, 0.08);
            transition: all 0.3s cubic-bezier(.4,0,.2,1);
            cursor: pointer;
        }

        .cta-primary:hover {
            transform: translateY(-2px) scale(1.03);
            box-shadow: 0 8px 32px rgba(17, 109, 255, 0.5), 0 0 80px rgba(44, 135, 249, 0.15);
        }

        .cta-secondary {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 12px 28px;
            background: transparent;
            color: var(--blue-pale);
            text-decoration: none;
            border-radius: 4px;
            font-family: 'Inter', sans-serif;
            font-weight: 600;
            font-size: 14px;
            border: 1px solid rgba(17, 109, 255, 0.35);
            transition: all 0.3s ease;
        }

        .cta-secondary:hover {
            background: rgba(17, 109, 255, 0.1);
            border-color: var(--blue-main);
        }

        /* ========== GRIDS ========== */
        .grid-2 {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 24px;
        }

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

        .grid-2x3 {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }

        /* grid-4: extension additive du système de grilles (sœur de grid-2/grid-3) */
        .grid-4 {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
        }

        /* ========== NAV ========== */
        .nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            padding: 16px 0;
            background: #080D42;
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(17, 109, 255, 0.1);
            transition: all 0.3s ease;
        }

        .nav.scrolled {
            padding: 10px 0;
            background: #080D42;
            border-bottom-color: rgba(17, 109, 255, 0.2);
        }

        .nav-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .nav-logo {
            height: 36px;
            width: auto;
            display: block;
        }

        .nav-cta {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 10px 24px;
            background: linear-gradient(135deg, var(--blue-main), var(--blue-bright));
            color: #e4f1f2;
            text-decoration: none;
            border-radius: 4px;
            font-weight: 600;
            font-size: 13px;
            letter-spacing: 0.3px;
            box-shadow: 0 4px 16px rgba(17, 109, 255, 0.3);
            transition: all 0.3s ease;
        }

        .nav-cta:hover {
            transform: translateY(-1px);
            box-shadow: 0 6px 24px rgba(17, 109, 255, 0.45);
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 28px;
        }

        .nav-links a {
            color: var(--white-70);
            text-decoration: none;
            font-size: 13px;
            font-weight: 500;
            transition: color 0.3s ease;
        }

        .nav-links a:hover {
            color: var(--white);
        }

        /* Page courante : item de nav mis en exergue en bleu de contraste */
        .nav-links a.active,
        .nav-links a[aria-current="page"] {
            color: var(--accent);
            font-weight: 600;
        }

        /* Burger mobile (affiché ≤1024px via media query) */
        .nav-burger {
            display: none; flex-direction: column; align-items: center; justify-content: center; gap: 4px;
            width: 40px; height: 40px; margin-left: 12px; padding: 0;
            background: none; border: 1px solid rgba(44, 135, 249, 0.3); border-radius: 9px; cursor: pointer;
            transition: border-color 0.2s ease;
        }
        .nav-burger span { display: block; width: 18px; height: 2px; background: var(--white-70); border-radius: 2px; transition: transform 0.25s ease, opacity 0.2s ease; }
        .nav-burger:hover { border-color: rgba(44, 135, 249, 0.6); }
        .nav.menu-open .nav-burger span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
        .nav.menu-open .nav-burger span:nth-child(2) { opacity: 0; }
        .nav.menu-open .nav-burger span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

        /* ========== HERO ========== */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding-top: 80px;
            padding-bottom: clamp(56px, 7vw, 104px);
            background:
                radial-gradient(ellipse 80% 60% at 70% 40%, rgba(17, 109, 255, 0.12) 0%, transparent 60%),
                radial-gradient(ellipse 60% 50% at 20% 80%, rgba(44, 135, 249, 0.06) 0%, transparent 50%),
                linear-gradient(160deg, rgba(10,37,85,0.8) 0%, rgba(6,27,69,0.75) 40%, rgba(8,13,66,0.7) 100%);
            overflow: hidden;
        }

        .hero-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 48px;
            align-items: center;
        }

        .hero-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin: 20px 0;
        }

        .hero-tag {
            padding: 6px 16px;
            border-radius: 20px;
            background: rgba(17, 109, 255, 0.15);
            border: 1px solid rgba(17, 109, 255, 0.3);
            color: var(--blue-glow);
            font-size: 13px;
            font-weight: 600;
            letter-spacing: 0.2px;
        }

        .hero-title {
            font-size: clamp(32px, 2.5rem + 2.5vw, 56px);
            font-weight: 900;
            line-height: 1.08;
            letter-spacing: -1px;
            margin-bottom: 4px;
        }

        .hero-title .accent {
            background: linear-gradient(135deg, var(--accent), var(--blue-bright));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-subtitle {
            font-size: clamp(15px, 1rem + 0.3vw, 18px);
            color: var(--white-70);
            line-height: 1.7;
            margin-bottom: 8px;
        }

        .hero-ctas {
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
            margin-top: 28px;
        }

        .hero-image {
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        /* ========== STAT BAR ========== */
        .stat-bar {
            background: linear-gradient(135deg, rgba(17, 109, 255, 0.12), rgba(44, 135, 249, 0.06));
            border-top: 1px solid rgba(17, 109, 255, 0.28);
            border-bottom: 1px solid rgba(17, 109, 255, 0.28);
            padding: 40px 0;
        }

        .stat-bar-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 32px;
            text-align: center;
        }

        .stat-number {
            font-size: clamp(32px, 2rem + 2vw, 48px);
            font-weight: 900;
            background: linear-gradient(135deg, var(--accent), var(--blue-bright));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1;
            margin-bottom: 8px;
        }

        .stat-label {
            font-size: 14px;
            color: var(--white-70);
            font-weight: 500;
        }

        /* ========== PROBLEM SECTION ========== */
        .problem-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: center;
            margin-top: 40px;
        }

        .problem-stat {
            text-align: center;
            padding: 48px 32px;
        }

        .problem-stat .big-number {
            font-size: clamp(56px, 4rem + 3vw, 96px);
            font-weight: 900;
            background: linear-gradient(135deg, var(--accent), var(--blue-bright));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1;
        }

        .problem-stat .stat-source {
            font-size: 12px;
            color: var(--white-40);
            margin-top: 12px;
        }

        /* ========== MODELS / STEPS ========== */
        .model-card {
            padding: 32px;
            position: relative;
        }

        .model-card.featured {
            border-color: rgba(44, 135, 249, 0.35);
            background: rgba(44, 135, 249, 0.05);
        }

        .model-number {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: var(--blue-main);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 14px;
            margin-bottom: 16px;
        }

        .model-card h3 {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .model-card p {
            font-size: 14px;
            color: var(--white-70);
            line-height: 1.6;
        }

        /* ========== CASE STUDIES ========== */
        .case-card {
            padding: 32px;
            display: flex;
            flex-direction: column;
        }
        .case-list { flex-grow: 1; }

        .case-title {
            font-size: 17px;
            font-weight: 700;
            margin-bottom: 4px;
            min-height: 44px; /* réserve 2 lignes : évite que les listes en dessous se décalent selon la longueur du titre */
        }

        .case-subtitle {
            font-size: 13px;
            color: var(--blue-glow);
            margin-bottom: 16px;
            font-weight: 500;
            min-height: 36px; /* réserve 2 lignes, même logique que .case-title */
        }

        .case-result {
            display: inline-block;
            padding: 6px 14px;
            border-radius: 8px;
            font-size: 13px;
            font-weight: 700;
            color: var(--accent);
            background: rgba(44, 135, 249, 0.08);
            border: 1px solid rgba(44, 135, 249, 0.2);
            margin-top: 12px;
        }

        .case-list {
            list-style: none;
            padding: 0;
        }

        .case-list li {
            padding: 6px 0;
            font-size: 13px;
            color: var(--white-70);
            display: flex;
            gap: 8px;
            align-items: flex-start;
        }

        .case-list li::before {
            content: '→';
            color: var(--blue-glow);
            flex-shrink: 0;
            font-weight: 600;
        }

        /* ========== TESTIMONIALS ========== */
        .testimonial-card {
            padding: 34px 30px 28px;
            display: flex;
            flex-direction: column;
            position: relative;
            overflow: hidden;
            transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
        }

        .testimonial-card::before {
            content: '\201C';
            position: absolute;
            top: -26px;
            right: 16px;
            font-family: Georgia, 'Times New Roman', serif;
            font-size: 130px;
            line-height: 1;
            color: var(--blue-main);
            opacity: 0.13;
            pointer-events: none;
        }

        .testimonial-card:hover {
            transform: translateY(-6px);
            border-color: rgba(44, 135, 249, 0.4);
            box-shadow: 0 24px 50px rgba(2, 13, 30, 0.5), 0 0 40px rgba(44, 135, 249, 0.12);
        }

        .testimonial-quote {
            font-size: 15px;
            color: var(--white-90);
            line-height: 1.75;
            margin-bottom: 22px;
            flex: 1;
            position: relative;
            z-index: 1;
        }

        .testimonial-foot {
            display: flex;
            align-items: center;
            gap: 14px;
            padding-top: 20px;
            border-top: 1px solid rgba(228, 241, 242, 0.08);
        }

        .testimonial-avatar {
            width: 46px;
            height: 46px;
            border-radius: 50%;
            flex-shrink: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 800;
            font-size: 15px;
            letter-spacing: 0.5px;
            color: #fff;
            background: linear-gradient(135deg, var(--blue-main), var(--blue-bright));
            box-shadow: 0 4px 14px rgba(17, 109, 255, 0.35);
        }

        .testimonial-author {
            font-weight: 700;
            font-size: 14px;
        }

        .testimonial-role {
            font-size: 12px;
            color: var(--white-50);
            margin-top: 3px;
            line-height: 1.45;
        }

        .testimonial-role strong {
            color: var(--blue-glow);
            font-weight: 600;
        }

        .testimonial-li {
            margin-left: auto;
            align-self: flex-start;
            color: #0A66C2;
            display: inline-flex;
            opacity: 0.9;
            transition: opacity 0.2s ease, transform 0.2s ease;
        }

        .testimonial-li:hover {
            opacity: 1;
            transform: translateY(-1px);
        }

        .testimonial-li svg {
            width: 22px;
            height: 22px;
            display: block;
        }

        .testimonial-provenance {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            margin-top: 16px;
            padding: 7px 16px;
            border-radius: 999px;
            font-size: 12.5px;
            color: var(--white-70);
            background: rgba(10, 102, 194, 0.1);
            border: 1px solid rgba(10, 102, 194, 0.3);
            text-decoration: none;
            transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
        }
        a.testimonial-provenance:hover {
            color: #fff;
            background: rgba(10, 102, 194, 0.2);
            border-color: rgba(10, 102, 194, 0.6);
        }

        .testimonial-provenance svg {
            width: 16px;
            height: 16px;
            color: #2D88E0;
            flex-shrink: 0;
        }

        .datasheet-link {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            margin-top: 14px;
            font-size: 13px;
            font-weight: 600;
            color: var(--blue-glow);
            transition: gap 0.2s ease, color 0.2s ease;
        }

        .datasheet-link svg {
            width: 15px;
            height: 15px;
            flex-shrink: 0;
        }

        .datasheet-link:hover {
            color: var(--blue-pale);
            gap: 9px;
        }

        /* ========== SECTORS ========== */
        .sector-card {
            padding: 28px;
            text-align: center;
        }

        .sector-icon {
            font-size: 36px;
            margin-bottom: 10px;
        }

        .sector-card h4 {
            font-weight: 700;
            font-size: 15px;
            margin-bottom: 4px;
        }

        .sector-card p {
            font-size: 13px;
            color: var(--white-70);
        }

        /* ========== LOGO BAR ========== */
        .logo-bar {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: clamp(24px, 5vw, 56px);
            flex-wrap: wrap;
            padding: 32px 24px;
            background: rgba(228,241,242,0.03);
            border: 1px solid rgba(17, 109, 255, 0.1);
            border-radius: 16px;
        }

        .ref-name {
            font-size: clamp(15px, 1rem + 0.4vw, 20px);
            font-weight: 700;
            letter-spacing: 0.3px;
            color: var(--white-70);
            opacity: 0.85;
            transition: color 0.3s ease, opacity 0.3s ease;
        }

        .ref-name:hover {
            color: var(--white);
            opacity: 1;
        }

        /* ========== ENGAGEMENT / CHECK-LIST ========== */
        .engagement-card {
            padding: 40px;
        }

        .engagement-card h3 {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 20px;
        }

        .check-list {
            list-style: none;
        }

        .check-list li {
            display: flex;
            gap: 12px;
            margin-bottom: 14px;
            font-size: 14px;
            color: var(--white-70);
            align-items: flex-start;
        }

        .check-list .check {
            color: var(--accent);
            font-weight: 700;
            flex-shrink: 0;
        }

        /* ========== CONTACT ========== */
        .contact-card {
            padding: 32px;
            text-align: center;
        }

        .contact-card img {
            width: 124px;
            height: 124px;
            border-radius: 12px;
            object-fit: cover;
            margin-bottom: 16px;
            border: 1px solid rgba(44, 135, 249, 0.4);
            box-shadow: 0 10px 30px rgba(2, 13, 30, 0.5), 0 0 28px rgba(44, 135, 249, 0.12);
        }

        .contact-avatar {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 84px;
            height: 84px;
            margin-bottom: 16px;
            border-radius: 50%;
            font-family: var(--font-display);
            font-weight: 500;
            font-size: 29px;
            letter-spacing: 1px;
            color: #fff;
            background:
                radial-gradient(120% 120% at 30% 22%, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0) 55%),
                linear-gradient(155deg, var(--blue-glow), var(--accent) 48%, var(--blue-main));
            border: 1px solid rgba(44, 135, 249, 0.55);
            box-shadow: 0 10px 30px rgba(2, 13, 30, 0.5), 0 0 30px rgba(44, 135, 249, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.2);
            position: relative;
            transition: border-color 0.3s ease, box-shadow 0.3s ease;
        }

        .contact-card a:hover .contact-avatar {
            border-color: rgba(44, 135, 249, 0.85);
            box-shadow: 0 10px 30px rgba(2, 13, 30, 0.5), 0 0 42px rgba(44, 135, 249, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.28);
        }

        .contact-name {
            font-size: 16px;
            font-weight: 700;
            margin-bottom: 4px;
        }

        .contact-role {
            font-size: 12px;
            color: var(--accent);
            font-weight: 600;
            margin-bottom: 10px;
        }

        .contact-info {
            font-size: 13px;
            line-height: 1.8;
        }

        .contact-info a {
            color: var(--blue-pale);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .contact-info a:hover {
            color: var(--accent);
        }

        .linkedin-link {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            margin-top: 14px;
            padding: 8px 18px;
            border-radius: 8px;
            background: rgba(17, 109, 255, 0.1);
            border: 1px solid rgba(17, 109, 255, 0.25);
            color: var(--blue-pale);
            text-decoration: none;
            font-size: 12px;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .linkedin-link:hover {
            background: rgba(17, 109, 255, 0.2);
            border-color: var(--blue-main);
            color: var(--white);
        }

        /* ========== CALENDLY WIDGET ========== */
        .calendly-wrap {
            margin: 48px auto 0;
            max-width: 760px;
            padding: 12px;
            border-radius: 20px;
            background: rgba(228,241,242,0.03);
            border: 1px solid rgba(17, 109, 255, 0.18);
            box-shadow: 0 12px 50px rgba(17, 109, 255, 0.12);
        }

        .calendly-inline-widget {
            border-radius: 12px;
            overflow: hidden;
        }

        .calendly-fallback {
            margin-top: 14px;
            font-size: 13px;
            color: var(--white-50);
        }

        .calendly-fallback a {
            color: var(--blue-pale);
            text-decoration: none;
        }

        /* ========== FINAL CTA ========== */
        .final-cta {
            background:
                radial-gradient(ellipse 70% 60% at 50% 50%, rgba(17, 109, 255, 0.15) 0%, transparent 60%),
                linear-gradient(180deg, rgba(8,13,66,0.85) 0%, rgba(6,27,69,0.8) 100%);
            padding: clamp(80px, 12vw, 160px) 0;
            text-align: center;
        }

        .final-cta .section-title {
            font-size: clamp(32px, 2.5rem + 2vw, 52px);
        }

        /* ========== FOOTER ========== */
        .footer {
            border-top: 1px solid rgba(44, 135, 249, 0.14);
            font-size: 13px;
            color: var(--white-50);
            background: rgba(2, 12, 30, 0.5);
        }
        .footer a { color: var(--white-70); text-decoration: none; transition: color 0.2s ease; }
        .footer a:hover { color: var(--blue-pale); }
        .footer-grid {
            display: grid;
            grid-template-columns: 1.4fr 1fr;
            gap: 40px;
            padding: 52px 0 40px;
        }
        .footer-logo { height: 56px; width: auto; margin-bottom: 14px; }
        .footer-tagline { color: var(--white-50); max-width: 380px; line-height: 1.6; margin-bottom: 22px; }
        .footer-social { display: flex; gap: 12px; }
        .footer-social a {
            display: inline-flex; align-items: center; justify-content: center;
            width: 40px; height: 40px; border-radius: 10px;
            color: var(--accent);
            background: rgba(228, 241, 242, 0.05);
            border: 1px solid rgba(44, 135, 249, 0.18);
            transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
        }
        .footer-social a:hover {
            color: #fff; background: rgba(44, 135, 249, 0.16);
            border-color: rgba(44, 135, 249, 0.5); transform: translateY(-2px);
        }
        .footer-social svg { width: 19px; height: 19px; }
        .footer-col-title {
            display: block; font-size: 12px; font-weight: 700; letter-spacing: 1px;
            text-transform: uppercase; color: var(--white-40); margin-bottom: 16px;
        }
        .footer-nav ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 11px; }
        .footer-nav a { color: var(--white-70); }
        .footer-bottom {
            border-top: 1px solid rgba(228, 241, 242, 0.06);
            padding: 18px 0;
            font-size: 12px; color: var(--white-40);
        }
        .footer-bottom .container {
            display: flex; justify-content: space-between; align-items: center; gap: 12px; flex-wrap: wrap;
        }
        .footer-bottom p { margin: 0; }
        @media (max-width: 768px) {
            .footer-grid { grid-template-columns: 1fr; gap: 32px; text-align: center; padding: 40px 0 32px; }
            .footer-tagline { margin-left: auto; margin-right: auto; }
            .footer-social { justify-content: center; }
            .footer-nav ul { align-items: center; }
            .footer-bottom .container { justify-content: center; text-align: center; }
        }

        /* ========== SCROLL ANIMATIONS ========== */
        .reveal {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.7s ease-out, transform 0.7s ease-out;
        }

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

        .reveal-d1 { transition-delay: 0.1s; }
        .reveal-d2 { transition-delay: 0.2s; }
        .reveal-d3 { transition-delay: 0.3s; }
        .reveal-d4 { transition-delay: 0.4s; }

        /* ========== FLOATING CTA (mobile) ========== */
        .floating-cta {
            display: none;
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            z-index: 999;
            padding: 12px 20px;
            background: rgba(8, 13, 66, 0.95);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-top: 1px solid rgba(17, 109, 255, 0.2);
        }

        .floating-cta a {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            width: 100%;
            padding: 14px;
            background: linear-gradient(135deg, var(--blue-main), var(--blue-bright));
            color: #e4f1f2;
            text-decoration: none;
            border-radius: 4px;
            font-weight: 700;
            font-size: 15px;
            box-shadow: 0 4px 24px rgba(17, 109, 255, 0.4);
        }

        /* ========== DIVIDER ========== */
        .divider {
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(17, 109, 255, 0.2), transparent);
            margin: 0;
        }

        /* ========== PIR (Problem/Intervention/Result) ========== */
        .pir-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }

        .pir-card {
            padding: 28px;
            border-top: 3px solid transparent;
        }

        .pir-card.red { border-top-color: #FF4444; }
        .pir-card.blue { border-top-color: var(--blue-main); }
        .pir-card.green { border-top-color: var(--green); }

        .pir-header {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 14px;
            font-weight: 700;
            font-size: 14px;
        }

        .pir-card p {
            font-size: 13px;
            color: var(--white-70);
            line-height: 1.6;
            margin-bottom: 12px;
        }

        .kpi-badge {
            display: inline-block;
            padding: 4px 12px;
            border-radius: 6px;
            font-size: 12px;
            font-weight: 700;
        }

        .kpi-red { background: rgba(255,68,68,0.12); color: #FF6B6B; border: 1px solid rgba(255,68,68,0.25); }
        .kpi-blue { background: rgba(17,109,255,0.12); color: var(--blue-glow); border: 1px solid rgba(17,109,255,0.25); }
        .kpi-green { background: rgba(0,200,83,0.12); color: #69F0AE; border: 1px solid rgba(0,200,83,0.25); }

        /* ========== ACCESSIBILITY ========== */
        @media (prefers-reduced-motion: reduce) {
            *, *::before, *::after {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
                scroll-behavior: auto !important;
            }
            .reveal {
                opacity: 1;
                transform: none;
            }
        }

        /* ========== RESPONSIVE: TABLET ========== */
        @media (max-width: 1024px) {
            .hero-grid {
                gap: 32px;
            }
            .nav-burger { display: inline-flex; }
            .nav .lang-switch { display: none; }
            .nav-inner { position: relative; }
            .nav-links {
                position: absolute; top: calc(100% + 12px); left: 0; right: 0;
                flex-direction: column; align-items: stretch; gap: 0;
                background: rgba(2, 12, 30, 0.98);
                border: 1px solid rgba(44, 135, 249, 0.2); border-radius: 14px;
                padding: 6px; box-shadow: 0 24px 50px rgba(2, 13, 30, 0.6);
                opacity: 0; visibility: hidden; transform: translateY(-8px);
                transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
            }
            .nav.menu-open .nav-links { opacity: 1; visibility: visible; transform: translateY(0); }
            .nav-links a { padding: 13px 16px; font-size: 15px; border-radius: 9px; }
            .nav-links a:hover, .nav-links a.active { background: rgba(44, 135, 249, 0.08); }
            .grid-4 {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        /* Mobile : CTA d'en-tête masqué (le CTA flottant prend le relais) → place au burger */
        @media (max-width: 768px) {
            .nav .nav-cta { display: none; }
        }

        /* ========== RESPONSIVE: MOBILE ========== */
        @media (max-width: 768px) {
            .container {
                padding: 0 20px;
            }

            .section {
                padding: 56px 0;
            }

            .hero {
                min-height: auto;
                padding-top: 100px;
                padding-bottom: 60px;
            }

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

            .hero-tags {
                justify-content: center;
            }

            .hero-ctas {
                justify-content: center;
            }

            .grid-2, .grid-3, .grid-4, .grid-2x3, .pir-grid {
                grid-template-columns: 1fr;
            }

            .stat-bar-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 16px;
            }

            .stat-number {
                font-size: 28px;
            }

            .stat-label {
                font-size: 12px;
            }

            .problem-grid {
                grid-template-columns: 1fr;
            }

            .cta-primary {
                width: 100%;
                justify-content: center;
                padding: 14px 32px;
            }

            .floating-cta {
                display: block;
            }

            .logo-bar {
                gap: 24px;
                padding: 24px 16px;
            }

            .section-title {
                font-size: clamp(24px, 1.5rem + 2vw, 36px);
            }

            .hero-title {
                font-size: clamp(28px, 2rem + 2vw, 40px);
            }

            .problem-stat .big-number {
                font-size: clamp(48px, 3rem + 2vw, 72px);
            }
        }

        /* ========== RESPONSIVE: SMALL ========== */
        @media (max-width: 480px) {
            .container {
                padding: 0 16px;
            }

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

            .hero-tag {
                font-size: 11px;
                padding: 5px 12px;
            }
        }

        @media (max-width: 360px) {
            .container {
                padding: 0 12px;
            }
        }
/* =====================================================================
   ===============  EXTENSIONS SITE UNIFIÉ (build statique)  ===========
   ===================================================================== */

/* ---- Icônes SVG (remplacent les emojis, cf. checklist UI/UX Pro Max) ---- */
.ico { width: 28px; height: 28px; stroke: var(--accent); stroke-width: 1.75; fill: none; flex-shrink: 0; }
.ico-lg { width: 44px; height: 44px; }
.ico-sm { width: 18px; height: 18px; }
.feature-ico {
    width: 56px; height: 56px; display: inline-flex; align-items: center; justify-content: center;
    border-radius: 14px; margin-bottom: 18px;
    background: linear-gradient(135deg, rgba(17,109,255,0.15), rgba(44,135,249,0.08));
    border: 1px solid rgba(17,109,255,0.25);
}
.feature-ico .ico { width: 28px; height: 28px; }

/* ---- Lang switcher ---- */
.lang-switch { display: inline-flex; align-items: center; gap: 4px; margin-right: 18px; }
.lang-switch a {
    font-size: 12px; font-weight: 700; letter-spacing: 0.5px; text-decoration: none;
    color: var(--white-50); padding: 4px 7px; border-radius: 6px; transition: all 0.25s ease;
}
.lang-switch a.active { color: var(--white); background: rgba(17,109,255,0.18); }
.lang-switch a:hover { color: var(--white); }
.lang-sep { color: var(--white-20); font-size: 11px; }

/* ---- Audience splitter (home) ---- */
.splitter-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; margin-top: 48px; }
.splitter-card {
    padding: 44px 40px; text-align: left; text-decoration: none; color: inherit; display: block;
    position: relative; overflow: hidden;
}
.splitter-card .feature-ico { margin-bottom: 22px; }
.splitter-card h3 { font-size: 24px; font-weight: 800; margin-bottom: 12px; letter-spacing: -0.4px; }
.splitter-card p { color: var(--white-70); font-size: 15px; line-height: 1.65; margin-bottom: 24px; }
.splitter-card .go {
    display: inline-flex; align-items: center; gap: 8px; font-weight: 700; font-size: 14px;
    color: var(--accent); transition: gap 0.25s ease;
}
.splitter-card:hover .go { gap: 14px; }
.splitter-card::after {
    content: ''; position: absolute; inset: 0; border-radius: 16px; pointer-events: none;
    background: radial-gradient(ellipse 60% 80% at 80% 0%, rgba(44,135,249,0.07), transparent 60%);
    opacity: 0; transition: opacity 0.35s ease;
}
.splitter-card:hover::after { opacity: 1; }

/* ---- Formulaire de capture ---- */
.lead-form { display: grid; gap: 16px; text-align: left; }
.form-row { display: grid; gap: 6px; }
.form-row label { font-size: 13px; font-weight: 600; color: var(--white-90); }
.form-row .req { color: var(--accent); }
.lead-form input, .lead-form select, .lead-form textarea {
    width: 100%; padding: 13px 16px; font-family: 'Inter', sans-serif; font-size: 14px;
    color: var(--white); background: rgba(228,241,242,0.05);
    border: 1px solid rgba(17,109,255,0.25); border-radius: 10px; transition: all 0.25s ease;
}
.lead-form input::placeholder, .lead-form textarea::placeholder { color: var(--white-40); }
.lead-form input:focus, .lead-form select:focus, .lead-form textarea:focus {
    outline: none; border-color: var(--accent); background: rgba(228,241,242,0.08);
    box-shadow: 0 0 0 3px rgba(44,135,249,0.12);
}
.lead-form select { appearance: none; cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%234DA3FF' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px; }
/* Le menu déroulant natif d'un <select> est rendu par le navigateur/l'OS avec un
   fond blanc (impossible à styliser en CSS), pas notre fond sombre : sans cette
   règle, les options héritaient d'un texte clair devenu illisible sur ce fond
   blanc. On force donc une couleur sombre propre aux <option>. */
.lead-form select option {
    color: #E4F1F2;
    background: #0A2555; /* --navy-light */
    padding: 10px;
}
.lead-form select option:checked,
.lead-form select option:hover {
    background: #2C87F9; /* --accent */
    color: #fff;
}
.lead-form select option:first-child { color: rgba(228,241,242,0.5); }
.lead-form textarea { resize: vertical; min-height: 90px; }
.consent { display: flex; gap: 10px; align-items: flex-start; font-size: 12px; color: var(--white-50); line-height: 1.5; }
.consent input { width: auto; margin-top: 2px; accent-color: var(--blue-main); }
.consent a { color: var(--blue-pale); text-decoration: none; }
.form-status { font-size: 13px; font-weight: 600; min-height: 18px; }
.form-status.ok { color: #69F0AE; }
.form-status.err { color: #FF6B6B; }
.lead-form button[type=submit] { border: none; cursor: pointer; width: 100%; justify-content: center; }
.lead-form button[disabled] { opacity: 0.6; cursor: not-allowed; }

/* ---- Lead magnet ---- */
.magnet-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 40px; align-items: center; }
.magnet-cover {
    position: relative; padding: 36px; border-radius: 16px; text-align: center;
    background: linear-gradient(160deg, rgba(10,37,85,0.9), rgba(8,13,66,0.9));
    border: 1px solid rgba(44,135,249,0.25);
}
.magnet-cover .badge {
    display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
    color: var(--accent); margin-bottom: 16px;
}
.magnet-cover h3 { font-size: 22px; font-weight: 800; line-height: 1.2; margin-bottom: 8px; }
.magnet-cover .sub { color: var(--white-50); font-size: 13px; }

/* ---- FAQ accordéon (AEO) ---- */
.faq-list { max-width: 820px; margin: 40px auto 0; display: grid; gap: 12px; }
.faq-item { padding: 0; overflow: hidden; }
.faq-q {
    width: 100%; text-align: left; background: none; border: none; cursor: pointer;
    padding: 22px 24px; font-family: 'Inter', sans-serif; font-size: 16px; font-weight: 700;
    color: var(--white); display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq-q .chev { transition: transform 0.3s ease; color: var(--accent); }
.faq-item[open] .faq-q .chev, .faq-q[aria-expanded=true] .chev { transform: rotate(180deg); }
.faq-a { padding: 0 24px 22px; color: var(--white-70); font-size: 14px; line-height: 1.7; }

/* ---- Sticky side form (partenaires, desktop) ---- */
.sticky-aside { position: sticky; top: 100px; }

@media (max-width: 768px) {
    .splitter-grid, .magnet-grid { grid-template-columns: 1fr; }
    .sticky-aside { position: static; }
}
/* ---- Hero device frame (heatmap duotone ornament) ---- */
.device-frame {
    position: relative; z-index: 1; width: 100%; border-radius: 16px; overflow: hidden;
    border: 1px solid rgba(44,135,249,0.28);
    background: rgba(6,27,69,0.5);
    box-shadow: 0 24px 70px rgba(0,0,0,0.45), 0 0 70px rgba(44,135,249,0.10);
}
.device-frame img {
    display: block; width: 100%; height: auto;
    /* override .hero-image img (mix-blend/screen/max-height) inherited rules */
    mix-blend-mode: normal !important; max-height: none !important; filter: none !important;
}
.frame-bar {
    display: flex; gap: 7px; padding: 11px 14px;
    background: rgba(8,13,66,0.7); border-bottom: 1px solid rgba(228,241,242,0.06);
}
.frame-bar span { width: 10px; height: 10px; border-radius: 50%; background: rgba(228,241,242,0.16); }
.frame-bar span:first-child { background: rgba(44,135,249,0.55); }
.frame-caption {
    position: absolute; left: 0; right: 0; bottom: 0;
    display: flex; align-items: center; gap: 9px;
    padding: 14px 16px 12px; font-size: 12px; font-weight: 600; color: var(--white-90);
    background: linear-gradient(0deg, rgba(8,13,66,0.92) 0%, rgba(8,13,66,0.0) 100%);
}
.frame-caption .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 10px var(--accent); flex-shrink: 0; }

/* ---- Hero benefits strip (ex « Ce que vous obtenez ») ---- */
.hero-benefits {
    list-style: none; display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
    margin-top: 56px; margin-bottom: 16px; padding-top: 36px; border-top: 1px solid rgba(17,109,255,0.22);
}
.hero-benefits li { display: flex; gap: 10px; align-items: flex-start; font-size: 13px; color: var(--white-70); line-height: 1.5; }
.hero-benefits .check { color: var(--accent); flex-shrink: 0; margin-top: 1px; }

@media (max-width: 768px) {
    .hero-benefits { grid-template-columns: 1fr 1fr; gap: 14px; text-align: left; }
}
.hero-reach {
    display: flex; align-items: center; justify-content: center; gap: 11px;
    margin: 40px auto 4px; max-width: 760px;
    padding: 14px 24px; border-radius: 14px;
    background: rgba(44, 135, 249, 0.08);
    border: 1px solid rgba(44, 135, 249, 0.32);
    font-size: 14.5px; line-height: 1.55; color: var(--white-70); text-align: left;
}
.hero-reach svg { width: 19px; height: 19px; color: var(--accent); flex-shrink: 0; }
.hero-reach strong { color: #fff; font-weight: 700; }
@media (max-width: 768px) {
    .hero-reach { flex-direction: column; text-align: center; gap: 8px; }
}
/* ---- Hero device render (visuel produit flottant, fond transparent) ---- */
.hero-image img.hero-render {
    mix-blend-mode: normal !important;
    /* single sizing constraint -> aspect ratio preserved (no height cap) */
    max-height: none !important;
    height: auto !important;
    width: 90%;
    max-width: 680px;
    filter: drop-shadow(0 32px 64px rgba(8,13,66,0.62)) drop-shadow(0 0 64px rgba(44,135,249,0.22));
}
@media (max-width: 768px) {
    .hero-image img.hero-render { max-width: 86%; }
}
/* ============================================================
   ===========  CLASH DISPLAY — couche d'affichage  ===========
   Titres, chiffres, libellés, boutons. Corps de texte = Inter.
   Clash Display plafonne à 700 -> on évite le faux-gras.
   ============================================================ */
:root { --font-display: 'Clash Display', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif; }

h1, h2, h3, h4,
.hero-title, .section-title, .kicker,
.stat-number, .problem-stat .big-number,
.case-title, .contact-name,
.model-card h3, .magnet-cover h3, .magnet-cover .badge,
.faq-q, .engagement-card h3, .sector-card h4,
.tech-card h4, .pir-header,
.nav-cta, .cta-primary, .cta-secondary, .hero-tag,
.nav-links a, .ref-name, .frame-caption {
    font-family: var(--font-display);
}

/* graisses ajustées aux poids disponibles (400-700) */
.hero-title { font-weight: 500; font-size: clamp(28px, 1rem + 1.6vw, 34px); line-height: 1.14; letter-spacing: -0.4px; text-wrap: balance; }
.section-title, .final-cta .section-title { font-weight: 600; }
.stat-number, .problem-stat .big-number { font-weight: 600; }
.nav-cta, .cta-primary, .cta-secondary { font-weight: 600; }
/* ---- Hero : agrandissement du visuel + intégration au fond ---- */
@media (min-width: 769px) {
    .hero .hero-grid { grid-template-columns: 1fr 1.12fr; gap: clamp(24px, 3.5vw, 52px); }
    .hero .hero-image { margin-right: clamp(-72px, -3.2vw, 0px); }
}
/* halo d'intégration : pool de lumière bleue (#2C87F9) + ancrage sombre sous le visuel */
.hero-image { position: relative; }
.hero-image::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%; transform: translate(-50%, -50%);
    width: 122%; height: 122%;
    border-radius: 50%;
    z-index: 0;
    background:
        radial-gradient(circle at 50% 46%, rgba(44,135,249,0.26) 0%, rgba(44,135,249,0.09) 40%, transparent 72%),
        radial-gradient(circle at 50% 66%, rgba(8,13,66,0.55) 0%, transparent 60%);
    filter: blur(2px);
}
/* ---- Hero : CTA alignés à l'horizontale (desktop) ---- */
@media (min-width: 769px) {
    .hero-ctas { flex-wrap: nowrap; gap: 10px; align-items: stretch; }
    .hero-ctas .cta-primary { padding: 15px 26px; font-size: 14px; white-space: nowrap; }
    .hero-ctas .cta-secondary { padding: 13px 20px; font-size: 13.5px; white-space: nowrap; }
}
/* ---- Hero : paragraphe condensé, max 3 lignes ---- */
.hero-subtitle { font-size: clamp(14px, 0.8rem + 0.2vw, 15px); line-height: 1.58; }
/* ============================================================
   ===========  INDICATEUR DE SCROLL (desktop only)  ==========
   ============================================================ */
.scroll-indicator {
    display: none;                 /* masqué par défaut -> activé >= 1025px */
    position: fixed;
    top: 50%;
    right: clamp(12px, 1.4vw, 28px);
    transform: translateY(-50%);
    z-index: 900;
    padding: 6px;
    margin: 0;
    border: 0;
    background: none;
    cursor: pointer;
    line-height: 0;
    opacity: 1;
    transition: opacity 0.45s ease;
    -webkit-tap-highlight-color: transparent;
}
.scroll-indicator svg {
    width: 22px;
    height: auto;
    display: block;
    filter: drop-shadow(0 2px 8px rgba(8, 13, 66, 0.5));
}
.scroll-indicator.is-hidden { opacity: 0; pointer-events: none; }
.scroll-indicator:focus-visible { outline: 2px solid var(--accent); outline-offset: 4px; border-radius: 4px; }

.scroll-indicator .si-wheel { animation: si-wheel 1.7s cubic-bezier(.45, 0, .55, 1) infinite; }
.scroll-indicator .si-line  { animation: si-line 1.7s ease-in-out infinite; }

@keyframes si-wheel {
    0%   { transform: translateY(-120px); opacity: 0; }
    20%  { opacity: 1; }
    80%  { opacity: 1; }
    100% { transform: translateY(120px); opacity: 0; }
}
@keyframes si-line {
    0%, 100% { opacity: 0.22; }
    50%      { opacity: 0.85; }
}

@media (min-width: 1025px) {
    .scroll-indicator { display: block; }
}
@media (prefers-reduced-motion: reduce) {
    .scroll-indicator .si-wheel,
    .scroll-indicator .si-line { animation: none; }
    .scroll-indicator .si-wheel { opacity: 1; transform: none; }
}
/* Fix : ces éléments doivent rester fixes. La règle utilitaire
   `body > *:not(#plexus-canvas){position:relative}` (nécessaire pour passer
   le contenu au-dessus du canvas plexus) écrasait leur position:fixed. */
.nav,
.floating-cta,
.scroll-indicator { position: fixed !important; }
/* Empilement des chromes fixes (z-index écrasé par body>*:not(#plexus-canvas)) */
.nav { z-index: 1000 !important; }
.floating-cta { z-index: 999 !important; }
.scroll-indicator { z-index: 900 !important; }

/* Indicateur de scroll agrandi */
.scroll-indicator svg { width: 36px; }
.scroll-indicator { right: clamp(10px, 1.1vw, 22px); }
/* Indicateur agrandi : collé au bord pour limiter le chevauchement dans la gouttière */
.scroll-indicator { right: clamp(6px, 0.7vw, 14px); padding: 4px; }
/* ============================================================
   ===============  BANDEAU CONFIANCE — MARQUEE  ==============
   Déroulé horizontal infini, pause au survol, fondu aux bords.
   ============================================================ */
.logo-marquee {
    position: relative;
    overflow: hidden;
    margin-top: 32px;
    -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 7%, #000 93%, transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0, #000 7%, #000 93%, transparent 100%);
}
.logo-track {
    display: flex;
    align-items: center;
    width: max-content;
    animation: logo-marquee 44s linear infinite;
}
.logo-marquee:hover .logo-track { animation-play-state: paused; }
.trust-logo {
    height: 30px;
    width: auto;
    max-width: 150px;
    object-fit: contain;
    margin-right: clamp(40px, 6vw, 84px);
    opacity: 0.6;
    flex-shrink: 0;
    transition: opacity 0.3s ease;
}
/* Le fichier logo_neyret.svg a un espace vide asymétrique dans son propre
   contour (plus de marge à droite qu'à gauche) : le logo paraît décalé vers
   la gauche même correctement centré par le CSS. Recentrage visuel manuel. */
img.trust-logo[src*="logo_neyret"] { transform: translateX(8px); }
.trust-logo:hover { opacity: 1; }
@keyframes logo-marquee {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
    .logo-track { animation: none; flex-wrap: wrap; justify-content: center; width: 100%; row-gap: 28px; }
    .logo-marquee { -webkit-mask-image: none; mask-image: none; }
    .trust-logo[aria-hidden="true"] { display: none; }
}
@media (max-width: 768px) {
    .trust-logo { height: 26px; max-width: 120px; margin-right: 40px; }
}
/* Bande « confiance » valorisée (preuve sociale, haut de page) */
.trust-band {
    padding: clamp(44px, 5.5vw, 76px) 0;
    border-top: 1px solid rgba(44,135,249,0.16);
    border-bottom: 1px solid rgba(44,135,249,0.16);
    background: radial-gradient(ellipse 80% 120% at 50% 0%, rgba(44,135,249,0.05), transparent 70%);
}
.trust-metric {
    margin-top: 12px;
    font-size: 12px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
    color: var(--white-50);
}
.ecse-feature {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 40px;
    align-items: center;
    padding: 44px 48px;
    position: relative;
    overflow: hidden;
}
.ecse-feature::before {
    content: '';
    position: absolute;
    left: 116px; top: 50%;
    transform: translate(-50%, -50%);
    width: 260px; height: 260px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(44,135,249,0.20), transparent 70%);
    pointer-events: none;
}
.ecse-feature__badge {
    width: 148px; height: auto;
    position: relative; z-index: 1;
    filter: drop-shadow(0 12px 32px rgba(0,0,0,0.5)) drop-shadow(0 0 38px rgba(44,135,249,0.28));
}
.ecse-feature__body { position: relative; z-index: 1; }
.ecse-feature__body h3 {
    font-size: clamp(20px, 1.1rem + 0.8vw, 26px);
    margin: 8px 0 12px;
}
.ecse-feature__body p {
    color: var(--white-70);
    font-size: 14.5px;
    line-height: 1.75;
}
.ecse-feature__body strong { color: #fff; font-weight: 600; }
.ecse-feature__seal {
    display: inline-block; line-height: 0; position: relative; z-index: 1;
    transition: transform 0.25s ease;
}
.ecse-feature__seal:hover { transform: translateY(-3px) scale(1.02); }

/* ========== VIDEO BUTTON + MODAL ========== */
.video-btn { display: inline-flex; align-items: center; gap: 9px; }
.video-btn svg { width: 17px; height: 17px; }
.video-modal {
    position: fixed; inset: 0; z-index: 1000;
    display: none; align-items: center; justify-content: center;
    padding: 24px;
}
.video-modal.open { display: flex; }
.video-modal__backdrop {
    position: absolute; inset: 0;
    background: rgba(2, 8, 20, 0.86);
    -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px);
}
.video-modal__dialog { position: relative; width: min(960px, 100%); }
.video-modal__frame {
    position: relative; width: 100%; aspect-ratio: 16 / 9;
    border-radius: 14px; overflow: hidden; background: #000;
    border: 1px solid rgba(44, 135, 249, 0.3);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
}
.video-modal__frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video-modal__close {
    position: absolute; top: -42px; right: -4px;
    background: none; border: none; color: var(--white-70);
    font-size: 30px; line-height: 1; cursor: pointer; padding: 4px;
    transition: color 0.2s ease;
}
.video-modal__close:hover { color: #fff; }
@media (max-width: 768px) { .video-modal__close { top: -38px; } }

/* ========== PAGE LÉGALE ========== */
.legal { max-width: 760px; margin: 0 auto; }
.legal h1 { font-size: clamp(28px, 1.6rem + 1.6vw, 40px); margin: 10px 0 6px; }
.legal h2 { font-size: 19px; margin: 36px 0 10px; }
.legal p { color: var(--white-70); line-height: 1.75; font-size: 15px; margin-bottom: 12px; }
.legal ul { padding-left: 20px; margin: 8px 0 14px; }
.legal li { color: var(--white-70); line-height: 1.7; font-size: 15px; margin-bottom: 7px; }
.legal a { color: var(--blue-glow); }
.legal a:hover { color: var(--blue-pale); }
.legal-updated { color: var(--white-40); font-size: 13px; margin-bottom: 6px; }

/* ========== COUCHE MOTION (interactions) ========== */
:root { --t-fast: 150ms; --t-base: 240ms; --t-slow: 400ms; --ease-out: cubic-bezier(.2,.7,.2,1); }

/* Feedback tactile/clic (press) — vient après les :hover donc l'emporte */
.cta-primary:active, .nav-cta:active, .video-btn:active { transform: translateY(0) scale(.97); }
.cta-secondary:active, .datasheet-link:active, .ecse-feature__seal:active { transform: scale(.97); }
.splitter-card:active { transform: scale(.985); }

/* focus-visible (accessibilité clavier) */
a:focus-visible, button:focus-visible, summary:focus-visible,
input:focus-visible, select:focus-visible, textarea:focus-visible {
    outline: 2px solid var(--blue-glow); outline-offset: 3px; border-radius: 8px;
}

/* Stats : chiffres tabulaires (anti-jitter pendant le count-up) */
.stat-number { font-variant-numeric: tabular-nums; }

.form-download {
    display: inline-block; margin-top: 6px; font-weight: 700;
    color: var(--blue-pale); text-decoration: underline; text-underline-offset: 3px;
}
.form-download:hover { color: #fff; }

/* Audience-splitter : entrée directionnelle + depth au survol */
.splitter-card {
    transition: transform .4s var(--ease-out), opacity .5s ease-out,
                border-color .3s ease, box-shadow .3s ease;
}
.splitter-grid .splitter-card.reveal { opacity: 0; transform: translateX(-26px); }
.splitter-grid .splitter-card.reveal.reveal-d1 { transform: translateX(26px); }
.splitter-grid .splitter-card.reveal.visible { opacity: 1; transform: translateX(0); }
.splitter-card:hover {
    transform: translateY(-6px);
    border-color: rgba(44,135,249,.45);
    box-shadow: 0 24px 50px rgba(2,13,30,.5), 0 0 44px rgba(44,135,249,.14);
}
.splitter-card .feature-ico { transition: transform var(--t-base) var(--ease-out); }
.splitter-card:hover .feature-ico { transform: translateY(-2px) scale(1.05); }

@media (prefers-reduced-motion: reduce) {
    .splitter-grid .splitter-card.reveal { opacity: 1 !important; transform: none !important; }
    .splitter-card:hover, .splitter-card:active,
    .cta-primary:hover, .cta-primary:active,
    .splitter-card:hover .feature-ico { transform: none !important; }
}
@media (max-width: 768px) {
    .ecse-feature {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 24px;
        padding: 34px 24px;
    }
    .ecse-feature::before { left: 50%; top: 92px; width: 200px; height: 200px; }
    .ecse-feature__badge { width: 124px; margin: 0 auto; }
}
.trust-logo { height: 40px; opacity: 0.72; }
.trust-logo--callide {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: 23px; line-height: 40px; height: 40px;
    color: var(--white-90); max-width: none; white-space: nowrap;
    display: inline-flex; align-items: center; letter-spacing: .2px;
}
@media (max-width: 768px) { .trust-logo--callide { font-size: 18px; line-height: 30px; height: 30px; } }
@media (max-width: 768px) { .trust-logo { height: 30px; max-width: 130px; } }
/* Uniformisation : tous les titres à la graisse du H1 (Clash Display 500) */
h1, h2, h3, h4,
.hero-title, .section-title, .final-cta .section-title,
.case-title, .contact-name, .faq-q {
    font-weight: 500 !important;
}
/* ---- Garanties partenaires : tuiles à icônes (remplace la check-list) ---- */
.guarantee-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 22px;
}
.guarantee {
    flex: 1 1 300px;
    max-width: 352px;
    padding: 30px 28px;
    text-align: left;
}
.guarantee .feature-ico { margin-bottom: 16px; }
.g-title {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: var(--white-90);
    margin-bottom: 8px;
    letter-spacing: -0.2px;
}
.g-desc {
    font-size: 14px;
    color: var(--white-70);
    line-height: 1.6;
}
@media (max-width: 768px) {
    .guarantee { flex: 1 1 100%; max-width: 100%; }
}
/* Home : H1 valorisé (plus grand, mot accentué en bleu de contraste) */
.hero-title.hero-title--home {
    font-size: clamp(34px, 2rem + 2.4vw, 54px);
    letter-spacing: -1px;
    line-height: 1.08;
}
/* Hero render portrait (visuel vertical type speedtest) : cap par la hauteur.
   Spécificité + !important pour battre `.hero-image img.hero-render{max-height:none!important}`. */
.hero-image img.hero-render.hero-render--portrait {
    width: auto !important;
    max-width: 100% !important;
    height: auto !important;
    max-height: clamp(380px, 50vh, 500px) !important;
    margin: 0 auto;
}
.hero .hero-image:has(.hero-render--portrait) { margin-right: 0; }
/* ============================================================
   RESSOURCES + QUESTIONNAIRE WI-FI
   ============================================================ */
.hero--short { min-height: auto; padding: clamp(96px, 13vh, 150px) 0 clamp(36px, 6vh, 60px); }
.hero-narrow { max-width: 760px; }
.text-center.hero-narrow { margin-left: auto; margin-right: auto; }

.crumb { font-size: 13px; color: var(--white-40); margin-bottom: 22px; }
.crumb a { color: var(--white-70); text-decoration: none; transition: color 0.2s ease; }
.crumb a:hover { color: var(--accent); }
.crumb span { margin: 0 6px; color: var(--white-20); }

/* ---- Carte ressource (page Ressources) ---- */
.resource-card {
    display: grid;
    grid-template-columns: 230px 1fr;
    gap: 36px;
    align-items: center;
    padding: 36px;
    max-width: 880px;
    margin: 0 auto;
}
.resource-card__media {
    display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 18px;
    padding: 28px;
    border-radius: 16px;
    background: radial-gradient(120% 120% at 30% 20%, rgba(44,135,249,0.18), rgba(44,135,249,0) 62%), linear-gradient(160deg, var(--navy-light), var(--navy-deep));
    border: 1px solid rgba(44,135,249,0.2);
}
.resource-badge {
    font-size: 11px; font-weight: 700; letter-spacing: 1.2px; text-transform: uppercase;
    color: var(--blue-glow); background: rgba(44,135,249,0.12);
    border: 1px solid rgba(44,135,249,0.3); padding: 6px 13px; border-radius: 999px;
}
.resource-icon { width: 64px; height: 64px; color: var(--accent); }
.resource-icon svg { width: 100%; height: 100%; }
.resource-title { font-size: clamp(20px, 1.1rem + 0.8vw, 26px); margin-bottom: 12px; }
.resource-desc { color: var(--white-70); font-size: 15px; line-height: 1.6; margin-bottom: 18px; }
.resource-points { list-style: none; padding: 0; margin: 0 0 26px; display: flex; flex-direction: column; gap: 11px; }
.resource-points li { display: flex; gap: 11px; align-items: flex-start; font-size: 14px; line-height: 1.5; color: var(--white-90); }
.resource-points .check {
    flex: none; width: 20px; height: 20px; border-radius: 6px; display: inline-flex; align-items: center; justify-content: center;
    background: rgba(0,200,83,0.14); color: var(--green); margin-top: 1px;
}
.resource-points .check svg { width: 12px; height: 12px; }
.resource-ctas { display: flex; flex-wrap: wrap; gap: 12px; }
.resource-more { text-align: center; color: var(--white-40); font-size: 13.5px; margin-top: 28px; }

@media (max-width: 760px) {
    .resource-card { grid-template-columns: 1fr; gap: 24px; padding: 26px; text-align: center; }
    .resource-card__media { flex-direction: row; justify-content: center; padding: 20px; }
    .resource-icon { width: 48px; height: 48px; }
    .resource-points { text-align: left; }
    .resource-ctas { justify-content: center; }
}

/* ---- Questionnaire interactif ---- */
.quiz-layout { display: grid; grid-template-columns: 1fr 340px; gap: 32px; align-items: start; }
@media (max-width: 900px) { .quiz-layout { grid-template-columns: 1fr; } }

.quiz-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 14px; }
.quiz-item {
    display: flex; gap: 18px;
    padding: 22px 24px;
    background: rgba(228,241,242,0.04);
    border: 1px solid rgba(44,135,249,0.16);
    border-radius: 16px;
    transition: border-color 0.25s ease, background 0.25s ease;
}
.quiz-item[data-answer] { border-color: rgba(44,135,249,0.4); background: rgba(44,135,249,0.05); }
.quiz-num {
    flex: none; width: 40px; height: 40px; border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-display); font-weight: 700; font-size: 18px; color: #fff;
    background: linear-gradient(135deg, var(--blue-main), var(--accent));
    box-shadow: 0 4px 14px rgba(17,109,255,0.35);
}
.quiz-content { flex: 1; }
.quiz-sign { font-size: 17px; font-weight: 600; color: #fff; margin-bottom: 5px; }
.quiz-cost { font-size: 13.5px; line-height: 1.55; color: var(--white-70); margin-bottom: 12px; }
.quiz-q { font-size: 14.5px; font-weight: 600; color: var(--blue-pale); margin-bottom: 14px; }
.quiz-toggle { display: inline-flex; gap: 8px; }
.quiz-btn {
    font-family: inherit; font-size: 14px; font-weight: 600; cursor: pointer;
    min-width: 78px; padding: 9px 18px; border-radius: 10px;
    color: var(--white-70); background: rgba(228,241,242,0.04);
    border: 1px solid rgba(44,135,249,0.22);
    transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease, transform 0.1s ease;
}
.quiz-btn:hover { color: #fff; border-color: rgba(44,135,249,0.5); }
.quiz-btn:active { transform: translateY(1px); }
.quiz-btn.is-on { color: #fff; background: linear-gradient(135deg, var(--blue-main), var(--accent)); border-color: transparent; box-shadow: 0 6px 18px rgba(17,109,255,0.32); }

/* ---- Panneau résultat ---- */
.quiz-result { position: sticky; top: 96px; padding: 30px 26px; text-align: center; }
@media (max-width: 900px) { .quiz-result { position: static; } }
.quiz-result__kick { display: block; font-size: 12px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--white-40); margin-bottom: 14px; }
.quiz-score { font-family: var(--font-display); font-weight: 700; line-height: 1; margin-bottom: 6px; }
.quiz-score #quiz-score-num { font-size: 56px; color: var(--accent); transition: color 0.3s ease; }
.quiz-score__total { font-size: 22px; color: var(--white-40); margin-left: 4px; }
.quiz-progress { font-size: 12.5px; letter-spacing: 0.3px; color: var(--white-50); margin-bottom: 16px; }
.quiz-result__text { font-size: 15px; line-height: 1.6; color: var(--white-90); margin-bottom: 20px; }
.quiz-result__cta { display: flex; flex-direction: column; gap: 10px; margin-bottom: 14px; }
.quiz-result__cta[hidden] { display: none; }
.quiz-result__cta .cta-primary, .quiz-result__cta .cta-secondary { justify-content: center; }
.quiz-reset {
    font-family: inherit; font-size: 13px; color: var(--white-50); background: none; border: none; cursor: pointer;
    text-decoration: underline; text-underline-offset: 3px; transition: color 0.2s ease;
}
.quiz-reset:hover { color: var(--white-90); }

/* Sévérité du verdict */
.quiz-result[data-level="good"] #quiz-score-num { color: var(--green); }
.quiz-result[data-level="mid"] #quiz-score-num { color: #F5A623; }
.quiz-result[data-level="bad"] #quiz-score-num { color: #FF6B6B; }
.quiz-result[data-level="good"] { border-color: rgba(0,200,83,0.35); }
.quiz-result[data-level="mid"] { border-color: rgba(245,166,35,0.4); }
.quiz-result[data-level="bad"] { border-color: rgba(255,107,107,0.45); }

/* ---- CTA final valorisé (page Ressources) ---- */
.cta-panel {
    max-width: 720px;
    margin: 0 auto;
    padding: clamp(34px, 4vw, 56px);
    text-align: center;
}
.cta-panel .section-title { margin: 12px 0 18px; font-size: clamp(26px, 1.5rem + 1.4vw, 38px); }
.cta-lead {
    color: var(--white-70);
    font-size: clamp(15px, 0.92rem + 0.25vw, 17px);
    line-height: 1.65;
    max-width: 56ch;
    margin: 0 auto 28px;
}
.cta-assurances {
    list-style: none; padding: 0; margin: 0 0 32px;
    display: flex; flex-wrap: wrap; justify-content: center; gap: 14px 24px;
}
.cta-assurances li {
    display: inline-flex; align-items: center; gap: 10px;
    font-size: 13.5px; font-weight: 500; color: var(--white-90);
}
.cta-ico {
    flex: none; width: 32px; height: 32px; border-radius: 9px;
    display: inline-flex; align-items: center; justify-content: center;
    color: var(--accent); background: rgba(44,135,249,0.12);
    border: 1px solid rgba(44,135,249,0.22);
}
.cta-ico svg { width: 16px; height: 16px; }
.cta-primary.cta-lg { font-size: 16px; padding: 15px 34px; }
.cta-micro { margin-top: 18px; font-size: 12.5px; color: var(--white-40); }
@media (max-width: 600px) {
    .cta-assurances { flex-direction: column; align-items: flex-start; gap: 12px; max-width: 320px; margin-left: auto; margin-right: auto; text-align: left; }
}

/* ============================================================
   GARDE NO-JS + armement de l'effet machine à écrire
   ============================================================ */
/* Sans JS : les reveals restent visibles (la classe .js n'est pas posée) */
html.no-js .reveal,
html.no-js .splitter-grid .splitter-card.reveal { opacity: 1 !important; transform: none !important; }

/* H1 home masqué AVANT peinture (1x/session) UNIQUEMENT quand JS va réellement taper
   → aucun flash du texte plein. Sans JS, .tw-arm n'est jamais posée → H1 visible. */
html.tw-arm .hero-title.typewriter { opacity: 0; }

/* ---- Divulgation progressive (sections repliables, SEO conservé) ---- */
.disclosure { max-width: 1040px; margin-left: auto; margin-right: auto; text-align: center; }
.disclosure > summary {
    display: inline-flex; align-items: center; gap: 9px; cursor: pointer; list-style: none;
    font-family: var(--font-display); font-weight: 600; font-size: 15px; color: var(--accent);
    padding: 12px 26px; border-radius: 999px;
    background: rgba(44, 135, 249, 0.08); border: 1px solid rgba(44, 135, 249, 0.28);
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.disclosure > summary::-webkit-details-marker { display: none; }
.disclosure > summary::marker { content: ""; }
.disclosure > summary:hover { background: rgba(44, 135, 249, 0.16); border-color: rgba(44, 135, 249, 0.5); color: #fff; }
.disclosure[open] > summary { color: #fff; }
.disclosure__chev { width: 16px; height: 16px; transition: transform 0.25s ease; }
.disclosure[open] > summary .disclosure__chev { transform: rotate(180deg); }

/* ---- Effet « machine à écrire » EN BOUCLE (H1 home) ---- */
/* Masquage NON gaté : les .tw-char n'existent que pendant l'effet (sinon H1 = texte canonique) */
.tw-char { opacity: 0; transform: translateY(4px); transition: opacity 0.38s cubic-bezier(0.4, 0, 0.2, 1), transform 0.38s cubic-bezier(0.4, 0, 0.2, 1); }
.tw-char.tw-on { opacity: 1; transform: translateY(0); }
.hero-title.typewriter { position: relative; }
.tw-caret {
    display: block; position: absolute; width: 2px; height: 1em;
    background: var(--accent); border-radius: 1px; pointer-events: none;
    animation: twBlink 0.8s steps(1, end) infinite;
}
.tw-char--accent { color: var(--accent); }
@keyframes twBlink { 50% { opacity: 0; } }
@media (prefers-reduced-motion: reduce) {
    .tw-char { opacity: 1 !important; }
    .tw-caret { display: none !important; }
}

/* ---- Bouton « Espace client » (header, distinct du menu) ---- */
.nav-espace {
    display: inline-flex; align-items: center; gap: 7px;
    font-size: 13px; font-weight: 600; color: var(--white-70);
    padding: 8px 14px; margin-right: 14px; border-radius: 9px;
    border: 1px solid rgba(44, 135, 249, 0.3);
    text-decoration: none; white-space: nowrap;
    transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}
.nav-espace svg { width: 14px; height: 14px; flex: none; }
.nav-espace:hover { color: #fff; border-color: rgba(44, 135, 249, 0.6); background: rgba(44, 135, 249, 0.1); }
.nav-espace[aria-current="page"] { color: var(--accent); border-color: rgba(44, 135, 249, 0.6); }
@media (max-width: 880px) { .nav-espace span { display: none; } .nav-espace { padding: 8px 10px; margin-right: 10px; } }

.nav-lang-switch {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 4px 8px; margin-right: 14px; border-radius: 9px;
    border: 1px solid rgba(228,241,242,0.16);
}
.nav-lang-opt {
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 12px; font-weight: 700; letter-spacing: 0.5px; color: var(--white-50);
    text-decoration: none; padding: 4px 8px; border-radius: 6px;
    transition: color 0.2s ease, background 0.2s ease;
}
a.nav-lang-opt:hover { color: #fff; background: rgba(44, 135, 249, 0.15); }
.nav-lang-opt.is-active { color: #fff; background: var(--accent); }
.nav-lang-sep { color: var(--white-20); font-size: 12px; }
@media (max-width: 880px) { .nav-lang-switch { margin-right: 8px; padding: 3px 6px; } }

/* ---- Page Espace client : piliers + bloc « bientôt » ---- */
.espace-soon { text-align: center; }
.espace-soon .badge { background: rgba(44,135,249,0.12); border: 1px solid rgba(44,135,249,0.35); color: var(--blue-glow); }

/* ---- Bande « Vos interlocuteurs » (#rdv) : épurée, sans cadre ---- */
.interlocuteurs { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px 40px; margin-top: 16px; }
.interloc {
    display: inline-flex; align-items: center; gap: 12px;
    padding: 6px 4px; text-decoration: none; color: inherit;
    transition: transform 0.2s ease;
}
.interloc:hover { transform: translateY(-1px); }
.interloc .contact-avatar {
    width: 42px; height: 42px; font-size: 15px; letter-spacing: 0; margin-bottom: 0;
    box-shadow: 0 4px 12px rgba(2, 13, 30, 0.4);
}
.interloc-txt { display: flex; flex-direction: column; text-align: left; }
.interloc-name { font-weight: 600; font-size: 14px; color: var(--white-90); line-height: 1.3; transition: color 0.2s ease; }
.interloc-role { font-size: 12px; color: var(--white-40); }
.interloc-li { width: 15px; height: 15px; color: var(--white-40); flex: none; transition: color 0.2s ease; }
.interloc:hover .interloc-name { color: #fff; }
.interloc:hover .interloc-li { color: var(--accent); }
@media (max-width: 560px) { .interlocuteurs { flex-direction: column; align-items: center; gap: 14px; } }

/*  RETOURS D'EXPÉRIENCE (index + interview)                     */
/* ============================================================= */

/* -- Barre de filtres (taxonomie par audience) -- */
.rex-toolbar { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 36px; }
.rex-filters { display: inline-flex; flex-wrap: wrap; gap: 8px; padding: 6px; border-radius: 999px; background: rgba(228,241,242,0.04); border: 1px solid rgba(44,135,249,0.16); }
.rex-chip {
    font-family: inherit; font-size: 13.5px; font-weight: 600; cursor: pointer;
    display: inline-flex; align-items: center; gap: 8px;
    padding: 9px 18px; border-radius: 999px; color: var(--white-70);
    background: transparent; border: 1px solid transparent;
    transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}
.rex-chip:hover { color: #fff; }
.rex-chip.is-active { color: #fff; background: rgba(44,135,249,0.16); border-color: rgba(44,135,249,0.4); }
.rex-count { font-size: 13px; color: var(--white-40); margin: 0; }

/* -- Pastilles d'audience -- */
.rex-dot { width: 8px; height: 8px; border-radius: 50%; display: inline-block; flex: none; }
.rex-dot--partner { background: var(--accent); box-shadow: 0 0 8px rgba(44,135,249,0.6); }
.rex-dot--client { background: var(--green); box-shadow: 0 0 8px rgba(0,200,83,0.55); }

/* -- Étiquettes (format + audience) -- */
.rex-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.rex-tags--center { justify-content: center; margin-bottom: 20px; }
.rex-tags--sm { margin-bottom: 16px; }
.rex-tag {
    display: inline-flex; align-items: center; gap: 7px;
    font-size: 11.5px; font-weight: 700; letter-spacing: 0.6px; text-transform: uppercase;
    padding: 6px 13px; border-radius: 999px;
    color: var(--white-70); background: rgba(228,241,242,0.05); border: 1px solid var(--white-20);
}
.rex-tag svg { width: 13px; height: 13px; }
.rex-tag--format { color: var(--white-90); }
.rex-tag--partner { color: var(--blue-glow); background: rgba(44,135,249,0.1); border-color: rgba(44,135,249,0.35); }
.rex-tag--client { color: #4BE08A; background: rgba(0,200,83,0.1); border-color: rgba(0,200,83,0.35); }

/* -- Carte « interview à la une » -- */
.rex-featured {
    display: grid; grid-template-columns: 300px 1fr; gap: 0;
    overflow: hidden; text-decoration: none; color: inherit;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 64px;
}
.rex-featured:hover { transform: translateY(-4px); border-color: rgba(44,135,249,0.4); box-shadow: 0 24px 50px rgba(2,13,30,0.5), 0 0 40px rgba(44,135,249,0.12); }
.rex-featured__aside {
    display: flex; flex-direction: column; justify-content: space-between; gap: 28px;
    padding: 34px 30px;
    background: radial-gradient(120% 120% at 30% 15%, rgba(44,135,249,0.18), rgba(44,135,249,0) 62%), linear-gradient(160deg, var(--navy-light), var(--navy-deep));
    border-right: 1px solid rgba(44,135,249,0.18);
}
.rex-figures { display: flex; flex-direction: column; gap: 20px; }
.rex-fig-num { font-family: var(--font-display); font-weight: 700; font-size: 30px; line-height: 1; color: var(--accent); display: block; font-variant-numeric: tabular-nums; }
.rex-fig-unit { font-size: 17px; color: var(--blue-glow); }
.rex-fig-label { font-size: 12.5px; color: var(--white-50); line-height: 1.4; margin-top: 5px; display: block; }
.rex-featured__body { padding: 36px 36px 32px; display: flex; flex-direction: column; }
.rex-eyebrow { font-size: 11.5px; font-weight: 700; letter-spacing: 1.4px; text-transform: uppercase; color: var(--blue-glow); margin-bottom: 12px; }
.rex-featured__title { font-family: var(--font-display); font-weight: 500; font-size: clamp(22px, 1.2rem + 1.1vw, 30px); line-height: 1.25; color: #fff; margin-bottom: 16px; }
.rex-featured__excerpt { color: var(--white-70); font-size: 15px; line-height: 1.7; margin-bottom: 26px; flex: 1; }

/* -- Signature auteur -- */
.rex-byline { display: flex; align-items: center; gap: 14px; }
.rex-byline--hero { justify-content: center; margin-top: 26px; }
.rex-avatar {
    width: 46px; height: 46px; border-radius: 50%; flex: none;
    display: inline-flex; align-items: center; justify-content: center;
    font-weight: 800; font-size: 15px; letter-spacing: 0.5px; color: #fff;
    background: linear-gradient(135deg, var(--blue-main), var(--blue-bright));
    box-shadow: 0 4px 14px rgba(17,109,255,0.35);
}
.rex-avatar--photo { object-fit: cover; background: none; border: 2px solid rgba(44,135,249,0.4); }
.rex-byline--hero .rex-avatar { width: 56px; height: 56px; }
.rex-byline__txt { display: flex; flex-direction: column; text-align: left; }
.rex-byline__name { font-weight: 700; font-size: 14.5px; color: var(--white-90); }
.rex-byline__role { font-size: 12.5px; color: var(--white-50); }
.rex-byline__role a { color: var(--blue-glow); text-decoration: none; }
.rex-byline__role a:hover { text-decoration: underline; }
.rex-read { margin-left: auto; display: inline-flex; align-items: center; gap: 7px; font-size: 13.5px; font-weight: 600; color: var(--accent); white-space: nowrap; }
.rex-featured:hover .rex-read svg { transform: translateX(3px); }
.rex-read svg { transition: transform 0.2s ease; }

/* -- Grille d'avis -- */
.rex-subhead { font-family: var(--font-display); font-weight: 500; font-size: clamp(19px, 1.1rem + 0.6vw, 24px); color: #fff; margin-bottom: 24px; }
.rex-grid { margin-bottom: 8px; }
.rex-grid .testimonial-card { padding-top: 26px; }
.rex-empty { text-align: center; color: var(--white-50); font-size: 15px; padding: 40px 0; }
.rex-provenance-link { color: var(--blue-glow); text-decoration: none; font-weight: 600; }
.rex-provenance-link:hover { text-decoration: underline; }

/* -- Chiffres clés (interview) -- */
.rex-keyfigures { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; max-width: 760px; margin: 0 auto; }
.rex-kf { padding: 28px 20px; text-align: center; }
.rex-kf-num { font-family: var(--font-display); font-weight: 700; font-size: clamp(26px, 1.4rem + 1.2vw, 36px); line-height: 1; color: var(--accent); display: block; font-variant-numeric: tabular-nums; }
.rex-kf-unit { font-size: 0.62em; color: var(--blue-glow); }
.rex-kf-label { font-size: 12.5px; color: var(--white-50); line-height: 1.4; margin-top: 10px; display: block; }

/* -- Corps de l'article -- */
.rex-article { }
.rex-prose { max-width: 720px; margin: 0 auto; }
.rex-h2 { font-family: var(--font-display); font-weight: 500; font-size: clamp(20px, 1.15rem + 0.7vw, 26px); color: #fff; margin: 48px 0 16px; padding-bottom: 10px; border-bottom: 1px solid rgba(44,135,249,0.22); }
.rex-h2:first-child { margin-top: 0; }
.rex-prose p { color: var(--white-70); font-size: 16px; line-height: 1.8; margin-bottom: 18px; }
.rex-quote {
    position: relative; margin: 26px 0; padding: 24px 28px 24px 30px;
    background: rgba(44,135,249,0.06); border-left: 3px solid var(--accent);
    border-radius: 0 14px 14px 0;
    font-size: 17px; font-style: italic; line-height: 1.65; color: var(--white-90);
}
.rex-quote::before {
    content: "\201C"; position: absolute; top: 2px; left: 10px;
    font-family: Georgia, serif; font-size: 42px; line-height: 1; color: var(--accent); opacity: 0.28;
}
.rex-quote--strong { font-size: 19px; color: #fff; font-weight: 500; background: rgba(44,135,249,0.1); border-left-width: 4px; }

/* -- Cartouches sociétés -- */
.rex-companies { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; max-width: 720px; margin: 52px auto 0; }
.rex-company { padding: 26px 28px; }
.rex-company--partner { border-color: rgba(44,135,249,0.32); }
.rex-company__kicker { display: block; font-size: 11px; font-weight: 700; letter-spacing: 1.4px; text-transform: uppercase; color: var(--white-40); margin-bottom: 10px; }
.rex-company h3 { font-size: 16px; font-weight: 700; color: #fff; margin-bottom: 8px; }
/* Logotype Callide — fidèle à la marque (DM Serif Display, cf. callide.fr) */
.rex-logotype { font-family: 'DM Serif Display', Georgia, serif; font-weight: 400; letter-spacing: -0.01em; color: #fff; }
.rex-company h3.rex-logotype { font-size: 24px; font-weight: 400; line-height: 1.15; margin-bottom: 8px; }
.rex-company p { font-size: 13.5px; color: var(--white-50); line-height: 1.55; margin-bottom: 16px; }
.rex-company__link { display: inline-flex; align-items: center; gap: 6px; font-size: 13.5px; font-weight: 600; color: var(--accent); text-decoration: none; }
.rex-company__link:hover { text-decoration: underline; }
.rex-company__link svg { width: 15px; height: 15px; }

@media (max-width: 760px) {
    .rex-featured { grid-template-columns: 1fr; }
    .rex-featured__aside { flex-direction: column; border-right: none; border-bottom: 1px solid rgba(44,135,249,0.18); }
    .rex-figures { flex-direction: row; flex-wrap: wrap; gap: 20px 28px; }
    .rex-featured__body { padding: 28px 26px; }
    .rex-byline { flex-wrap: wrap; }
    .rex-read { margin-left: 58px; }
    .rex-keyfigures { grid-template-columns: 1fr; max-width: 340px; }
    .rex-companies { grid-template-columns: 1fr; }
    .rex-toolbar { justify-content: center; }
}

/* ============================================================= */
/*  RESSOURCES — hub 2 versants + Observatoire TWN               */
/* ============================================================= */

/* Étiquette d'audience sur les cartes du hub */
.splitter-tag {
    display: inline-block; margin-bottom: 14px;
    font-size: 11px; font-weight: 700; letter-spacing: 1.2px; text-transform: uppercase;
    color: var(--white-40);
}
.splitter-tag--reserved {
    color: var(--blue-glow);
    padding: 4px 12px; border-radius: 999px;
    background: rgba(44,135,249,0.1); border: 1px solid rgba(44,135,249,0.32);
}

/* -- KPI de l'observatoire -- */
.obs-kpi { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.obs-millesime { text-align: center; color: var(--white-40); font-size: 12.5px; margin-top: 16px; }

/* -- Panneaux de répartition (barres d'agrégats) -- */
.obs-split { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.obs-panel { padding: 30px 30px 26px; }
.obs-panel__title { font-size: 15px; font-weight: 700; color: #fff; margin-bottom: 22px; }
.obs-panel__title span { color: var(--white-40); font-weight: 500; font-size: 13px; }
.obs-panel__foot { color: var(--white-40); font-size: 12.5px; margin-top: 16px; }
.obs-bars { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 14px; }
.obs-bars li { display: grid; grid-template-columns: 150px 1fr auto; align-items: center; gap: 12px; }
.obs-bar__label { font-size: 13px; color: var(--white-70); }
.obs-bar__track { height: 8px; border-radius: 999px; background: rgba(228,241,242,0.07); overflow: hidden; }
.obs-bar__fill { display: block; height: 100%; border-radius: 999px; background: linear-gradient(90deg, var(--blue-main), var(--accent)); }
.obs-bar__val { font-size: 12.5px; font-weight: 600; color: var(--blue-glow); font-variant-numeric: tabular-nums; white-space: nowrap; }

/* -- Extrait réel du gisement (tableau) -- */
.obs-excerpt { margin-top: 24px; }
.obs-excerpt__head { display: flex; flex-wrap: wrap; align-items: flex-start; justify-content: space-between; gap: 12px 24px; margin-bottom: 18px; }
.obs-excerpt__kicker { display: block; font-size: 11px; font-weight: 700; letter-spacing: 1.2px; text-transform: uppercase; color: var(--blue-glow); margin-bottom: 6px; }
.obs-excerpt__sub { font-size: 13.5px; color: var(--white-50); line-height: 1.55; max-width: 60ch; margin: 0; }
.obs-excerpt__sub strong { color: var(--white-90); font-weight: 600; }
.obs-excerpt__masked { display: inline-flex; align-items: center; gap: 8px; flex: none; font-size: 12px; font-weight: 600; color: var(--white-50); padding: 7px 14px; border-radius: 999px; background: rgba(228,241,242,0.05); border: 1px solid var(--white-20); }
.obs-excerpt__masked svg { width: 14px; height: 14px; color: var(--blue-glow); }
.obs-table-wrap { overflow-x: auto; border-radius: 16px; border: 1px solid rgba(44,135,249,0.18); background: rgba(228,241,242,0.03); -webkit-overflow-scrolling: touch; }
.obs-table { width: 100%; min-width: 680px; border-collapse: collapse; }
.obs-table th, .obs-table td { text-align: left; padding: 13px 18px; font-size: 13.5px; white-space: nowrap; }
.obs-table thead th { font-size: 11px; font-weight: 700; letter-spacing: 0.6px; text-transform: uppercase; color: var(--white-40); border-bottom: 1px solid rgba(44,135,249,0.2); }
.obs-table tbody tr { border-bottom: 1px solid rgba(228,241,242,0.05); transition: background 0.2s ease; }
.obs-table tbody tr:last-child { border-bottom: none; }
.obs-table tbody tr:hover { background: rgba(44,135,249,0.05); }
.obs-table td { color: var(--white-90); }
.obs-num { font-variant-numeric: tabular-nums; color: var(--blue-pale); }
.obs-dep { color: var(--white-40); font-size: 12.5px; }
.obs-score {
    display: inline-flex; align-items: center; justify-content: center;
    min-width: 38px; height: 30px; padding: 0 8px; border-radius: 8px;
    font-family: var(--font-display); font-weight: 700; font-size: 16px; color: #fff;
    background: linear-gradient(135deg, var(--blue-main), var(--accent));
    font-variant-numeric: tabular-nums;
}
.obs-score--mid { background: linear-gradient(135deg, #1f6fd0, #2C87F9); opacity: 0.9; }
.obs-mask { letter-spacing: 2px; color: var(--white-40); font-size: 12px; }
.obs-locked { display: flex; align-items: center; gap: 12px; padding: 15px 18px; border-top: 1px dashed rgba(44,135,249,0.3); background: linear-gradient(180deg, rgba(44,135,249,0.02), rgba(44,135,249,0.07)); }
.obs-locked svg { width: 18px; height: 18px; flex: none; color: var(--blue-glow); }
.obs-locked span { font-size: 12.5px; color: var(--white-50); line-height: 1.4; }

/* -- Étapes d'adhésion -- */
.obs-steps { list-style: none; padding: 0; margin: 44px 0 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; counter-reset: obs; }
.obs-step { padding: 30px 28px; position: relative; }
.obs-step__num {
    display: inline-flex; align-items: center; justify-content: center;
    width: 42px; height: 42px; border-radius: 12px; margin-bottom: 16px;
    font-family: var(--font-display); font-weight: 700; font-size: 19px; color: #fff;
    background: linear-gradient(135deg, var(--blue-main), var(--accent));
    box-shadow: 0 4px 14px rgba(17,109,255,0.35);
}
.obs-step h3 { font-size: 17px; font-weight: 700; color: #fff; margin-bottom: 8px; }
.obs-step p { font-size: 14px; line-height: 1.6; color: var(--white-70); }
.obs-rgpd { text-align: center; font-size: 13px; color: var(--white-50); margin-top: 28px; }
.obs-rgpd a { color: var(--blue-glow); text-decoration: none; }
.obs-rgpd a:hover { text-decoration: underline; }

@media (max-width: 900px) {
    .obs-kpi { grid-template-columns: repeat(2, 1fr); }
    .obs-split { grid-template-columns: 1fr; }
    .obs-steps { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
    .obs-bars li { grid-template-columns: 110px 1fr auto; gap: 8px; }
    .obs-bar__label { font-size: 12px; }
    .obs-excerpt__masked { font-size: 11px; }
}

/* ============================================================= */
/*  ESPACE CLIENT — verrou par mot de passe partagé (pop-up)     */
/* ============================================================= */
.gate-blur { filter: blur(14px); pointer-events: none; user-select: none; }
.gate-overlay {
    position: fixed; inset: 0; z-index: 500;
    background: rgba(5, 10, 30, 0.55);
    display: flex; align-items: center; justify-content: center;
    padding: 24px;
}
.gate-modal {
    width: 100%; max-width: 420px;
    background: #0A1B45;
    border: 1px solid rgba(44,135,249,0.35);
    border-radius: 18px;
    padding: 36px 32px;
    text-align: center;
    box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}
.gate-modal .lock-badge {
    width: 52px; height: 52px; margin: 0 auto 18px;
    border-radius: 50%; background: rgba(44,135,249,0.14);
    display: flex; align-items: center; justify-content: center;
    color: var(--accent);
}
.gate-modal .lock-badge svg { width: 24px; height: 24px; }
.gate-modal h2 { font-size: 20px; font-weight: 800; color: #fff; margin-bottom: 10px; }
.gate-modal p { font-size: 13.5px; color: var(--white-70); line-height: 1.6; margin-bottom: 22px; }
.gate-modal p a { color: var(--blue-pale); }
.gate-error {
    background: rgba(255, 90, 90, 0.1); border: 1px solid rgba(255, 90, 90, 0.35);
    color: #ffb3b3; font-size: 13px; padding: 10px 14px; border-radius: 8px;
    margin-bottom: 16px;
}
.gate-modal input[type="password"] {
    width: 100%; padding: 12px 14px; margin-bottom: 14px;
    border-radius: 9px; border: 1px solid rgba(228,241,242,0.16);
    background: rgba(228,241,242,0.05); color: #fff; font-size: 14px;
}
.link-btn {
    background: none; border: 0; padding: 0; cursor: pointer;
    color: var(--white-40); font-size: 12.5px; text-decoration: underline;
    text-underline-offset: 2px;
}
.link-btn:hover { color: var(--white-70); }
