        /* ========================================
           VARIABLES CSS - DESIGN 2026 GLASSMORPHISM
           ======================================== */
        :root {
            /* Palette 2026 - Glassmorphism Dark */
            --primary-color: #8B5CF6;
            --secondary-color: #3B82F6;
            --success-color: #10B981;
            --warning-color: #F59E0B;
            --error-color: #EF4444;

            /* Gradients Premium */
            --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            --gradient-secondary: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
            --gradient-text: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            --gradient-shimmer: linear-gradient(90deg, #667eea, #764ba2, #667eea);

            /* Texte */
            --text-primary: #F9FAFB;
            --text-secondary: #9CA3AF;
            --text-muted: #6B7280;

            /* Backgrounds Dark */
            --bg-primary: #0A0A0F;
            --bg-secondary: #0F0F14;
            --bg-card: rgba(255, 255, 255, 0.05);
            --bg-card-hover: rgba(255, 255, 255, 0.08);

            /* Glass Effect */
            --glass-border: rgba(255, 255, 255, 0.1);
            --glass-border-hover: rgba(139, 92, 246, 0.3);

            /* Shadows Premium */
            --shadow-sm: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
            --shadow-md: 0 8px 32px 0 rgba(31, 38, 135, 0.37), inset 0 1px 0 0 rgba(255, 255, 255, 0.1);
            --shadow-lg: 0 20px 60px 0 rgba(139, 92, 246, 0.4), inset 0 1px 0 0 rgba(255, 255, 255, 0.2);
            --shadow-glow: 0 0 40px rgba(139, 92, 246, 0.6), inset 0 0 40px rgba(139, 92, 246, 0.2);

            /* Accents */
            --accent-color: #8B5CF6;
            --mac-accent: #8B5CF6;
            --windows-accent: #3B82F6;

            /* Border radius */
            --border-radius: 24px;
            --border-radius-sm: 16px;
            --border-radius-lg: 32px;

            /* Transition Smooth */
            --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);

            /* Missing variables - referenced throughout CSS */
            --border-color: rgba(255, 255, 255, 0.1);
            --bg-light: rgba(255, 255, 255, 0.03);
            --text-light: #6B7280;
            --text-dark: #F9FAFB;
            --text-medium: #9CA3AF;
            --gradient-windows: linear-gradient(135deg, rgba(59, 130, 246, 0.15) 0%, rgba(59, 130, 246, 0.05) 100%);
            --shadow-xl: 0 25px 80px 0 rgba(139, 92, 246, 0.5), inset 0 1px 0 0 rgba(255, 255, 255, 0.2);
        }

        /* ========================================
           RESET & BASE
           ======================================== */
        html {
            scroll-behavior: smooth;
            scroll-padding-top: 20px;
        }

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

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Segoe UI', Roboto, sans-serif;
            background: var(--bg-primary);
            min-height: 100vh;
            padding: 32px 20px;
            line-height: 1.6;
            color: var(--text-primary);
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            position: relative;
            overflow-x: hidden;
        }

        /* Animated Gradient Mesh Background */
        body::before {
            content: '';
            position: fixed;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background:
                radial-gradient(circle at 20% 50%, rgba(139, 92, 246, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(59, 130, 246, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 40% 80%, rgba(139, 92, 246, 0.10) 0%, transparent 50%);
            animation: meshFloat 20s ease-in-out infinite;
            will-change: transform;
            pointer-events: none;
            z-index: 0;
        }

        @keyframes meshFloat {
            0%, 100% {
                transform: translate(0, 0) rotate(0deg);
            }
            33% {
                transform: translate(30px, -50px) rotate(120deg);
            }
            66% {
                transform: translate(-20px, 20px) rotate(240deg);
            }
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }


        /* ========================================
           HEADER
           ======================================== */
        header {
            color: var(--text-primary);
            margin-bottom: 48px;
            padding: 14px 24px;
            background: var(--bg-card);
            backdrop-filter: blur(20px) saturate(180%);
            -webkit-backdrop-filter: blur(20px) saturate(180%);
            border-radius: var(--border-radius-lg);
            border: 1px solid var(--glass-border);
            box-shadow: var(--shadow-md);
            position: sticky;
            top: 20px;
            z-index: 1000;
            overflow: visible;
            cursor: default;
        }

        header::before {
            display: none;
        }

        /* Desktop: single row — logo | menu | social+phone */
        .header-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
        }

        .logo-container {
            flex-shrink: 0;
            position: relative;
            z-index: 1;
            display: flex;
            align-items: center;
        }

        .logo-container img {
            max-width: 120px;
            height: auto;
            filter: drop-shadow(0 2px 8px rgba(0,0,0,0.2));
            cursor: default;
        }

        header p {
            font-size: 0.95rem;
            opacity: 0.95;
            margin-bottom: 15px;
            position: relative;
            z-index: 1;
        }

        .header-slogan {
            font-family: 'Manrope', 'Inter', sans-serif;
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 12px;
            letter-spacing: -0.02em;
            line-height: 1.4;
        }

        /* Right group: social icons + phone */
        .header-right {
            display: flex;
            align-items: center;
            gap: 12px;
            flex-shrink: 0;
        }

        .header-phone {
            display: inline-flex;
            align-items: center;
            gap: 5px;
            background: linear-gradient(135deg, #10B981 0%, #059669 100%);
            color: #fff;
            text-decoration: none;
            font-size: 0.85rem;
            font-weight: 700;
            padding: 8px 16px;
            border-radius: 50px;
            transition: all 0.3s ease;
            box-shadow: 0 2px 10px rgba(16, 185, 129, 0.3);
            white-space: nowrap;
        }

        .header-phone:hover {
            transform: translateY(-1px);
            box-shadow: 0 4px 16px rgba(16, 185, 129, 0.5);
        }

        .header-phone:active {
            transform: translateY(0);
        }

        /* ========================================
           MENU DE NAVIGATION
           ======================================== */
        .main-menu {
            display: flex;
            justify-content: center;
            gap: 8px;
            flex-wrap: nowrap;
            position: relative;
            z-index: 1;
        }

        .menu-button {
            background: var(--bg-card);
            color: var(--text-primary);
            border: 1px solid var(--glass-border);
            padding: 8px 16px;
            border-radius: 999px;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.85rem;
            transition: var(--transition);
            backdrop-filter: blur(20px) saturate(180%);
            -webkit-backdrop-filter: blur(20px) saturate(180%);
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
            display: inline-flex;
            align-items: center;
            gap: 6px;
            white-space: nowrap;
        }

        .menu-button svg {
            width: 14px;
            height: 14px;
            fill: currentColor;
            opacity: 0.8;
            transition: var(--transition);
        }

        .menu-button:hover {
            background: var(--bg-card-hover);
            border-color: var(--glass-border-hover);
            transform: translateY(-1px);
            box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3);
        }

        .menu-button:hover svg {
            opacity: 1;
            fill: var(--accent-color);
        }

        .menu-button.active {
            border-bottom: 2px solid var(--accent-color, #a78bfa);
            opacity: 1;
        }

        .mobile-menu-item.active {
            background: rgba(139, 92, 246, 0.1);
        }

        .menu-button.primary {
            background: var(--gradient-primary);
            border: 1px solid var(--glass-border-hover);
            font-weight: 700;
            font-size: 0.85rem;
            padding: 8px 16px;
            box-shadow: 0 4px 12px rgba(139, 92, 246, 0.4);
        }

        .menu-button.primary:hover {
            background: var(--gradient-secondary);
            box-shadow: 0 8px 20px rgba(139, 92, 246, 0.6);
            transform: translateY(-2px);
        }

        /* ========================================
           ICÔNES SOCIALES
           ======================================== */
        .social-icons {
            display: flex;
            align-items: center;
            gap: 8px;
            position: relative;
            z-index: 1;
        }

        .social-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 30px;
            height: 30px;
            background: var(--bg-card);
            border: 1px solid var(--glass-border);
            border-radius: 50%;
            color: var(--text-primary);
            text-decoration: none;
            transition: var(--transition);
        }

        .social-icon svg {
            width: 12px;
            height: 12px;
            fill: currentColor;
        }

        .social-icon:hover {
            background: var(--bg-card-hover);
            border-color: var(--glass-border-hover);
            transform: translateY(-1px) scale(1.1);
            box-shadow: 0 4px 12px rgba(139, 92, 246, 0.4);
        }

        .social-icon.instagram:hover {
            background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
            border-color: #e6683c;
        }

        .social-icon.facebook:hover {
            background: #1877f2;
            border-color: #1877f2;
        }

        .social-icon.google:hover {
            background: #4285f4;
            border-color: #4285f4;
        }

        .trust-badges {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 10px;
            margin-top: 15px;
            position: relative;
            z-index: 1;
        }

        .trust-badges span {
            background: rgba(255,255,255,0.2);
            padding: 12px 22px;
            border-radius: 25px;
            backdrop-filter: blur(10px);
            transition: var(--transition);
            font-size: 0.9rem;
            border: 1px solid rgba(255,255,255,0.3);
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .trust-badges span:hover {
            background: rgba(255,255,255,0.3);
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
        }

        .security-indicators {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 25px;
            flex-wrap: wrap;
            position: relative;
            z-index: 1;
        }

        .security-indicator {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 0.85rem;
            opacity: 0.9;
            padding: 8px 16px;
            background: rgba(39, 174, 96, 0.2);
            border-radius: 20px;
            border: 1px solid rgba(39, 174, 96, 0.3);
        }

        /* ========================================
           SECTION TÉMOIGNAGES ANIMÉS
           ======================================== */
        .testimonials-section {
            background:
                radial-gradient(1200px circle at 30% 20%, rgba(120,80,255,.18), transparent 55%),
                radial-gradient(900px circle at 70% 60%, rgba(0,170,255,.10), transparent 55%),
                #06070b;
            border-radius: var(--border-radius);
            padding: 40px 20px;
            margin-bottom: 40px;
            overflow: hidden;
            position: relative;
        }

        .testimonials-section::before {
            content: "";
            position: absolute;
            inset: 0;
            background-image: radial-gradient(rgba(255,255,255,.06) 1px, transparent 1px);
            background-size: 48px 48px;
            opacity: .15;
            pointer-events: none;
        }

        .testimonials-header {
            color: white;
            margin-bottom: 30px;
            position: relative;
            z-index: 1;
        }

        .testimonials-header-top {
            text-align: center;
            margin-bottom: 30px;
        }

        .testimonials-header h2 {
            font-family: 'Inter', 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            font-size: 1.8rem;
            margin-bottom: 8px;
            font-weight: 700;
            color: #ffffff;
            letter-spacing: -0.02em;
        }

        .testimonials-header p {
            font-family: 'Inter', 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            font-size: 0.85rem;
            color: #c9c9c9;
            opacity: 0.85;
            margin-bottom: 0;
        }

        .testimonials-content-grid {
            display: flex;
            justify-content: center;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
        }

        .google-rating-display {
            margin: 0 0 20px 0;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .google-rating-large {
            font-family: 'Inter', 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            font-size: 3.5rem;
            font-weight: 800;
            color: #ffc107;
            line-height: 1;
            margin-bottom: 8px;
            text-shadow: 0 2px 10px rgba(255, 193, 7, 0.3);
        }

        .google-rating-large .star-icon {
            font-size: 2.5rem;
            vertical-align: middle;
            margin-right: 8px;
        }

        .google-reviews-count {
            font-family: 'Inter', 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            font-size: 1.1rem;
            color: var(--text-secondary);
            margin-bottom: 25px;
            font-weight: 500;
        }

        .google-badge {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: rgba(11, 15, 26, 0.7);
            border: 1px solid var(--border-color);
            border-radius: 16px;
            padding: 16px 24px;
            margin: 20px auto 0 auto;
            backdrop-filter: blur(14px);
            -webkit-backdrop-filter: blur(14px);
            box-shadow: var(--shadow-md);
        }

        .google-badge-stars {
            font-size: 1.3rem;
            color: #ffc107;
            letter-spacing: 2px;
        }

        .google-badge-logo {
            width: 24px;
            height: 24px;
            filter: brightness(0) invert(1);
            opacity: 0.9;
        }

        .google-badge-text {
            font-family: 'Inter', 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            font-size: 0.9rem;
            color: var(--text-primary);
            font-weight: 600;
        }

        .testimonials-header .google-link {
            font-family: 'Inter', 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            margin-top: 25px;
            color: white;
            text-decoration: none;
            font-weight: 700;
            font-size: 1.05rem;
            padding: 16px 32px;
            background: rgba(255, 255, 255, 0.12);
            backdrop-filter: blur(14px);
            -webkit-backdrop-filter: blur(14px);
            border-radius: 999px;
            transition: all 0.3s ease-out;
            border: 1px solid rgba(255, 255, 255, 0.2);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
            position: relative;
            overflow: hidden;
            align-self: center;
        }

        .testimonials-header .google-link::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
            transition: left 0.5s ease;
        }

        .testimonials-header .google-link:hover::before {
            left: 100%;
        }

        .testimonials-header .google-link:hover {
            background: rgba(255, 255, 255, 0.18);
            transform: translateY(-3px);
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4), 0 0 20px rgba(139, 92, 246, 0.4);
            border-color: rgba(139, 92, 246, 0.5);
        }

        .testimonials-header .google-link:active {
            transform: translateY(-1px);
        }

        .google-link-icon {
            width: 20px;
            height: 20px;
            filter: brightness(0) invert(1);
        }

        .google-business-image-container {
            margin: 0 auto;
            display: flex;
            justify-content: center;
            align-items: center;
            width: 100%;
            max-width: 600px;
        }

        .google-business-image-wrapper {
            background: rgba(11, 15, 26, 0.7);
            border: 1px solid var(--glass-border);
            border-radius: 24px;
            padding: 24px;
            backdrop-filter: blur(20px) saturate(180%);
            -webkit-backdrop-filter: blur(20px) saturate(180%);
            box-shadow:
                0 10px 40px rgba(0, 0, 0, 0.5),
                0 2px 8px rgba(0, 0, 0, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
            display: flex;
            justify-content: center;
            align-items: center;
            width: 100%;
            position: relative;
            transition: var(--transition);
        }

        .google-business-image-wrapper:hover {
            border-color: var(--glass-border-hover);
            box-shadow:
                0 12px 48px rgba(0, 0, 0, 0.6),
                0 4px 16px rgba(0, 0, 0, 0.4),
                0 0 0 1px rgba(139, 92, 246, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.15);
            transform: translateY(-2px);
        }

        .google-business-image-wrapper::before {
            content: '';
            position: absolute;
            left: 2%;
            top: 50%;
            transform: translateY(-50%);
            width: 100px;
            height: 100px;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23ffffff'%3E%3Cpath d='M18.71 19.5c-.83 1.24-1.71 2.45-3.05 2.47-1.34.03-1.77-.79-3.29-.79-1.53 0-2 .77-3.27.82-1.31.05-2.3-1.32-3.14-2.53C4.25 17 2.94 12.45 4.7 9.39c.87-1.52 2.43-2.48 4.12-2.51 1.28-.02 2.5.87 3.29.87.78 0 2.26-1.07 3.81-.91.65.03 2.47.26 3.64 1.98-.09.06-2.17 1.28-2.15 3.81.03 3.02 2.65 4.03 2.68 4.04-.03.07-.42 1.44-1.38 2.83M13 3.5c.73-.83 1.94-1.46 2.94-1.5.13 1.17-.34 2.35-1.04 3.19-.69.85-1.83 1.51-2.95 1.42-.15-1.15.41-2.35 1.05-3.11z'/%3E%3C/svg%3E");
            background-size: contain;
            background-repeat: no-repeat;
            background-position: center;
            opacity: 0.15;
            pointer-events: none;
            z-index: 0;
        }

        .google-business-image-wrapper::after {
            content: '';
            position: absolute;
            right: 2%;
            top: 50%;
            transform: translateY(-50%);
            width: 100px;
            height: 100px;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23ffffff'%3E%3Cpath d='M3 12V6.75l6-1.32v6.48L3 12zm17-9v8.75l-10 .15V5.21L20 3zM3 13l6 .09v6.81l-6-1.15V13zm17 .25V22l-10-1.8v-7.15l10 .15z'/%3E%3C/svg%3E");
            background-size: contain;
            background-repeat: no-repeat;
            background-position: center;
            opacity: 0.15;
            pointer-events: none;
            z-index: 0;
        }

        .google-business-image-wrapper > img {
            position: relative;
            z-index: 1;
        }

        .google-business-image {
            max-width: 100%;
            width: 100%;
            height: 276px;
            object-fit: cover;
            object-position: center;
            border-radius: 20px;
            filter: brightness(0.75) contrast(1.15) saturate(0.85);
            box-shadow:
                0 8px 32px rgba(0, 0, 0, 0.6),
                0 2px 8px rgba(0, 0, 0, 0.4),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
            transition: var(--transition);
            display: block;
            margin: 0 auto;
        }

        .google-business-image:hover {
            filter: brightness(0.8) contrast(1.2) saturate(0.9);
            transform: translateY(-4px);
            box-shadow:
                0 12px 48px rgba(0, 0, 0, 0.7),
                0 4px 16px rgba(0, 0, 0, 0.5),
                0 0 0 1px rgba(139, 92, 246, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.15);
        }

        .testimonials-container {
            position: relative;
            overflow: hidden;
            height: 300px;
            margin: 0 auto;
            max-width: 1000px;
            mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
            -webkit-mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
            z-index: 1;
        }

        .testimonials-wrapper {
            display: flex;
            flex-direction: column;
            gap: 15px;
            height: 100%;
            overflow: hidden;
            position: relative;
        }

        .testimonials-row {
            position: relative;
            overflow: hidden;
            height: 140px;
            isolation: isolate;
            width: 100%;
        }

        .testimonials-track {
            display: flex;
            flex-wrap: nowrap;
            gap: 20px;
            animation: scroll 50s linear infinite;
            will-change: transform;
            width: fit-content;
            position: relative;
            z-index: 1;
        }

        .testimonials-track:hover {
            animation-play-state: paused;
        }

        .testimonials-track.reverse {
            animation: scrollReverse 50s linear infinite;
        }

        .testimonials-track.reverse:hover {
            animation-play-state: paused;
        }

        @keyframes scroll {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(-50%);
            }
        }

        @keyframes scrollReverse {
            0% {
                transform: translateX(-50%);
            }
            100% {
                transform: translateX(0);
            }
        }

        .testimonial-item {
            flex: 0 0 420px;
            width: 420px;
            background: rgba(11, 15, 26, 0.6);
            border: 1px solid var(--border-color);
            backdrop-filter: blur(14px);
            -webkit-backdrop-filter: blur(14px);
            border-radius: 20px;
            padding: 20px 24px;
            box-shadow: var(--shadow-md);
            display: flex;
            flex-direction: column;
            gap: 12px;
            transition: transform .25s ease-out, border-color .25s ease-out, box-shadow .25s ease-out, z-index .25s ease-out;
            height: auto;
            min-height: 140px;
            max-height: 140px;
            position: relative;
            z-index: 1;
            overflow: hidden;
        }

        .testimonial-item:hover {
            transform: translateY(-2px);
            border-color: var(--glass-border-hover);
            box-shadow: 0 18px 70px rgba(0,0,0,.7), 0 0 24px rgba(139, 92, 246, 0.4);
            z-index: 2;
        }

        .testimonial-text {
            font-family: 'Inter', 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            color: var(--text-secondary);
            font-size: 0.9rem;
            line-height: 1.6;
            font-style: normal;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
            text-overflow: ellipsis;
            min-height: 4.32em;
            max-height: 4.32em;
            flex-shrink: 0;
        }

        .testimonial-text strong {
            color: var(--primary-color);
            font-weight: 600;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 8px;
            margin-top: auto;
            padding-top: 12px;
            border-top: 1px solid var(--border-color);
            flex-shrink: 0;
            min-height: 32px;
        }

        .testimonial-author-name {
            font-family: 'Inter', 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            font-weight: 600;
            color: var(--primary-color);
            font-size: 0.85rem;
        }

        .testimonial-author-rating {
            display: flex;
            gap: 2px;
            color: #ffc107;
            font-size: 0.8rem;
            filter: drop-shadow(0 1px 2px rgba(0,0,0,0.3));
        }

        /* ========================================
           SECTIONS DE SERVICES
           ======================================== */
        .services-section {
            margin-bottom: 40px;
        }

        .services-section.mac-section {
            margin-bottom: 30px;
        }

        .section-header {
            background: var(--bg-card);
            backdrop-filter: blur(20px) saturate(180%);
            -webkit-backdrop-filter: blur(20px) saturate(180%);
            border-radius: var(--border-radius);
            padding: 32px;
            margin-bottom: 32px;
            box-shadow: var(--shadow-md);
            text-align: center;
            border: 1px solid var(--glass-border);
        }

        .section-header.mac {
            background: var(--bg-card);
            backdrop-filter: blur(20px) saturate(180%);
            -webkit-backdrop-filter: blur(20px) saturate(180%);
            color: var(--text-primary);
            padding: 32px;
            margin-bottom: 32px;
            border: 1px solid var(--glass-border);
            position: relative;
            overflow: visible;
        }

        .section-header.mac::before {
            display: none;
        }

        .section-header.mac > * {
            position: relative;
            z-index: 1;
        }

        .section-header.windows {
            background: var(--gradient-windows);
            color: var(--text-primary);
            border: 1px solid var(--border-color);
            position: relative;
            overflow: hidden;
        }

        .section-header-logo {
            position: absolute;
            top: 15px;
            right: 20px;
            width: 32px;
            height: 32px;
            opacity: 0.5;
            transition: var(--transition);
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 8px;
            padding: 6px;
            background: rgba(255, 255, 255, 0.05);
        }

        .section-header:hover .section-header-logo {
            opacity: 1;
            background: rgba(139, 92, 246, 0.15);
            box-shadow: 0 0 12px rgba(139, 92, 246, 0.4);
        }

        .section-header-logo svg {
            width: 100%;
            height: 100%;
            fill: var(--text-secondary);
            transition: var(--transition);
        }

        .section-header:hover .section-header-logo svg {
            fill: var(--primary-color);
        }

        .section-header h2 {
            font-size: 2rem;
            margin-bottom: 10px;
            font-weight: 700;
        }

        .section-header p {
            font-size: 1.1rem;
            opacity: 0.9;
        }

        /* ========================================
           GRILLE DE PRODUITS
           ======================================== */
        .products-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            margin-bottom: 40px;
        }

        .consultations-grid {
            grid-template-columns: repeat(2, 1fr);
            max-width: 900px;
            margin: 0 auto;
        }

        .btn-buy {
            display: block;
            width: 100%;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            border: none;
            padding: 14px;
            border-radius: 12px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
        }

        .btn-buy:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(102,126,234,0.4);
        }

        .product-card {
            background: var(--bg-card);
            backdrop-filter: blur(20px) saturate(180%);
            -webkit-backdrop-filter: blur(20px) saturate(180%);
            border-radius: var(--border-radius);
            padding: 36px;
            box-shadow: var(--shadow-md);
            transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.4s ease, background 0.4s ease;
            display: flex;
            flex-direction: column;
            border: 1px solid var(--glass-border);
            position: relative;
            overflow: hidden;
            opacity: 0;
            transform: translateY(20px);
            animation: cardFadeIn 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
            min-height: 900px;
        }

        .product-card.mac {
            min-height: 1000px;
        }
        
        @keyframes cardFadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .product-card:nth-child(1) {
            animation-delay: 0.1s;
        }
        
        .product-card:nth-child(2) {
            animation-delay: 0.2s;
        }
        
        .product-card:nth-child(3) {
            animation-delay: 0.3s;
        }

        .product-card::before {
            display: none;
        }

        .product-card.mac::before {
            display: none;
        }

        .product-card.windows::before {
            display: none;
        }

        .product-card:hover,
        .product-card:focus-within {
            transform: translateY(-6px) scale(1.015);
            border-color: var(--glass-border-hover);
            background: var(--bg-card-hover);
            box-shadow: 0 20px 50px rgba(139, 92, 246, 0.25), 0 0 30px rgba(139, 92, 246, 0.1);
        }

        .product-card.mac:hover,
        .product-card.mac:focus-within {
            transform: translateY(-6px) scale(1.015);
            border-color: var(--primary-color);
            box-shadow: 0 20px 60px rgba(139, 92, 246, 0.35), 0 0 40px rgba(139, 92, 246, 0.15);
        }

        .product-card:hover::before,
        .product-card:focus-within::before {
            opacity: 1;
        }

        .product-card.mac {
            border-left: 3px solid var(--glass-border);
        }

        .product-card.mac:hover {
            border-left-color: var(--primary-color);
        }

        .product-card.windows {
            border-left: 3px solid var(--glass-border);
        }

        .product-card.windows:hover,
        .product-card.windows:focus-within {
            border-left-color: var(--secondary-color);
            transform: translateY(-6px) scale(1.015);
            box-shadow: 0 20px 60px rgba(59, 130, 246, 0.25), 0 0 30px rgba(59, 130, 246, 0.1);
        }

        .product-card.active {
            border: 2px solid #a8b5ff;
            box-shadow: 
                0 12px 40px rgba(0, 0, 0, 0.16),
                0 4px 12px rgba(0, 0, 0, 0.1),
                0 0 0 2px rgba(168, 181, 255, 0.4),
                0 0 30px rgba(168, 181, 255, 0.15);
        }

        .product-icon {
            width: 200px;
            height: 200px;
            border-radius: 30px;
            margin: 0 auto 20px auto;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            background: linear-gradient(135deg, #7B68EE 0%, #9370DB 100%);
            border: none;
            box-shadow:
                0 8px 16px rgba(139, 92, 246, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
            transition: var(--transition);
            flex-shrink: 0;
        }

        .product-icon-img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            padding: 30px;
            border-radius: 12px;
        }

        .product-icon:hover {
            transform: translateY(-4px) rotateY(10deg);
            box-shadow:
                0 12px 24px rgba(139, 92, 246, 0.4),
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
            animation: iconPulse 2s ease-in-out infinite;
        }

        @keyframes iconPulse {
            0%, 100% {
                box-shadow:
                    0 12px 24px rgba(139, 92, 246, 0.4),
                    inset 0 1px 0 rgba(255, 255, 255, 0.3);
            }
            50% {
                box-shadow:
                    0 12px 32px rgba(139, 92, 246, 0.6),
                    inset 0 2px 0 rgba(255, 255, 255, 0.4);
            }
        }

        .product-title {
            font-family: 'Inter', 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            font-size: 1.3rem;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 16px;
            line-height: 1.4;
            letter-spacing: -0.02em;
            text-align: center;
            min-height: 70px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .product-card.mac .product-title {
            font-size: 1.5rem;
        }

        .product-description {
            font-family: 'Inter', 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            color: var(--text-secondary);
            line-height: 1.7;
            margin-bottom: 24px;
            font-size: 1rem;
        }

        .product-card.mac .product-description {
            font-size: 0.95rem;
        }

        .description-short {
            min-height: 80px;
        }
        
        .product-ideal-for {
            font-family: 'Inter', 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            color: var(--text-primary);
            font-size: 0.95rem;
            font-weight: 500;
            margin-top: 12px;
            margin-bottom: 20px;
            padding: 12px 16px;
            background: rgba(139, 92, 246, 0.1);
            border-left: 3px solid var(--primary-color);
            border-radius: var(--border-radius-sm);
            line-height: 1.5;
            min-height: 65px;
            display: flex;
            align-items: center;
        }
        
        .product-pricing-info {
            display: flex;
            flex-direction: column;
            gap: 8px;
            margin-top: 12px;
            margin-bottom: 20px;
            padding-top: 16px;
            border-top: 1px solid var(--border-color);
        }

        .pricing-info-item {
            font-family: 'Inter', 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            font-size: 0.85rem;
            color: var(--text-secondary);
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .pricing-info-item::before {
            content: '✓';
            color: var(--success-color);
            font-weight: 700;
            font-size: 0.9rem;
        }

        .description-short {
            display: block;
        }

        .description-full {
            display: none;
            margin-top: 15px;
        }

        .description-full.expanded {
            display: block;
        }

        .btn-read-more {
            font-family: 'Inter', 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            background: none;
            border: none;
            color: var(--text-secondary);
            font-weight: 600;
            cursor: pointer;
            padding: 8px 0;
            margin-top: 10px;
            font-size: 0.9rem;
            transition: all 250ms ease-out;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .btn-read-more:hover {
            color: var(--primary-color);
            transform: translateX(3px);
        }

        .btn-read-more::after {
            content: '→';
            transition: transform 0.3s;
            font-size: 1.1rem;
        }

        .btn-read-more.expanded::after {
            content: '↑';
        }

        .security-badges {
            display: flex;
            gap: 6px;
            flex-wrap: wrap;
            margin-top: 12px;
            padding-top: 12px;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
        }

        .security-badge {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'SF Pro Display', sans-serif;
            display: inline-flex;
            align-items: center;
            gap: 4px;
            font-size: 0.68rem;
            color: var(--success-color);
            background: rgba(16, 185, 129, 0.08);
            padding: 5px 10px;
            border-radius: 999px;
            font-weight: 500;
            border: 1px solid rgba(16, 185, 129, 0.15);
            box-shadow: none;
            transition: var(--transition);
            opacity: 0.85;
        }

        .security-badge:hover {
            opacity: 1;
            background: rgba(16, 185, 129, 0.12);
        }

        /* Badge Garantie - Violet */
        .security-badge.garantie {
            color: var(--primary-color);
            background: rgba(139, 92, 246, 0.08);
            border-color: rgba(139, 92, 246, 0.15);
        }

        .security-badge.garantie:hover {
            background: rgba(139, 92, 246, 0.12);
        }

        /* Badge Local - Bleu */
        .security-badge.local {
            color: var(--secondary-color);
            background: rgba(59, 130, 246, 0.08);
            border-color: rgba(59, 130, 246, 0.15);
        }

        .security-badge.local:hover {
            background: rgba(59, 130, 246, 0.12);
        }

        .product-price {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'SF Pro Display', sans-serif;
            font-size: 4rem;
            font-weight: 800;
            background: var(--gradient-text);
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin: 24px 0 24px 0;
            margin-top: auto;
            padding-top: 24px;
            text-align: center;
            letter-spacing: -0.04em;
            line-height: 1;
            position: relative;
            display: inline-block;
            width: 100%;
        }

        .product-price::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 4px;
            background: var(--gradient-primary);
            border-radius: 2px;
            opacity: 0.6;
        }

        /* Style 1: Gradient Glow Button (Primary) */
        .btn-payment {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'SF Pro Display', sans-serif;
            background: var(--gradient-primary);
            color: #FFFFFF;
            border: none;
            padding: 16px 32px;
            font-size: 1rem;
            font-weight: 600;
            border-radius: var(--border-radius-sm);
            cursor: pointer;
            transition: var(--transition);
            text-align: center;
            text-decoration: none;
            display: block;
            position: relative;
            overflow: hidden;
            letter-spacing: -0.01em;
            box-shadow: 0 8px 24px rgba(139, 92, 246, 0.4);
        }

        .btn-payment::before {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: var(--border-radius-sm);
            padding: 2px;
            background: var(--gradient-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;
        }

        .btn-payment:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-glow);
        }

        .btn-payment:hover::before {
            opacity: 1;
        }

        .btn-payment:active {
            transform: translateY(0);
            box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3);
        }

        /* Style 2: Neon Border Button (Alternative) */
        .btn-neon {
            background: transparent;
            color: var(--primary-color);
            border: 2px solid var(--primary-color);
            padding: 16px 32px;
            font-size: 1rem;
            font-weight: 600;
            border-radius: var(--border-radius-sm);
            cursor: pointer;
            transition: var(--transition);
            text-align: center;
            text-decoration: none;
            display: block;
            position: relative;
            overflow: hidden;
            box-shadow: 0 0 20px rgba(139, 92, 246, 0.3);
        }

        .btn-neon:hover {
            background: rgba(139, 92, 246, 0.1);
            box-shadow: 0 0 40px rgba(139, 92, 246, 0.6);
            transform: translateY(-2px);
        }

        /* Style 3: Shimmer Button (Alternative) */
        .btn-shimmer {
            background: var(--bg-secondary);
            color: var(--text-primary);
            border: 1px solid var(--glass-border);
            padding: 16px 32px;
            font-size: 1rem;
            font-weight: 600;
            border-radius: var(--border-radius-sm);
            cursor: pointer;
            transition: var(--transition);
            text-align: center;
            text-decoration: none;
            display: block;
            position: relative;
            overflow: hidden;
        }

        .btn-shimmer::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: var(--gradient-shimmer);
            background-size: 200% 100%;
            animation: shimmer 3s infinite;
            opacity: 0.3;
        }

        @keyframes shimmer {
            0% {
                left: -100%;
            }
            100% {
                left: 100%;
            }
        }

        .btn-shimmer:hover {
            border-color: var(--glass-border-hover);
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(139, 92, 246, 0.3);
        }
        
        .cta-micro-text {
            font-family: 'Inter', 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            font-size: 0.82rem;
            color: var(--text-secondary);
            text-align: center;
            margin-top: 14px;
            margin-bottom: 14px;
            opacity: 0.85;
        }
        
        /* Stripe Buy Button CTA */
        stripe-buy-button {
            display: flex;
            justify-content: center;
            width: 100%;
            margin-top: 4px;
            background: none;
            border-radius: 14px;
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        stripe-buy-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(99, 102, 241, 0.35);
        }

        stripe-buy-button:active {
            transform: translateY(0);
        }

        /* QR Code Desktop Pay */
        .qr-pay-desktop {
            display: none;
            flex-direction: column;
            align-items: center;
            margin-top: 16px;
            padding: 14px;
            border-radius: 12px;
            background: rgba(139, 92, 246, 0.08);
            border: 1px solid rgba(139, 92, 246, 0.2);
        }

        .qr-pay-label {
            font-size: 0.78rem;
            color: var(--text-secondary);
            margin-bottom: 10px;
            text-align: center;
        }

        .qr-pay-img {
            width: 160px;
            height: auto;
            border-radius: 8px;
        }

        @media (min-width: 769px) {
            .qr-pay-desktop {
                display: flex;
            }
        }

        .btn-secondary-cta {
            font-family: 'Inter', 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            display: block;
            text-align: center;
            color: #10B981;
            text-decoration: none;
            font-size: 0.9rem;
            font-weight: 600;
            padding: 12px 0;
            transition: all 250ms ease-out;
            border-top: 1px solid rgba(16, 185, 129, 0.2);
            padding-top: 14px;
            margin-top: 8px;
        }

        .btn-secondary-cta:hover {
            color: #34D399;
            opacity: 1;
        }

        /* ========================================
           SECTIONS INFORMATIVES
           ======================================== */
        .qr-section,
        .faq-section {
            background: var(--bg-card);
            backdrop-filter: blur(20px) saturate(180%);
            -webkit-backdrop-filter: blur(20px) saturate(180%);
            border-radius: var(--border-radius);
            padding: 40px;
            box-shadow: var(--shadow-md);
            margin-top: 40px;
            border: 1px solid var(--glass-border);
        }

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

        .qr-section h2,
        .faq-section h2 {
            color: var(--text-primary);
            margin-bottom: 20px;
            font-size: 1.8rem;
            font-weight: 700;
        }

        .qr-placeholder {
            display: inline-block;
            padding: 20px;
            margin: 20px auto;
            background: white;
            border-radius: 15px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
        }

        .faq-item {
            margin-bottom: 15px;
            background: rgba(255, 255, 255, 0.03);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border-radius: var(--border-radius-sm);
            overflow: hidden;
            border: 1px solid var(--glass-border);
            transition: var(--transition);
        }

        .faq-item:hover {
            border-color: var(--glass-border-hover);
            background: rgba(255, 255, 255, 0.05);
            box-shadow: 0 4px 16px rgba(139, 92, 246, 0.2);
        }

        .faq-question {
            font-weight: 600;
            color: var(--text-primary);
            font-size: 1.05rem;
            padding: 18px 20px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 15px;
            transition: var(--transition);
            user-select: none;
        }

        .faq-question:hover {
            background: rgba(139, 92, 246, 0.08);
        }

        .faq-question-icon {
            font-size: 1.2rem;
            color: var(--primary-color);
            transition: transform 0.3s ease;
            flex-shrink: 0;
        }

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

        .faq-answer {
            color: var(--text-secondary);
            line-height: 1.8;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease, padding 0.3s ease;
            padding: 0 20px;
        }

        .faq-item.active .faq-answer {
            max-height: 500px;
            padding: 0 20px 18px 20px;
        }

        .faq-answer a {
            color: var(--primary-color);
            text-decoration: none;
            font-weight: 500;
        }

        .faq-answer a:hover {
            text-decoration: underline;
        }

        /* ========================================
           EXPERT CONTACT CARD
           ======================================== */
        .expert-contact-card {
            background: var(--bg-card);
            backdrop-filter: blur(20px) saturate(180%);
            -webkit-backdrop-filter: blur(20px) saturate(180%);
            border: 2px solid var(--glass-border-hover);
            border-radius: var(--border-radius-lg);
            padding: 40px;
            margin-bottom: 40px;
            display: flex;
            align-items: center;
            gap: 30px;
            box-shadow: var(--shadow-lg);
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }

        .expert-contact-card::before {
            content: '';
            position: absolute;
            inset: 0;
            background: var(--gradient-primary);
            opacity: 0.08;
            pointer-events: none;
        }

        .expert-contact-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 20px 60px rgba(139, 92, 246, 0.5);
            border-color: var(--primary-color);
        }

        .expert-contact-icon {
            flex: 0 0 auto;
            width: 80px;
            height: 80px;
            background: var(--gradient-primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.5rem;
            box-shadow: 0 8px 24px rgba(139, 92, 246, 0.4);
            border: 1px solid var(--glass-border);
            position: relative;
            z-index: 1;
        }

        .expert-contact-content {
            flex: 1;
            position: relative;
            z-index: 1;
        }

        .expert-contact-content h3 {
            font-size: 1.5rem;
            color: var(--text-primary);
            margin-bottom: 10px;
            font-weight: 700;
        }

        .expert-contact-content p {
            color: var(--text-secondary);
            margin-bottom: 20px;
            font-size: 1rem;
        }

        .expertise-stats-inline {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
            margin-bottom: 25px;
            padding: 16px 0;
            border-top: 1px solid var(--glass-border);
            border-bottom: 1px solid var(--glass-border);
        }

        .expertise-stat-item {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 0.95rem;
            color: var(--text-primary);
            font-weight: 500;
        }

        .stat-icon {
            font-size: 1.2rem;
        }

        .stat-text {
            white-space: nowrap;
        }

        .expert-contact-buttons {
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
        }

        .btn-expert-phone,
        .btn-expert-email {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 14px 28px;
            border-radius: var(--border-radius-sm);
            font-weight: 600;
            font-size: 1rem;
            text-decoration: none;
            transition: var(--transition);
            border: 1px solid;
        }

        .btn-expert-phone {
            background: var(--gradient-primary);
            color: #FFFFFF;
            border-color: transparent;
            box-shadow: 0 8px 24px rgba(139, 92, 246, 0.4);
        }

        .btn-expert-phone:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-glow);
        }

        .btn-expert-email {
            background: transparent;
            color: var(--primary-color);
            border-color: var(--primary-color);
            box-shadow: 0 0 20px rgba(139, 92, 246, 0.2);
        }

        .btn-expert-email:hover {
            background: rgba(139, 92, 246, 0.1);
            box-shadow: 0 0 40px rgba(139, 92, 246, 0.5);
            transform: translateY(-2px);
        }

        @media (max-width: 768px) {
            .expert-contact-card {
                flex-direction: column;
                text-align: center;
                padding: 30px 20px;
            }

            .expert-contact-icon {
                width: 70px;
                height: 70px;
                font-size: 2rem;
            }

            .expert-contact-content h3 {
                font-size: 1.3rem;
            }

            .expertise-stats-inline {
                flex-direction: column;
                gap: 12px;
                align-items: center;
            }

            .expertise-stat-item {
                font-size: 0.9rem;
            }

            .expert-contact-buttons {
                justify-content: center;
            }

            .btn-expert-phone,
            .btn-expert-email {
                font-size: 0.9rem;
                padding: 12px 20px;
            }
        }

        /* ========================================
           FOOTER
           ======================================== */
        /* ========================================
           SECTION EXPERTISE
           ======================================== */
        .expertise-section {
            background: var(--bg-card);
            backdrop-filter: blur(20px) saturate(180%);
            -webkit-backdrop-filter: blur(20px) saturate(180%);
            border: 1px solid var(--glass-border);
            border-radius: var(--border-radius-lg);
            padding: 48px 40px;
            margin: 64px auto 48px;
            max-width: 1000px;
            box-shadow: var(--shadow-lg);
            position: relative;
            overflow: hidden;
        }

        .expertise-section::before {
            content: '';
            position: absolute;
            inset: 0;
            background: var(--gradient-primary);
            opacity: 0.05;
            pointer-events: none;
        }

        .expertise-content {
            display: flex;
            align-items: center;
            gap: 40px;
            flex-wrap: wrap;
            justify-content: center;
        }

        .expertise-image {
            flex: 0 0 auto;
            width: 150px;
            height: 150px;
            background: var(--gradient-primary);
            border: 1px solid var(--glass-border);
            border-radius: var(--border-radius);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 4rem;
            box-shadow:
                0 12px 32px rgba(139, 92, 246, 0.4),
                inset 0 2px 0 rgba(255, 255, 255, 0.2);
            transition: var(--transition);
            position: relative;
            z-index: 1;
        }

        .expertise-image:hover {
            transform: translateY(-4px) rotateY(10deg);
            box-shadow:
                0 16px 40px rgba(139, 92, 246, 0.5),
                inset 0 2px 0 rgba(255, 255, 255, 0.3);
        }

        .expertise-details {
            flex: 1;
            min-width: 300px;
        }

        .expertise-details h3 {
            font-size: 1.5rem;
            color: var(--text-primary);
            margin-bottom: 20px;
            font-weight: 700;
        }

        .expertise-stats {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .expertise-stat {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 1.05rem;
            color: var(--text-primary);
            font-weight: 500;
        }

        .expertise-stat::before {
            content: '✓';
            color: var(--primary-color);
            font-weight: 700;
            font-size: 1.3rem;
        }

        @media (max-width: 768px) {
            .expertise-section {
                padding: 30px 20px;
                margin: 40px auto 30px;
            }

            .expertise-content {
                gap: 25px;
            }

            .expertise-image {
                width: 120px;
                height: 120px;
                font-size: 3rem;
            }

            .expertise-details h3 {
                font-size: 1.3rem;
                text-align: center;
            }

            .expertise-stats {
                gap: 10px;
            }

            .expertise-stat {
                font-size: 0.95rem;
            }
        }

        /* ========================================
           MODERN FOOTER
           ======================================== */
        .modern-footer {
            margin-top: 80px;
            padding: 60px 0 30px;
            background: linear-gradient(135deg, rgba(10, 10, 26, 0.95) 0%, rgba(15, 15, 30, 0.95) 100%);
            border-top: 1px solid rgba(139, 92, 246, 0.2);
        }

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1.2fr 1.5fr 1fr;
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-column {
            display: flex;
            flex-direction: column;
        }

        .footer-links-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }

        .footer-logo {
            max-width: 120px;
            margin-bottom: 16px;
            filter: brightness(1.1);
        }

        .footer-desc {
            color: var(--text-secondary);
            font-size: 0.9rem;
            line-height: 1.6;
            margin-bottom: 20px;
        }

        .footer-social {
            display: flex;
            gap: 12px;
        }

        .footer-social-link {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: rgba(139, 92, 246, 0.1);
            border: 1px solid rgba(139, 92, 246, 0.2);
            color: var(--text-secondary);
            transition: all 0.3s;
        }

        .footer-social-link svg {
            width: 18px;
            height: 18px;
        }

        .footer-social-link:hover {
            background: rgba(139, 92, 246, 0.2);
            border-color: var(--primary-color);
            color: var(--primary-color);
            transform: translateY(-2px);
        }

        .footer-title {
            color: var(--text-primary);
            font-family: 'Manrope', sans-serif;
            font-size: 1rem;
            font-weight: 600;
            margin-bottom: 16px;
        }

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

        .footer-links li {
            margin-bottom: 10px;
        }

        .footer-links a {
            color: var(--text-secondary);
            text-decoration: none;
            font-size: 0.9rem;
            transition: all 0.2s;
            display: inline-block;
        }

        .footer-links a:hover {
            color: var(--primary-color);
            transform: translateX(3px);
        }

        .footer-phone {
            font-weight: 600;
            color: var(--text-primary) !important;
        }

        .footer-bottom {
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            text-align: center;
        }

        .footer-copyright {
            color: var(--text-secondary);
            font-size: 0.9rem;
            margin-bottom: 8px;
        }

        .footer-disclaimer {
            color: var(--text-muted);
            font-size: 0.75rem;
            opacity: 0.7;
            line-height: 1.5;
        }

        /* ========================================
           MODAL DE PAIEMENT
           ======================================== */
        .payment-modal {
            display: none;
            position: fixed;
            z-index: 1000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(10, 10, 15, 0.85);
            overflow-y: auto;
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            animation: fadeIn 0.3s ease;
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        .payment-modal.active {
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px;
        }

        .payment-content {
            background: var(--bg-card);
            backdrop-filter: blur(20px) saturate(180%);
            -webkit-backdrop-filter: blur(20px) saturate(180%);
            border: 1px solid var(--glass-border);
            border-radius: var(--border-radius-lg);
            padding: 35px;
            max-width: 500px;
            width: 100%;
            position: relative;
            box-shadow: var(--shadow-lg);
            animation: slideUp 0.3s ease;
            max-height: 90vh;
            overflow-y: auto;
        }

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

        .close-modal {
            position: absolute;
            right: 20px;
            top: 20px;
            font-size: 1.8rem;
            cursor: pointer;
            color: var(--text-light);
            transition: var(--transition);
            width: 38px;
            height: 38px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            z-index: 10;
        }

        .close-modal:hover {
            color: var(--text-primary);
            background: rgba(139, 92, 246, 0.2);
            transform: rotate(90deg);
        }

        .payment-header {
            text-align: center;
            margin-bottom: 25px;
            padding-right: 30px;
        }

        .payment-header h2 {
            color: var(--text-primary);
            margin-bottom: 8px;
            font-size: 1.7rem;
            font-weight: 700;
        }

        .payment-header p {
            color: var(--text-secondary);
            font-size: 0.95rem;
            margin-bottom: 15px;
        }

        .payment-security-badges {
            display: flex;
            justify-content: center;
            gap: 15px;
            flex-wrap: wrap;
            margin-top: 15px;
        }

        .payment-security-badge {
            font-size: 0.75rem;
            color: var(--success-color);
            display: flex;
            align-items: center;
            gap: 5px;
            font-weight: 500;
        }

        .payment-product-info {
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
            padding: 22px;
            border-radius: 12px;
            margin-bottom: 25px;
            border: 2px solid rgba(102, 126, 234, 0.2);
        }

        .payment-product-name {
            font-weight: 600;
            color: var(--text-dark);
            margin-bottom: 10px;
            font-size: 1.05rem;
        }

        .payment-product-price {
            font-size: 1.9rem;
            font-weight: 700;
            color: var(--primary-color);
        }

        .payment-form {
            margin-top: 20px;
        }

        .form-row {
            margin-bottom: 20px;
        }

        .form-label {
            display: block;
            margin-bottom: 8px;
            color: var(--text-dark);
            font-weight: 600;
            font-size: 0.95rem;
        }

        .form-input {
            width: 100%;
            padding: 12px 15px;
            border: 2px solid var(--border-color);
            border-radius: 8px;
            font-size: 0.95rem;
            transition: var(--transition);
            font-family: inherit;
        }

        .form-input:focus {
            outline: none;
            border-color: var(--primary-color);
            box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
        }

        .card-element {
            padding: 12px 15px;
            border: 2px solid var(--border-color);
            border-radius: 8px;
            background: white;
            min-height: 44px;
            transition: var(--transition);
            display: flex;
            align-items: center;
        }

        .card-element:hover {
            border-color: #c0c0c0;
        }

        .card-element.focused {
            border-color: var(--primary-color);
            box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
        }

        .card-element iframe {
            border: none !important;
            width: 100% !important;
            height: 20px !important;
            min-height: 20px !important;
            max-height: 20px !important;
        }

        .card-errors {
            color: var(--error-color);
            font-size: 0.85rem;
            margin-top: 6px;
            min-height: 20px;
            display: block;
        }

        .btn-submit-payment {
            width: 100%;
            background: var(--gradient-primary);
            color: white;
            border: none;
            padding: 15px 20px;
            font-size: 1.05rem;
            font-weight: 600;
            border-radius: 10px;
            cursor: pointer;
            transition: var(--transition);
            margin-top: 10px;
            box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
        }

        .btn-submit-payment:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 25px rgba(102, 126, 234, 0.5);
        }

        .btn-submit-payment:active {
            transform: translateY(0);
        }

        .btn-submit-payment:disabled {
            background: linear-gradient(135deg, #ccc 0%, #aaa 100%);
            cursor: not-allowed;
            transform: none;
            box-shadow: none;
        }

        .payment-success {
            display: none;
            text-align: center;
            padding: 30px 20px;
        }

        .payment-success.active {
            display: block;
            animation: fadeIn 0.5s ease;
        }

        .success-icon {
            font-size: 4.5rem;
            margin-bottom: 20px;
            animation: scaleIn 0.5s ease;
        }

        @keyframes scaleIn {
            from { 
                transform: scale(0);
                opacity: 0;
            }
            to { 
                transform: scale(1);
                opacity: 1;
            }
        }

        .loading-spinner {
            display: none;
            text-align: center;
            padding: 40px 20px;
        }

        .loading-spinner.active {
            display: block;
        }

        .spinner {
            border: 4px solid #f3f3f3;
            border-top: 4px solid var(--primary-color);
            border-radius: 50%;
            width: 50px;
            height: 50px;
            animation: spin 0.8s linear infinite;
            margin: 0 auto;
        }

        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        .form-row-group {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
        }

        /* ========================================
           RESPONSIVE TABLETTE
           ======================================== */
        @media (max-width: 1024px) and (min-width: 769px) {
            .products-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }

            .product-card {
                padding: 28px 24px;
            }
        }

        /* ========================================
           MOBILE MENU HAMBURGER
           ======================================== */
        .header-top {
            display: block;
            text-align: center;
        }

        .hamburger {
            display: none;
            flex-direction: column;
            justify-content: space-between;
            width: 28px;
            height: 22px;
            background: transparent;
            border: none;
            cursor: pointer;
            padding: 0;
            z-index: 1001;
            position: relative;
        }

        .hamburger-line {
            width: 100%;
            height: 3px;
            background: var(--primary-color);
            border-radius: 2px;
            transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            transform-origin: center;
        }

        .hamburger.active .hamburger-line:nth-child(1) {
            transform: translateY(9.5px) rotate(45deg);
        }

        .hamburger.active .hamburger-line:nth-child(2) {
            opacity: 0;
            transform: scaleX(0);
        }

        .hamburger.active .hamburger-line:nth-child(3) {
            transform: translateY(-9.5px) rotate(-45deg);
        }

        .mobile-menu-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.7);
            backdrop-filter: blur(4px);
            z-index: 999;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .mobile-menu-overlay.active {
            display: block;
            opacity: 1;
        }

        .mobile-menu {
            position: fixed;
            top: 0;
            right: -100%;
            width: 85%;
            max-width: 320px;
            height: 100vh;
            background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
            backdrop-filter: blur(20px);
            z-index: 1000;
            display: flex;
            flex-direction: column;
            padding: 20px;
            box-shadow: -5px 0 30px rgba(0, 0, 0, 0.5);
            transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            overflow-y: auto;
        }

        .mobile-menu.active {
            right: 0;
        }

        .mobile-menu-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 25px;
            padding-bottom: 15px;
            border-bottom: 1px solid var(--border-color);
        }

        .mobile-menu-logo {
            max-width: 80px;
            height: auto;
        }

        .mobile-menu-close {
            background: transparent;
            border: none;
            color: var(--text-primary);
            cursor: pointer;
            padding: 5px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: transform 0.2s;
        }

        .mobile-menu-close:hover {
            transform: rotate(90deg);
        }

        .mobile-menu-items {
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 2px;
        }

        .mobile-menu-cta {
            background: linear-gradient(135deg, var(--primary-color) 0%, #a855f7 100%);
            color: white;
            text-decoration: none;
            padding: 14px 20px;
            border-radius: 12px;
            font-weight: 700;
            font-size: 1rem;
            text-align: center;
            margin-bottom: 20px;
            box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
            transition: all 0.3s;
            opacity: 0;
            transform: translateX(30px);
        }

        .mobile-menu.active .mobile-menu-cta {
            animation: slideIn 0.4s forwards 0.1s;
        }

        .mobile-menu-cta:active {
            transform: scale(0.98);
        }

        .mobile-menu-item {
            display: flex;
            align-items: center;
            gap: 15px;
            padding: 15px 16px;
            color: var(--text-primary);
            text-decoration: none;
            border-radius: 10px;
            font-weight: 500;
            font-size: 0.95rem;
            transition: all 0.2s;
            background: transparent;
            opacity: 0;
            transform: translateX(30px);
        }

        .mobile-menu.active .mobile-menu-item {
            animation: slideIn 0.4s forwards;
        }

        .mobile-menu.active .mobile-menu-item:nth-child(2) { animation-delay: 0.15s; }
        .mobile-menu.active .mobile-menu-item:nth-child(3) { animation-delay: 0.2s; }
        .mobile-menu.active .mobile-menu-item:nth-child(4) { animation-delay: 0.25s; }
        .mobile-menu.active .mobile-menu-item:nth-child(5) { animation-delay: 0.3s; }
        .mobile-menu.active .mobile-menu-item:nth-child(6) { animation-delay: 0.35s; }

        .mobile-menu-item:active {
            background: rgba(139, 92, 246, 0.15);
            transform: scale(0.98);
        }

        .mobile-menu-icon {
            font-size: 1.3rem;
            width: 24px;
            text-align: center;
        }

        .mobile-menu-icon-svg {
            flex-shrink: 0;
            opacity: 0.8;
        }

        .mobile-menu-text {
            flex: 1;
        }

        .mobile-menu-footer {
            margin-top: auto;
            padding-top: 20px;
            border-top: 1px solid var(--border-color);
        }

        .mobile-menu-social {
            display: flex;
            justify-content: center;
            gap: 15px;
        }

        .mobile-social-icon {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            transition: all 0.2s;
        }

        .mobile-social-icon svg {
            width: 18px;
            height: 18px;
            fill: var(--text-secondary);
        }

        .mobile-social-icon:active {
            transform: scale(0.95);
            background: rgba(139, 92, 246, 0.2);
        }

        @keyframes slideIn {
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        /* Prevent body scroll when menu is open */
        body.menu-open {
            overflow: hidden;
        }

        /* ========================================
           RESPONSIVE MOBILE
           ======================================== */
        @media (max-width: 768px) {
            body {
                padding: 15px;
            }

            header {
                padding: 12px 15px;
                margin-bottom: 15px;
                top: 15px;
            }

            /* Mobile: logo + hamburger row, hide desktop elements */
            .header-row {
                flex-wrap: wrap;
            }

            .hamburger {
                display: flex;
            }

            .main-menu {
                display: none;
            }

            .header-right {
                display: none; /* Social + phone in mobile menu */
            }

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

            .logo-container img {
                max-width: 90px;
            }

            .social-icons {
                gap: 10px;
                margin-top: 8px;
                margin-bottom: 6px;
            }

            .social-icon {
                width: 32px;
                height: 32px;
            }

            .social-icon svg {
                width: 12px;
                height: 12px;
            }

            header p {
                font-size: 0.85rem;
                margin-bottom: 6px;
            }

            .header-slogan {
                font-size: 0.85rem;
                line-height: 1.25;
                margin-bottom: 8px;
            }

            .trust-badges {
                gap: 5px;
                margin-top: 10px;
            }

            .trust-badges span {
                font-size: 0.8rem;
                padding: 8px 12px;
            }

            .security-indicators {
                gap: 6px;
                margin-top: 12px;
            }

            .security-indicator {
                font-size: 0.8rem;
                padding: 8px 12px;
            }

            .security-badge {
                font-size: 0.65rem;
                padding: 4px 9px;
            }

            .product-icon {
                font-size: 2.5rem;
            }

            .cta-micro-text {
                font-size: 1rem;
            }

            .product-ideal-for {
                font-size: 1.05rem;
                line-height: 1.5;
            }

            .product-pricing-info {
                font-size: 1rem;
            }

            .pricing-info-item {
                font-size: 0.95rem;
            }

            .testimonials-section {
                padding: 25px 15px;
                margin-bottom: 30px;
            }


            .testimonials-header h2 {
                font-size: 1.3rem;
                margin-bottom: 12px;
            }

            .testimonials-header p {
                font-size: 0.95rem;
                margin-bottom: 12px;
            }

            .google-rating-large {
                font-size: 2.8rem;
            }

            .google-rating-large .star-icon {
                font-size: 2rem;
            }

            .google-reviews-count {
                font-size: 1rem;
            }

            .google-badge {
                padding: 14px 20px;
                gap: 8px;
            }

            .google-badge-stars {
                font-size: 1.1rem;
            }

            .google-badge-logo {
                width: 20px;
                height: 20px;
            }

            .google-badge-text {
                font-size: 0.85rem;
            }

            .google-business-image-wrapper {
                padding: 16px;
            }

            .google-business-image-wrapper::before,
            .google-business-image-wrapper::after {
                display: none;
            }

            .google-business-image {
                max-width: 100%;
                width: 100%;
                height: 280px;
            }

            .testimonials-header .google-link {
                font-size: 0.95rem;
                padding: 14px 28px;
                align-self: center;
            }

            .testimonials-container {
                height: auto;
                min-height: 320px;
            }

            .testimonials-row {
                height: 150px;
            }

            .testimonial-item {
                min-width: 300px;
                max-width: 300px;
                padding: 14px 18px;
                min-height: 130px;
            }

            .testimonial-text {
                font-size: 0.95rem;
                line-height: 1.4;
                min-height: 60px;
            }

            .testimonial-author-name {
                font-size: 0.8rem;
            }

            .testimonial-author-rating {
                font-size: 0.75rem;
            }

            header h1 {
                font-size: 1.9rem;
            }

            .services-section {
                margin-bottom: 40px;
            }

            .section-header {
                padding: 18px 15px;
                margin-bottom: 20px;
            }

            .section-header h2 {
                font-size: 1.3rem;
                margin-bottom: 8px;
            }

            .section-header p {
                font-size: 0.95rem;
            }

            .product-description {
                font-size: 1.05rem;
                line-height: 1.6;
            }

            .description-short,
            .description-full {
                font-size: 1.05rem;
            }

            .btn-read-more {
                font-size: 1rem;
                padding: 10px 16px;
                min-height: 48px;
            }

            .btn-secondary-cta {
                font-size: 1.05rem;
                padding: 14px 20px;
                min-height: 56px;
            }

            .products-grid {
                grid-template-columns: 1fr;
                gap: 18px;
            }

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

            .product-card {
                padding: 24px 20px;
                border-radius: 18px;
            }

            .product-card.mac {
                min-height: auto;
            }

            .product-icon {
                width: 160px;
                height: 160px;
                font-size: 1.8rem;
                margin: 0 auto;
            }

            .product-icon-img {
                padding: 8px;
            }

            .product-title {
                font-size: 1.35rem;
                min-height: auto;
                line-height: 1.4;
            }

            .product-price {
                font-size: 2.2rem;
                font-weight: 800;
            }

            .btn-payment {
                padding: 18px 32px;
                font-size: 1.15rem;
                min-height: 60px;
                font-weight: 700;
            }

            .qr-section,
            .faq-section {
                padding: 30px 20px;
            }

            .qr-section h2,
            .faq-section h2 {
                font-size: 1.8rem;
            }

            .expert-contact-card h3 {
                font-size: 1.3rem;
            }

            .expert-contact-card p {
                font-size: 1.05rem;
            }

            .btn-expert-phone,
            .btn-expert-email {
                font-size: 1.1rem;
                padding: 16px 24px;
                min-height: 58px;
            }

            .expertise-stat-item {
                font-size: 1rem;
            }

            .stat-text {
                font-size: 0.95rem;
            }

            .qr-placeholder {
                width: 200px;
                height: 200px;
            }

            .faq-question {
                font-size: 1.15rem;
                padding: 18px 20px;
                line-height: 1.5;
            }

            .faq-answer {
                font-size: 1.05rem;
                line-height: 1.7;
            }

            .faq-answer p {
                font-size: 1.05rem;
            }

            .payment-modal {
                padding: 10px;
            }

            .payment-content {
                padding: 25px 20px;
                border-radius: 15px;
                max-height: 95vh;
            }

            .payment-header h2 {
                font-size: 1.5rem;
            }

            .payment-product-price {
                font-size: 1.7rem;
            }

            .form-label {
                font-size: 0.9rem;
            }

            .form-input,
            .card-element {
                padding: 11px 13px;
                font-size: 0.9rem;
            }

            .btn-submit-payment {
                padding: 14px 18px;
                font-size: 1rem;
            }

            .close-modal {
                right: 15px;
                top: 15px;
                font-size: 1.6rem;
                width: 35px;
                height: 35px;
            }

            .form-row-group {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            footer {
                padding: 30px 20px;
            }
        }

        @media (max-width: 480px) {
            header {
                padding: 15px 12px;
            }

            .logo-container img {
                max-width: 138px;
            }

            header h1 {
                font-size: 1.6rem;
            }

            header p {
                font-size: 1rem;
            }

            .header-slogan {
                font-size: 0.9rem;
                line-height: 1.3;
            }

            .header-phone {
                font-size: 0.95rem;
                padding: 10px 20px;
            }

            .main-menu {
                flex-direction: column;
                gap: 8px;
            }

            .menu-button {
                width: 100%;
                justify-content: center;
                font-size: 1rem;
                padding: 14px 18px;
                min-height: 50px;
            }

            .trust-badges span {
                font-size: 0.9rem;
                padding: 9px 14px;
            }


            .testimonials-header h2 {
                font-size: 1.3rem;
                margin-bottom: 12px;
            }

            .testimonials-header p {
                font-size: 0.85rem;
                margin-bottom: 15px;
            }

            .google-rating-large {
                font-size: 2.2rem;
            }

            .google-rating-large .star-icon {
                font-size: 1.6rem;
                margin-right: 6px;
            }

            .google-reviews-count {
                font-size: 0.95rem;
            }

            .google-badge {
                padding: 12px 16px;
                gap: 6px;
                margin: 15px 0;
            }

            .google-badge-stars {
                font-size: 1rem;
            }

            .google-badge-logo {
                width: 18px;
                height: 18px;
            }

            .google-badge-text {
                font-size: 0.8rem;
            }

            .google-business-image-container {
                margin: 0;
            }

            .google-business-image-wrapper {
                padding: 12px;
            }

            .google-business-image {
                max-width: 100%;
                width: 100%;
                height: 238px;
            }

            .testimonials-header .google-link {
                font-size: 0.9rem;
                padding: 12px 24px;
                margin-top: 20px;
                align-self: center;
            }

            .google-link-icon {
                width: 18px;
                height: 18px;
            }

            .testimonials-container {
                min-height: 300px;
            }

            .testimonials-row {
                height: 140px;
            }

            .testimonial-item {
                min-width: 280px;
                max-width: 280px;
                padding: 12px 16px;
                min-height: 120px;
            }

            .testimonial-text {
                font-size: 0.75rem;
                line-height: 1.4;
                min-height: 55px;
            }

            .section-header h2 {
                font-size: 1.4rem;
            }

            .product-card {
                padding: 20px 18px;
            }

            .product-title {
                font-size: 1.1rem;
            }

            .product-price {
                font-size: 1.7rem;
            }

            .payment-content {
                padding: 20px 18px;
            }

            .payment-header {
                margin-bottom: 20px;
            }

            .payment-product-info {
                padding: 18px;
            }

            .form-row {
                margin-bottom: 18px;
            }

            .trust-badges span {
                padding: 8px 15px;
                font-size: 0.8rem;
            }
        }

        /* ========================================
           MODAL DÉTAILS SERVICE (Onglets)
           ======================================== */
        .service-modal-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.85);
            z-index: 2000;
            align-items: center;
            justify-content: center;
            padding: 20px;
            animation: fadeIn 0.3s ease;
            backdrop-filter: blur(5px);
        }

        .service-modal-overlay.active {
            display: flex;
        }

        .service-modal {
            background: rgba(11, 15, 26, 0.98);
            border: 1px solid var(--border-color);
            backdrop-filter: blur(14px);
            border-radius: 20px;
            max-width: 700px;
            width: 100%;
            max-height: 90vh;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            box-shadow: var(--shadow-lg);
            animation: slideUp 0.3s ease;
        }

        .service-modal-header {
            padding: 24px;
            border-bottom: 1px solid var(--border-color);
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: linear-gradient(135deg, rgba(255, 59, 59, 0.15) 0%, rgba(255, 59, 59, 0.05) 100%);
        }

        .service-modal-header h2 {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--text-primary);
            margin: 0;
            flex: 1;
            padding-right: 20px;
        }

        .service-modal-close {
            width: 36px;
            height: 36px;
            border: none;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: var(--text-primary);
            font-size: 1.5rem;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition);
            flex-shrink: 0;
        }

        .service-modal-close:hover {
            background: rgba(255, 59, 59, 0.2);
            transform: rotate(90deg);
        }

        .service-modal-tabs {
            display: flex;
            border-bottom: 1px solid var(--border-color);
            background: rgba(7, 8, 16, 0.6);
            overflow-x: auto;
        }

        .service-modal-tab {
            flex: 1;
            padding: 16px 20px;
            border: none;
            background: transparent;
            font-size: 0.9rem;
            font-weight: 600;
            color: var(--text-secondary);
            cursor: pointer;
            transition: var(--transition);
            border-bottom: 3px solid transparent;
            white-space: nowrap;
        }

        .service-modal-tab:hover {
            background: rgba(255, 59, 59, 0.05);
            color: var(--text-primary);
        }

        .service-modal-tab.active {
            color: var(--accent-color);
            border-bottom-color: var(--accent-color);
            background: rgba(255, 59, 59, 0.1);
        }

        .service-modal-content {
            flex: 1;
            overflow-y: auto;
            padding: 24px;
        }

        .service-tab-content {
            display: none;
        }

        .service-tab-content.active {
            display: block;
            animation: fadeIn 0.3s ease;
        }

        .why-need-section {
            background: linear-gradient(135deg, rgba(255, 59, 59, 0.15) 0%, rgba(255, 59, 59, 0.05) 100%);
            color: var(--text-primary);
            padding: 24px;
            border-radius: 12px;
            margin-bottom: 24px;
            border: 1px solid rgba(255, 59, 59, 0.2);
        }

        .why-need-section h3 {
            font-size: 1.2rem;
            font-weight: 700;
            margin-bottom: 16px;
            color: var(--accent-color);
        }

        .why-need-section ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .why-need-section li {
            padding: 10px 0;
            padding-left: 28px;
            position: relative;
            color: var(--text-secondary);
            line-height: 1.6;
        }

        .why-need-section li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--accent-color);
            font-weight: 700;
            font-size: 1.1rem;
        }

        .modal-faq-item {
            margin-bottom: 20px;
            padding-bottom: 20px;
            border-bottom: 1px solid var(--border-color);
        }

        .modal-faq-item:last-child {
            border-bottom: none;
            margin-bottom: 0;
            padding-bottom: 0;
        }

        .modal-faq-question {
            font-size: 1rem;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 8px;
        }

        .modal-faq-answer {
            font-size: 0.95rem;
            color: var(--text-secondary);
            line-height: 1.6;
        }

        .modal-comment-item {
            margin-bottom: 20px;
            padding: 16px;
            background: rgba(255, 59, 59, 0.05);
            border-radius: 12px;
            border: 1px solid rgba(255, 59, 59, 0.1);
        }

        .modal-comment-author {
            font-weight: 700;
            color: var(--accent-color);
            margin-bottom: 8px;
            font-size: 0.95rem;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .modal-comment-rating {
            color: #ffc107;
            font-size: 0.85rem;
        }

        .modal-comment-text {
            font-size: 0.9rem;
            color: var(--text-secondary);
            line-height: 1.6;
            margin-bottom: 8px;
        }

        .modal-comment-date {
            font-size: 0.75rem;
            color: var(--text-light);
        }

        .modal-details-grid {
            display: grid;
            gap: 16px;
        }

        .modal-detail-item {
            padding: 16px;
            background: rgba(255, 59, 59, 0.05);
            border-radius: 10px;
            border: 1px solid rgba(255, 59, 59, 0.1);
        }

        .modal-detail-label {
            font-size: 0.85rem;
            color: var(--text-light);
            margin-bottom: 6px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .modal-detail-value {
            font-size: 1rem;
            color: var(--text-primary);
            font-weight: 600;
        }

        .service-modal-footer {
            padding: 20px 24px;
            border-top: 1px solid var(--border-color);
            display: flex;
            gap: 12px;
            background: rgba(7, 8, 16, 0.6);
        }

        .btn-modal-action {
            flex: 1;
            padding: 14px;
            background: var(--accent-color);
            color: var(--text-primary);
            border: none;
            border-radius: 10px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
        }

        .btn-modal-action:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 20px rgba(255, 59, 59, 0.4);
        }

        @media (max-width: 768px) {
            .service-modal {
                max-width: 100%;
                max-height: 95vh;
            }

            .service-modal-header {
                padding: 20px;
            }

            .service-modal-header h2 {
                font-size: 1.25rem;
            }

            .service-modal-tabs {
                flex-wrap: nowrap;
            }

            .service-modal-tab {
                padding: 12px 16px;
                font-size: 0.85rem;
            }

            .service-modal-content {
                padding: 20px;
            }

            .service-modal-footer {
                flex-direction: column;
                padding: 16px 20px;
            }

            /* Footer responsive */
            .modern-footer {
                margin-top: 50px;
                padding: 40px 0 24px;
            }

            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 24px 16px;
            }

            /* Logo + social en pleine largeur */
            .footer-column:first-child {
                grid-column: 1 / -1;
                text-align: center;
            }

            /* Liens et Contact côte à côte */
            .footer-links-column,
            .footer-column:last-child {
                text-align: left;
            }

            .footer-links-grid {
                grid-template-columns: 1fr;
                gap: 8px;
            }

            .footer-column {
                text-align: left;
            }

            .footer-logo {
                margin: 0 auto 12px;
            }

            .footer-title {
                font-size: 0.95rem;
                margin-bottom: 12px;
            }

            .footer-links {
                font-size: 0.85rem;
            }

            .footer-desc {
                font-size: 0.85rem;
            }

            .footer-social {
                justify-content: center;
            }

            .footer-title {
                font-size: 0.95rem;
                margin-bottom: 12px;
            }

            .footer-links li {
                margin-bottom: 8px;
            }

            .footer-links a {
                font-size: 0.85rem;
            }

            .footer-links a:hover {
                transform: translateX(0);
            }

            .footer-bottom {
                padding-top: 24px;
            }

            .footer-copyright {
                font-size: 0.85rem;
            }

            .footer-disclaimer {
                font-size: 0.7rem;
            }
        }

