/* Page styles extracted from template-accueil.php. */

/* ═══════════════════════════════════════════════════
           DESIGN SYSTEM — PRODJEKT PREMIUM 2026
           Langue visuelle unifiée, cohérente, de haute volée
        ═══════════════════════════════════════════════════ */

        /* --- TOKENS --- */
        :root {
            --primary:        #2D5BFF;
            --accent:         #e0005b;
            --accent-glow:    rgba(224, 0, 91, 0.35);
            --primary-glow:   rgba(45, 91, 255, 0.25);
            --text-main:      #ffffff;
            --text-muted:     #a0a0b0;
            --text-faint:     #555568;
            --glass:          rgba(255, 255, 255, 0.04);
            --glass-border:   rgba(255, 255, 255, 0.10);
            --glass-border-h: rgba(255, 255, 255, 0.20);
            --footer-bg:      #030304;
            --card-bg:        rgba(8, 8, 12, 0.82);
            --section-gap:    120px;
            --radius-card:    22px;
            --radius-sm:      12px;
        }

        /* --- RESET & BASE --- */
        html, body, #page, .site, .site-content, .entry-content, .content-area {
            background-color: transparent !important;
            background: transparent !important;
            margin: 0 !important;
            padding: 0 !important;
        }
        html {
            background-color: #030304 !important;
            scroll-behavior: smooth;
            scroll-padding-top: 100px;
            font-size: 16px !important;
            margin-top: 0 !important;
        }
        body {
            color: var(--text-main);
            font-family: 'Space Grotesk', sans-serif;
            overflow-x: hidden;
            width: 100%;
            cursor: none;
            position: relative;
            font-size: 1rem;
            line-height: normal;
        }
        * { box-sizing: border-box; outline: none; }
        a { text-decoration: none; color: inherit; transition: 0.3s; cursor: none; }
        button, input, textarea, select { cursor: none; }
        ul { list-style: none; padding: 0; margin: 0; }
        .sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border-width: 0; }

        /* --- CURSEUR CUSTOM --- */
        .cursor-dot { width: 6px; height: 6px; background: white; position: fixed; top: 0; left: 0; transform: translate(-50%,-50%); border-radius: 50%; z-index: 9999; pointer-events: none; }
        .cursor-outline { width: 36px; height: 36px; border: 1.5px solid var(--accent); position: fixed; top: 0; left: 0; transform: translate(-50%,-50%); border-radius: 50%; z-index: 9998; pointer-events: none; transition: width 0.2s, height 0.2s, background-color 0.2s; }
        body.hovering .cursor-outline { width: 60px; height: 60px; background-color: rgba(224,0,91,0.08); border-color: rgba(255,255,255,0.6); }

        /* --- FOND VIDÉO GLOBAL --- */
        .global-video-container { position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: -10; overflow: hidden; }
        .global-video-container video { width: 100%; height: 100%; object-fit: cover; }
        .global-video-overlay {
            position: fixed; top: 0; left: 0; width: 100%; height: 100%;
            background: rgba(3, 3, 4, 0.72);
            z-index: -9;
            background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.05'/%3E%3C/svg%3E");
        }

        /* --- HEADER --- */
        header {
            position: fixed; top: 18px; left: 50%; translate: -50% 0;
            width: 96%; max-width: 1400px;
            padding: 8px 20px;
            background: rgba(10, 10, 14, 0.55) !important;
            backdrop-filter: blur(24px) saturate(160%);
            -webkit-backdrop-filter: blur(24px) saturate(160%);
            border: 1px solid var(--glass-border);
            border-radius: 100px;
            display: flex; justify-content: space-between; align-items: center;
            z-index: 1000;
            box-shadow: 0 8px 32px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.08);
        }
        .logo-wrapper { display: flex; align-items: center; }
        .logo-img { max-height: 36px; width: auto; display: block; }

        .desktop-nav ul { display: flex; gap: 14px; }
        .desktop-nav a { color: var(--text-muted); font-size: 0.78rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.8px; position: relative; white-space: nowrap; transition: color 0.25s; }
        .desktop-nav a:hover { color: white; }
        .desktop-nav a::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0%; height: 1.5px; background: var(--accent); transition: 0.3s; }
        .desktop-nav a:hover::after { width: 100%; }

        .desktop-nav li.dropdown { position: relative; }
        .dropdown-menu { position: fixed; top: 66px; left: 0; width: 100%; background: rgba(5,5,8,.97); backdrop-filter: blur(24px); border-top: 1px solid var(--glass-border); border-bottom: 1px solid var(--glass-border); display: flex; flex-direction: row; justify-content: center; align-items: stretch; padding: 0; opacity: 0; pointer-events: none; transition: opacity .2s, transform .2s; transform: translateY(-4px); z-index: 999; }
        .desktop-nav li.dropdown:hover .dropdown-menu { opacity: 1; pointer-events: auto; transform: translateY(0); }
        .desktop-nav li.dropdown::after { content: ''; position: absolute; top: 100%; left: -15px; width: calc(100% + 30px); height: 40px; background: transparent; z-index: 1; }
        .dropdown-menu li { width: auto; border-right: 1px solid rgba(255,255,255,.06); }
        .dropdown-menu li:last-child { border-right: none; }
        .dropdown-menu a { display: flex; align-items: center; padding: 18px 24px; color: #777; font-size: .68rem; text-transform: uppercase; letter-spacing: 1.5px; transition: .2s; white-space: nowrap; height: 100%; }
        .dropdown-menu a::after { display: none; }
        .dropdown-menu a:hover { color: #fff; background: rgba(224,0,91,.06); }
        .dropdown-menu a.active { color: var(--accent); }

        .burger-btn { display: none; font-size: 1.4rem; color: white; margin-left: 15px; cursor: pointer; }
        .cta-btn {
            background: linear-gradient(135deg, var(--accent), #ff2070);
            color: white; padding: 9px 20px; border-radius: 50px;
            font-weight: 700; font-size: 0.73rem; transition: 0.3s;
            border: none; white-space: nowrap;
            box-shadow: 0 0 20px rgba(224, 0, 91, 0.3);
            letter-spacing: 0.5px;
        }
        .cta-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 24px rgba(224,0,91,0.5); }

        .mobile-overlay { position: fixed; inset: 0; background: rgba(5,5,8,0.98); backdrop-filter: blur(20px); z-index: 1001; display: flex; flex-direction: column; justify-content: center; align-items: center; translate: 100% 0; transition: translate 0.4s cubic-bezier(0.4,0,0.2,1); }
        .mobile-overlay.active { translate: 0 0; }
        .mobile-close { position: absolute; top: 20px; right: 28px; font-size: 3rem; color: white; cursor: pointer; z-index: 1002; transition: 0.3s; line-height: 1; }
        .mobile-close:hover { color: var(--accent); rotate: 90deg; }

        /* --- ANIMATIONS GLOBALES --- */
        .reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease-out, transform 0.7s ease-out; }
        .reveal.active, .reveal.visible { opacity: 1; transform: translateY(0); }

        @keyframes gradientText { 0%{background-position:0% 50%} 50%{background-position:100% 50%} 100%{background-position:0% 50%} }
        @keyframes shine { to { background-position: 200% center; } }
        @keyframes pulseAccent { 0%{box-shadow:0 0 0 0 rgba(224,0,91,0.5)} 70%{box-shadow:0 0 0 14px rgba(224,0,91,0)} 100%{box-shadow:0 0 0 0 rgba(224,0,91,0)} }
        @keyframes pulseBtn { 0%{box-shadow:0 0 0 0 rgba(255,255,255,0.3)} 70%{box-shadow:0 0 0 8px rgba(255,255,255,0)} 100%{box-shadow:0 0 0 0 rgba(255,255,255,0)} }
        @keyframes driveAcross { 0%{transform:translateX(0);left:-300px} 100%{transform:translateX(0);left:100vw} }
        @keyframes marqueeAnimation { 0%{transform:translate3d(0,0,0)} 100%{transform:translate3d(-50%,0,0)} }
        @keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }
        @keyframes accentPulseRing { 0%{transform:scale(1);opacity:0.6} 100%{transform:scale(1.8);opacity:0} }

        /* ═══ SIGNATURE VISUELLE SYSTÉMIQUE — en-têtes de section ═══ */
        /* Chaque section reçoit un eyebrow + titre avec accent-line */
        .section-eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            font-size: 0.65rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 4px;
            color: var(--accent);
            margin-bottom: 18px;
        }
        .section-eyebrow::before {
            content: '';
            display: inline-block;
            width: 28px;
            height: 1.5px;
            background: var(--accent);
            flex-shrink: 0;
        }

        .section-title {
            font-family: 'Syne', sans-serif;
            font-size: clamp(2rem, 3.5vw, 3.2rem);
            font-weight: 800;
            line-height: 1.08;
            text-transform: uppercase;
            letter-spacing: -1px;
            color: #fff;
            margin-bottom: 0;
        }
        .section-title .accent-word { color: var(--accent); }

        .section-header { margin-bottom: 60px; }
        .section-header.centered { text-align: center; }
        .section-header.centered .section-eyebrow { justify-content: center; }
        .section-header.centered .section-eyebrow::before { display: none; }
        .section-header.centered .section-eyebrow::after {
            content: '';
            display: inline-block;
            width: 28px;
            height: 1.5px;
            background: var(--accent);
            flex-shrink: 0;
        }

        /* Séparateur de section directionnel */
        .section-divider {
            width: 100%;
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--glass-border) 30%, var(--glass-border) 70%, transparent);
            position: relative;
        }
        .section-divider::after {
            content: '';
            position: absolute;
            left: 50%;
            top: -2px;
            transform: translateX(-50%);
            width: 60px;
            height: 5px;
            background: linear-gradient(90deg, var(--primary), var(--accent));
            border-radius: 10px;
            filter: blur(1px);
        }

        /* --- HERO --- */
        .hero { height: 100vh; display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; padding: 0 20px; position: relative; overflow: hidden; }
        .hero-video-wrapper { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 0; mask-image: linear-gradient(to bottom, black 65%, transparent 100%); -webkit-mask-image: linear-gradient(to bottom, black 65%, transparent 100%); }
        .hero-video-wrapper video { width: 100%; height: 100%; object-fit: cover; }
        .hero-video-overlay-specific { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.45); z-index: 1; }
        .hero-content { position: relative; z-index: 2; width: 100%; display: flex; flex-direction: column; align-items: center; }

        .hero h1 {
            font-family: 'Syne', sans-serif;
            font-size: clamp(1.8rem, 4vw, 4rem);
            line-height: 1.05;
            font-weight: 800;
            margin-bottom: 24px;
            letter-spacing: -1.5px;
            text-transform: uppercase;
        }
        .gradient-text {
            background: linear-gradient(90deg, var(--primary) 0%, #8ab4ff 40%, #fff 50%, var(--accent) 80%);
            background-size: 250% auto;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            animation: gradientText 6s ease infinite;
        }
        .shimmer-text {
            display: inline-block;
            font-family: 'Space Grotesk', sans-serif;
            font-size: 0.8rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 5px;
            background: linear-gradient(to right, #444 20%, #999 50%, #444 80%);
            background-size: 200% auto;
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            animation: shine 5s linear infinite;
            margin-bottom: 44px;
        }

        .hero-value {
            max-width: 760px;
            margin: -24px auto 28px;
            color: rgba(255,255,255,.82);
            font-size: clamp(.9rem,1.3vw,1.05rem);
            line-height: 1.65;
        }

        .hero-ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 60px; }
        .btn-hero-primary {
            display: inline-flex; align-items: center; gap: 10px;
            background: var(--accent); color: white;
            padding: 15px 34px; border-radius: 50px;
            font-weight: 800; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1.5px;
            transition: 0.35s; border: 1.5px solid var(--accent);
            box-shadow: 0 0 28px rgba(224,0,91,0.4);
            animation: pulseAccent 3s infinite;
        }
        .btn-hero-primary:hover { background: white; color: black; border-color: white; transform: translateY(-3px); box-shadow: 0 10px 36px rgba(255,255,255,0.25); animation: none; }
        .btn-hero-outline {
            display: inline-flex; align-items: center; gap: 10px;
            background: rgba(255,255,255,0.05); color: white;
            padding: 15px 34px; border-radius: 50px;
            font-weight: 700; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1.5px;
            transition: 0.35s; border: 1.5px solid rgba(255,255,255,0.2);
            backdrop-filter: blur(10px);
        }
        .btn-hero-outline:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.5); transform: translateY(-3px); }
        .scroll-indicator { position: absolute; bottom: 36px; z-index: 3; animation: float 2.5s ease-in-out infinite; opacity: 0.5; }

        /* ═══ SECTION INTRO ═══ */
        .intro-section {
            padding: 110px 10% 60px;
            background: linear-gradient(180deg, rgba(3,3,4,0) 0%, rgba(3,3,4,0.7) 100%);
            border-bottom: 1px solid var(--glass-border);
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            gap: 50px;
        }

        /* Halo de fond décoratif */
        .intro-section::before {
            content: '';
            position: absolute;
            width: 600px; height: 600px;
            background: radial-gradient(circle, rgba(45,91,255,0.06) 0%, transparent 70%);
            top: -100px; right: -100px;
            pointer-events: none;
        }

        .intro-grid-split {
            display: grid;
            grid-template-columns: 1.2fr 1fr;
            gap: 70px;
            align-items: flex-start;
            max-width: 1300px;
            margin: 0 auto;
            width: 100%;
        }

        .intro-title-col h2 {
            font-family: 'Syne', sans-serif;
            font-size: clamp(2.2rem, 4vw, 3.8rem);
            font-weight: 800;
            line-height: 1.08;
            text-transform: uppercase;
            letter-spacing: -1.5px;
            color: #fff;
        }
        .intro-title-col h2 span { color: var(--accent); }

        .intro-text-col { display: flex; flex-direction: column; gap: 24px; }
        .intro-text-p { color: var(--text-muted); font-size: 1.1rem; line-height: 1.75; margin: 0; }
        .intro-text-p strong { color: #fff; font-weight: 600; }
        .brand-highlight-link { color: var(--accent); font-weight: 700; text-decoration: none; border-bottom: 1px solid rgba(224,0,91,0.4); padding-bottom: 2px; transition: 0.3s; }
        .brand-highlight-link:hover { color: #fff; border-color: #fff; }

        /* Glass Sticker Panel — version raffinée */
        .glass-sticker-panel {
            background: linear-gradient(135deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.01) 100%);
            border: 1px solid rgba(255,255,255,0.10);
            border-radius: var(--radius-card);
            padding: 28px 30px;
            display: flex; align-items: center; justify-content: space-between; gap: 20px;
            backdrop-filter: blur(16px) saturate(140%);
            -webkit-backdrop-filter: blur(16px) saturate(140%);
            box-shadow: 0 24px 50px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.15);
            background-image: radial-gradient(at 0% 0%, rgba(255,255,255,0.06) 0px, transparent 50%),
                              radial-gradient(at 100% 100%, rgba(45,91,255,0.04) 0px, transparent 50%);
            margin-top: 16px;
            position: relative;
        }
        .glass-sticker-panel::after {
            content: '';
            position: absolute;
            bottom: 0; left: 0; right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(224,0,91,0.3), transparent);
        }
        .panel-message { font-size: 0.9rem; line-height: 1.6; color: #888; max-width: 62%; }
        .panel-message strong { color: #fff; display: block; font-family: 'Syne', sans-serif; font-size: 1rem; margin-bottom: 5px; text-transform: uppercase; letter-spacing: 1px; }
        .sticker-wrapper { display: flex; justify-content: center; align-items: center; perspective: 1000px; }
        .sticker-30ans { width: 130px; height: auto; transition: transform 0.1s ease-out, filter 0.3s ease; filter: drop-shadow(0 8px 18px rgba(0,0,0,0.5)); will-change: transform; animation: float 4s ease-in-out infinite; }

        /* Camion */
        .truck-track-container { position: relative; width: 100%; height: 80px; z-index: 1; margin-top: 12px; pointer-events: none; }
        .moving-truck { height: 58px; width: auto; position: absolute; left: -300px; bottom: 12px; filter: drop-shadow(0 4px 8px rgba(0,0,0,0.5)); pointer-events: auto; animation: driveAcross 20s linear infinite; }
        .moving-truck:hover { animation-play-state: paused; filter: drop-shadow(0 0 22px rgba(224,0,91,0.7)); }

        /* ═══ MARQUEE RÉFÉRENCES ═══ */
        .refs-section {
            padding: 50px 0;
            position: relative; z-index: 1;
            background: rgba(0,0,0,0.25);
            width: 100%; overflow: hidden;
        }
        .refs-label { text-align: center; font-size: .58rem; text-transform: uppercase; letter-spacing: 5px; color: var(--text-faint); margin-bottom: 32px; font-weight: 700; }
        .refs-marquee-wrap { overflow: hidden; width: 100%; mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); }
        .refs-marquee { display: flex; gap: 50px; width: max-content; animation: marqueeAnimation 28s linear infinite; padding-left: 25px; }
        .refs-marquee:hover { animation-play-state: paused; }
        .ref-item { display: flex; align-items: center; gap: 10px; color: var(--text-faint); white-space: nowrap; transition: color .3s; font-family: 'Syne', sans-serif; font-size: .82rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; }
        .ref-item:hover { color: #888; }
        .ref-item i { color: var(--accent); font-size: .45rem; }

        /* ═══ STATS ═══ */
        .stats-section {
            padding: 70px 10%;
            display: flex; flex-direction: column; align-items: center; gap: 18px;
        }
        .stats-eyebrow { font-size: 0.62rem; text-transform: uppercase; letter-spacing: 5px; color: var(--text-faint); font-weight: 700; }
        .stats-pill {
            display: inline-flex; justify-content: center; align-items: stretch;
            border: 1px solid rgba(255,255,255,.09);
            border-radius: 100px;
            backdrop-filter: blur(24px);
            background: rgba(255,255,255,.025);
            box-shadow: 0 0 60px rgba(0,0,0,.5), inset 0 1px 0 rgba(255,255,255,.07);
            max-width: 100%; flex-wrap: wrap;
        }
        .stat-item { padding: 30px 48px; text-align: center; border-right: 1px solid rgba(255,255,255,.07); display: flex; flex-direction: column; align-items: center; justify-content: center; transition: background .3s; }
        .stat-item:last-child { border-right: none; }
        .stat-item:hover { background: rgba(255,255,255,.035); }
        .stat-icon { font-size: 1rem; color: var(--accent); margin-bottom: 10px; opacity: 0.9; }
        .stat-number { font-family: 'Syne', sans-serif; font-size: 3rem; font-weight: 800; line-height: 1; background: linear-gradient(135deg, #fff 20%, var(--accent)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
        .stat-suffix { -webkit-text-fill-color: white !important; font-size: 1.8rem; }
        .stat-label { color: var(--text-muted); font-size: 0.65rem; text-transform: uppercase; letter-spacing: 2.5px; margin-top: 8px; font-weight: 600; white-space: nowrap; }

        /* ═══ CERTIFICATIONS / TRUST ═══ */
        .trust-section { padding: 70px 10%; }
        .trust-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; align-items: center; }
        .trust-link { display: block; text-decoration: none; }
        .trust-item {
            text-align: center; padding: 28px 20px;
            border: 1px solid var(--glass-border);
            border-radius: var(--radius-card);
            transition: 0.35s;
            background: var(--glass);
            backdrop-filter: blur(12px);
        }
        .trust-item:hover { background: rgba(255,255,255,0.06); border-color: var(--glass-border-h); transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.4); }
        .trust-img { height: 70px; width: auto; max-width: 100%; margin-bottom: 16px; filter: brightness(0) invert(1) opacity(0.7); transition: 0.4s; }
        .trust-item:hover .trust-img { opacity: 1; transform: scale(1.08); filter: brightness(0) invert(1) opacity(1); }
        .trust-name { font-weight: 700; font-size: 1rem; margin-bottom: 4px; color: white; }
        .trust-desc { font-size: 0.75rem; color: #666; line-height: 1.4; }

        /* ═══ BENTO GRID — EXPERTISES ═══ */
        .section-padding { padding: var(--section-gap) 10%; }

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

        /* Système de carte unifié — language commun à toutes les sections */
        .card {
            background: transparent;
            border-radius: var(--radius-card);
            padding: 32px;
            transition: transform 0.4s cubic-bezier(0.16,1,0.3,1), border-color 0.3s, box-shadow 0.3s;
            position: relative;
            overflow: hidden;
            display: flex; flex-direction: column; justify-content: space-between;
            height: 300px;
            min-width: 0;
            cursor: pointer;
            z-index: 1;
            border: 1px solid rgba(255,255,255,0.09);
            backdrop-filter: blur(14px) saturate(130%);
            -webkit-backdrop-filter: blur(14px) saturate(130%);
            background-image:
                radial-gradient(at 0% 0%, rgba(255,255,255,0.05) 0px, transparent 50%),
                radial-gradient(at 100% 100%, rgba(45,91,255,0.03) 0px, transparent 50%);
            box-shadow: 0 16px 36px rgba(0,0,0,0.35), inset 0 1px 0 rgba(255,255,255,0.10);
        }
        .card::after { content: ""; position: absolute; inset: 1px; background: rgba(6,6,10,0.78); border-radius: calc(var(--radius-card) - 1px); z-index: -1; }
        .card::before {
            content: "";
            position: absolute; inset: 0;
            background: radial-gradient(160px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(45,91,255,0.09), transparent 80%);
            z-index: -1;
            opacity: 0;
            transition: opacity 0.35s;
            pointer-events: none;
        }
        .card:hover::before { opacity: 1; }
        .card:hover {
            transform: translateY(-7px);
            border-color: rgba(255,255,255,0.18);
            box-shadow: 0 28px 56px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.18);
            backdrop-filter: blur(18px) saturate(150%);
        }

        /* Accent-line colorée en bas au hover */
        .card::after {
            transition: box-shadow 0.35s;
        }
        .card:hover::after {
            box-shadow: inset 0 -2px 0 var(--accent);
        }

        .card-content { position: relative; z-index: 2; width: 100%; }
        .card-icon { font-size: 1.8rem; margin-bottom: 16px; color: white; transition: color 0.3s, transform 0.3s; }
        .card:hover .card-icon { color: var(--accent); transform: scale(1.1); }
        .card h3 { font-size: 1.15rem; margin-bottom: 10px; font-family: 'Syne', sans-serif; text-transform: uppercase; letter-spacing: 0.5px; overflow-wrap: anywhere; word-break: break-word; }
        .card p { color: var(--text-muted); font-size: 0.85rem; line-height: 1.6; }
        .card-link { margin-top: auto; color: white; font-weight: 700; display: flex; align-items: center; gap: 8px; font-size: 0.8rem; position: relative; z-index: 2; transition: color 0.3s, gap 0.3s; }
        .card:hover .card-link { color: var(--accent); gap: 12px; }

        /* ═══ INGÉNIERIE — même langage que cards ═══ */
        .engineering-section {
            padding: var(--section-gap) 10%;
            position: relative; z-index: 2;
        }
        .engineering-subtitle { color: var(--text-muted); max-width: 680px; margin: 0 auto 54px; font-size: 1.05rem; line-height: 1.65; }
        .engineering-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }

        /* eng-card reçoit le même traitement glass que .card */
        .eng-card {
            background: transparent;
            border: 1px solid rgba(255,255,255,0.09);
            border-radius: var(--radius-card);
            padding: 38px 30px;
            backdrop-filter: blur(14px) saturate(130%);
            -webkit-backdrop-filter: blur(14px) saturate(130%);
            background-image: radial-gradient(at 0% 0%, rgba(255,255,255,0.04) 0px, transparent 50%);
            box-shadow: 0 16px 36px rgba(0,0,0,0.35), inset 0 1px 0 rgba(255,255,255,0.10);
            transition: 0.4s;
            text-align: left;
            position: relative;
            overflow: hidden;
        }
        .eng-card::after { content: ""; position: absolute; inset: 1px; background: rgba(6,6,10,0.78); border-radius: calc(var(--radius-card) - 1px); z-index: -1; }
        .eng-card:hover { border-color: rgba(255,255,255,0.18); transform: translateY(-6px); box-shadow: 0 28px 56px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.18); }
        .eng-card:hover::after { box-shadow: inset 0 -2px 0 var(--accent); }

        .eng-icon-wrap {
            width: 48px; height: 48px;
            border-radius: 14px;
            background: linear-gradient(135deg, rgba(224,0,91,0.15), rgba(45,91,255,0.1));
            border: 1px solid rgba(224,0,91,0.2);
            display: flex; align-items: center; justify-content: center;
            margin-bottom: 22px;
            position: relative; z-index: 2;
        }
        .eng-icon { font-size: 1.35rem; color: var(--accent); }
        .eng-card h3 { font-family: 'Syne'; font-size: 1.15rem; color: white; margin-bottom: 12px; text-transform: uppercase; letter-spacing: 0.5px; position: relative; z-index: 2; }
        .eng-card p { color: var(--text-muted); font-size: 0.85rem; line-height: 1.65; position: relative; z-index: 2; }

        /* ═══ RÉALISATIONS — même langage ═══ */
        .realisations-section { padding: var(--section-gap) 10%; }
        .realisations-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 0; }

        .realisation-card {
            background: transparent;
            border: 1px solid rgba(255,255,255,0.09);
            border-radius: var(--radius-card);
            padding: 30px;
            backdrop-filter: blur(14px) saturate(130%);
            -webkit-backdrop-filter: blur(14px) saturate(130%);
            box-shadow: 0 16px 36px rgba(0,0,0,0.35), inset 0 1px 0 rgba(255,255,255,0.10);
            transition: 0.4s;
            position: relative;
            overflow: hidden;
        }
        .realisation-card::after { content: ""; position: absolute; inset: 1px; background: rgba(6,6,10,0.78); border-radius: calc(var(--radius-card) - 1px); z-index: 0; }
        .realisation-card > * { position: relative; z-index: 1; }

        /* Barre latérale signature → remplacée par barre en haut */
        .realisation-card::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0;
            height: 2px;
            background: linear-gradient(90deg, var(--primary), var(--accent));
            z-index: 2;
            border-radius: var(--radius-card) var(--radius-card) 0 0;
            opacity: 0.7;
            transition: opacity 0.3s;
        }
        .realisation-card:hover { border-color: rgba(255,255,255,0.18); transform: translateY(-6px); box-shadow: 0 28px 56px rgba(0,0,0,0.5); }
        .realisation-card:hover::before { opacity: 1; }


        .realisation-thumb-wrap { width:calc(100% + 60px); margin:-30px -30px 24px; aspect-ratio:16/9; overflow:hidden; border-bottom:1px solid rgba(255,255,255,.08); }
        .realisation-thumb { width:100%; height:100%; object-fit:cover; display:block; transition:transform .45s; }
        .realisation-card:hover .realisation-thumb { transform:scale(1.04); }

        .realisation-tag { display: inline-block; background: rgba(224,0,91,0.12); color: var(--accent); font-size: 0.65rem; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; padding: 4px 10px; border-radius: 50px; margin-bottom: 14px; border: 1px solid rgba(224,0,91,0.25); }
        .realisation-card h3 { font-family: 'Syne', sans-serif; font-size: 1.1rem; color: white; margin-bottom: 8px; }
        .realisation-card p { color: var(--text-muted); font-size: 0.83rem; line-height: 1.55; }
        .realisation-meta { display: flex; align-items: center; gap: 8px; margin-top: 16px; color: #555; font-size: 0.78rem; flex-wrap: wrap; }
        .realisation-meta i { color: var(--accent); }
        .realisations-cta { text-align: center; margin-top: 40px; }
        .btn-outline {
            display: inline-flex; align-items: center; gap: 8px;
            border: 1px solid rgba(255,255,255,0.2); color: white;
            padding: 13px 32px; border-radius: 50px;
            font-weight: 700; font-size: 0.82rem; text-transform: uppercase; letter-spacing: 1px;
            transition: 0.3s; backdrop-filter: blur(10px);
        }
        .btn-outline:hover { background: white; color: black; border-color: white; transform: translateY(-2px); }


        .zones-section { padding: 70px 10%; position:relative; z-index:1; }
        .zones-grid { max-width:1100px; margin:28px auto 0; display:flex; flex-wrap:wrap; justify-content:center; gap:10px; }
        .zone-link { padding:11px 16px; border:1px solid rgba(255,255,255,.12); border-radius:50px; color:#bbb; font-size:.72rem; font-weight:700; text-transform:uppercase; letter-spacing:.6px; }
        .zone-link:hover { color:#fff; border-color:var(--accent); background:rgba(224,0,91,.06); transform:translateY(-2px); }

        /* ═══ FAQ — cohérence du système ═══ */
        .faq-section { padding: var(--section-gap) 10%; }
        .faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
        .faq-item {
            background: var(--glass);
            border: 1px solid var(--glass-border);
            border-radius: var(--radius-card);
            overflow: hidden;
            transition: border-color 0.3s;
            backdrop-filter: blur(12px);
        }
        .faq-item:hover { border-color: var(--glass-border-h); }
        .faq-item.active { border-color: rgba(224,0,91,0.35); background: rgba(224,0,91,0.02); }
        .faq-question { width: 100%; background: none; border: none; color: white; text-align: left; padding: 20px 24px; font-family: 'Space Grotesk', sans-serif; font-size: 0.95rem; font-weight: 600; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 15px; line-height: 1.4; }
        .faq-question i { color: var(--accent); font-size: 0.8rem; transition: transform 0.3s; flex-shrink: 0; }
        .faq-item.active .faq-question i { transform: rotate(180deg); }
        .faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
        .faq-answer p { padding: 0 24px 20px; color: #999; font-size: 0.9rem; line-height: 1.72; margin: 0; }
        .faq-item.active .faq-answer { max-height: 350px; }

        /* ═══ FORMULAIRE DE CONTACT ═══ */
        .contact-section { padding: var(--section-gap) 5%; display: flex; justify-content: center; align-items: center; position: relative; }
        .glass-form-container {
            width: 100%; max-width: 900px;
            background: rgba(6,6,10,0.7);
            border: 1px solid var(--glass-border);
            border-radius: 28px;
            padding: 56px 60px;
            position: relative; overflow: hidden;
            box-shadow: 0 30px 80px rgba(0,0,0,0.7);
            backdrop-filter: blur(30px);
        }
        .glass-form-container::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 2px; background: linear-gradient(90deg, var(--primary), var(--accent)); }
        /* Halo décoratif */
        .glass-form-container::after {
            content: '';
            position: absolute;
            width: 300px; height: 300px;
            background: radial-gradient(circle, rgba(224,0,91,0.06) 0%, transparent 70%);
            bottom: -80px; right: -80px;
            pointer-events: none;
        }
        .form-header { text-align: center; margin-bottom: 44px; }
        .form-header h2 { font-family: 'Syne'; font-size: 2.2rem; margin-bottom: 8px; }
        .form-header p { color: var(--text-muted); font-size: 0.95rem; }
        .form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
        .full-width { grid-column: span 2; }
        .input-group { position: relative; margin-bottom: 6px; }
        .input-field { width: 100%; background: rgba(0,0,0,0.35); border: 1px solid rgba(255,255,255,0.12); padding: 17px 18px; border-radius: var(--radius-sm); color: white; font-size: 0.95rem; transition: 0.3s; position: relative; z-index: 50; font-family: inherit; }
        .input-field:focus { border-color: var(--accent); background: rgba(224,0,91,0.04); box-shadow: 0 0 14px rgba(224,0,91,0.15); }
        .input-label { position: absolute; left: 18px; top: 17px; color: #666; pointer-events: none; transition: 0.3s; font-size: 0.85rem; text-transform: uppercase; font-weight: 600; letter-spacing: 1px; z-index: 55; }
        .input-group:focus-within .input-label,
        .input-group.has-content .input-label,
        .input-group.date-group .input-label { top: -11px; left: 10px; font-size: 0.7rem; color: var(--accent); background: #07070a; padding: 0 5px; border-radius: 3px; }
        textarea.input-field { resize: vertical; min-height: 140px; }
        select.input-field { appearance: none; color: #ccc; cursor: pointer; }
        select.input-field option { background: #111; color: white; }

        .checkbox-group { display: flex; gap: 20px; flex-wrap: wrap; }
        .checkbox-label { display: flex; align-items: center; gap: 8px; color: var(--text-muted); font-size: 0.9rem; cursor: pointer; }
        .checkbox-input { width: 16px; height: 16px; accent-color: var(--accent); }

        /* Bouton CTA resserré et premium */
        .submit-btn {
            display: block;
            margin: 28px auto 0;
            width: auto;
            min-width: 280px;
            padding: 18px 48px;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            border: none;
            border-radius: 50px;
            color: white;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 2px;
            font-size: 0.85rem;
            cursor: pointer;
            transition: 0.3s;
            position: relative;
            z-index: 50;
            font-family: inherit;
            box-shadow: 0 8px 30px rgba(224,0,91,0.3);
        }
        .submit-btn:hover { transform: translateY(-2px); box-shadow: 0 14px 44px rgba(224,0,91,0.45); }

        /* ═══ ANIMATION TEXTUELLE COMMUNE ═══ */
        .text-glow-anim {
            background: linear-gradient(to right, #ffffff 20%, var(--accent) 50%, var(--primary) 80%, #ffffff 100%);
            background-size: 200% auto;
            color: #fff;
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            animation: shine 6s linear infinite;
        }

        /* ═══ FOOTER ═══ */
        footer {
            border-top: 1px solid var(--glass-border);
            padding: 80px 10% 40px;
            background: var(--footer-bg);
            color: var(--text-muted);
            font-size: 0.92rem;
            text-align: center;
            position: relative;
            z-index: 100;
        }
        .footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 50px; margin-bottom: 56px; }
        .footer-col h4 { color: white; font-family: 'Syne'; margin-bottom: 22px; font-size: 1.1rem; text-transform: uppercase; letter-spacing: 1px; }
        .footer-logo { max-width: 140px; margin: 0 auto 18px auto; display: block; }
        .contact-list li { display: flex; align-items: center; justify-content: center; gap: 14px; margin-bottom: 14px; }
        .contact-list li i { color: var(--accent); font-size: 1rem; }
        .contact-list li a { color: var(--text-muted); transition: 0.3s; }
        .contact-list li a:hover { color: white; }
        .social-links { display: flex; gap: 12px; justify-content: center; }
        .social-btn { width: 42px; height: 42px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.15); display: flex; align-items: center; justify-content: center; color: white; transition: 0.3s; }
        .social-btn:hover { background: var(--accent); border-color: var(--accent); transform: translateY(-3px); }
        .copyright { text-align: center; border-top: 1px solid rgba(255,255,255,0.08); padding-top: 28px; font-size: 0.78rem; opacity: 0.55; }

        /* ═══ RESPONSIVE ═══ */
        @media (max-width: 1024px) {
            .bento-grid { grid-template-columns: repeat(2, 1fr); }
            .engineering-grid { grid-template-columns: 1fr 1fr; }
            .realisations-grid { grid-template-columns: 1fr 1fr; }
        }

        @media (max-width: 768px) {
            :root { --section-gap: 70px; }
            header { width: 100%; padding: 10px 15px; border-radius: 0; top: 0; background: rgba(5,5,8,0.92) !important; }
            .logo-img { max-height: 28px; }
            .desktop-nav { display: none; }
            .burger-btn { display: block; }
            .cta-btn { font-size: 0.62rem; padding: 8px 12px; }

            .hero h1 { font-size: 1.6rem !important; line-height: 1.15; letter-spacing: -0.5px; }
            .hero-ctas { flex-direction: column; align-items: center; gap: 10px; }
            .btn-hero-primary, .btn-hero-outline { width: 100%; max-width: 300px; justify-content: center; font-size: 0.82rem; padding: 14px 24px; }

            .stats-pill { border-radius: 20px; flex-direction: column; width: 100%; max-width: 320px; }
            .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.07); padding: 22px 30px; width: 100%; }
            .stat-item:last-child { border-bottom: none; }
            .stat-number { font-size: 2.5rem; }

            .bento-grid { grid-template-columns: 1fr; }
            .card { height: auto; min-height: 220px; padding: 24px; }
            .engineering-grid { grid-template-columns: 1fr; }
            .realisations-grid { grid-template-columns: 1fr; }
            .form-grid { grid-template-columns: 1fr; }
            .full-width { grid-column: span 1; }
            .footer-grid { grid-template-columns: 1fr; }

            .intro-section { padding: 60px 6% 40px; gap: 30px; }
            .intro-grid-split { grid-template-columns: 1fr; gap: 24px; text-align: center; }
            .intro-title-col h2 { font-size: clamp(1.7rem, 6vw, 2.2rem) !important; letter-spacing: -0.5px; }
            .glass-sticker-panel { flex-direction: column-reverse; padding: 22px; text-align: center; gap: 18px; }
            .panel-message { max-width: 100%; }

            .section-padding, .engineering-section, .realisations-section, .faq-section, .trust-section { padding: 70px 5%; }
            .glass-form-container { padding: 28px 20px; }
            .submit-btn { width: 100%; min-width: unset; }

            .cursor-dot, .cursor-outline { display: none; }
            body, a, button, input, select, textarea, label { cursor: auto !important; }
        }

    
        .agency-bridge-final { max-width:1120px; margin:0 auto 80px; padding:0 5%; position:relative; z-index:2; }
        .agency-bridge-final-inner { border:1px solid rgba(255,255,255,.10); background:rgba(255,255,255,.025); border-radius:20px; padding:30px 34px; text-align:center; }
        .agency-bridge-final-kicker { display:block; color:var(--accent); text-transform:uppercase; letter-spacing:3px; font-size:.65rem; font-weight:700; margin-bottom:10px; }
        .agency-bridge-final h2 { font-family:'Syne',sans-serif; font-size:clamp(1.4rem,3vw,2rem); text-transform:uppercase; margin:0 0 10px; }
        .agency-bridge-final p { color:#999; line-height:1.7; max-width:760px; margin:0 auto 18px; }
        .agency-bridge-final a { display:inline-flex; align-items:center; gap:9px; padding:11px 18px; border:1px solid rgba(255,255,255,.18); border-radius:999px; color:#fff; font-size:.78rem; font-weight:700; text-transform:uppercase; letter-spacing:.7px; }
        .agency-bridge-final a:hover { border-color:var(--accent); background:rgba(224,0,91,.07); }
