/* ---------- STYLES (identiques à la version précédente) ---------- */
        :root {
            --primary: #0075d7;      /* Bleu vif du logo */
            --secondary: #005faf;    /* Bleu foncé du logo */
            --accent: #4da8ff;       /* Bleu ciel clair */
            /* Valeurs par défaut (dark) — écrasées dès que body.dark/light-mode est appliqué */
            --text-color: #ffffff;
            --glass-bg: rgba(255, 255, 255, 0.05);
            --glass-border: rgba(255, 255, 255, 0.13);
            --shadow: rgba(0, 117, 215, 0.3);
            --bg-gradient-start: #050508;
            --bg-gradient-end: #08080d;
        }

        body.dark-mode {
            --text-color: #ffffff;
            --glass-bg: rgba(255, 255, 255, 0.05);     /* 5% par défaut */
            --glass-border: rgba(255, 255, 255, 0.13);
            --shadow: rgba(0, 117, 215, 0.3);
            --bg-gradient-start: #050508;
            --bg-gradient-end: #08080d;
        }

        body.light-mode {
            --text-color: #1a202c;
            --glass-bg: rgba(255, 255, 255, 0.2);      /* 5% * 4 = 20% pour le mode clair */
            --glass-border: rgba(255, 255, 255, 0.3);
            --shadow: rgba(0, 117, 215, 0.15);
            --bg-gradient-start: #cfe4f8;
            --bg-gradient-end: #e8f3ff;
            --accent: #0055a5;   /* Bleu foncé uniforme en mode clair */
        }

        .honeypot-wrap {
            display: none;
        }

        /* ================================================
           SCROLL PROGRESS BAR
           ================================================ */
        #scroll-progress {
            position: fixed;
            top: 0; left: 0;
            height: 3px;
            width: 0%;
            background: linear-gradient(90deg, var(--accent), #a78bfa, var(--accent));
            background-size: 200% 100%;
            z-index: 9999;
            transition: width 0.1s linear;
            animation: progressShimmer 2s linear infinite;
            box-shadow: 0 0 8px rgba(77,168,255,0.5);
        }
        @keyframes progressShimmer {
            0%   { background-position: 200% 0; }
            100% { background-position: -200% 0; }
        }

        /* ================================================
           BOUTON RETOUR EN HAUT — supprimé
           ================================================ */

        body {
            font-family: 'Inter', sans-serif;
            background: linear-gradient(135deg, var(--bg-gradient-start) 0%, var(--bg-gradient-end) 100%);
            background-attachment: fixed;
            color: var(--text-color);
            line-height: 1.6;
            overflow-x: hidden;
            transition: all 0.5s ease;
            min-height: 100vh;
        }

        /* ========================================
           🌌 FOND FIBRE OPTIQUE (photo réelle)
           ======================================== */
        body.dark-mode::before {
            content: '';
            position: fixed;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 100%;
            max-width: 1920px;
            height: 100%;
            z-index: 0;
            pointer-events: none;
            /* WebP en priorité (-40 % poids), fallback JPG pour très vieux navigateurs */
            background-image: url('motherboard-bg.jpg'); /* fallback CSS classique */
            background-image: image-set(
                url('motherboard-bg.webp') type('image/webp'),
                url('motherboard-bg.jpg')  type('image/jpeg')
            );
            background-image: -webkit-image-set(
                url('motherboard-bg.webp') type('image/webp'),
                url('motherboard-bg.jpg')  type('image/jpeg')
            );
            background-size: cover;
            background-position: center center;
            background-repeat: no-repeat;
            opacity: 0.15;
            /* 👇 MASQUE DE FONDU : fait disparaître progressivement les bords */
            -webkit-mask-image: linear-gradient(
                to right,
                transparent 0%,
                rgba(0, 0, 0, 0.5) 10%,
                #000 25%,
                #000 75%,
                rgba(0, 0, 0, 0.5) 90%,
                transparent 100%
            );
            mask-image: linear-gradient(
                to right,
                transparent 0%,
                rgba(0, 0, 0, 0.5) 10%,
                #000 25%,
                #000 75%,
                rgba(0, 0, 0, 0.5) 90%,
                transparent 100%
            );
        }

        /* Vignette sombre globale pour focus au centre */
        body.dark-mode::after {
            content: '';
            position: fixed;
            inset: 0;
            z-index: 0;
            pointer-events: none;
            background: radial-gradient(
                ellipse at center,
                transparent 0%,
                rgba(10, 10, 15, 0.05) 50%,
                rgba(10, 10, 15, 0.2) 100%
            );
        }

        body.light-mode {
            background: linear-gradient(135deg, #daeeff 0%, #f0f7ff 100%);
            background-attachment: fixed;
        }

        /* ========================================
           💻 FOND PLUIE DE CODE — mode clair
           Canvas animé généré par JS
           ======================================== */
        #code-rain-canvas {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
            pointer-events: none;
            opacity: 0;
            transition: opacity 0.6s ease;
        }

        body.light-mode #code-rain-canvas {
            display: block;
            opacity: 1;
        }

        /* Vignette lumineuse pour le mode clair */
        body.light-mode::after {
            content: '';
            position: fixed;
            inset: 0;
            z-index: 0;
            pointer-events: none;
            background: radial-gradient(
                ellipse at center,
                rgba(220, 240, 255, 0.55) 0%,
                rgba(200, 228, 255, 0.35) 50%,
                rgba(180, 215, 255, 0.2) 100%
            );
        }

        /* ========================================
           🟣 ORBES FLOTTANTES
           ======================================== */
        .bg-orb {
            position: fixed;
            border-radius: 50%;
            filter: blur(100px);
            pointer-events: none;
            z-index: 0;
            animation: float 20s infinite ease-in-out;
        }

        .bg-orb-1 {
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(77, 168, 255, 0.12) 0%, transparent 70%);
            top: -200px;
            right: -200px;
            animation-delay: -5s;
        }

        .bg-orb-2 {
            width: 800px;
            height: 800px;
            background: radial-gradient(circle, rgba(0, 117, 215, 0.1) 0%, transparent 70%);
            bottom: -300px;
            left: -300px;
        }

        @media (max-width: 768px) {
            .bg-orb-1, .bg-orb-2 {
                display: none;
            }
        }

        /* En mode clair, les orbes sont un peu plus opaques */
        body.light-mode .bg-orb-1 {
            background: radial-gradient(circle, rgba(77, 168, 255, 0.4) 0%, transparent 70%);
        }

        body.light-mode .bg-orb-2 {
            background: radial-gradient(circle, rgba(0, 117, 215, 0.3) 0%, transparent 70%);
        }

        @keyframes float {
            0%, 100% { transform: translate(0, 0) rotate(0deg); }
            25% { transform: translate(50px, 100px) rotate(90deg); }
            50% { transform: translate(100px, 50px) rotate(180deg); }
            75% { transform: translate(50px, -50px) rotate(270deg); }
        }

        .glass {
            background: var(--glass-bg);
            backdrop-filter: blur(20px);
            border: 1px solid var(--glass-border);
            box-shadow: 0 8px 32px var(--shadow);
        }

        nav {
            position: fixed;
            top: 20px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 1000;
            width: 90%;
            max-width: 1200px;
            padding: 1rem 2rem;
            border-radius: 20px;
            animation: slideDown 0.8s ease-out;
        }



        @keyframes slideDown {
            from { transform: translate(-50%, -100px); opacity: 0; }
            to { transform: translate(-50%, 0); opacity: 1; }
        }

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

        .logo {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--text-color);
            text-decoration: none;
            cursor: pointer;
        }

        .nav-links {
            display: flex;
            gap: 2rem;
            list-style: none;
            align-items: center;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--text-color);
            font-weight: 500;
            transition: all 0.3s;
            position: relative;
            padding: 0.5rem 1rem;
        }

        .nav-links a::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, var(--accent), var(--primary));
            transition: width 0.3s;
        }

        .nav-links a:hover::before {
            width: 80%;
        }

        .theme-toggle {
            width: 60px;
            height: 30px;
            background: var(--glass-bg);
            border-radius: 15px;
            border: 1px solid var(--glass-border);
            cursor: pointer;
            position: relative;
            margin-left: 1rem;
        }

        .theme-toggle-ball {
            width: 24px;
            height: 24px;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            border-radius: 50%;
            position: absolute;
            top: 2px;
            left: 3px;
            transition: transform 0.3s;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.7rem;
        }

        body.light-mode .theme-toggle-ball {
            transform: translateX(30px);
        }

        .burger {
            display: none;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            gap: 5px;
            cursor: pointer;
            padding: 0;
            margin-left: 0.5rem;
            width: 42px;
            height: 42px;
            flex-shrink: 0;
        }

        .burger span {
            width: 28px;
            height: 3px;
            background: var(--text-color);
            border-radius: 3px;
            transition: all 0.3s ease;
        }

        .burger.active span:nth-child(1) {
            transform: rotate(45deg) translate(8px, 8px);
        }
        .burger.active span:nth-child(2) {
            opacity: 0;
        }
        .burger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -7px);
        }

        .mobile-menu {
            position: fixed;
            top: 90px;
            right: 20px;
            transform: translateX(120%);
            width: 90%;
            max-width: 320px;
            height: auto;
            max-height: calc(100vh - 110px);
            overflow-y: auto;
            background: #0d1117;
            backdrop-filter: none;
            -webkit-backdrop-filter: none;
            padding: 1.5rem;
            border-radius: 20px;
            transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            z-index: 999;
            box-shadow: 0 10px 50px rgba(0, 0, 0, 0.6);
            border: 1px solid rgba(255, 255, 255, 0.08);
        }

        /* Overlay sombre derrière le menu burger */
        .mobile-menu-overlay {
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, 0.4);
            z-index: 998;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.4s ease;
        }

        .mobile-menu-overlay.active {
            opacity: 1;
            pointer-events: auto;
        }

        .mobile-menu.active {
            transform: translateX(0);
        }

        /* ── CTA bar ── */
        /* ══════════════════════════════════════
           STYLE B — Pills + nav chevron, sans icônes
           ══════════════════════════════════════ */

        /* CTA pills */
        .mobile-cta-bar {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0.5rem;
            margin-bottom: 1.6rem;
        }
        .mobile-cta-primary,
        .mobile-cta-secondary {
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 0.72rem 1rem !important;
            border-radius: 999px !important;
            font-size: 0.9rem !important;
            font-weight: 700 !important;
            letter-spacing: 0.01em;
            transition: all 0.2s ease !important;
            text-decoration: none !important;
            text-align: center;
        }
        .mobile-cta-primary {
            background: #fff !important;
            color: #0075d7 !important;
            border: none !important;
            box-shadow: 0 2px 12px rgba(255,255,255,0.15);
        }
        .mobile-cta-primary:hover {
            background: rgba(255,255,255,0.9) !important;
            transform: translateY(-1px) !important;
            box-shadow: 0 4px 20px rgba(255,255,255,0.2) !important;
        }
        .mobile-cta-secondary {
            background: transparent !important;
            color: rgba(255,255,255,0.88) !important;
            border: 1.5px solid rgba(255,255,255,0.28) !important;
        }
        .mobile-cta-secondary:hover {
            background: rgba(255,255,255,0.07) !important;
            border-color: rgba(255,255,255,0.5) !important;
            transform: translateY(-1px) !important;
        }

        /* ── Listes nav ── */
        .mobile-menu ul {
            list-style: none;
        }
        .mobile-nav-main li,
        .mobile-nav-secondary li {
            margin-bottom: 0.2rem;
        }
        .mobile-nav-main a,
        .mobile-nav-secondary a {
            color: rgba(255,255,255,0.82);
            text-decoration: none;
            font-size: 1rem;
            font-weight: 500;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0.72rem 1rem;
            border-radius: 12px;
            transition: all 0.2s;
            border: 1px solid transparent;
        }
        .mobile-nav-main a::after,
        .mobile-nav-secondary a::after {
            content: '›';
            font-size: 1rem;
            opacity: 0.3;
            transition: opacity 0.2s, transform 0.2s;
        }
        .mobile-nav-main a:hover,
        .mobile-nav-secondary a:hover {
            background: rgba(255,255,255,0.06);
            border-color: rgba(255,255,255,0.1);
            color: #fff;
        }
        .mobile-nav-main a:hover::after,
        .mobile-nav-secondary a:hover::after {
            opacity: 0.7;
            transform: translateX(3px);
        }

        /* ── Séparateur Voir plus ── */
        .mobile-more-toggle {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0.65rem 1rem;
            margin: 0.8rem 0 0.2rem;
            border-top: 1px solid var(--glass-border);
            cursor: pointer;
            color: var(--text-muted, rgba(255,255,255,0.5));
            font-size: 0.9rem;
            font-weight: 700;
            letter-spacing: 0.05em;
            text-transform: uppercase;
            user-select: none;
            transition: color 0.2s;
        }
        .mobile-more-toggle:hover { color: #a8d8ff; }
        .mobile-more-icon {
            font-size: 1.3rem;
            transition: transform 0.3s;
            line-height: 1;
        }
        .mobile-more-toggle.open .mobile-more-icon {
            transform: rotate(90deg);
        }

        /* ── Section secondaire ── */
        .mobile-nav-secondary {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.35s ease;
        }
        .mobile-nav-secondary.open {
            max-height: 300px;
        }

        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding: 8rem 2rem 4rem;
            position: relative;
            z-index: 1;
        }
        .hero .container {
            max-width: 1400px;
            margin: 0 auto;
        }
        .hero-content h1 {
            font-size: 3.5rem;
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 1.5rem;
        }
        .hero-content h1 span {
            color: #a8d8ff;
        }
        .hero-subtitle {
            font-size: 1.3rem;
            opacity: 0.9;
            margin-bottom: 2rem;
        }
        .cta-buttons {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
            align-items: center;
        }
        .cta-primary {
            display: inline-block;
            padding: 1rem 2rem;
            background: var(--accent);
            color: white;
            text-decoration: none;
            font-weight: 700;
            border-radius: 8px;
            transition: all 0.3s;
            position: relative;
            animation: ctaPulse 2.5s ease-in-out infinite;
        }
        @keyframes ctaPulse {
            0%, 100% { box-shadow: 0 0 0 0 rgba(77, 168, 255, 0.5); }
            50%       { box-shadow: 0 0 0 10px rgba(77, 168, 255, 0); }
        }
        .cta-primary:hover {
            background: var(--primary);
            transform: translateY(-2px);
            animation: none;
        }
        .cta-secondary {
            display: inline-block;
            padding: 1rem 2rem;
            border: 2px solid var(--accent);
            color: var(--text-color);
            text-decoration: none;
            font-weight: 700;
            border-radius: 8px;
            transition: all 0.3s;
        }
        .cta-secondary:hover {
            background: rgba(77, 168, 255, 0.1);
        }
        .cta-phone-wrapper {
            display: inline-flex;
            flex-direction: column;
            align-items: center;
            gap: 0.35rem;
        }
        .cta-badge {
            display: inline-block;
            background: linear-gradient(135deg, rgba(77,168,255,0.18), rgba(0,210,150,0.18));
            border: 1px solid rgba(77,168,255,0.35);
            color: var(--accent);
            font-size: 0.72rem;
            font-weight: 700;
            letter-spacing: 0.04em;
            padding: 0.18rem 0.7rem;
            border-radius: 50px;
            backdrop-filter: blur(6px);
            animation: badgeFade 1.8s ease-in-out infinite alternate;
        }
        @keyframes badgeFade {
            from { opacity: 0.75; }
            to   { opacity: 1; }
        }

        .services, .stats, .testimonials, .contact {
            padding: 6rem 2rem;
            position: relative;
            z-index: 1;
        }

        /* ================================================
           ALTERNANCE VISUELLE DES SECTIONS
           ================================================ */

        /* Séparateurs haut et bas sur les sections "paires" */
        .pricing, .guarantees, .teleassist-section, .faq {
            position: relative;
            z-index: 1;
            padding: 6rem 2rem;
        }
        .teleassist-section {
            padding: 3rem 2rem;
        }
        .teleassist-section .section-header {
            margin-bottom: 1.5rem;
            padding-top: 0;
        }
        .pricing::before, .pricing::after,
        .guarantees::before, .guarantees::after,
        .teleassist-section::before, .teleassist-section::after,
        .faq::before, .faq::after {
            content: none;
        }
        .pricing > *, .guarantees > *,
        .teleassist-section > *, .faq > * {
            position: relative;
            z-index: 1;
        }

        /* Séparateurs sur les sections "neutres" */
        .services, .calculator, .testimonials,
        .process, .zones, .contact {
            position: relative;
            z-index: 1;
        }
        .calculator, .zones {
            padding: 6rem 2rem;
        }
        .process {
            padding: 3rem 2rem;
        }
        .process .section-header {
            margin-bottom: 1.5rem;
            padding-top: 0;
        }
        .services::before, .calculator::before, .testimonials::before,
        .process::before, .zones::before, .contact::before {
            content: none;
        }


        /* ================================================
           ICÔNES SVG GLOBALES
           ================================================ */
        .service-icon svg { width: 2rem; height: 2rem; }
        .service-card.service-featured .service-icon svg { width: 2.5rem; height: 2.5rem; }
        .guarantee-icon svg { width: 1.8rem; height: 1.8rem; }
        .process-icon svg { width: 1.6rem; height: 1.6rem; }
        .teleassist-logo svg { width: 2.2rem; height: 2.2rem; }
        .pillar-icon svg { width: 1.4rem; height: 1.4rem; }
        .svc-row-emoji svg { width: 1.1rem; height: 1.1rem; }
        .footer-contact-icon svg { width: 1rem; height: 1rem; }
        .floating-btn svg { width: 1.3rem; height: 1.3rem; }
        .btn-icon svg { width: 1em; height: 1em; vertical-align: middle; }
        .badge-icon svg { width: 0.8em; height: 0.8em; vertical-align: middle; }
        .link-icon svg { width: 0.85em; height: 0.85em; vertical-align: middle; }
        .btn-icon, .badge-icon, .link-icon { display: inline-flex; align-items: center; }
        .settings-toggle svg { width: 1.2rem; height: 1.2rem; }
        .settings-icon svg { width: 0.9rem; height: 0.9rem; vertical-align: middle; margin-right: 0.25rem; }
        .settings-icon { display: inline-flex; align-items: center; }
        .calc-option-emoji svg { width: 1.4rem; height: 1.4rem; }
        .mob-tog-emoji svg { width: 1.3rem; height: 1.3rem; }
        .section-header {
            text-align: center;
            margin-bottom: 4rem;
            padding-top: 2rem;
        }
        .section-label {
            font-size: 0.9rem;
            letter-spacing: 2px;
            color: #a8d8ff;
            margin-bottom: 1rem;
            font-weight: 700;
            text-transform: uppercase;
            text-shadow: 0 0 15px rgba(168, 216, 255, 0.6), 0 0 30px rgba(168, 216, 255, 0.3);
        }

        /* Mode clair : labels et titres plus contrastés */
        body.light-mode .section-label {
            color: #0055a5 !important;
            text-shadow: none !important;
        }

        body.light-mode .section-title {
            color: #0a1628;
        }

        /* Hero : "IT" en bleu foncé */
        body.light-mode .hero-content h1 span {
            color: #0055a5;
        }

        /* Titre principal hero + section-title en mode clair */
        body.light-mode .hero-content h1,
        body.light-mode .hero-subtitle {
            color: #0a1628;
        }

        /* Chiffres stats */
        body.light-mode .stat-number {
            color: #0055a5;
        }

        /* Coches ✓ dans les tarifs */
        body.light-mode .pricing-features li::before {
            color: #0055a5;
        }

        /* Calculateur : option emoji SVG et couleur */
        body.light-mode .calc-option-emoji,
        body.light-mode .calc-option-emoji svg {
            color: #0055a5;
        }

        /* Numérotation liste téléassistance */
        body.light-mode .teleassist-steps li::marker {
            color: #0055a5;
        }

        /* Pilier label et tagline engagement */
        body.light-mode .pillar-label,
        body.light-mode .engagement-tagline {
            color: #0055a5;
        }

        /* Diagnostic option emoji */
        body.light-mode .diag-option-emoji,
        body.light-mode .diag-option-emoji svg {
            color: #0055a5;
        }

        /* Flèches mobile services et toggle */
        body.light-mode .svc-row-arrow,
        body.light-mode .mob-tog-i {
            color: #0055a5;
        }

        /* Liens téléassistance : texte blanc sur fond bleu */
        body.light-mode .teleassist-download {
            color: #ffffff !important;
        }

        /* tracking details strong */
        body.light-mode .tracking-details strong {
            color: #0055a5;
        }
        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 1.5rem;
        }
        .service-card {
            padding: 2rem 2rem 2rem;
            border-radius: 20px;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            cursor: pointer;
            position: relative;
            text-align: left;
            display: flex;
            flex-direction: column;
            gap: 0.6rem;
        }
        /* Carte featured : Dépannage Rapide */
        .service-card.service-featured {
            grid-column: span 2;
            background: linear-gradient(135deg, rgba(77,168,255,0.12) 0%, rgba(0,82,204,0.14) 100%) !important;
            border: 1.5px solid rgba(77,168,255,0.35) !important;
            flex-direction: row;
            align-items: center;
            gap: 2rem;
            padding: 2.2rem 2.5rem;
        }
        .service-card.service-featured .service-card-body {
            flex: 1;
        }
        .service-featured-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.35rem;
            font-size: 0.7rem;
            font-weight: 700;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            color: var(--accent);
            background: rgba(77,168,255,0.12);
            border: 1px solid rgba(77,168,255,0.25);
            border-radius: 20px;
            padding: 0.25rem 0.7rem;
            margin-bottom: 0.5rem;
        }
        .service-card.service-featured .service-icon {
            font-size: 3.5rem;
            flex-shrink: 0;
            margin-bottom: 0;
        }
        .service-card.service-featured h3 {
            font-size: 1.6rem;
        }
        .service-card.service-featured p {
            font-size: 1rem;
            opacity: 0.85;
        }
        .service-card.service-featured::after {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: 20px;
            background: radial-gradient(ellipse at 20% 50%, rgba(77,168,255,0.08), transparent 60%);
            pointer-events: none;
        }
        /* Cartes secondaires légèrement moins contrastées */
        .service-card:not(.service-featured) {
            opacity: 0.92;
        }
        .service-card:not(.service-featured):hover {
            opacity: 1;
        }
        .service-card::before {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: 20px;
            padding: 1.5px;
            background: linear-gradient(135deg, var(--accent), var(--primary));
            -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            -webkit-mask-composite: xor;
            mask-composite: exclude;
            opacity: 0;
            transition: opacity 0.4s;
        }
        .service-card:hover::before {
            opacity: 1;
        }
        .service-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 16px 40px rgba(0, 117, 215, 0.25);
        }
        .service-card.service-featured:hover {
            transform: translateY(-4px);
            box-shadow: 0 20px 50px rgba(77,168,255,0.25);
        }
        .service-icon {
            font-size: 2.2rem;
            margin-bottom: 0.3rem;
            display: inline-block;
        }
        .service-card h3 {
            font-size: 1.2rem;
            font-weight: 700;
            margin-bottom: 0.3rem;
        }
        .service-card p {
            opacity: 0.75;
            line-height: 1.7;
            font-size: 0.92rem;
        }

        .stats-container {
            border-radius: 30px;
            padding: 4rem 2rem;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            gap: 1.5rem;
        }
        @media (max-width: 1100px) {
            .stats-grid { grid-template-columns: repeat(3, 1fr); }
        }
        @media (max-width: 600px) {
            .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
        }
        .stat {
            text-align: center;
            padding: 0.5rem;
        }
        .stat-icon {
            font-size: 1.8rem;
            margin-bottom: 0.4rem;
            display: block;
            line-height: 1;
            filter: grayscale(0%);
        }
        .stat-number {
            font-size: 2.6rem;
            font-weight: 700;
            color: #a8d8ff;
            margin-bottom: 0.5rem;
            line-height: 1.1;
        }
        .stat-label {
            font-size: 0.9rem;
            opacity: 0.9;
            font-weight: 500;
        }

        .testimonial-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }
        .testimonial-card {
            padding: 2rem;
            border-radius: 20px;
        }
        .testimonial-text {
            font-size: 1rem;
            font-style: italic;
            margin-bottom: 1.5rem;
            opacity: 0.95;
        }
        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 1rem;
        }
        .author-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--accent), var(--primary));
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 1.3rem;
        }
        .author-info h4 {
            font-size: 1rem;
            font-weight: 700;
        }
        .author-info p {
            font-size: 0.9rem;
            opacity: 0.7;
        }

        .contact-container {
            border-radius: 30px;
            padding: 3rem;
            max-width: 800px;
            margin: 0 auto;
        }
        .contact-form {
            display: grid;
            gap: 1.5rem;
        }
        .form-group {
            display: flex;
            flex-direction: column;
        }
        .form-group label {
            margin-bottom: 0.5rem;
            font-weight: 500;
        }
        .form-group input, .form-group textarea {
            padding: 1rem;
            border-radius: 15px;
            border: 1px solid var(--glass-border);
            background: rgba(255, 255, 255, 0.05);
            color: var(--text-color);
            font-family: 'Inter', sans-serif;
            transition: all 0.3s;
        }
        .form-group textarea {
            min-height: 140px;
            resize: vertical;
            font-size: 1rem;
            line-height: 1.6;
            overflow: hidden; /* masque le scroll car auto-resize en JS */
        }
        .form-group input:focus, .form-group textarea:focus {
            outline: none;
            background: rgba(77, 168, 255, 0.06);
            border-color: var(--accent);
            box-shadow: 0 0 0 3px rgba(77,168,255,0.15), 0 0 20px rgba(77,168,255,0.2);
            transform: translateY(-1px);
        }
        .submit-btn {
            padding: 1.2rem;
            border-radius: 15px;
            border: none;
            background: linear-gradient(135deg, var(--accent), var(--primary));
            color: white;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s;
        }
        .submit-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 35px rgba(0, 117, 215, 0.4);
        }
        .submit-btn:disabled {
            opacity: 0.6;
            cursor: not-allowed;
            transform: none;
        }

        .form-message {
            margin-top: 1rem;
            padding: 1rem;
            border-radius: 12px;
            text-align: center;
            font-weight: 500;
            background: var(--glass-bg);
            border: 1px solid var(--glass-border);
            display: none;
        }
        .form-message.success {
            display: block;
            color: #10b981;
            background: rgba(16, 185, 129, 0.08);
            border-color: rgba(16, 185, 129, 0.3);
        }
        .form-message.error {
            display: block;
            color: #ef4444;
            background: rgba(239, 68, 68, 0.08);
            border-color: rgba(239, 68, 68, 0.3);
        }

        /* ================================================
           FOOTER
           ================================================ */
        .site-footer {
            position: relative;
            z-index: 1;
            padding: 0 0 2rem;
            margin-top: 2rem;
        }
        .footer-top-line {
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--accent), #a78bfa, var(--accent), transparent);
            margin-bottom: 3.5rem;
            opacity: 0.6;
        }
        .site-footer .container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }

        /* Grille 4 colonnes */
        .footer-main {
            display: grid;
            grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
            gap: 3rem;
            margin-bottom: 3rem;
        }

        /* --- Colonne brand --- */
        .footer-logo {
            display: inline-flex;
            align-items: baseline;
            gap: 0.2rem;
            text-decoration: none;
            margin-bottom: 1rem;
        }
        .footer-logo-prompt {
            font-family: 'JetBrains Mono', monospace;
            font-size: 1.4rem;
            color: var(--accent);
            font-weight: 700;
            line-height: 1;
        }
        .footer-logo-name {
            font-family: 'Inter', sans-serif;
            font-size: 1.4rem;
            font-weight: 800;
            color: var(--text-color);
            letter-spacing: -0.02em;
            line-height: 1;
        }
        .footer-logo-info {
            font-family: 'Inter', sans-serif;
            font-size: 1.4rem;
            font-weight: 800;
            color: var(--accent);
            margin-left: 0.1rem;
            line-height: 1;
        }
        .footer-tagline {
            font-size: 0.9rem;
            color: var(--text-secondary);
            line-height: 1.6;
            margin-bottom: 1.2rem;
        }
        .footer-badges {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
        }
        .footer-badge {
            font-size: 0.72rem;
            font-weight: 600;
            padding: 0.3rem 0.65rem;
            border-radius: 20px;
            background: rgba(77,168,255,0.1);
            border: 1px solid rgba(77,168,255,0.2);
            color: var(--accent);
            letter-spacing: 0.02em;
            white-space: nowrap;
        }

        /* --- Colonnes génériques --- */
        .footer-col-title {
            display: flex;
            align-items: center;
            gap: 0.6rem;
            font-size: 0.78rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: var(--text-secondary);
            margin-bottom: 1.2rem;
        }
        .footer-col-bar {
            display: inline-block;
            width: 3px;
            height: 14px;
            border-radius: 4px;
            background: linear-gradient(180deg, var(--accent), #a78bfa);
            flex-shrink: 0;
        }
        .footer-links {
            list-style: none;
            padding: 0; margin: 0;
            display: flex;
            flex-direction: column;
            gap: 0.55rem;
        }
        .footer-links a {
            font-size: 0.88rem;
            color: var(--text-secondary);
            text-decoration: none;
            transition: color 0.2s, padding-left 0.2s;
            display: inline-block;
        }
        .footer-links a:hover {
            color: var(--accent);
            padding-left: 4px;
        }

        /* --- Colonne contact --- */
        .footer-contact-items {
            display: flex;
            flex-direction: column;
            gap: 0.9rem;
        }
        .footer-contact-item {
            display: flex;
            align-items: flex-start;
            gap: 0.7rem;
            font-size: 0.88rem;
            color: var(--text-secondary);
            line-height: 1.5;
        }
        .footer-contact-icon { font-size: 1rem; flex-shrink: 0; margin-top: 1px; }
        .footer-contact-item a {
            color: var(--accent);
            text-decoration: none;
        }
        .footer-contact-item a:hover { text-decoration: underline; }
        .footer-contact-item small { font-size: 0.78rem; opacity: 0.7; }
        .footer-phone-btn {
            background: rgba(77,168,255,0.1);
            border: 1px solid rgba(77,168,255,0.25);
            border-radius: 8px;
            padding: 0.25rem 0.6rem;
            font-size: 0.82rem;
            color: var(--accent);
            cursor: pointer;
            font-family: 'JetBrains Mono', monospace;
            transition: background 0.2s, border-color 0.2s;
        }
        .footer-phone-btn:hover {
            background: rgba(77,168,255,0.2);
            border-color: rgba(77,168,255,0.45);
        }

        /* --- Séparateur --- */
        .footer-divider {
            height: 1px;
            background: var(--glass-border);
            margin-bottom: 1.8rem;
        }

        /* --- Bas de footer --- */
        .footer-bottom {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            flex-wrap: wrap;
            gap: 0.4rem;
        }
        .footer-copy {
            font-size: 0.83rem;
            color: var(--text-secondary);
            opacity: 0.75;
        }
        .footer-copy strong { color: var(--accent); font-weight: 700; }
        .footer-tech-badge {
            font-size: 0.78rem;
            color: var(--text-secondary);
            opacity: 0.6;
            font-family: 'JetBrains Mono', monospace;
        }

        /* Footer desktop : mobile-quick masqué, bottom centré */
        .footer-mobile-quick { display: none !important; }
        .footer-bottom {
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.4rem;
        }

                /* --- Responsive footer --- */
        @media (max-width: 968px) {
            .footer-main { grid-template-columns: 1fr 1fr; gap: 2rem; }
            .footer-brand { grid-column: 1 / -1; }
        }
        @media (max-width: 600px) {
            /* Cacher les colonnes secondaires sur mobile */
            .footer-main { display: block; }
            .footer-col:not(.footer-brand) { display: none; }
            .footer-divider { margin-bottom: 0.8rem; }
            .footer-top-line { margin-bottom: 1.5rem; }
            .site-footer { padding: 0 0 1.5rem; margin-top: 1rem; }

            /* Brand centré et compact */
            .footer-brand {
                text-align: center;
                padding-bottom: 0.8rem;
            }
            .footer-logo { justify-content: center; }
            .footer-tagline { font-size: 0.85rem; }
            .footer-badges { justify-content: center; }

            /* Ligne de contact rapide */
            .footer-mobile-quick {
                display: flex !important;
                justify-content: center;
                gap: 0.6rem;
                flex-wrap: wrap;
                margin-bottom: 1rem;
            }
            .footer-bottom { flex-direction: column; align-items: center; text-align: center; gap: 0.3rem; }
        }

        /* Light mode overrides */
        body.light-mode .footer-badge {
            background: rgba(0,85,165,0.08);
            border-color: rgba(0,85,165,0.2);
        }
        body.light-mode .footer-phone-btn {
            background: rgba(0,85,165,0.07);
            border-color: rgba(0,85,165,0.2);
        }

        @media (max-width: 968px) {
            .nav-links { display: none; }
            .burger { display: flex; }
            .hero-content h1 { font-size: 2.5rem; }
            nav { padding: 0.75rem 1rem; }
            nav .container {
                flex-wrap: nowrap;
                align-items: center;
            }
            /* Engrenage + burger alignés horizontalement */
            nav .container > div:last-child {
                display: flex !important;
                flex-direction: row !important;
                align-items: center !important;
                flex-wrap: nowrap !important;
            }
        }
        @media (max-width: 768px) {
            .hero-content h1 { font-size: 2rem; }
            .section-title { font-size: 2rem; }
            .services-grid, .testimonial-grid { grid-template-columns: 1fr; }
            .service-card.service-featured {
                grid-column: span 1;
                flex-direction: column;
                padding: 1.8rem;
            }
        }
        .floating {
            animation: floating 3s ease-in-out infinite;
        }
        @keyframes floating {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-20px); }
        }

        /* ========================================
           ✨ PARTICULES FLOTTANTES
           ======================================== */
        .particles-container {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 0;
            overflow: hidden;
        }

        .particle {
            position: absolute;
            background: var(--accent);
            border-radius: 50%;
            opacity: 0;
            pointer-events: none;
            box-shadow: 0 0 10px var(--accent);
        }

        @keyframes particleFloat {
            0% {
                transform: translateY(100vh) translateX(0);
                opacity: 0;
            }
            10% {
                opacity: 0.8;
            }
            90% {
                opacity: 0.8;
            }
            100% {
                transform: translateY(-100px) translateX(var(--drift, 50px));
                opacity: 0;
            }
        }

        /* ========================================
           💎 TILT 3D SUR LES CARTES
           ======================================== */
        .service-card {
            transform-style: preserve-3d;
            transition: transform 0.1s ease-out, box-shadow 0.3s ease;
        }

        .service-card:hover {
            box-shadow: 0 20px 40px var(--shadow);
        }

        .service-card .service-icon,
        .service-card h3,
        .service-card p {
            transform: translateZ(20px);
            transition: transform 0.3s ease;
        }

        .service-card:hover .service-icon {
            transform: translateZ(40px) scale(1.1);
        }

        /* ========================================
           🔢 COMPTEURS ANIMÉS
           ======================================== */
        .stat {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }

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

        .stat-number {
            display: inline-block;
            font-variant-numeric: tabular-nums;
        }

        /* ========================================
           💰 TARIFS
           ======================================== */
        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }

        .pricing-card {
            padding: 2.5rem 2rem;
            border-radius: 20px;
            text-align: center;
            transition: all 0.4s ease;
            position: relative;
            display: flex;
            flex-direction: column;
        }

        .pricing-card.featured {
            border: 2px solid var(--accent);
            transform: scale(1.03);
        }

        .pricing-badge {
            position: absolute;
            top: -14px;
            left: 50%;
            transform: translateX(-50%);
            background: linear-gradient(135deg, var(--primary), var(--accent));
            color: white;
            padding: 0.4rem 1.2rem;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 700;
            letter-spacing: 1px;
            text-transform: uppercase;
            white-space: nowrap;
            z-index: 10;
        }

        .pricing-card:hover {
            transform: translateY(-10px);
        }

        .pricing-card.featured:hover {
            transform: translateY(-10px) scale(1.03);
        }

        .pricing-title {
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            opacity: 0.85;
        }

        .pricing-price {
            font-size: 2.8rem;
            font-weight: 800;
            margin: 1rem 0;
            background: linear-gradient(135deg, var(--accent), var(--primary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .pricing-price small {
            font-size: 1rem;
            font-weight: 400;
            -webkit-text-fill-color: var(--text-color);
            opacity: 0.7;
            margin-left: 0.25rem;
        }

        .pricing-desc {
            font-size: 1rem;
            opacity: 0.8;
            margin-bottom: 1.5rem;
            min-height: 3em;
        }

        .pricing-features {
            list-style: none;
            padding: 0;
            margin: 0 0 2rem;
            text-align: left;
            flex-grow: 1;
        }

        .pricing-features li {
            padding: 0.6rem 0;
            border-bottom: 1px solid var(--glass-border);
            font-size: 1rem;
            display: flex;
            align-items: center;
            gap: 0.6rem;
        }

        .pricing-features li:last-child {
            border-bottom: none;
        }

        .pricing-features li::before {
            content: '✓';
            color: #a8d8ff;
            font-weight: 700;
            font-size: 1rem;
            flex-shrink: 0;
        }

        .pricing-cta {
            display: inline-block;
            padding: 0.9rem 2rem;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 700;
            transition: all 0.3s;
        }

        .pricing-cta:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px var(--shadow);
        }

        .pricing-note {
            text-align: center;
            margin-top: 2rem;
            font-size: 0.9rem;
            opacity: 0.7;
            font-style: italic;
        }

        /* ========================================
           📋 PROCESSUS
           ======================================== */
        .process-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1rem;
            margin-top: 1rem;
            position: relative;
        }

        .process-step {
            text-align: center;
            padding: 1.2rem 1rem;
            border-radius: 16px;
            position: relative;
            transition: all 0.3s;
        }

        .process-step:hover {
            transform: translateY(-5px);
        }

        .process-number {
            width: 44px;
            height: 44px;
            margin: 0 auto 0.7rem;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
            font-weight: 800;
            color: white;
            box-shadow: 0 6px 16px var(--shadow);
        }

        .process-icon {
            font-size: 1.8rem;
            margin-bottom: 0.5rem;
        }

        .process-step h3 {
            font-size: 1.05rem;
            font-weight: 700;
            margin-bottom: 0.4rem;
        }

        .process-step p {
            font-size: 0.88rem;
            opacity: 0.8;
            line-height: 1.5;
        }

        /* ========================================
           ✅ GARANTIES
           ======================================== */
        .guarantees-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1.5rem;
            margin-top: 2rem;
        }

        .guarantee-card {
            padding: 1.8rem 1.5rem;
            border-radius: 16px;
            text-align: center;
            transition: all 0.3s;
        }

        .guarantee-card:hover {
            transform: translateY(-5px) scale(1.02);
        }

        .guarantee-icon {
            font-size: 2.5rem;
            margin-bottom: 0.8rem;
            filter: drop-shadow(0 0 10px var(--accent));
        }

        .guarantee-card h4 {
            font-size: 1rem;
            font-weight: 700;
            margin-bottom: 0.4rem;
        }

        .guarantee-card p {
            font-size: 0.9rem;
            opacity: 0.75;
            line-height: 1.5;
        }

        /* ========================================
           🗺️ ZONES D'INTERVENTION (CARTE)
           ======================================== */
        .zones-container {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 2rem;
            margin-top: 2rem;
            align-items: stretch;
        }

        #map {
            height: 100%;
            min-height: 400px;
            border-radius: 20px;
            border: 1px solid var(--glass-border);
            overflow: hidden;
            box-shadow: 0 8px 32px var(--shadow);
        }

        .leaflet-container {
            background: var(--glass-bg);
        }

        /* Style popup Leaflet pour matcher le design */
        .leaflet-popup-content-wrapper {
            background: rgba(30, 30, 50, 0.95);
            color: #fff;
            border-radius: 12px;
            backdrop-filter: blur(20px);
        }

        .leaflet-popup-content {
            font-family: 'Inter', sans-serif;
            margin: 12px 16px;
        }

        .leaflet-popup-tip {
            background: rgba(30, 30, 50, 0.95);
        }

        body.light-mode .leaflet-popup-content-wrapper,
        body.light-mode .leaflet-popup-tip {
            background: rgba(255, 255, 255, 0.95);
            color: #1a202c;
        }

        /* Marqueurs carte — classes CSS (compatible CSP, pas de style inline) */
        .map-marker-main {
            width: 24px;
            height: 24px;
            border-radius: 50%;
            background: linear-gradient(135deg, #0075d7, #4da8ff);
            border: 3px solid white;
            box-shadow: 0 0 15px rgba(77, 168, 255, 0.8);
            animation: mapMarkerPulse 2s infinite;
        }

        @keyframes mapMarkerPulse {
            0%, 100% { transform: scale(1); }
            50%       { transform: scale(1.2); }
        }

        .map-marker-city {
            width: 14px;
            height: 14px;
            border-radius: 50%;
            background: rgba(77, 168, 255, 0.9);
            border: 2px solid white;
            box-shadow: 0 0 8px rgba(77, 168, 255, 0.6);
        }

        .zones-list {
            padding: 2rem;
            border-radius: 20px;
            height: 100%;
            overflow: hidden;
            box-sizing: border-box;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .zones-list h3 {
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 1.2rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .zones-list ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .zones-list li {
            padding: 0.7rem 0;
            border-bottom: 1px solid var(--glass-border);
            display: flex;
            align-items: center;
            gap: 0.6rem;
            font-size: 1rem;
        }

        .zones-list li:last-child {
            border-bottom: none;
        }

        .zones-list li::before {
            content: '📍';
            font-size: 1rem;
        }

        @media (max-width: 968px) {
            .zones-container {
                grid-template-columns: 1fr;
            }
            #map {
                height: 350px;
            }
            .zones-list {
                height: auto;         /* 👈 pleine hauteur sur mobile */
                max-height: none;
                overflow-y: visible;
            }
        }

        /* ========================================
           ❓ FAQ (ACCORDÉON)
           ======================================== */
        .faq-container {
            max-width: 800px;
            margin: 2rem auto 0;
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .faq-item {
            padding: 0;
            border-radius: 16px;
            overflow: hidden;
            transition: all 0.3s;
        }

        .faq-question {
            width: 100%;
            padding: 1.3rem 1.5rem;
            background: transparent;
            border: none;
            color: var(--text-color);
            font-family: 'Inter', sans-serif;
            font-size: 1rem;
            font-weight: 500;
            text-align: left;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 1rem;
            transition: all 0.3s;
        }

        .faq-question:hover {
            background: var(--glass-bg);
        }

        .faq-icon {
            flex-shrink: 0;
            width: 28px;
            height: 28px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 1rem;
            transition: transform 0.3s;
        }

        .faq-item.active .faq-icon {
            transform: rotate(45deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease, padding 0.4s ease;
            padding: 0 1.5rem;
        }

        .faq-item.active .faq-answer {
            max-height: 500px;
            padding: 0 1.5rem 1.3rem;
        }

        .faq-answer p {
            opacity: 0.85;
            line-height: 1.7;
            font-size: 1rem;
        }

        /* ========================================
           🔄 AVANT / APRÈS
           ======================================== */
        .comparison-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
            margin-top: 2rem;
        }

        .comparison-card {
            padding: 2.2rem 2rem;
            border-radius: 20px;
            position: relative;
            overflow: hidden;
            transition: all 0.4s ease;
        }

        .comparison-card:hover {
            transform: translateY(-8px);
        }

        .comparison-card.before {
            border: 1px solid rgba(239, 68, 68, 0.3);
        }

        .comparison-card.after {
            border: 1px solid rgba(16, 185, 129, 0.3);
        }

        .comparison-label {
            display: inline-block;
            padding: 0.3rem 0.9rem;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 700;
            letter-spacing: 1.5px;
            margin-bottom: 1rem;
        }

        .comparison-card.before .comparison-label {
            background: rgba(239, 68, 68, 0.2);
            color: #ef4444;
        }

        .comparison-card.after .comparison-label {
            background: rgba(16, 185, 129, 0.2);
            color: #10b981;
        }

        .comparison-card h3 {
            font-size: 1.4rem;
            font-weight: 700;
            margin-bottom: 1.2rem;
        }

        .comparison-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .comparison-list li {
            padding: 0.6rem 0;
            font-size: 1rem;
            display: flex;
            align-items: center;
            gap: 0.6rem;
            opacity: 0.9;
        }

        .comparison-card.before .comparison-list li::before {
            content: '✗';
            color: #ef4444;
            font-weight: 700;
            font-size: 1rem;
        }

        .comparison-card.after .comparison-list li::before {
            content: '✓';
            color: #10b981;
            font-weight: 700;
            font-size: 1rem;
        }

        .arrow-divider {
            display: none;
        }

        @media (max-width: 768px) {
            .comparison-grid {
                grid-template-columns: 1fr;
            }
            .pricing-card.featured {
                transform: scale(1);
            }
            .pricing-card.featured:hover {
                transform: translateY(-10px);
            }
        }

        /* ========================================
           💬 BOUTONS FLOTTANTS (WhatsApp + Tel)
           ======================================== */
        .floating-contacts {
            position: fixed;
            bottom: 24px;
            right: 24px;
            z-index: 900;
            display: flex;
            flex-direction: column;
            gap: 12px;
            align-items: flex-end;
        }

        .floating-btn {
            width: 58px;
            height: 58px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            font-size: 1.8rem;
            color: white;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
            transition: all 0.3s ease;
            cursor: pointer;
            border: none;
            position: relative;
            animation: floatBtn 3s ease-in-out infinite;
        }

        @keyframes floatBtn {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-6px); }
        }

        .floating-btn:hover {
            transform: scale(1.15) translateY(-4px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
        }

        .floating-btn.whatsapp {
            background: linear-gradient(135deg, #25D366, #128C7E);
        }

        .floating-btn.tel {
            background: linear-gradient(135deg, #0075d7, #005faf);
        }

        /* Pulse autour du bouton WhatsApp */
        .floating-btn.whatsapp::before {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: 50%;
            background: #25D366;
            animation: pulseRing 2s infinite;
            z-index: -1;
        }

        @keyframes pulseRing {
            0% {
                transform: scale(1);
                opacity: 0.6;
            }
            100% {
                transform: scale(1.6);
                opacity: 0;
            }
        }

        /* Tooltip au survol */
        .floating-btn::after {
            content: attr(data-tooltip);
            position: absolute;
            right: calc(100% + 12px);
            top: 50%;
            transform: translateY(-50%);
            background: rgba(30, 30, 50, 0.95);
            color: white;
            padding: 8px 14px;
            border-radius: 8px;
            font-size: 0.9rem;
            font-weight: 500;
            white-space: nowrap;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.3s, transform 0.3s;
            backdrop-filter: blur(10px);
        }

        .floating-btn:hover::after {
            opacity: 1;
            transform: translateY(-50%) translateX(-4px);
        }

        @media (max-width: 600px) {
            .floating-contacts {
                bottom: 16px;
                right: 16px;
            }
            .floating-btn {
                width: 52px;
                height: 52px;
                font-size: 1.6rem;
            }
            .floating-btn::after {
                display: none;
            }
        }

        /* ========================================
           🧮 CALCULATEUR DE DEVIS
           ======================================== */
        .calculator-wrapper {
            max-width: 800px;
            margin: 2rem auto 0;
            padding: 2rem 2.5rem;
            border-radius: 24px;
        }

        .calc-step {
            margin-bottom: 0.5rem;
            border: 2px solid var(--glass-border);
            border-radius: 16px;
            background: var(--glass-bg);
            overflow: hidden;
            transition: border-color 0.3s, opacity 0.3s;
        }
        .calc-step:last-of-type {
            margin-bottom: 0;
        }
        .calc-step.step-locked {
            opacity: 0.45;
            pointer-events: none;
        }
        .calc-step.step-done {
            border-color: rgba(77, 168, 255, 0.4);
        }
        .calc-step.step-active {
            border-color: #a8d8ff;
            box-shadow: 0 0 0 3px rgba(77, 168, 255, 0.12);
        }

        .calc-step-label {
            display: flex;
            align-items: center;
            gap: 0.6rem;
            font-size: 1rem;
            font-weight: 700;
            padding: 1rem 1.2rem;
            cursor: default;
            margin-bottom: 0;
            user-select: none;
        }
        .calc-step.step-done .calc-step-label {
            cursor: pointer;
        }
        .calc-step-label .step-summary {
            margin-left: auto;
            font-size: 0.8rem;
            font-weight: 500;
            color: #a8d8ff;
            opacity: 0;
            transition: opacity 0.3s;
            white-space: nowrap;
        }
        .calc-step.step-done .calc-step-label .step-summary {
            opacity: 1;
        }

        /* Accordion body */
        .calc-step-body {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s;
            padding: 0 1.2rem;
        }
        .calc-step.step-active .calc-step-body,
        .calc-step.step-open .calc-step-body {
            max-height: 600px;
            overflow: visible; /* permet le translateY(-2px) au hover sans clip */
            padding: 0 1.2rem 1.2rem;
        }

        .calc-step-number {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            color: white;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 0.9rem;
            font-weight: 700;
            flex-shrink: 0;
        }

        .calc-options {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 0.8rem;
        }

        .calc-option {
            padding: 1rem;
            border: 2px solid var(--glass-border);
            border-radius: 14px;
            background: var(--glass-bg);
            color: var(--text-color);
            font-family: 'Inter', sans-serif;
            font-size: 1rem;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            text-align: left;
        }

        .calc-option:hover {
            border-color: #a8d8ff;
            transform: translateY(-2px);
        }

        .calc-option.selected {
            border-color: #a8d8ff;
            background: linear-gradient(135deg, rgba(0, 117, 215, 0.15), rgba(77, 168, 255, 0.15));
            box-shadow: 0 5px 15px var(--shadow);
        }

        .calc-option-emoji {
            font-size: 1.3rem;
            flex-shrink: 0;
            display: flex;
            align-items: center;
            color: #a8d8ff;
        }
        .calc-option-emoji svg {
            color: #a8d8ff;
            transition: color 0.3s;
        }
        .calc-option.selected .calc-option-emoji svg,
        .calc-option:hover .calc-option-emoji svg {
            color: white;
        }

        .calc-result {
            margin-top: 0;
            padding: 0 2rem;
            max-height: 0;
            border-radius: 20px;
            background: linear-gradient(135deg, rgba(0, 117, 215, 0.1), rgba(77, 168, 255, 0.1));
            border: 2px dashed transparent;
            text-align: center;
            opacity: 0;
            overflow: hidden;
            transform: translateY(20px);
            transition: max-height 0.5s ease, opacity 0.4s ease, margin-top 0.4s ease, padding 0.4s ease, border-color 0.4s ease, transform 0.5s ease;
            pointer-events: none;
        }

        .calc-result.visible {
            margin-top: 2.5rem;
            padding: 2rem;
            max-height: 600px;
            border-color: #a8d8ff;
            opacity: 1;
            transform: translateY(0);
            pointer-events: auto;
        }

        .calc-result-label {
            font-size: 0.9rem;
            opacity: 0.8;
            letter-spacing: 1px;
            text-transform: uppercase;
            margin-bottom: 0.5rem;
        }

        .calc-result-price {
            font-size: 3.5rem;
            font-weight: 800;
            background: linear-gradient(135deg, var(--accent), var(--primary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin: 0.5rem 0;
            font-variant-numeric: tabular-nums;
        }

        .calc-result-note {
            font-size: 0.9rem;
            opacity: 0.7;
            margin: 0.5rem 0 1.5rem;
            font-style: italic;
        }

        .calc-result-cta {
            display: inline-block;
            padding: 1rem 2.5rem;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 700;
            transition: all 0.3s;
        }

        .calc-result-cta:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px var(--shadow);
        }

        @media (max-width: 600px) {
            .calc-options {
                grid-template-columns: 1fr;
            }
            .calc-result-price {
                font-size: 2.8rem;
            }
        }

        /* ========================================
           💻 LOGO TERMINAL CLI
           ======================================== */
        .logo {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            font-family: 'JetBrains Mono', 'Courier New', monospace;
            font-size: 1rem;
            font-weight: 500;
            padding: 0.4rem 0.9rem;
            background: rgba(0, 0, 0, 0.5);
            border: 1px solid rgba(77, 168, 255, 0.35);
            border-radius: 8px;
            color: #4da8ff;
            text-decoration: none;
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
            box-shadow: 0 0 15px rgba(77, 168, 255, 0.1);
        }

        .logo:hover {
            border-color: rgba(77, 168, 255, 0.65);
            box-shadow: 0 0 20px rgba(77, 168, 255, 0.3);
        }

        /* Mode CLAIR : adapter les couleurs */
        body.light-mode .logo {
            background: rgba(255, 255, 255, 0.6);
            border-color: rgba(0, 117, 215, 0.35);
            color: #005faf;
            box-shadow: 0 0 15px rgba(0, 117, 215, 0.1);
        }

        body.light-mode .logo:hover {
            border-color: rgba(0, 117, 215, 0.6);
            box-shadow: 0 0 20px rgba(0, 117, 215, 0.25);
        }

        .logo-prompt {
            color: #0075d7;
            font-weight: 700;
        }

        body.light-mode .logo-prompt {
            color: #005faf;
        }

        .logo-cursor {
            display: inline-block;
            width: 9px;
            height: 1.2rem;
            background: #4da8ff;
            vertical-align: middle;
            margin-left: 1px;
            animation: cursorBlink 1s step-end infinite;
            box-shadow: 0 0 8px rgba(77, 168, 255, 0.5);
        }

        body.light-mode .logo-cursor {
            background: #0075d7;
            box-shadow: 0 0 8px rgba(0, 117, 215, 0.3);
        }

        @keyframes cursorBlink {
            0%, 50% { opacity: 1; }
            51%, 100% { opacity: 0; }
        }

        @media (max-width: 600px) {
            .logo {
                font-size: 1rem;
                padding: 0.3rem 0.7rem;
            }
            .logo-cursor {
                height: 1rem;
                width: 7px;
            }
        }

        /* ========================================
           🟢 STATUS SERVICES
           ======================================== */
        .status-banner {
            max-width: 900px;
            margin: 2rem auto 0;
            padding: 1.5rem 2rem;
            border-radius: 20px;
            display: flex;
            flex-wrap: wrap;
            gap: 1.5rem;
            justify-content: center;
            align-items: center;
        }

        .status-item {
            display: flex;
            align-items: center;
            gap: 0.6rem;
            font-size: 1rem;
            font-weight: 500;
        }

        .status-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: #10b981;
            position: relative;
            flex-shrink: 0;
        }

        .status-dot::after {
            content: '';
            position: absolute;
            inset: -4px;
            border-radius: 50%;
            background: #10b981;
            opacity: 0.4;
            animation: statusPulse 2s ease-in-out infinite;
        }

        @keyframes statusPulse {
            0%, 100% {
                transform: scale(0.8);
                opacity: 0.4;
            }
            50% {
                transform: scale(1.3);
                opacity: 0;
            }
        }

        .status-dot.warning {
            background: #f59e0b;
        }
        .status-dot.warning::after {
            background: #f59e0b;
        }

        .status-dot.down {
            background: #ef4444;
        }
        .status-dot.down::after {
            background: #ef4444;
            animation: none;
            opacity: 0;
        }

        /* ========================================
           📆 CALENDRIER RDV
           ======================================== */
        .calendar-wrapper {
            max-width: 900px;
            margin: 2rem auto 0;
            padding: 2rem;
            border-radius: 24px;
        }

        .calendar-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 1.5rem;
        }

        .calendar-nav-btn {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            border: 1px solid var(--glass-border);
            background: var(--glass-bg);
            color: var(--text-color);
            cursor: pointer;
            font-size: 1.3rem;
            transition: all 0.3s;
            font-family: inherit;
        }

        .calendar-nav-btn:hover {
            background: linear-gradient(135deg, var(--primary), var(--accent));
            color: white;
            transform: scale(1.1);
        }

        .calendar-nav-btn:disabled {
            opacity: 0.3;
            cursor: not-allowed;
        }

        .calendar-title {
            font-size: 1.3rem;
            font-weight: 700;
            text-transform: capitalize;
        }

        .calendar-grid {
            display: grid;
            grid-template-columns: repeat(7, 1fr);
            gap: 6px;
        }

        .calendar-day-name {
            text-align: center;
            font-size: 0.8rem;
            font-weight: 700;
            opacity: 0.6;
            text-transform: uppercase;
            letter-spacing: 1px;
            padding: 0.5rem 0;
        }

        .calendar-day {
            aspect-ratio: 1;
            border-radius: 10px;
            border: 1px solid transparent;
            background: var(--glass-bg);
            color: var(--text-color);
            cursor: pointer;
            font-family: inherit;
            font-size: 1rem;
            font-weight: 500;
            transition: all 0.2s;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .calendar-day.empty {
            visibility: hidden;
        }

        .calendar-day.past {
            opacity: 0.25;
            cursor: not-allowed;
        }

        .calendar-day.available {
            border-color: var(--glass-border);
        }

        .calendar-day.available:hover {
            border-color: #a8d8ff;
            transform: scale(1.05);
            box-shadow: 0 4px 12px var(--shadow);
        }

        .calendar-day.available::after {
            content: '';
            position: absolute;
            bottom: 5px;
            left: 50%;
            transform: translateX(-50%);
            width: 5px;
            height: 5px;
            border-radius: 50%;
            background: #10b981;
        }

        .calendar-day.full {
            opacity: 0.4;
            cursor: not-allowed;
        }

        .calendar-day.full::after {
            content: '';
            position: absolute;
            bottom: 5px;
            left: 50%;
            transform: translateX(-50%);
            width: 5px;
            height: 5px;
            border-radius: 50%;
            background: #ef4444;
        }

        .calendar-day.selected {
            background: linear-gradient(135deg, var(--primary), var(--accent));
            color: white;
            border-color: transparent;
            box-shadow: 0 4px 15px var(--shadow);
        }

        .calendar-day.today {
            font-weight: 700;
            border-color: #a8d8ff;
        }

        .calendar-slots {
            margin-top: 1.5rem;
            padding-top: 1.5rem;
            border-top: 1px solid var(--glass-border);
        }

        .calendar-slots-title {
            font-size: 1rem;
            font-weight: 700;
            margin-bottom: 1rem;
            opacity: 0.9;
        }

        .calendar-slots-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
            gap: 0.6rem;
        }

        .calendar-slot {
            padding: 0.8rem;
            border-radius: 10px;
            border: 1px solid var(--glass-border);
            background: var(--glass-bg);
            color: var(--text-color);
            cursor: pointer;
            font-family: inherit;
            font-size: 1rem;
            font-weight: 500;
            transition: all 0.2s;
        }

        .calendar-slot:hover:not(.taken) {
            border-color: #a8d8ff;
            transform: translateY(-2px);
        }

        .calendar-slot.taken {
            opacity: 0.3;
            cursor: not-allowed;
            text-decoration: line-through;
        }

        .calendar-slot.selected {
            background: linear-gradient(135deg, var(--primary), var(--accent));
            color: white;
            border-color: transparent;
        }

        .calendar-confirm {
            margin-top: 1.5rem;
            padding: 1.5rem;
            border-radius: 15px;
            background: linear-gradient(135deg, rgba(0, 117, 215, 0.1), rgba(77, 168, 255, 0.1));
            border: 2px dashed var(--accent);
            text-align: center;
            display: none;
        }

        .calendar-confirm.visible {
            display: block;
        }

        .calendar-confirm-text {
            font-size: 1rem;
            margin-bottom: 1rem;
        }

        .calendar-legend {
            display: flex;
            gap: 1.5rem;
            justify-content: center;
            margin-top: 1rem;
            font-size: 0.9rem;
            opacity: 0.8;
        }

        .calendar-legend-item {
            display: flex;
            align-items: center;
            gap: 0.4rem;
        }

        .calendar-legend-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
        }

        /* ========================================
           🔍 SUIVI INTERVENTION
           ======================================== */
        .tracking-wrapper {
            max-width: 700px;
            margin: 2rem auto 0;
            padding: 2.5rem;
            border-radius: 24px;
        }

        .tracking-form {
            display: flex;
            gap: 0.8rem;
            flex-wrap: wrap;
        }

        .tracking-form input {
            flex: 1;
            min-width: 200px;
            padding: 1rem 1.2rem;
            border: 1px solid var(--glass-border);
            border-radius: 12px;
            background: var(--glass-bg);
            color: var(--text-color);
            font-family: inherit;
            font-size: 1rem;
            transition: all 0.3s;
        }

        .tracking-form input:focus {
            outline: none;
            border-color: #a8d8ff;
            box-shadow: 0 0 0 3px rgba(77, 168, 255, 0.2);
        }

        .tracking-form button {
            padding: 1rem 2rem;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: white;
            border: none;
            border-radius: 12px;
            font-family: inherit;
            font-size: 1rem;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s;
        }

        .tracking-form button:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px var(--shadow);
        }

        .tracking-help {
            margin-top: 1rem;
            font-size: 0.9rem;
            opacity: 0.7;
            text-align: center;
            font-style: italic;
        }

        .tracking-result {
            margin-top: 2rem;
            padding: 2rem;
            border-radius: 16px;
            background: var(--glass-bg);
            border: 1px solid var(--glass-border);
            display: none;
        }

        .tracking-result.visible {
            display: block;
            animation: slideInResult 0.5s ease;
        }

        @keyframes slideInResult {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .tracking-result.error {
            border-color: #ef4444;
            background: rgba(239, 68, 68, 0.1);
        }

        .tracking-ticket-id {
            font-size: 0.9rem;
            opacity: 0.7;
            margin-bottom: 0.3rem;
        }

        .tracking-status {
            font-size: 1.4rem;
            font-weight: 700;
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            gap: 0.6rem;
        }

        .tracking-progress {
            display: flex;
            gap: 8px;
            margin: 1.5rem 0;
        }

        .tracking-step {
            flex: 1;
            height: 6px;
            border-radius: 3px;
            background: var(--glass-bg);
            border: 1px solid var(--glass-border);
            position: relative;
        }

        .tracking-step.done {
            background: linear-gradient(90deg, var(--primary), var(--accent));
            border-color: transparent;
        }

        .tracking-step.current {
            background: linear-gradient(90deg, var(--primary), var(--accent));
            border-color: transparent;
            animation: stepPulse 1.5s infinite;
        }

        @keyframes stepPulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.6; }
        }

        .tracking-details {
            margin-top: 1rem;
            padding: 1rem;
            border-radius: 10px;
            background: rgba(255, 255, 255, 0.05);
            font-size: 1rem;
            line-height: 1.7;
        }

        .tracking-details strong {
            color: #a8d8ff;
        }

        /* ========================================
           🩺 DIAGNOSTIC
           ======================================== */
        .diagnostic-wrapper {
            max-width: 800px;
            margin: 2rem auto 0;
            padding: 2.5rem;
            border-radius: 24px;
        }

        .diag-progress {
            display: flex;
            gap: 8px;
            margin-bottom: 2rem;
        }

        .diag-progress-step {
            flex: 1;
            height: 4px;
            border-radius: 2px;
            background: var(--glass-bg);
            transition: all 0.3s;
        }

        .diag-progress-step.active {
            background: linear-gradient(90deg, var(--primary), var(--accent));
        }

        .diag-question {
            display: none;
        }

        .diag-question.active {
            display: block;
            animation: fadeInQuestion 0.4s ease;
        }

        @keyframes fadeInQuestion {
            from { opacity: 0; transform: translateX(20px); }
            to { opacity: 1; transform: translateX(0); }
        }

        .diag-question h3 {
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            text-align: center;
        }

        .diag-options {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
            gap: 0.8rem;
            margin-bottom: 1.5rem;
        }

        .diag-option {
            padding: 1.2rem;
            border: 2px solid var(--glass-border);
            border-radius: 14px;
            background: var(--glass-bg);
            color: var(--text-color);
            font-family: inherit;
            cursor: pointer;
            transition: all 0.3s;
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.5rem;
        }

        .diag-option:hover {
            border-color: #a8d8ff;
            transform: translateY(-3px);
        }

        .diag-option.selected {
            border-color: #a8d8ff;
            background: linear-gradient(135deg, rgba(0, 117, 215, 0.15), rgba(77, 168, 255, 0.15));
        }

        .diag-option-emoji {
            font-size: 2rem;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #a8d8ff;
        }
        .diag-option-emoji svg {
            color: #a8d8ff;
            transition: color 0.3s;
        }
        .diag-option.selected .diag-option-emoji svg,
        .diag-option:hover .diag-option-emoji svg {
            color: white;
        }

        .diag-option-label {
            font-size: 1rem;
            font-weight: 500;
        }

        .diag-controls {
            display: flex;
            justify-content: space-between;
            gap: 1rem;
            margin-top: 1.5rem;
        }

        .diag-btn {
            padding: 0.9rem 2rem;
            border: none;
            border-radius: 50px;
            font-family: inherit;
            font-size: 1rem;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s;
        }

        .diag-btn.primary {
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: white;
        }

        .diag-btn.primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px var(--shadow);
        }

        .diag-btn.secondary {
            background: var(--glass-bg);
            color: var(--text-color);
            border: 1px solid var(--glass-border);
        }

        .diag-btn:disabled {
            opacity: 0.4;
            cursor: not-allowed;
        }

        .diag-result {
            display: none;
            padding: 2rem;
            border-radius: 15px;
            background: linear-gradient(135deg, rgba(0, 117, 215, 0.1), rgba(77, 168, 255, 0.1));
            border: 2px dashed var(--accent);
            animation: fadeInQuestion 0.5s ease;
        }

        .diag-result.visible {
            display: block;
        }

        .diag-result h3 {
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .diag-result-tips {
            list-style: none;
            padding: 0;
            margin: 1rem 0;
        }

        .diag-result-tips li {
            padding: 0.6rem 0;
            display: flex;
            gap: 0.6rem;
            align-items: flex-start;
        }

        .diag-result-tips li::before {
            content: '💡';
            flex-shrink: 0;
        }

        .diag-result-cta {
            display: inline-block;
            margin-top: 1rem;
            padding: 0.9rem 2rem;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 700;
            transition: all 0.3s;
        }

        .diag-result-cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px var(--shadow);
        }

        /* ========================================
           🖥️ TÉLÉASSISTANCE
           ======================================== */
        .teleassist-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1rem;
            margin-top: 1rem;
            max-width: 760px;
            margin-left: auto;
            margin-right: auto;
        }

        .teleassist-card {
            padding: 1.4rem 1.2rem;
            border-radius: 16px;
            text-align: center;
            transition: all 0.3s;
            display: flex;
            flex-direction: column;
        }

        .teleassist-card .teleassist-download {
            margin-top: auto;
        }

        .teleassist-card:hover {
            transform: translateY(-5px);
        }

        .teleassist-logo {
            width: 52px;
            height: 52px;
            margin: 0 auto 0.7rem;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            background: var(--glass-bg);
            border: 1px solid var(--glass-border);
        }

        .teleassist-logo svg {
            width: 2.2rem;
            height: 2.2rem;
            stroke: var(--accent);
        }

        .teleassist-card.teamviewer .teleassist-logo {
            border-color: rgba(77, 168, 255, 0.3);
            box-shadow: 0 0 12px rgba(77, 168, 255, 0.15);
        }

        .teleassist-card.anydesk .teleassist-logo {
            border-color: rgba(77, 168, 255, 0.3);
            box-shadow: 0 0 12px rgba(77, 168, 255, 0.15);
        }

        .teleassist-card h3 {
            font-size: 1.1rem;
            font-weight: 700;
            margin-bottom: 0.4rem;
        }

        .teleassist-card p {
            font-size: 0.88rem;
            opacity: 0.8;
            margin-bottom: 1rem;
            line-height: 1.5;
        }

        .teleassist-download {
            display: inline-block;
            padding: 0.6rem 1.4rem;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 700;
            font-size: 0.88rem;
            transition: all 0.3s;
        }

        .teleassist-download:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px var(--shadow);
        }

        .teleassist-steps {
            margin-top: 1.5rem;
            margin-left: auto;
            margin-right: auto;
            padding: 1.2rem 1.5rem;
            border-radius: 16px;
            max-width: 760px;
        }

        .teleassist-steps h3 {
            text-align: center;
            margin-bottom: 0.8rem;
            font-size: 1.1rem;
            font-weight: 700;
        }

        .teleassist-steps ol {
            max-width: 700px;
            margin: 0 auto;
            padding-left: 1.5rem;
            line-height: 1.8;
        }

        .teleassist-steps li::marker {
            color: #a8d8ff;
            font-weight: 700;
        }

        /* ========================================
           ⚙️ MENU ENGRENAGE (SETTINGS)
           ======================================== */
        .settings-toggle {
            width: 42px;
            height: 42px;
            background: transparent;
            border: none;
            cursor: pointer;
            margin-left: 1rem;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            filter: drop-shadow(0 0 8px var(--accent));
            color: var(--accent);
        }
        .settings-toggle svg {
            color: var(--accent);
            stroke: var(--accent);
        }

        .settings-toggle:hover {
            transform: rotate(90deg) scale(1.2);
            filter: drop-shadow(0 0 15px var(--accent)) drop-shadow(0 0 25px var(--primary));
        }

        .settings-toggle.active {
            transform: rotate(180deg);
            filter: drop-shadow(0 0 20px var(--accent)) drop-shadow(0 0 30px var(--primary));
            animation: spinGlow 2s linear infinite;
        }

        @keyframes spinGlow {
            0% {
                transform: rotate(180deg);
                filter: drop-shadow(0 0 15px var(--accent));
            }
            50% {
                transform: rotate(360deg);
                filter: drop-shadow(0 0 25px var(--primary)) drop-shadow(0 0 35px var(--accent));
            }
            100% {
                transform: rotate(540deg);
                filter: drop-shadow(0 0 15px var(--accent));
            }
        }

        /* Panel de réglages */
        .settings-panel {
            position: fixed;
            top: 90px;
            right: 20px;
            transform: translateX(120%);
            width: 90%;
            max-width: 320px;
            padding: 2rem;
            border-radius: 20px;
            z-index: 1002;
            transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            background: #0d1117;
            backdrop-filter: none;
            border: 1px solid rgba(255, 255, 255, 0.08);
            box-shadow: 0 10px 50px rgba(0, 0, 0, 0.6);
        }

        .settings-panel.active {
            transform: translateX(0);
        }

        .settings-panel h3 {
            font-size: 1.3rem;
            margin-bottom: 1.5rem;
            text-align: center;
            font-weight: 700;
        }

        .settings-section {
            margin-bottom: 2rem;
        }

        .settings-section:last-child {
            margin-bottom: 0;
        }

        .settings-label {
            display: block;
            font-size: 1rem;
            font-weight: 500;
            margin-bottom: 1rem;
            opacity: 0.9;
        }

        /* Boutons mode clair/sombre */
        .mode-buttons {
            display: flex;
            gap: 0.5rem;
        }

        .mode-btn {
            flex: 1;
            padding: 0.8rem;
            border: 1px solid var(--glass-border);
            border-radius: 12px;
            background: var(--glass-bg);
            color: var(--text-color);
            cursor: pointer;
            font-family: 'Inter', sans-serif;
            font-size: 0.9rem;
            font-weight: 500;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
        }

        .mode-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px var(--shadow);
        }

        .mode-btn.active {
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: white;
            border-color: transparent;
        }

        /* Slider d'opacité */
        .opacity-slider-container {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        .opacity-value {
            text-align: center;
            font-size: 1.3rem;
            font-weight: 700;
            color: #a8d8ff;
            margin-top: 0.5rem;
        }

        .opacity-slider {
            -webkit-appearance: none;
            appearance: none;
            width: 100%;
            height: 8px;
            border-radius: 10px;
            background: var(--glass-bg);
            outline: none;
            border: 1px solid var(--glass-border);
        }

        body.light-mode .opacity-slider {
            background: #e2eaf4;
            border: 1.5px solid rgba(0, 117, 215, 0.4);
        }

        body.light-mode .opacity-slider::-webkit-slider-runnable-track {
            background: #e2eaf4;
            border-radius: 10px;
            height: 8px;
        }

        body.light-mode .opacity-slider::-moz-range-track {
            background: #e2eaf4;
            border-radius: 10px;
            height: 8px;
            border: 1.5px solid rgba(0, 117, 215, 0.4);
        }

        .opacity-slider::-webkit-slider-thumb {
            -webkit-appearance: none;
            appearance: none;
            width: 24px;
            height: 24px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            cursor: pointer;
            box-shadow: 0 0 10px var(--accent);
            transition: all 0.3s;
        }

        .opacity-slider::-webkit-slider-thumb:hover {
            transform: scale(1.2);
        }

        .opacity-slider::-moz-range-thumb {
            width: 24px;
            height: 24px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            cursor: pointer;
            border: none;
            box-shadow: 0 0 10px var(--accent);
        }

        /* Bouton reset */
        .reset-btn {
            width: 100%;
            padding: 0.8rem;
            margin-top: 1rem;
            border: 1px solid var(--glass-border);
            border-radius: 12px;
            background: var(--glass-bg);
            color: var(--text-color);
            cursor: pointer;
            font-family: 'Inter', sans-serif;
            font-size: 0.9rem;
            font-weight: 500;
            transition: all 0.3s;
        }

        .reset-btn:hover {
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: white;
            transform: translateY(-2px);
        }

        @media (max-width: 768px) {
            .settings-panel.active {
                transform: translateX(0);
                right: 10px;
                width: calc(100% - 20px);
            }
        }

        /* ================================================
           MOBILE (<=768px) : accordéons uniquement
           ================================================ */
        .mob-tog  { display: none; }

        @media (max-width: 768px) {

            .mob-tog {
                display: flex;
                justify-content: space-between;
                align-items: center;
                width: 100%;
                padding: 1rem 1.2rem 1rem 1rem;
                background: linear-gradient(135deg, rgba(77,168,255,0.10) 0%, rgba(0,82,204,0.13) 100%);
                backdrop-filter: blur(20px);
                -webkit-backdrop-filter: blur(20px);
                border: 1px solid rgba(77,168,255,0.25);
                border-radius: 18px;
                margin-bottom: 0.75rem;
                color: var(--text-color);
                cursor: pointer;
                font-family: 'Inter', sans-serif;
                transition: border-color 0.3s, box-shadow 0.3s, background 0.3s;
                position: relative;
                overflow: hidden;
            }
            .mob-tog::before {
                content: '';
                position: absolute;
                inset: 0;
                border-radius: 18px;
                background: linear-gradient(135deg, rgba(77,168,255,0.05), transparent);
                opacity: 0;
                transition: opacity 0.3s;
                pointer-events: none;
            }
            .mob-tog:hover::before,
            .mob-tog.open::before { opacity: 1; }
            .mob-tog.open {
                border-color: rgba(77,168,255,0.5);
                box-shadow: 0 4px 24px rgba(77,168,255,0.18), inset 0 1px 0 rgba(255,255,255,0.08);
                border-bottom-left-radius: 0;
                border-bottom-right-radius: 0;
            }

            /* Côté gauche : barre accent + emoji + label */
            .mob-tog-left {
                display: flex;
                align-items: center;
                gap: 0.75rem;
                flex: 1;
            }
            .mob-tog-text {
                flex: 1;
                text-align: center;
            }
            .mob-tog-bar {
                width: 3px;
                height: 36px;
                border-radius: 4px;
                background: linear-gradient(180deg, #4da8ff, #0052cc);
                flex-shrink: 0;
                transition: height 0.3s;
            }
            .mob-tog.open .mob-tog-bar { height: 44px; }
            .mob-tog-emoji {
                font-size: 1.4rem;
                line-height: 1;
                flex-shrink: 0;
            }
            .mob-tog-text {
                display: flex;
                flex-direction: column;
                gap: 2px;
            }
            .mob-tog-title {
                font-size: 1rem;
                font-weight: 700;
                letter-spacing: -0.01em;
                color: var(--text-color);
            }
            .mob-tog-sub {
                font-size: 0.72rem;
                font-weight: 500;
                color: var(--accent);
                opacity: 0.85;
                letter-spacing: 0.04em;
                text-transform: uppercase;
            }

            /* Icône chevron animée */
            .mob-tog-i {
                width: 32px; height: 32px;
                background: rgba(77,168,255,0.12);
                border: 1px solid rgba(77,168,255,0.2);
                border-radius: 50%;
                display: flex; align-items: center; justify-content: center;
                flex-shrink: 0;
                transition: transform .35s cubic-bezier(.4,0,.2,1), background .3s, border-color .3s;
            }
            .mob-tog-i svg {
                width: 14px; height: 14px;
                stroke: var(--accent);
                fill: none;
                stroke-width: 2.5;
                stroke-linecap: round;
                stroke-linejoin: round;
                transition: stroke .3s;
            }
            .mob-tog.open .mob-tog-i {
                transform: rotate(180deg);
                background: rgba(77,168,255,0.22);
                border-color: rgba(77,168,255,0.45);
            }

            .mob-body {
                display: block; overflow: hidden;
                max-height: 0;
                transition: max-height .45s cubic-bezier(.4,0,.2,1);
                border: 1px solid transparent;
                border-top: none;
                border-radius: 0 0 18px 18px;
            }
            .mob-body.open {
                max-height: 5000px;
                border-color: rgba(77,168,255,0.25);
                background: rgba(77,168,255,0.03);
            }
        }


        /* ================================================
           MOBILE : Services en liste accordéon
           ================================================ */
        /* Caché par défaut (desktop) */
        .svc-mobile-list { display: none; }

        @media (max-width: 768px) {
            /* Cacher la grille de cartes */
            #services .services-grid {
                display: none !important;
            }
            /* Afficher la liste mobile */
            #services .svc-mobile-list {
                display: block !important;
            }
            .svc-row {
                display: flex;
                align-items: center;
                justify-content: center;
                gap: 10px;
                padding: 12px 14px;
                background: var(--glass-bg);
                border: 1px solid var(--glass-border);
                border-radius: 12px;
                margin-bottom: 6px;
                cursor: pointer;
            }
            .svc-row-emoji { font-size: 1.2rem; flex-shrink: 0; text-align: center; }
            .svc-row-title { font-size: 1rem; font-weight: 700; color: var(--text-color); text-align: center; }
            .svc-row-arrow {
                font-size: 1rem; color: #4da8ff;
                transition: transform .3s; flex-shrink: 0;
            }
            .svc-row.open .svc-row-arrow { transform: rotate(90deg); }
            .svc-row.open {
                border-color: rgba(77,168,255,0.35);
                background: rgba(77,168,255,0.07);
            }
            .svc-row-desc {
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.4s ease, padding 0.4s ease;
                padding: 0 14px;
                font-size: 1rem;
                color: var(--text-color);
                line-height: 1.7;
                text-align: center;
            }
            .svc-row.open + .svc-row-desc {
                max-height: 300px;
                padding: 8px 14px 12px 14px;
            }
        }
        /* ================================================
           📱 MOBILE — CORRECTIONS GLOBALES (≤ 768px)
           ================================================ */
        @media (max-width: 768px) {

            /* --- Espacements généraux --- */
            .services, .stats, .testimonials, .contact,
            .pricing, .calculator, .process, .guarantees,
            .zones, .faq, .diagnostic-section, .teleassist-section {
                padding: 3.5rem 1rem;
            }

            /* Tarifs + Calculateur rapprochés sur mobile (mob-tog) */
            #tarifs, #calculateur, #diagnostic {
                padding: 0.4rem 1rem;
            }

            .hero {
                padding: 7.5rem 1rem 3rem;
                min-height: auto;
                display: block;
                box-sizing: border-box;
            }
            .hero .container {
                width: 100%;
                max-width: 100%;
                margin: 0 auto;
                padding: 0;
                box-sizing: border-box;
            }

            .container {
                padding: 0 1rem;
            }

            .section-header {
                margin-bottom: 2rem;
            }

            .section-title {
                font-size: 1.7rem;
            }

            /* --- Hero --- */
            .hero-content {
                text-align: center;
                width: 100%;
                margin: 0 auto;
            }

            .hero-content h1 {
                font-size: 1.8rem;
                line-height: 1.25;
            }

            .hero-subtitle {
                font-size: 1rem;
            }

            .cta-buttons {
                display: block;
                text-align: center;
                width: 100%;
            }

            .cta-primary, .cta-secondary {
                display: block;
                text-align: center;
                width: 90%;
                max-width: 300px;
                margin-left: auto;
                margin-right: auto;
            }

            .cta-primary {
                margin-bottom: 1rem;
            }

            /* --- Tarifs : 1 colonne, pas de scale sur la carte featured --- */
            .pricing-grid {
                grid-template-columns: 1fr;
                gap: 1.2rem;
            }

            .pricing-card.featured {
                transform: none;
            }

            .pricing-card {
                padding: 1.8rem 1.4rem;
            }

            /* --- Calculateur --- */
            .calculator-wrapper {
                padding: 1.2rem 1rem;
                border-radius: 16px;
            }

            .calc-step-label {
                font-size: 1rem;
                padding: 0.85rem 1rem;
            }

            .calc-step-body {
                padding: 0 0.8rem;
            }

            .calc-step.step-active .calc-step-body,
            .calc-step.step-open .calc-step-body {
                padding: 0 0.8rem 1rem;
            }

            .calc-options {
                grid-template-columns: 1fr 1fr;
                gap: 0.6rem;
            }

            .calc-option {
                padding: 0.75rem 0.6rem;
                font-size: 0.9rem;
            }

            .calc-result {
                padding: 0 1rem;
            }

            .calc-result-price {
                font-size: 2.5rem;
            }

            .calc-result-cta {
                padding: 0.85rem 1.5rem;
                font-size: 1rem;
            }

            /* --- Témoignages --- */
            .testimonial-grid {
                grid-template-columns: 1fr;
                gap: 1rem;
            }

            .testimonial-card {
                padding: 1.4rem;
            }

            /* --- Garanties --- */
            .guarantees-grid {
                grid-template-columns: 1fr 1fr;
                gap: 1rem;
            }

            .guarantee-card {
                padding: 1.2rem 1rem;
            }

            /* --- Processus --- */
            .process {
                padding: 2rem 1rem;
            }
            .process .section-header {
                margin-bottom: 1rem;
                padding-top: 0;
            }
            .process-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 0.7rem;
            }
            .process-step {
                padding: 0.9rem 0.7rem;
            }
            .process-number {
                width: 36px;
                height: 36px;
                font-size: 1.1rem;
                margin-bottom: 0.4rem;
            }
            .process-icon {
                font-size: 1.4rem;
                margin-bottom: 0.3rem;
            }
            .process-step h3 {
                font-size: 0.95rem;
                margin-bottom: 0.25rem;
            }
            .process-step p {
                font-size: 0.8rem;
            }

            /* --- Contact --- */
            .contact-container {
                padding: 1.5rem 1.2rem;
                border-radius: 20px;
            }

            /* --- Zones / carte --- */
            .zones-container {
                flex-direction: column;
            }

            .zones-list {
                display: none;
            }

            #map {
                height: 260px;
            }

            /* --- FAQ --- */
            .faq-question {
                font-size: 1rem;
                padding: 1rem;
            }

            /* --- Diagnostic --- */
            .diag-options {
                grid-template-columns: 1fr 1fr;
                gap: 0.6rem;
            }

            .diag-option {
                padding: 0.75rem 0.5rem;
            }

            /* --- Téléassistance --- */
            .teleassist-section {
                padding: 2rem 1rem;
            }
            .teleassist-section .section-header {
                margin-bottom: 1rem;
                padding-top: 0;
            }
            .teleassist-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 0.7rem;
            }
            .teleassist-card {
                padding: 0.9rem 0.7rem;
            }
            .teleassist-logo {
                width: 40px;
                height: 40px;
                font-size: 1.4rem;
                margin-bottom: 0.4rem;
            }
            .teleassist-card h3 {
                font-size: 0.9rem;
                margin-bottom: 0.25rem;
            }
            .teleassist-card p {
                font-size: 0.78rem;
                margin-bottom: 0.7rem;
            }
            .teleassist-download {
                padding: 0.5rem 1rem;
                font-size: 0.78rem;
            }
            .teleassist-steps {
                margin-top: 0.8rem;
                padding: 0.9rem 1rem;
            }
            .teleassist-steps h3 {
                font-size: 0.95rem;
                margin-bottom: 0.5rem;
            }
            .teleassist-steps ol {
                line-height: 1.7;
                font-size: 0.85rem;
            }

            /* --- Stats --- */
            .stats-container {
                padding: 1.5rem 1rem;
            }

            /* --- Footer --- */
            /* --- Réduire les animations sur mobile --- */
            .service-card, .pricing-card, .testimonial-card, .guarantee-card {
                transition: none;
            }
            .service-card:hover {
                transform: none;
            }
            .floating-btn {
                width: 48px;
                height: 48px;
                font-size: 1.4rem;
            }
        }

        /* ================================================
           📱 PETIT MOBILE (≤ 400px)
           ================================================ */
        @media (max-width: 400px) {
            .hero-content h1 {
                font-size: 1.5rem;
            }

            .calc-options {
                grid-template-columns: 1fr;
            }

            .diag-options {
                grid-template-columns: 1fr;
            }

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

            .cta-primary, .cta-secondary {
                font-size: 0.9rem;
                padding: 0.85rem 1.2rem;
            }
        }	
		/* Supprimer tout fond blanc sur le burger */
			.burger {
				background: transparent !important;
				background-color: transparent !important;
				border: none;
				box-shadow: none;
			}

			.burger span {
				background: var(--text-color) !important;
				background-color: var(--text-color) !important;
			}

		/* En mode clair, les traits du burger restent foncés */
		body.light-mode .burger span {
			background: #1a202c !important;
		}