/* ========================================
   COOKIE CONSENT BANNER
   ======================================== */
#cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, rgba(20, 20, 40, 0.98), rgba(30, 30, 50, 0.98));
    backdrop-filter: blur(12px);
    border-top: 1px solid rgba(255, 59, 59, 0.3);
    padding: 20px;
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.4);
    z-index: 10000;
    animation: slideUp 0.4s ease-out;
}

@keyframes slideUp {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
}

#cookie-banner.hidden {
    display: none;
}

.cookie-content {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-text {
    flex: 1;
    min-width: 300px;
}

.cookie-text h3 {
    font-family: 'Manrope', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.cookie-text p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 0;
    line-height: 1.5;
}

.cookie-text a {
    color: var(--accent-color);
    text-decoration: underline;
}

.cookie-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.cookie-btn {
    font-family: 'Inter', sans-serif;
    padding: 12px 28px;
    border: none;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.cookie-btn-accept {
    background: linear-gradient(135deg, #ff3b3b, #cc2e2e);
    color: white;
    box-shadow: 0 4px 12px rgba(255, 59, 59, 0.3);
}

.cookie-btn-accept:hover {
    background: linear-gradient(135deg, #ff5252, #e02020);
    box-shadow: 0 6px 16px rgba(255, 59, 59, 0.4);
    transform: translateY(-2px);
}

.cookie-btn-refuse {
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

.cookie-btn-refuse:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.15);
}

.cookie-status {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 8px 16px;
    font-size: 0.75rem;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.2s;
    z-index: 9999;
}

.cookie-status:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--accent-color);
}

@media (max-width: 600px) {
    .cookie-content {
        flex-direction: column;
        align-items: stretch;
    }

    .cookie-actions {
        width: 100%;
    }

    .cookie-btn {
        flex: 1;
        min-width: 0;
    }
}

/* ========================================
   PAYMENT MODAL
   ======================================== */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    z-index: 20000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-overlay.active {
    display: flex;
}

.modal {
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
}

#payment-message {
    display: none;
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 16px;
    font-size: 0.9rem;
}

#payment-message.error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #f87171;
}

#payment-message.loading {
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
    color: #60a5fa;
}
