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

/* ═══ RESET & BASE ══════════════════════════════════════════ */
        :root { --primary: #2D5BFF; --accent: #e0005b; --text-main: #ffffff; --text-muted: #cccccc; --glass: rgba(255, 255, 255, 0.05); --glass-border: rgba(255, 255, 255, 0.15); --footer-bg: #050505; }
        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: #000 !important; scroll-behavior: smooth; font-size: 16px !important; scroll-padding-top: 100px; }
        body { color: var(--text-main); font-family: 'Space Grotesk', sans-serif; overflow-x: hidden; cursor: none; line-height: normal; }
        * { box-sizing: border-box; outline: none; }
        a, button, input, textarea, select, label { cursor: none; }
        a { text-decoration: none; color: inherit; transition: 0.3s; }
        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); border: 0; }

        /* ═══ CURSEUR MAGIQUE ════════════════════════════════════════ */
        .cursor-dot  { width:8px; height:8px; background:#fff; position:fixed; top:0; left:0; translate:-50% -50%; border-radius:50%; z-index:9999; pointer-events:none; box-shadow:0 0 10px #fff; }
        .cursor-ring { width:40px; height:40px; border:2px solid var(--accent); position:fixed; top:0; left:0; translate:-50% -50%; border-radius:50%; z-index:9998; pointer-events:none; transition:width .2s,height .2s,background .2s; box-shadow:0 0 20px rgba(224,0,91,.3); }
        body.hovering .cursor-ring { width:70px; height:70px; background:rgba(224,0,91,.08); border-color:#fff; mix-blend-mode:screen; }

        /* ═══ FOND VIDÉO TEXTURÉ ═════════════════════════════════════ */
        .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(5, 5, 5, 0.78); 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='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.07'/%3E%3C/svg%3E"); }

        /* ═══ HEADER ════════════════════════════════════════════════ */
        header { position:fixed; top:20px; left:50%; translate:-50% 0; width:96%; max-width:1400px; padding:10px 22px; background:rgba(20,20,20,.6) !important; backdrop-filter:blur(20px); border:1px solid var(--glass-border); border-radius:100px; display:flex; justify-content:space-between; align-items:center; z-index:1000; box-shadow:0 10px 30px rgba(0,0,0,.5); }
        .logo-img { max-height:38px; width:auto; display:block; }
        .desktop-nav ul { display:flex; gap:16px; }
        .desktop-nav a { color:#ccc; font-size:.8rem; font-weight:600; text-transform:uppercase; letter-spacing:.8px; position:relative; white-space:nowrap; }
        .desktop-nav a:hover, .desktop-nav a.active { color:#fff; }
        .desktop-nav a::after { content:''; position:absolute; bottom:-5px; left:0; width:0; height:2px; background:var(--accent); transition:.3s; }
        .desktop-nav a:hover::after { width: 100%; }
        
        /* CORRECTION DU MENU DÉROULANT */
        .desktop-nav li.dropdown { position: relative; }
        .dropdown-menu { position: fixed; top: 70px; left: 0; width: 100%; background: rgba(8,8,8,.97); backdrop-filter: blur(20px); 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 .25s, transform .25s; transform: translateY(-6px); 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,.07); }
        .dropdown-menu li:last-child { border-right:none; }
        .dropdown-menu a { display:flex; align-items:center; padding:18px 26px; color:#888; font-size:.7rem; text-transform:uppercase; letter-spacing:1.5px; transition:.25s; white-space:nowrap; height:100%; }
        .dropdown-menu a::after { display:none; }
        .dropdown-menu a:hover { color:#fff; background:rgba(224,0,91,.07); }
        .dropdown-menu a.active { color:var(--accent); border-bottom:2px solid var(--accent); }
        .burger-btn { display:none; font-size:1.5rem; color:#fff; cursor:pointer; margin-left:15px; }
        
        .mobile-overlay { position:fixed; top:0; left:0; width:100%; height:100vh; background:rgba(8,8,8,.99); backdrop-filter:blur(15px); z-index:1001; display:flex; flex-direction:column; justify-content:center; align-items:center; opacity:0; visibility:hidden; pointer-events:none; transition:all .4s ease-in-out; }
        .mobile-overlay.active { opacity:1; visibility:visible; pointer-events:auto; }
        .mobile-close { position: absolute; top: 20px; right: 30px; font-size: 3.5rem; color: white; cursor: pointer; z-index: 1002; transition: 0.3s; line-height: 1; }
        .mobile-close:hover { color: var(--accent); rotate: 90deg; }
        .mobile-overlay ul { display: flex; flex-direction: column; gap: 30px; text-align: center; }
        .mobile-overlay a { font-family: 'Syne'; font-size: 2rem; color: white; text-transform: uppercase; }

        .cta-btn { background:#fff; color:#000; padding:10px 18px; border-radius:50px; font-weight:700; font-size:.75rem; transition:.4s; border:1px solid #fff; white-space:nowrap; animation:pulseCta 3s infinite; }
        @keyframes pulseCta { 0%{box-shadow:0 0 0 0 rgba(255,255,255,.4)} 70%{box-shadow:0 0 0 10px rgba(255,255,255,0)} 100%{box-shadow:0 0 0 0 rgba(255,255,255,0)} }
        .cta-btn:hover { background:var(--accent); border-color:var(--accent); color:#fff; box-shadow:0 0 20px rgba(224,0,91,.6); translate:0 -2px; animation:none; }

        /* ═══ UTILITAIRES ════════════════════════════════════════════ */
        .text-gradient { background:linear-gradient(135deg,#fff 0%,var(--accent) 45%,var(--primary) 80%,#fff 100%); background-size:200% auto; background-clip:text; -webkit-background-clip:text; -webkit-text-fill-color:transparent; animation:shine 6s linear infinite; }
        @keyframes shine { to { background-position:200% center; } }
        .section-label { font-size:.65rem; font-weight:700; text-transform:uppercase; letter-spacing:4px; color:var(--primary); margin-bottom:14px; display:block; }
        
        .reveal { opacity: 0; transform: translateY(30px); transition: all 0.8s ease-out; }
        .reveal.visible { opacity: 1; transform: translateY(0); }
        
        .btn-primary { background:linear-gradient(45deg, var(--primary), var(--accent)); color:#fff; padding:14px 32px; border-radius:50px; font-weight:700; font-size:.85rem; text-transform:uppercase; letter-spacing:1px; transition:.35s; border:none; cursor:pointer; display:inline-flex; align-items:center; gap:8px; }
        .btn-primary:hover { translate:0 -3px; box-shadow:0 12px 30px rgba(224,0,91,.4); }
        .btn-outline { background:transparent; color:#fff; padding:14px 32px; border-radius:50px; font-weight:700; font-size:.85rem; text-transform:uppercase; letter-spacing:1px; transition:.35s; border:1px solid rgba(255,255,255,.25); display:inline-flex; align-items:center; gap:8px; }
        .btn-outline:hover { border-color:#fff; translate:0 -3px; }

        /* Lien In-Text pour SEO */
        .in-text-link { color: #fff; font-weight: bold; text-decoration: underline; text-decoration-color: var(--primary); text-underline-offset: 4px; transition: 0.3s; }
        .in-text-link:hover { color: var(--primary); background: rgba(45, 91, 255, 0.1); padding: 0 4px; border-radius: 4px; }

        /* ═══ HERO ══════════════════════════════════════════════════ */
        .service-hero { padding: 180px 10% 80px; text-align: center; position: relative; z-index: 1; border-bottom: 1px solid var(--glass-border); }
        .service-tag { color: #fff; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 20px; display: inline-block; background: linear-gradient(45deg, var(--primary), var(--accent)); padding: 5px 15px; border-radius: 50px; }
        .page-title { font-family: 'Syne'; font-size: clamp(2.8rem,7vw,6rem); text-transform: uppercase; margin-bottom: 30px; line-height: 1.1; letter-spacing: -0.02em; }
        .page-title em { font-style:normal; -webkit-text-fill-color:transparent; -webkit-text-stroke:1px rgba(255,255,255,.3); }
        .service-intro { color: #ccc; font-size: 1.2rem; max-width: 800px; margin: 0 auto; line-height: 1.8; }
        .hero-ctas { display:flex; gap:14px; justify-content:center; flex-wrap:wrap; margin-top: 30px; }

        /* STATS PILULE ELASTIQUE */
        .hero-stats { display:inline-flex; justify-content:center; margin:50px auto 0; width:auto; max-width:95%; border:1px solid rgba(255,255,255,.08); border-radius:100px; backdrop-filter:blur(10px); background:rgba(255,255,255,.025); position:relative; z-index:1; }
        .hero-stat { padding:20px 40px; text-align:center; border-right:1px solid rgba(255,255,255,.07); display:flex; flex-direction:column; justify-content:center; align-items:center; }
        .hero-stat:last-child { border-right:none; }
        .hero-stat-num { font-family:'Syne',sans-serif; font-size:clamp(1.2rem, 2.5vw, 1.8rem); font-weight:800; background:linear-gradient(135deg,#fff,var(--accent)); background-clip:text; -webkit-background-clip:text; -webkit-text-fill-color:transparent; line-height:1.2; text-align:center; white-space:nowrap; }
        .hero-stat-lbl { font-size:.65rem; text-transform:uppercase; letter-spacing:1px; color:#ccc; margin-top:5px; line-height:1.4; max-width:200px; text-align:center; }

        /* ═══ CAPABILITIES STRIP ════════════════════════════════════ */
        .caps-strip { border-bottom:1px solid rgba(255,255,255,.06); padding:36px 5%; display:flex; justify-content:center; gap:0; flex-wrap:wrap; position:relative; z-index:1; }
        .cap-item { display:flex; align-items:center; gap:12px; padding:12px 28px; border-right:1px solid rgba(255,255,255,.06); font-size:.78rem; font-weight:600; text-transform:uppercase; letter-spacing:1.5px; color:#aaa; transition:.3s; }
        .cap-item:last-child { border-right:none; }
        .cap-item:hover { color:#fff; }
        .cap-item i { color:var(--accent); font-size:.8rem; }

        /* ═══ BLOCS DE CONTENU SEO (GRILLE ASYMÉTRIQUE IMMERSIVE) ════ */
        .seo-section { padding: 100px 5%; position: relative; z-index: 1; max-width: 1450px; margin: 0 auto; }
        .content-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 80px; align-items: center; margin-bottom: 120px; }
        .content-grid.reverse { direction: rtl; grid-template-columns: 1.3fr 1fr; }
        .content-grid.reverse > * { direction: ltr; }
        
        .seo-text h2 { font-family: 'Syne'; font-size: clamp(1.6rem, 4vw, 2.5rem); margin-bottom: 20px; color: white; text-transform: uppercase; line-height: 1.1; overflow-wrap: break-word; }
        .seo-text p { color: #aaa; font-size: 1.05rem; line-height: 1.8; margin-bottom: 20px; }
        
        .seo-text ul { display: flex; flex-direction: column; gap: 10px; list-style: none; padding: 0; margin: 0; }
        .seo-text li { position: relative; padding-left: 24px; color: #bbb; font-size: 0.95rem; line-height: 1.6; display:block; }
        .seo-text li::before { content: '\f058'; font-family: 'Font Awesome 5 Free'; font-weight: 900; color: var(--primary); font-size: 1rem; position: absolute; left: 0; top: 3px; }
        .seo-text strong { color: white; }
        
        .seo-text .cta-link { display: inline-flex; align-items: center; gap: 8px; color: var(--primary); font-weight: 700; font-size: 0.82rem; text-transform: uppercase; letter-spacing: 1px; border-bottom: 1px solid transparent; transition: 0.3s; margin-top: 8px; align-self: flex-start; }
        .seo-text .cta-link:hover { border-bottom-color: var(--primary); gap: 12px; }

        /* IMAGE WRAPPER AGRANDI (4/3 sur Desktop) */
        .seo-image-wrapper { position: relative; border-radius: 24px; overflow: hidden; border: 1px solid rgba(255,255,255,.1); box-shadow: 0 30px 80px rgba(0,0,0,0.7); aspect-ratio: 4/3; width: 100%; }
        .seo-image-wrapper img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1); opacity: 1 !important; visibility: visible !important; }
        .seo-image-wrapper:hover img { transform: scale(1.05); }
        .img-badge { position: absolute; bottom: 20px; left: 20px; background: rgba(10,10,10,0.95); border: 1px solid rgba(255,255,255,0.1); backdrop-filter: blur(10px); border-radius: 50px; padding: 12px 20px; font-size: 0.75rem; font-weight: 600; color: white; display: flex; align-items: center; gap: 10px; z-index: 2; box-shadow: 0 10px 20px rgba(0,0,0,0.5); }
        .img-badge i { color: var(--primary); font-size: 1rem;}

        /* ═══ GALERIE ACCORDÉON ══════════════════════════════════════ */
        .gallery-section { padding:80px 5%; position:relative; z-index:1; border-top:1px solid rgba(255,255,255,.06); }
        .gallery-header { text-align:center; margin-bottom:40px; }
        .gallery-label { font-size:.65rem; font-weight:700; text-transform:uppercase; letter-spacing:4px; color:var(--primary); margin-bottom:12px; display:block; }
        .gallery-title { font-family:'Syne',sans-serif; font-size:clamp(1.6rem,3vw,2.2rem); text-transform:uppercase; margin:0;}
        .tech-gallery { display:flex; width:100%; height:360px; gap:8px; border-radius:20px; overflow:hidden; max-width: 1400px; margin: 0 auto;}
        .tech-item { flex:1; transition:all .6s cubic-bezier(.25,1,.5,1); filter:grayscale(70%) brightness(.75); position:relative; cursor:zoom-in; overflow:hidden; }
        .tech-item img { width:100%; height:100%; object-fit:cover; display:block; transition:transform .6s cubic-bezier(.25,1,.5,1); }
        .tech-item:hover img { transform:scale(1.05); }
        .tech-item::after { content:''; position:absolute; inset:0; background:linear-gradient(to top,rgba(0,0,0,.7),transparent 60%); transition:.4s; }
        .tech-item-label { position:absolute; bottom:16px; left:16px; font-family:'Syne',sans-serif; font-size:.75rem; font-weight:700; text-transform:uppercase; letter-spacing:1px; opacity:0; transition:.35s; z-index:2; translate:0 8px; }
        .tech-item:hover { flex:4; filter:grayscale(0%) brightness(1.05); box-shadow:0 0 40px rgba(224,0,91,.2); }
        .tech-item:hover::after { opacity:.3; }
        .tech-item:hover .tech-item-label { opacity:1; translate:0 0; }

        /* ═══ FAQ ACCORDION ══════════════════════════════════════════ */
        .faq-section { padding: 80px 5%; position: relative; z-index: 1; max-width: 900px; margin: 0 auto; }
        .faq-header { text-align: center; margin-bottom: 40px; }
        .faq-list { display: flex; flex-direction: column; gap: 14px; }
        .faq-item { background: rgba(255,255,255,0.03); border: 1px solid var(--glass-border); border-radius: 14px; overflow: hidden; transition: border-color 0.3s; }
        .faq-item:hover { border-color: rgba(255,255,255,0.2); }
        .faq-item.active { border-color: rgba(45,91,255,0.4); background: rgba(45,91,255,0.05); }
        .faq-question { width: 100%; background: none; border: none; color: white; text-align: left; padding: 22px 25px; font-family: 'Space Grotesk', sans-serif; font-size: 1rem; 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(--primary); font-size: 0.85rem; 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 25px 22px; color: #aaa; font-size: 0.95rem; line-height: 1.7; margin: 0; }
        .faq-item.active .faq-answer { max-height: 350px; }

        /* ═══ FORMULAIRE AJAX ═══════════════════════════════════════ */
        .contact-section { padding: 80px 5%; display: flex; justify-content: center; align-items: center; position: relative; border-top: 1px solid var(--glass-border); }
        .glass-form-container { width: 100%; max-width: 1000px; background: rgba(10, 10, 10, 0.7); border: 1px solid var(--glass-border); border-radius: 30px; padding: 60px; position: relative; overflow: hidden; backdrop-filter: blur(30px); box-shadow: 0 20px 80px rgba(0,0,0,0.8); }
        .glass-form-container::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 3px; background: linear-gradient(90deg, var(--primary), var(--accent)); }
        .form-header { text-align: center; margin-bottom: 50px; }
        .form-header h2 { font-family: 'Syne'; font-size: 2.5rem; margin-bottom: 10px; }
        .form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
        .full-width { grid-column: span 2; }
        .input-group { position: relative; margin-bottom: 10px; }
        .input-field { width: 100%; background: rgba(0,0,0,0.4); border: 1px solid #444; padding: 18px 20px; border-radius: 12px; color: white; font-size: 1rem; transition: 0.3s; position: relative; z-index: 50; font-family:'Space Grotesk',sans-serif; }
        input[type="date"] { color: white; }
        input[type="date"]::-webkit-calendar-picker-indicator { filter: invert(1); cursor: pointer; z-index: 51; }
        .input-field:focus { border-color: var(--primary); background: rgba(45,91,255,0.05); }
        .input-label { position: absolute; left: 20px; top: 18px; color: #888; pointer-events: none; transition: 0.3s; font-size: 0.9rem; 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: -12px; left: 10px; font-size: 0.75rem; color: var(--primary); background: #000; padding: 0 5px; border-radius: 3px; }
        
        .submit-btn { width: 100%; padding: 20px; margin-top: 20px; background: linear-gradient(45deg, var(--primary), var(--accent)); border: none; border-radius: 12px; color: white; font-weight: 800; text-transform: uppercase; letter-spacing: 2px; cursor: pointer; transition: 0.3s; z-index: 50; position: relative; display: flex; justify-content: center; align-items: center; gap: 10px; }
        .submit-btn:hover { transform: translateY(-2px); box-shadow: 0 10px 40px rgba(45, 91, 255, 0.4); }
        #form-messages { padding: 15px 20px; border-radius: 10px; margin-top: 15px; font-weight: 600; display: none; text-align: center; }

        .checkbox-group { display: flex; flex-wrap: wrap; gap: 20px; margin-bottom: 20px; margin-top: 10px; }
        .checkbox-label { display: flex; align-items: center; gap: 10px; color: #ccc; font-size: 0.9rem; cursor: pointer; z-index: 50; position: relative; }
        .checkbox-input { appearance: none; width: 20px; height: 20px; border: 2px solid #555; border-radius: 4px; background: rgba(0,0,0,0.5); cursor: pointer; display: grid; place-content: center; }
        .checkbox-input:checked { background: var(--primary); border-color: var(--primary); }
        .checkbox-input:checked::after { content: '\f00c'; font-family: 'Font Awesome 5 Free'; font-weight: 900; color: white; font-size: 0.8rem; }
        textarea.input-field { resize: vertical; min-height: 150px; }
        
        .btn-loader { display: none; width: 20px; height: 20px; border: 2px solid white; border-top-color: transparent; border-radius: 50%; animation: spin .8s linear infinite; }
        @keyframes spin { to { transform: rotate(360deg); } }

        /* ═══ FOOTER ════════════════════════════════════════════════ */
        footer { border-top: 1px solid var(--glass-border); padding: 80px 10% 40px; background: var(--footer-bg); color: var(--text-muted); font-size: 0.95rem; text-align: center; position: relative; z-index: 100; }
        .footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 50px; margin-bottom: 60px; }
        .footer-col h4 { color: white; font-family: 'Syne'; margin-bottom: 25px; font-size: 1.2rem; }
        .footer-logo { max-width: 150px; margin: 0 auto 20px auto; display: block; }
        .contact-list { display: flex; flex-direction: column; align-items: center; padding: 0; }
        .contact-list li { display: flex; align-items: flex-start; justify-content: center; gap: 15px; margin-bottom: 15px; text-align: left; }
        .contact-list li i { color: var(--accent); font-size: 1rem; margin-top: 3px; flex-shrink: 0; }
        .social-links { display: flex; gap: 15px; justify-content: center; }
        .social-btn { width: 45px; height: 45px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.2); 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.1); padding-top: 30px; font-size: 0.8rem; opacity: 0.6; }

        /* ═══ LIGHTBOX ═══════════════════════════════════════════════ */
        #img-lightbox { position:fixed; inset:0; background:rgba(0,0,0,.97); z-index:3000; justify-content:center; align-items:center; display:none; }
        #img-lightbox.open { display:flex; }
        #lightbox-img { max-width:90vw; max-height:90vh; border:2px solid var(--accent); border-radius:10px; object-fit:contain; }
        .lb-close { position:fixed; top:20px; right:28px; font-size:2.2rem; color:#fff; cursor:pointer; z-index:3001; transition:.3s; }
        .lb-close:hover { color:var(--accent); rotate:90deg; }

        /* ═══ RESPONSIVE MOBILE ═════════════════════════════════════ */
        @media (max-width: 768px) {
            header { width: 100%; padding: 10px 15px; border-radius: 0; top: 0; background: rgba(10, 10, 10, 0.9) !important; justify-content: space-between; }
            .logo-img { max-height: 30px; }
            .desktop-nav { display: none; }
            .burger-btn { display: block; }

            /* Hero */
            .service-hero { padding: 110px 5% 50px; }
            .page-title { font-size: 2.2rem; }
            .service-tag { font-size: .65rem; }
            .service-intro { font-size: .95rem; }
            .hero-ctas { flex-direction: column; align-items: center; gap: 10px; }
            .btn-primary, .btn-outline { width: 100%; max-width: 320px; text-align: center; justify-content: center; }

            /* Stats pilule → empilées verticalement */
            .hero-stats { display:flex; flex-direction:column; align-items:stretch; border-radius:20px; border:1px solid rgba(255,255,255,.08); margin:30px auto 0; width:100%; max-width:100%; background:rgba(255,255,255,.025); }
            .hero-stat { border-right:none; border-bottom:1px solid rgba(255,255,255,.07); padding:18px 20px; width:100%; }
            .hero-stat:last-child { border-bottom:none; }
            .hero-stat-num { font-size: 1.6rem; }
            .hero-stat-lbl { max-width:100%; font-size:.65rem; }

            /* Caps strip */
            .caps-strip { padding:15px 5%; display:grid; grid-template-columns:1fr 1fr; gap:8px; border:none; }
            .cap-item { width:auto; border:1px solid rgba(255,255,255,.06) !important; border-radius:12px; flex-direction:column; text-align:center; gap:6px; padding:12px 8px; font-size:.6rem; background:rgba(255,255,255,0.02); justify-content:center; }

            /* Content grids */
            .content-grid { grid-template-columns: 1fr !important; gap: 30px; margin-bottom: 50px; direction: ltr !important; }
            .content-grid.reverse { direction: ltr !important; }
            .content-grid.reverse .seo-text { order: 1; }
            .content-grid.reverse .seo-image-wrapper { order: 2; }
            .seo-section { padding: 50px 5%; }
            .seo-image-wrapper { aspect-ratio: 16/10; width: 100%; }
            .seo-text h2 { font-size: 1.5rem; }
            .img-badge { font-size: .65rem; padding: 8px 14px; }

            /* Références */
            .ref-section { padding: 50px 5%; }
            .ref-grid { grid-template-columns: 1fr; gap: 20px; margin-top: 30px; }
            .ref-header { text-align: center; }

            /* Tech gallery */
            .gallery-section { padding: 50px 5%; }
            .gallery-header { text-align: center; }
            .tech-gallery { flex-direction:column; height:auto; gap:6px; }
            .tech-item { height:180px; flex:none; border-radius:12px; }
            .tech-item:hover { flex:none; height:220px; }
            .tech-item-label { font-size:.65rem; padding:10px; }

            /* FAQ */
            .faq-section { padding: 50px 5%; }
            .faq-header { text-align: center; }
            .faq-question { font-size: 0.9rem; padding: 18px 20px; }
            .faq-answer p { padding: 0 20px 18px; }

            /* Formulaire & footer */
            .form-grid, .footer-grid { grid-template-columns: 1fr; }
            .full-width { grid-column: span 1; }
            .glass-form-container { padding: 24px; }
            .cursor-dot, .cursor-ring { display: none; }
            body, a, button, input, select, textarea, label { cursor: auto !important; }
        }

/* Additional inline styles extracted during refactor. */
.faq-item:hover { border-color: rgba(255,255,255,0.2) !important; }
            .faq-item.active { border-color: rgba(45,91,255,0.4) !important; background: rgba(45,91,255,0.05) !important; }
            .faq-item.active .faq-question i { transform: rotate(180deg); }
            .faq-item.active .faq-answer { max-height: 350px !important; }