/* ================================================
   💡 SECTION ENGAGEMENT (testimonials)
   ================================================ */
.engagement-content {
    padding: 2.5rem 3rem;
    border-radius: 20px;
    max-width: 860px;
    margin: 0 auto;
    text-align: center;
}

.engagement-text {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-color);
    opacity: 0.9;
    margin-bottom: 1.2rem;
}

.engagement-tagline {
    font-size: 1rem;
    font-style: italic;
    color: var(--accent);
    margin-bottom: 2rem;
    opacity: 0.85;
}

.engagement-pillars {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.pillar {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.pillar-icon {
    font-size: 2rem;
    display: block;
}

.pillar-label {
    font-size: 1rem;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

@media (max-width: 768px) {
    .engagement-content {
        padding: 1.8rem 1.4rem;
    }
    .engagement-text {
        font-size: 1rem;
    }
    .engagement-pillars {
        gap: 1.5rem;
    }
}
	
        /* ================================================
           MODE CLAIR — HOVER & BORDURES DES CARTES
           ================================================ */
        body.light-mode .service-card:hover {
            box-shadow: 0 20px 50px rgba(0, 85, 165, 0.2);
            border-color: rgba(0, 117, 215, 0.5) !important;
        }
        body.light-mode .pricing-card:hover,
        body.light-mode .pricing-card.featured:hover {
            box-shadow: 0 20px 50px rgba(0, 85, 165, 0.2);
            border-color: rgba(0, 117, 215, 0.5) !important;
        }
        body.light-mode .guarantee-card:hover {
            box-shadow: 0 12px 30px rgba(0, 85, 165, 0.18);
            border-color: rgba(0, 117, 215, 0.5) !important;
        }
        body.light-mode .process-step:hover {
            box-shadow: 0 12px 30px rgba(0, 85, 165, 0.18);
            border-color: rgba(0, 117, 215, 0.5) !important;
        }
        body.light-mode .teleassist-card:hover {
            box-shadow: 0 12px 30px rgba(0, 85, 165, 0.18);
            border-color: rgba(0, 117, 215, 0.5) !important;
        }
        body.light-mode .calc-option:hover,
        body.light-mode .calc-option.selected {
            border-color: #0055a5 !important;
            box-shadow: 0 5px 15px rgba(0, 85, 165, 0.2);
        }
        body.light-mode .diag-option:hover,
        body.light-mode .diag-option.selected {
            border-color: #0055a5 !important;
            box-shadow: 0 5px 15px rgba(0, 85, 165, 0.2);
        }
        body.light-mode .faq-question:hover {
            border-color: rgba(0, 117, 215, 0.4) !important;
            color: #0055a5;
        }
        body.light-mode .guarantee-icon {
            filter: none;
        }
        body.light-mode .comparison-card:hover {
            box-shadow: 0 12px 30px rgba(0, 85, 165, 0.18);
            border-color: rgba(0, 117, 215, 0.5) !important;
        }

        /* ================================================
           MODE CLAIR — UNIFORMISATION COULEURS BLEUES
           Remplace tous les #a8d8ff et #4da8ff hardcodés
           ================================================ */
        body.light-mode .hero-content h1 span,
        body.light-mode .section-label,
        body.light-mode .stat-number,
        body.light-mode .pricing-features li::before,
        body.light-mode .calc-option-emoji,
        body.light-mode .calc-option-emoji svg,
        body.light-mode .diag-option-emoji,
        body.light-mode .diag-option-emoji svg,
        body.light-mode .teleassist-steps li::marker,
        body.light-mode .pillar-label,
        body.light-mode .engagement-tagline,
        body.light-mode .svc-row-arrow,
        body.light-mode .mob-tog-i,
        body.light-mode .tracking-details strong,
        body.light-mode .mobile-more-toggle:hover,
        body.light-mode .logo-cursor {
            color: #0055a5 !important;
        }

        body.light-mode .logo-cursor {
            background: #0055a5 !important;
            box-shadow: none !important;
        }

        /* Lien téléassistance step-summary */
        body.light-mode .step-summary {
            color: #0055a5 !important;
        }

        /* Pillar label (engagement-tagline déjà couvert par var(--accent)) */
        body.light-mode .pillar-label,
        body.light-mode .engagement-tagline {
            color: #0055a5 !important;
        }

        /* ================================================
           MODE CLAIR — Fond solide pour menu + settings
           ================================================ */
        body.light-mode .mobile-menu {
            background: #ffffff !important;
            backdrop-filter: none !important;
            box-shadow: 0 10px 50px rgba(0, 85, 165, 0.15);
            border-color: rgba(0, 117, 215, 0.15);
        }

        body.light-mode .settings-panel {
            background: #ffffff !important;
            backdrop-filter: none !important;
            border-color: rgba(0, 117, 215, 0.15);
            box-shadow: 0 10px 50px rgba(0, 85, 165, 0.15);
        }

        /* Textes du menu mobile lisibles en clair */
        body.light-mode .mobile-nav-main a,
        body.light-mode .mobile-nav-secondary a,
        body.light-mode .mobile-more-toggle {
            color: #0a1628 !important;
        }

        body.light-mode .mobile-cta-primary {
            background: #0055a5 !important;
            color: #ffffff !important;
        }

        body.light-mode .mobile-cta-secondary {
            color: #0055a5 !important;
            border-color: rgba(0, 85, 165, 0.4) !important;
        }

        body.light-mode .mobile-nav-main a::after,
        body.light-mode .mobile-nav-secondary a::after {
            color: #0055a5;
        }

        body.light-mode .mobile-nav-main a:hover,
        body.light-mode .mobile-nav-secondary a:hover {
            background: rgba(0, 117, 215, 0.08) !important;
            border-color: rgba(0, 117, 215, 0.2) !important;
            color: #0055a5 !important;
        }

        /* Textes du panneau paramètres lisibles en clair */
        body.light-mode .settings-panel h3,
        body.light-mode .settings-label,
        body.light-mode .opacity-value {
            color: #0a1628 !important;
        }

        body.light-mode .mode-btn {
            color: #0a1628;
            border-color: rgba(0, 85, 165, 0.25);
        }

        body.light-mode .mode-btn.active {
            background: #0055a5;
            color: white;
        }

        body.light-mode .reset-btn {
            color: #0055a5;
            border-color: rgba(0, 85, 165, 0.3);
        }

        /* ================================================
           ✨ SCROLL REVEAL — animations à l'entrée
           ================================================ */
        .reveal {
            opacity: 0;
            transform: translateY(32px);
            transition: opacity 0.65s cubic-bezier(0.4, 0, 0.2, 1),
                        transform 0.65s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .reveal.reveal-left {
            transform: translateX(-32px);
        }

        .reveal.reveal-right {
            transform: translateX(32px);
        }

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

        /* Délais en cascade pour les grilles */
        .reveal-delay-1 { transition-delay: 0.08s; }
        .reveal-delay-2 { transition-delay: 0.16s; }
        .reveal-delay-3 { transition-delay: 0.24s; }
        .reveal-delay-4 { transition-delay: 0.32s; }
        .reveal-delay-5 { transition-delay: 0.40s; }
        .reveal-delay-6 { transition-delay: 0.48s; }
        .reveal-delay-7 { transition-delay: 0.56s; }

        /* ================================================
           ⌨️ TYPEWRITER — curseur clignotant
           ================================================ */
        .typewriter-cursor {
            display: inline-block;
            color: var(--accent);
            font-weight: 300;
            margin-left: 2px;
            animation: twBlink 0.75s step-end infinite;
        }

        body.light-mode .typewriter-cursor {
            color: #0055a5;
        }

        @keyframes twBlink {
            0%, 100% { opacity: 1; }
            50%       { opacity: 0; }
        }

        /* ================================================
           💎 GLASSMORPHISM RENFORCÉ — toutes les cartes
           Reflet en haut + bordure lumineuse dégradée au hover
           ================================================ */

        /* --- Reflet "shine" en haut de chaque carte --- */
        .service-card:not(.service-featured)::after,
        .pricing-card::after,
        .guarantee-card::after,
        .process-step::after,
        .teleassist-card::after,
        .comparison-card::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 50%;
            border-radius: inherit;
            background: linear-gradient(
                180deg,
                rgba(255, 255, 255, 0.06) 0%,
                rgba(255, 255, 255, 0.0) 100%
            );
            pointer-events: none;
            z-index: 1;
        }

        /* --- Bordure lumineuse dégradée au hover via ::before --- */
        .guarantee-card,
        .process-step,
        .teleassist-card,
        .comparison-card {
            position: relative;
            overflow: hidden;
        }

        /* pricing-card : overflow visible pour que .pricing-badge dépasse en haut */
        .pricing-card {
            position: relative;
            overflow: visible;
        }

        .pricing-card::before,
        .guarantee-card::before,
        .process-step::before,
        .teleassist-card::before,
        .comparison-card::before {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: inherit;
            padding: 1.5px;
            background: linear-gradient(135deg, var(--accent), var(--primary));
            -webkit-mask: linear-gradient(#fff 0 0) content-box,
                          linear-gradient(#fff 0 0);
            -webkit-mask-composite: xor;
            mask-composite: exclude;
            opacity: 0;
            transition: opacity 0.4s ease;
            pointer-events: none;
            z-index: 2;
        }

        .pricing-card:hover::before,
        .guarantee-card:hover::before,
        .process-step:hover::before,
        .teleassist-card:hover::before,
        .comparison-card:hover::before {
            opacity: 1;
        }

        /* Rehausser les box-shadow hover existants */
        .pricing-card:hover {
            box-shadow: 0 20px 50px rgba(0, 117, 215, 0.3),
                        0 0 0 0.5px rgba(77, 168, 255, 0.15) inset;
        }
        .guarantee-card:hover {
            box-shadow: 0 14px 36px rgba(0, 117, 215, 0.28),
                        0 0 0 0.5px rgba(77, 168, 255, 0.12) inset;
        }
        .process-step:hover {
            box-shadow: 0 14px 36px rgba(0, 117, 215, 0.28),
                        0 0 0 0.5px rgba(77, 168, 255, 0.12) inset;
        }
        .teleassist-card:hover {
            box-shadow: 0 14px 36px rgba(0, 117, 215, 0.28),
                        0 0 0 0.5px rgba(77, 168, 255, 0.12) inset;
        }
        .comparison-card:hover {
            box-shadow: 0 14px 36px rgba(0, 117, 215, 0.28),
                        0 0 0 0.5px rgba(77, 168, 255, 0.12) inset;
        }

        /* --- Mode clair : reflet plus doux + bordure bleu foncé --- */
        body.light-mode .service-card:not(.service-featured)::after,
        body.light-mode .pricing-card::after,
        body.light-mode .guarantee-card::after,
        body.light-mode .process-step::after,
        body.light-mode .teleassist-card::after,
        body.light-mode .comparison-card::after {
            background: linear-gradient(
                180deg,
                rgba(255, 255, 255, 0.55) 0%,
                rgba(255, 255, 255, 0.0) 100%
            );
        }

        body.light-mode .pricing-card::before,
        body.light-mode .guarantee-card::before,
        body.light-mode .process-step::before,
        body.light-mode .teleassist-card::before,
        body.light-mode .comparison-card::before {
            background: linear-gradient(135deg, #0055a5, #4da8ff);
        }

        body.light-mode .service-card::before {
            background: linear-gradient(135deg, #0055a5, #4da8ff);
        }

        body.light-mode .pricing-card:hover,
        body.light-mode .guarantee-card:hover,
        body.light-mode .process-step:hover,
        body.light-mode .teleassist-card:hover,
        body.light-mode .comparison-card:hover {
            box-shadow: 0 20px 50px rgba(0, 85, 165, 0.22),
                        0 0 0 0.5px rgba(0, 117, 215, 0.1) inset !important;
        }

        /* ================================================
           🔵 FOCUS RING ANIMÉ — inputs & textarea
           ================================================ */
        .contact-form input,
        .contact-form textarea {
            outline: none;
            border: 1.5px solid var(--glass-border);
            transition: border-color 0.25s ease, box-shadow 0.25s ease;
        }

        .contact-form input:focus,
        .contact-form textarea:focus {
            border-color: var(--accent);
            box-shadow:
                0 0 0 3px rgba(77, 168, 255, 0.15),
                0 0 12px rgba(77, 168, 255, 0.08);
        }

        body.light-mode .contact-form input:focus,
        body.light-mode .contact-form textarea:focus {
            border-color: #0055a5;
            box-shadow:
                0 0 0 3px rgba(0, 85, 165, 0.12),
                0 0 10px rgba(0, 85, 165, 0.06);
        }

        /* ================================================
           🏷️ LABELS FLOTTANTS — formulaire contact
           ================================================ */
        .form-group {
            position: relative;
        }

        .form-group label {
            position: absolute;
            top: 14px;
            left: 14px;
            font-size: 0.9rem;
            color: var(--text-color);
            opacity: 0.5;
            pointer-events: none;
            transition: top 0.2s ease, font-size 0.2s ease,
                        opacity 0.2s ease, color 0.2s ease;
            background: transparent;
            padding: 0 4px;
            z-index: 2;
        }

        /* Label flotte quand le champ a du contenu ou est focus */
        /* input/textarea est AVANT label dans le DOM → ~ fonctionne */
        .form-group input:focus ~ label,
        .form-group textarea:focus ~ label,
        .form-group input:not(:placeholder-shown) ~ label,
        .form-group textarea:not(:placeholder-shown) ~ label {
            top: -10px;
            font-size: 0.72rem;
            opacity: 1;
            color: var(--accent);
            background: var(--bg-gradient-start, #050508);
        }

        body.light-mode .form-group input:focus ~ label,
        body.light-mode .form-group textarea:focus ~ label,
        body.light-mode .form-group input:not(:placeholder-shown) ~ label,
        body.light-mode .form-group textarea:not(:placeholder-shown) ~ label {
            color: #0055a5;
            background: #e8f3ff;
        }

        /* Ajuster le padding des inputs pour que le texte ne touche pas le label */
        .contact-form input,
        .contact-form textarea {
            padding-top: 18px;
            padding-bottom: 10px;
        }

        /* ================================================
           ✨ HALO PULSÉ — prix featured au hover
           ================================================ */
        .pricing-card.featured .pricing-price {
            position: relative;
            display: inline-block;
            transition: text-shadow 0.3s ease;
        }

        .pricing-card.featured:hover .pricing-price {
            text-shadow:
                0 0 20px rgba(77, 168, 255, 0.5),
                0 0 40px rgba(77, 168, 255, 0.25);
            animation: priceGlow 1.8s ease-in-out infinite;
        }

        @keyframes priceGlow {
            0%, 100% {
                text-shadow:
                    0 0 15px rgba(77, 168, 255, 0.4),
                    0 0 30px rgba(77, 168, 255, 0.2);
            }
            50% {
                text-shadow:
                    0 0 25px rgba(77, 168, 255, 0.7),
                    0 0 50px rgba(77, 168, 255, 0.35),
                    0 0 70px rgba(0, 117, 215, 0.2);
            }
        }

        body.light-mode .pricing-card.featured:hover .pricing-price {
            animation: priceGlowLight 1.8s ease-in-out infinite;
        }

        @keyframes priceGlowLight {
            0%, 100% {
                filter: drop-shadow(0 0 6px rgba(0, 85, 165, 0.3));
            }
            50% {
                filter: drop-shadow(0 0 14px rgba(0, 85, 165, 0.55));
            }
        }

        /* ================================================
           🔢 COMPTEURS ANIMÉS — stats
           ================================================ */
        .stat-number {
            display: inline-block;
            transition: opacity 0.3s ease;
        }

        .stat-number.counting {
            opacity: 0.85;
        }

/* ================================================
   🔒 RGPD — Bandeau de consentement
   ================================================ */
#rgpd-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 99999;
    background: rgba(10, 15, 30, 0.97);
    border-top: 1px solid rgba(0, 117, 215, 0.4);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 1.1rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 -4px 24px rgba(0,0,0,0.4);
}
.light-mode #rgpd-banner {
    background: rgba(245, 248, 255, 0.97);
    border-top: 1px solid rgba(0, 85, 165, 0.25);
}
.rgpd-inner {
    max-width: 900px;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}
.rgpd-text {
    flex: 1;
    min-width: 200px;
}
.rgpd-text strong {
    display: block;
    font-size: 0.95rem;
    color: var(--text-color, #e2e8f0);
    margin-bottom: 0.3rem;
}
.rgpd-text p {
    font-size: 0.82rem;
    color: var(--text-muted, #94a3b8);
    line-height: 1.5;
    margin: 0;
}
.rgpd-link {
    color: var(--primary, #4da8ff);
    text-decoration: underline;
}
.rgpd-actions {
    display: flex;
    gap: 0.6rem;
    flex-shrink: 0;
    flex-wrap: wrap;
}
.rgpd-btn {
    padding: 0.5rem 1.2rem;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all 0.2s;
}
.rgpd-accept {
    background: var(--primary, #4da8ff);
    color: #fff;
}
.rgpd-accept:hover { background: var(--primary-dark, #0075d7); }
.rgpd-refuse {
    background: transparent;
    color: var(--text-muted, #94a3b8);
    border: 1px solid rgba(148,163,184,0.35);
}
.rgpd-refuse:hover {
    background: rgba(148,163,184,0.1);
    color: var(--text-color, #e2e8f0);
}

/* ================================================
   🔒 RGPD — Case de consentement formulaire
   ================================================ */
.form-group-consent {
    margin-top: 0.5rem;
    position: static !important;
}
.form-group-consent label,
.form-group-consent .consent-label {
    position: static !important;
    top: auto !important;
    left: auto !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    font-size: 0.83rem !important;
    color: var(--text-muted, #94a3b8) !important;
    background: transparent !important;
    display: flex !important;
    align-items: flex-start !important;
    gap: 0.7rem !important;
    cursor: pointer !important;
    line-height: 1.5 !important;
    z-index: auto !important;
    transition: none !important;
    padding: 0 !important;
}
.consent-label input[type="checkbox"] {
    margin-top: 0.2rem;
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    accent-color: var(--primary, #4da8ff);
    cursor: pointer;
}
.consent-link {
    color: var(--primary, #4da8ff);
    text-decoration: underline;
}

/* ================================================
   Footer — Liens légaux
   ================================================ */
.footer-legal-links {
    margin-top: 0.4rem;
    font-size: 0.8rem;
    color: var(--text-muted, #64748b);
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    flex-wrap: wrap;
}
.footer-legal-link {
    color: var(--text-muted, #64748b);
    text-decoration: underline;
    transition: color 0.2s;
}
.footer-legal-link:hover { color: var(--primary, #4da8ff); }
.footer-legal-sep { opacity: 0.4; }

/* ================================================
   🛡️ FALLBACK MISE EN PAGE — desktop
   Garantit que le layout reste correct même si JS
   ne parvient pas à appliquer dark-mode/light-mode
   ================================================ */
body:not(.dark-mode):not(.light-mode) {
    background: linear-gradient(135deg, #050508 0%, #08080d 100%) !important;
    background-attachment: fixed !important;
    --text-color: #ffffff;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.13);
    --bg-gradient-start: #050508;
    --bg-gradient-end: #08080d;
}

/* Largeur max desktop */
.container {
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}
