        :root {
            /* Primary Colors - Style original */
            --primary: #4F46E5;
            --primary-dark: #4338CA;
            --primary-light: #818CF8;
            --secondary: #10B981;
            --secondary-dark: #059669;
            --accent: #F59E0B;
            --purple: #7c3aed;

            /* Text Colors */
            --text: #1F2937;
            --text-light: #6B7280;
            --text-muted: #9CA3AF;

            /* Background Colors */
            --bg: #FFFFFF;
            --bg-alt: #F9FAFB;
            --bg-dark: #111827;

            /* Border Colors */
            --border: #E5E7EB;
            --border-light: #F3F4F6;

            /* Legacy gray variables (compatibility) */
            --dark: #1e293b;
            --gray-900: #0f172a;
            --gray-800: #1F2937;
            --gray-700: #374151;
            --gray-600: #4B5563;
            --gray-500: #6B7280;
            --gray-400: #9CA3AF;
            --gray-300: #D1D5DB;
            --gray-200: #E5E7EB;
            --gray-100: #F3F4F6;
            --gray-50: #F9FAFB;
            --white: #ffffff;

            /* Gradients */
            --gradient-primary: linear-gradient(135deg, #4F46E5 0%, #7c3aed 100%);
            --gradient-secondary: linear-gradient(135deg, #10b981 0%, #0891b2 100%);

            /* Shadows */
            --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
            --shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
            --shadow-md: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
            --shadow-lg: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
            --shadow-xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);

            /* Layout */
            --container-max: 1200px;
            --section-padding: 100px;

            /* Transitions */
            --transition: all 0.3s ease;

            /* Border Radius */
            --radius-sm: 6px;
            --radius: 12px;
            --radius-lg: 20px;
            --radius-full: 9999px;
        }

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

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            font-size: 16px;
            line-height: 1.6;
            color: var(--text);
            background: var(--bg);
            -webkit-font-smoothing: antialiased;
        }

        img {
            max-width: 100%;
            height: auto;
        }

        a {
            color: var(--primary);
            text-decoration: none;
            transition: var(--transition);
        }

        a:hover {
            color: var(--primary-dark);
        }

        /* Typography */
        h1, h2, h3, h4, h5, h6 {
            font-weight: 700;
            line-height: 1.2;
            color: var(--text);
        }

        h1 { font-size: 3.5rem; }
        h2 { font-size: 2.5rem; }
        h3 { font-size: 1.5rem; }

        .container {
            max-width: var(--container-max);
            margin: 0 auto;
            padding: 0 24px;
        }

        /* Navigation */
        .nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid var(--border-light);
            padding: 16px 0;
        }

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

        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--text);
        }

        .logo:hover {
            color: var(--text);
        }

        .logo-img {
            width: 42px;
            height: 42px;
            object-fit: contain;
        }

        .logo .pro {
            color: var(--primary);
        }

        .nav-links {
            display: flex;
            gap: 32px;
        }

        .nav-links a {
            color: var(--text-light);
            font-weight: 500;
        }

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

        .nav-cta {
            background: var(--primary);
            color: white;
            padding: 10px 20px;
            border-radius: var(--radius);
            text-decoration: none;
            font-weight: 600;
            transition: var(--transition);
        }

        .nav-cta:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-lg);
        }

        /* Language Selector */
        .lang-selector {
            display: flex;
            align-items: center;
            gap: 4px;
            margin-right: 16px;
            padding: 4px;
            background: var(--gray-100);
            border-radius: 100px;
            border: 1px solid var(--gray-200);
        }

        .lang-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 32px;
            height: 32px;
            padding: 0;
            background: transparent;
            border: none;
            border-radius: 100px;
            cursor: pointer;
            font-size: 1.25rem;
            transition: all 0.2s;
            opacity: 0.5;
        }

        .lang-btn:hover {
            opacity: 0.8;
            background: rgba(0, 0, 0, 0.05);
        }

        .lang-btn.active {
            opacity: 1;
            background: var(--white);
            box-shadow: var(--shadow-sm);
        }

        .lang-btn .flag {
            line-height: 1;
        }

        /* Hero Section */
        .hero {
            position: relative;
            padding: 140px 0 100px;
            overflow: hidden;
        }

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

        .hero-badges {
            display: flex;
            justify-content: center;
            gap: 12px;
            flex-wrap: wrap;
            margin-bottom: 24px;
        }

        .badge, .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 8px 16px;
            background: rgba(79, 70, 229, 0.1);
            color: var(--primary);
            font-size: 0.875rem;
            font-weight: 600;
            border-radius: var(--radius-full);
        }

        .hero-badge.primary {
            background: var(--primary);
            color: white;
        }

        .hero-badge.new {
            background: var(--secondary);
            color: white;
        }

        .hero h1 {
            font-size: 3.5rem;
            font-weight: 800;
            line-height: 1.1;
            color: var(--text);
            margin-bottom: 24px;
        }

        .hero h1 .highlight {
            color: var(--primary);
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-subtitle {
            font-size: 1.25rem;
            color: var(--text-light);
            max-width: 500px;
            margin: 0 auto 32px;
        }

        .hero-subtitle-bonus {
            display: inline-block;
            font-size: clamp(20px, 3vw, 26px);
            color: var(--white);
            font-weight: 700;
            margin: 24px auto 32px;
            padding: 20px 40px;
            background: var(--gradient-secondary);
            border-radius: 16px;
            box-shadow: 0 8px 30px rgba(16, 185, 129, 0.35);
            position: relative;
            overflow: hidden;
        }

        .hero-subtitle-bonus::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            animation: shimmer 3s infinite;
        }

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

        .hero-subtitle-bonus .translation-icon {
            font-size: 28px;
            margin-right: 12px;
            vertical-align: middle;
        }

        .hero-subtitle-bonus .highlight-number {
            font-size: clamp(24px, 3.5vw, 32px);
            font-weight: 800;
        }

        .hero-cta-group {
            display: flex;
            justify-content: center;
            gap: 16px;
            flex-wrap: wrap;
            margin-bottom: 16px;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 12px 24px;
            font-size: 1rem;
            font-weight: 600;
            border-radius: var(--radius);
            border: 2px solid transparent;
            cursor: pointer;
            transition: var(--transition);
            text-decoration: none;
        }

        .btn-primary {
            background: var(--primary);
            color: white;
            border-color: var(--primary);
        }

        .btn-primary:hover {
            background: var(--primary-dark);
            border-color: var(--primary-dark);
            color: white;
            transform: translateY(-2px);
            box-shadow: var(--shadow-md);
        }

        .btn-secondary {
            background: transparent;
            color: var(--primary);
            border-color: var(--primary);
        }

        .btn-secondary:hover {
            background: var(--primary);
            color: white;
        }

        .btn-lg {
            padding: 16px 32px;
            font-size: 1.1rem;
        }

        .btn-block {
            width: 100%;
        }

        kbd {
            display: inline-block;
            padding: 4px 8px;
            font-family: monospace;
            font-size: 0.875rem;
            background: var(--bg-alt);
            border: 1px solid var(--border);
            border-radius: var(--radius-sm);
            box-shadow: 0 2px 0 var(--border);
        }

        .hero-no-cc {
            font-size: 16px;
            color: var(--secondary-dark);
            font-weight: 600;
            margin-bottom: 40px;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 10px 24px;
            background: rgba(16, 185, 129, 0.1);
            border-radius: 100px;
            border: 2px solid var(--secondary);
        }

        .hero-stats {
            display: flex;
            justify-content: center;
            gap: 48px;
            flex-wrap: wrap;
        }

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

        .hero-stat-value {
            font-size: 32px;
            font-weight: 800;
            color: var(--primary);
        }

        .hero-stat-label {
            font-size: 14px;
            color: var(--gray-500);
            margin-top: 4px;
        }

        /* Trust Badges */
        .trust {
            padding: 40px 0;
            background: var(--bg-alt);
            border-top: 1px solid var(--border-light);
            border-bottom: 1px solid var(--border-light);
        }

        .trust-grid {
            display: flex;
            justify-content: center;
            gap: 48px;
            flex-wrap: wrap;
        }

        .trust-item {
            display: flex;
            align-items: center;
            gap: 8px;
            color: var(--text-light);
            font-weight: 500;
        }

        .trust-icon {
            font-size: 1.25rem;
        }

        /* Demo Section - MASQUEE TEMPORAIREMENT */
        .demo {
            display: none; /* TODO: Remettre visible quand vidéo prête */
            padding: 80px 0;
            background: var(--bg-dark);
        }

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

        .demo-title {
            font-size: 28px;
            font-weight: 700;
            color: var(--white);
            margin-bottom: 40px;
        }

        .demo-video {
            max-width: 800px;
            margin: 0 auto;
            background: var(--gray-800);
            border-radius: 16px;
            aspect-ratio: 16/9;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 2px solid var(--gray-700);
        }

        .demo-placeholder {
            color: var(--gray-400);
            font-size: 18px;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 16px;
        }

        .demo-placeholder svg {
            width: 64px;
            height: 64px;
            opacity: 0.5;
        }

        /* Three Pillars */
        .pillars {
            padding: 80px 0;
            background: var(--white);
        }

        .pillars-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 32px;
        }

        .pillar {
            text-align: center;
            padding: 40px 32px;
            background: var(--gray-50);
            border-radius: 16px;
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .pillar:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-xl);
        }

        .pillar-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 24px;
            background: var(--gradient-primary);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 40px;
        }

        .pillar:nth-child(3) .pillar-icon {
            background: var(--gradient-secondary);
        }

        .pillar h3 {
            font-size: 24px;
            font-weight: 700;
            color: var(--gray-900);
            margin-bottom: 12px;
        }

        .pillar p {
            color: var(--gray-600);
            font-size: 16px;
        }

        .pillar-badge {
            display: inline-block;
            background: var(--secondary);
            color: var(--white);
            font-size: 11px;
            font-weight: 700;
            padding: 4px 10px;
            border-radius: 100px;
            margin-bottom: 12px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        /* Section Header */
        .section-header {
            text-align: center;
            max-width: 600px;
            margin: 0 auto 60px;
        }

        .section-tag {
            display: inline-block;
            padding: 6px 14px;
            background: rgba(79, 70, 229, 0.1);
            color: var(--primary);
            font-size: 0.875rem;
            font-weight: 600;
            border-radius: var(--radius-full);
            margin-bottom: 16px;
        }

        .section-header h2 {
            margin-bottom: 16px;
        }

        .section-header p {
            color: var(--text-light);
            font-size: 1.125rem;
        }

        /* Features Section */
        .features {
            padding: var(--section-padding) 0;
            background: var(--bg-alt);
        }

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

        .feature-card {
            background: var(--bg);
            border: 1px solid var(--border);
            border-radius: var(--radius-lg);
            padding: 32px;
            transition: var(--transition);
        }

        .feature-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-lg);
            border-color: var(--primary-light);
        }

        .feature-card.featured {
            grid-column: span 2;
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            color: white;
            border: none;
        }

        .feature-card.featured h3,
        .feature-card.featured p {
            color: var(--white);
        }

        .feature-card.featured .feature-icon {
            background: rgba(255, 255, 255, 0.2);
            width: 56px;
            height: 56px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 12px;
        }

        .feature-card.translation-highlight {
            grid-column: span 2;
            background: linear-gradient(135deg, #10b981 0%, #0891b2 100%);
            color: var(--white);
            position: relative;
            border: none;
        }

        .feature-card.translation-highlight h3,
        .feature-card.translation-highlight p {
            color: var(--white);
        }

        @media (max-width: 1024px) {
            .features-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .feature-card.featured {
                grid-column: span 2;
                grid-row: span 1;
            }
        }

        @media (max-width: 768px) {
            .features-grid {
                grid-template-columns: 1fr;
            }
            .feature-card.featured,
            .feature-card.translation-highlight {
                grid-column: span 1;
            }
        }

        .feature-badge {
            position: absolute;
            top: 16px;
            right: 16px;
            background: var(--white);
            color: #059669;
            font-size: 11px;
            font-weight: 700;
            padding: 4px 10px;
            border-radius: 100px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .feature-icon {
            width: 48px;
            height: 48px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(37, 99, 235, 0.1);
            border-radius: 12px;
            font-size: 1.5rem;
            margin-bottom: 20px;
        }

        .feature-card h3 {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 12px;
        }

        .feature-card p {
            color: var(--gray-600);
            font-size: 0.95rem;
            line-height: 1.6;
        }

        /* How It Works */
        .how-it-works {
            padding: 100px 0;
            background: var(--white);
        }

        .steps {
            display: flex;
            flex-direction: column;
            gap: 48px;
            max-width: 1000px;
            margin: 0 auto;
        }

        .step {
            display: grid;
            grid-template-columns: 70px 1fr 300px;
            gap: 32px;
            align-items: center;
        }

        .step-number {
            width: 70px;
            height: 70px;
            background: var(--gradient-primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            font-weight: 800;
            color: var(--white);
        }

        .step-content h3 {
            font-size: 22px;
            font-weight: 700;
            color: var(--gray-900);
            margin-bottom: 8px;
        }

        .step-content p {
            color: var(--gray-600);
            font-size: 15px;
        }

        .shortcut-options {
            margin-top: 12px;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 8px;
        }

        .shortcut-label {
            font-size: 13px;
            color: var(--gray-500);
            font-weight: 500;
        }

        .shortcut-option {
            font-size: 11px;
            font-weight: 600;
            padding: 4px 8px;
            background: var(--gray-100);
            border-radius: 4px;
            color: var(--gray-700);
            font-family: monospace;
        }

        .shortcut-option:first-of-type {
            background: var(--primary);
            color: var(--white);
        }

        .step-visual {
            background: var(--gray-100);
            padding: 20px 24px;
            border-radius: 12px;
            text-align: center;
            display: flex;
            align-items: center;
            justify-content: center;
            min-height: 80px;
        }

        .keyboard-demo {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }

        .keyboard-demo span {
            color: var(--gray-500);
            font-size: 14px;
            font-weight: 500;
            line-height: 1;
        }

        .key {
            background: var(--gray-800);
            color: var(--white);
            padding: 8px 14px;
            border-radius: 6px;
            font-size: 13px;
            font-weight: 600;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
        }

        .recording-indicator {
            display: flex;
            align-items: center;
            gap: 4px;
            color: #ef4444;
            font-size: 22px;
            margin-left: 4px;
        }

        .pulse {
            width: 12px;
            height: 12px;
            background: #ef4444;
            border-radius: 50%;
            animation: pulse 1.5s infinite;
        }

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

        /* Translation Steps - Activation Flow */
        .activation-flow {
            display: flex;
            align-items: center;
            gap: 16px;
        }

        .flow-arrow {
            color: var(--gray-400);
            font-size: 18px;
            font-weight: 300;
        }

        /* Souris stylisée */
        .mouse-icon {
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .mouse-body {
            width: 28px;
            height: 42px;
            border: 2px solid var(--gray-800);
            border-radius: 14px;
            position: relative;
            background: var(--white);
            display: flex;
            flex-direction: column;
            padding-top: 4px;
        }

        .mouse-btn {
            width: 12px;
            height: 12px;
            border-bottom: 1px solid var(--gray-400);
            position: absolute;
            top: 2px;
        }

        .mouse-btn.left {
            left: 1px;
            border-right: 1px solid var(--gray-400);
            border-radius: 10px 0 0 0;
        }

        .mouse-btn.right {
            right: 1px;
            border-radius: 0 10px 0 0;
        }

        .mouse-btn.right.active {
            background: var(--primary);
        }

        .mouse-wheel {
            width: 4px;
            height: 8px;
            background: var(--gray-400);
            border-radius: 2px;
            position: absolute;
            top: 16px;
            left: 50%;
            transform: translateX(-50%);
        }

        /* Bouton Traduction style clavier */
        .translation-key {
            font-size: 11px;
            padding: 8px 12px;
        }

        /* Carrousel de drapeaux */
        .flag-carousel {
            width: 44px;
            height: 30px;
            overflow: hidden;
            border-radius: 6px;
            background: var(--gray-200);
            display: flex;
            align-items: flex-start;
            justify-content: center;
        }

        .flag-slider {
            display: flex;
            flex-direction: column;
            align-items: center;
            animation: flagScroll 8s linear infinite;
        }

        .flag-item {
            width: 28px;
            height: 30px;
            object-fit: contain;
            display: block;
            padding: 5px 0;
            box-sizing: border-box;
        }

        @keyframes flagScroll {
            0% { transform: translateY(0); }
            100% { transform: translateY(-150px); }
        }

        /* Deux fenêtres séparées pour traduction */
        .step-visual:has(.dual-windows) {
            background: transparent;
            padding: 12px 0;
        }

        .dual-windows {
            display: flex;
            width: 100%;
            gap: 8px;
        }

        .text-box {
            flex: 1;
            border: 1px solid var(--gray-300);
            border-radius: 6px;
            padding: 8px 10px;
            background: transparent;
            display: flex;
            flex-direction: column;
            gap: 4px;
            min-height: 60px;
            overflow: hidden;
        }

        .box-flag {
            width: 16px;
            height: auto;
        }

        .text-scroll-area {
            flex: 1;
            overflow: hidden;
            position: relative;
        }

        .vertical-scroll-text {
            font-size: 9px;
            line-height: 1.4;
            animation: verticalScroll 6s linear infinite;
        }

        .vertical-scroll-text.fr-scroll {
            color: var(--gray-600);
        }

        .vertical-scroll-text.en-scroll {
            color: #22c55e;
        }

        @keyframes verticalScroll {
            0% { transform: translateY(0); }
            100% { transform: translateY(-50%); }
        }

        /* Translation Steps - Copy Flow */
        .copy-flow {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .copy-button {
            display: flex;
            align-items: center;
            gap: 6px;
            background: var(--primary);
            color: var(--white);
            padding: 10px 18px;
            border-radius: 8px;
            font-size: 14px;
            font-weight: 600;
        }

        .copy-success {
            display: flex;
            align-items: center;
            gap: 6px;
            background: rgba(34, 197, 94, 0.15);
            color: #22c55e;
            padding: 10px 18px;
            border-radius: 8px;
            font-size: 14px;
            font-weight: 600;
            border: 1px solid rgba(34, 197, 94, 0.3);
        }

        /* Progress Bar Animation */
        .install-animation {
            width: 100%;
        }

        .install-animation .label {
            font-size: 14px;
            color: var(--gray-600);
            margin-bottom: 12px;
        }

        .progress-bar {
            height: 8px;
            background: var(--gray-300);
            border-radius: 100px;
            overflow: hidden;
        }

        .progress-fill {
            height: 100%;
            width: 0;
            background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
            border-radius: 100px;
            animation: progress 2.5s ease-in-out infinite;
        }

        @keyframes progress {
            0% { width: 0; }
            100% { width: 100%; }
        }

        /* Smart Config */
        .smart-config {
            padding: 100px 0;
            background: var(--gray-900);
            color: var(--white);
        }

        .smart-config .section-header h2,
        .smart-config .section-header p {
            color: var(--white);
        }

        .smart-config .section-header p {
            opacity: 0.8;
        }

        .smart-config .section-tag {
            background: var(--secondary);
        }

        .config-diagram {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 24px;
            flex-wrap: wrap;
            margin-bottom: 48px;
        }

        .config-step {
            text-align: center;
            padding: 24px;
            background: rgba(255,255,255,0.1);
            border-radius: 16px;
            min-width: 160px;
        }

        .config-icon {
            font-size: 40px;
            margin-bottom: 12px;
        }

        .config-label {
            font-weight: 600;
            font-size: 16px;
            margin-bottom: 4px;
        }

        .config-detail {
            font-size: 13px;
            opacity: 0.7;
        }

        .config-arrow {
            font-size: 24px;
            color: var(--secondary);
        }

        .smart-table {
            width: 100%;
            max-width: 800px;
            margin: 0 auto;
            border-collapse: collapse;
            background: rgba(255,255,255,0.05);
            border-radius: 12px;
            overflow: hidden;
        }

        .smart-table th,
        .smart-table td {
            padding: 16px 20px;
            text-align: left;
            border-bottom: 1px solid rgba(255,255,255,0.1);
            color: var(--white);
        }

        .smart-table th {
            background: rgba(255,255,255,0.1);
            font-weight: 600;
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            color: var(--white);
        }

        .smart-table td {
            font-size: 15px;
            color: rgba(255,255,255,0.9);
        }

        .badge-gpu {
            background: var(--secondary);
            color: var(--white);
            padding: 4px 10px;
            border-radius: 4px;
            font-size: 12px;
            font-weight: 600;
        }

        .badge-cpu {
            background: var(--accent);
            color: var(--gray-900);
            padding: 4px 10px;
            border-radius: 4px;
            font-size: 12px;
            font-weight: 600;
        }

        /* Translation Section */
        .translation {
            padding: 100px 0;
            background: linear-gradient(135deg, #059669 0%, #0891b2 100%);
            color: var(--white);
        }

        .translation .section-tag {
            background: var(--white);
            color: var(--secondary-dark);
        }

        .translation .container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 64px;
            align-items: center;
        }

        .translation-content h2 {
            font-size: clamp(28px, 4vw, 42px);
            font-weight: 800;
            margin-bottom: 24px;
        }

        .translation-content p {
            font-size: 18px;
            opacity: 0.9;
            margin-bottom: 32px;
        }

        .translation-features {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .translation-feature {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 16px;
        }

        .translation-feature svg {
            width: 24px;
            height: 24px;
            flex-shrink: 0;
        }

        .translation-demo {
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            padding: 32px;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .translation-demo-header {
            display: flex;
            gap: 8px;
            margin-bottom: 24px;
        }

        .translation-demo-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
        }

        .translation-demo-dot:nth-child(1) { background: #ef4444; }
        .translation-demo-dot:nth-child(2) { background: #f59e0b; }
        .translation-demo-dot:nth-child(3) { background: #10b981; }

        .translation-demo-line {
            padding: 16px;
            border-radius: 12px;
            margin-bottom: 12px;
        }

        .translation-demo-line.fr {
            background: rgba(255, 255, 255, 0.15);
        }

        .translation-demo-line.en {
            background: rgba(255, 255, 255, 0.25);
            border: 1px solid rgba(255, 255, 255, 0.3);
        }

        .translation-demo-label {
            font-size: 12px;
            text-transform: uppercase;
            letter-spacing: 1px;
            opacity: 0.7;
            margin-bottom: 8px;
        }

        .translation-usecases {
            margin-top: 32px;
        }

        .translation-usecases h4 {
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 1px;
            opacity: 0.7;
            margin-bottom: 16px;
        }

        .translation-usecases-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 12px;
        }

        .translation-usecase {
            background: rgba(255, 255, 255, 0.1);
            padding: 12px 16px;
            border-radius: 8px;
            font-size: 14px;
        }

        .pro-badge-inline {
            background: var(--white);
            color: var(--secondary-dark);
            font-size: 11px;
            font-weight: 700;
            padding: 4px 8px;
            border-radius: 4px;
            margin-left: 8px;
        }

        /* Privacy Section */
        .privacy {
            padding: 100px 0;
            background: var(--gray-50);
        }

        .privacy .container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 64px;
            align-items: center;
        }

        .privacy-content h2 {
            font-size: clamp(28px, 4vw, 42px);
            font-weight: 800;
            color: var(--gray-900);
            margin-bottom: 24px;
        }

        .privacy-content > p {
            font-size: 18px;
            color: var(--gray-600);
            margin-bottom: 32px;
        }

        .privacy-points {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .privacy-point {
            display: flex;
            gap: 16px;
            align-items: flex-start;
        }

        .privacy-point-icon {
            width: 48px;
            height: 48px;
            background: var(--secondary);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            font-size: 24px;
        }

        .privacy-point-content h4 {
            font-size: 18px;
            font-weight: 600;
            color: var(--gray-900);
            margin-bottom: 4px;
        }

        .privacy-point-content p {
            font-size: 14px;
            color: var(--gray-600);
        }

        .privacy-comparison {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
        }

        .privacy-card {
            padding: 32px;
            border-radius: 16px;
            text-align: center;
        }

        .privacy-card.cloud {
            background: #fef2f2;
            border: 2px solid #fecaca;
        }

        .privacy-card.local {
            background: #ecfdf5;
            border: 2px solid #a7f3d0;
        }

        .privacy-card-icon {
            font-size: 48px;
            margin-bottom: 16px;
        }

        .privacy-card h4 {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 12px;
        }

        .privacy-card.cloud h4 { color: #dc2626; }
        .privacy-card.local h4 { color: #059669; }

        .privacy-card p {
            font-size: 14px;
            color: var(--gray-600);
        }

        /* Translation Demo Section */
        .translation-demo {
            padding: 100px 0;
            background: linear-gradient(135deg, #059669 0%, #0891b2 100%);
        }

        .translation-demo .section-header h2,
        .translation-demo .section-header p {
            color: var(--white);
        }

        .translation-demo .section-tag {
            background: rgba(255,255,255,0.2);
            color: var(--white);
        }

        .translation-visual {
            display: grid;
            grid-template-columns: 1fr auto 1fr;
            gap: 24px;
            align-items: stretch;
            max-width: 1000px;
            margin: 0 auto;
        }

        .translation-panel {
            background: var(--white);
            border-radius: 16px;
            padding: 24px;
            box-shadow: var(--shadow-xl);
        }

        .translation-panel-header {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 16px;
            padding-bottom: 12px;
            border-bottom: 2px solid var(--gray-100);
        }

        .translation-panel-flag {
            font-size: 28px;
        }

        .translation-panel-title {
            font-size: 14px;
            font-weight: 600;
            color: var(--gray-500);
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .translation-panel-content {
            font-size: 18px;
            line-height: 1.8;
            color: var(--gray-800);
        }

        .translation-arrow {
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 32px;
        }

        .translation-features {
            display: flex;
            justify-content: center;
            gap: 32px;
            margin-top: 48px;
            flex-wrap: wrap;
        }

        .translation-feature {
            display: flex;
            align-items: center;
            gap: 12px;
            color: var(--white);
            font-weight: 600;
            font-size: 16px;
        }

        .translation-feature-icon {
            width: 40px;
            height: 40px;
            background: rgba(255,255,255,0.2);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
        }

        @media (max-width: 768px) {
            .translation-visual {
                grid-template-columns: 1fr;
            }
            .translation-arrow {
                transform: rotate(90deg);
            }
        }

        /* Comparison Table */
        .comparison {
            padding: 100px 0;
            background: var(--white);
        }

        .comparison-table {
            width: 100%;
            border-collapse: collapse;
            background: var(--white);
            border-radius: 16px;
            overflow: hidden;
            box-shadow: var(--shadow-xl);
        }

        .comparison-table th,
        .comparison-table td {
            padding: 20px 24px;
            text-align: left;
            border-bottom: 1px solid var(--gray-200);
        }

        .comparison-table thead {
            background: var(--gray-900);
            color: var(--white);
        }

        .comparison-table thead th {
            font-weight: 600;
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .comparison-table thead th.highlight {
            background: var(--primary);
        }

        .comparison-table tbody tr:hover {
            background: var(--gray-50);
        }

        .comparison-table tbody td:first-child {
            font-weight: 500;
            color: var(--gray-700);
        }

        .comparison-table .check {
            color: #10b981;
            font-size: 20px;
        }

        .comparison-table .cross {
            color: #ef4444;
            font-size: 20px;
        }

        .comparison-table .highlight-col {
            background: #eff6ff;
        }

        .comparison-table tfoot td {
            background: var(--gray-100);
            font-weight: 600;
            font-size: 18px;
        }

        .comparison-table tfoot .highlight-col {
            background: var(--primary);
            color: var(--white);
        }

        .comparison-tagline {
            font-size: 1.25rem;
            color: var(--primary);
            font-weight: 600;
            margin-bottom: 8px;
        }

        @media (max-width: 768px) {
            .fusion-block > div {
                flex-direction: column !important;
            }
            .fusion-block > div > div[style*="font-size: 36px"] {
                transform: rotate(90deg);
                margin: 8px 0;
            }
            .comparison-tagline {
                font-size: 1rem;
            }
        }

        /* Languages Section */
        .languages {
            padding: 100px 0;
            background: var(--gray-50);
        }

        .languages-grid {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 12px;
            margin-bottom: 48px;
        }

        .language-card {
            background: var(--white);
            padding: 12px 20px;
            border-radius: 8px;
            font-size: 14px;
            font-weight: 500;
            box-shadow: var(--shadow-sm);
            transition: transform 0.2s, box-shadow 0.2s;
        }

        .language-card:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-md);
        }

        .language-card.more {
            background: var(--primary);
            color: var(--white);
            cursor: pointer;
            border: none;
        }

        .language-card.hidden-lang {
            display: none;
        }

        .languages-grid.expanded .language-card.hidden-lang {
            display: block;
        }

        .languages-toggle {
            text-align: center;
            margin-top: 24px;
        }

        .btn-toggle-languages {
            background: var(--primary);
            color: var(--white);
            border: none;
            padding: 12px 28px;
            border-radius: 8px;
            font-size: 15px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s, transform 0.2s;
        }

        .btn-toggle-languages:hover {
            background: var(--primary-dark);
            transform: translateY(-2px);
        }

        .languages-grid.expanded + .languages-toggle .btn-toggle-languages {
            background: var(--gray-600);
        }

        .commands-demo {
            display: flex;
            justify-content: center;
            gap: 24px;
            flex-wrap: wrap;
            margin-top: 32px;
        }

        .command-example {
            display: flex;
            align-items: center;
            gap: 12px;
            background: var(--white);
            padding: 16px 24px;
            border-radius: 12px;
            box-shadow: var(--shadow);
        }

        .command-example .flag {
            font-size: 24px;
        }

        .command-example .command {
            font-family: monospace;
            background: var(--gray-100);
            padding: 4px 8px;
            border-radius: 4px;
            font-size: 14px;
        }

        .command-example .result {
            color: var(--secondary);
            font-weight: 600;
        }

        /* Calculator */
        .calculator {
            padding: 100px 0;
            background: linear-gradient(135deg, var(--gray-900) 0%, #1e3a8a 100%);
            color: var(--white);
        }

        .calculator .section-header h2,
        .calculator .section-header p {
            color: var(--white);
        }

        .calculator .section-header p {
            opacity: 0.8;
        }

        .calculator-card {
            max-width: 600px;
            margin: 0 auto;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 24px;
            padding: 48px;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .calculator-input {
            margin-bottom: 40px;
        }

        .calculator-label {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 16px;
        }

        .calculator-value {
            font-size: 24px;
            font-weight: 700;
            color: var(--accent);
        }

        .calculator-slider {
            width: 100%;
            height: 8px;
            border-radius: 4px;
            background: rgba(255, 255, 255, 0.2);
            outline: none;
            -webkit-appearance: none;
        }

        .calculator-slider::-webkit-slider-thumb {
            -webkit-appearance: none;
            width: 24px;
            height: 24px;
            border-radius: 50%;
            background: var(--accent);
            cursor: pointer;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
        }

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

        .calculator-result {
            padding: 24px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 16px;
        }

        .calculator-result-value {
            font-size: 32px;
            font-weight: 800;
            color: var(--accent);
            margin-bottom: 8px;
        }

        .calculator-result-label {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.9);
        }

        /* Testimonials Carousel */
        .testimonials-section {
            padding: var(--section-padding) 0;
            background: var(--bg);
        }

        .testimonials-carousel {
            display: flex;
            align-items: center;
            gap: 16px;
            margin-top: 48px;
        }

        .testimonials-track-wrapper {
            flex: 1;
            overflow: hidden;
        }

        .testimonials-track {
            display: flex;
            gap: 32px;
            transition: transform 0.5s ease;
        }

        .testimonial-card {
            flex: 0 0 calc((100% - 64px) / 3);
            background: var(--bg-alt);
            border-radius: var(--radius-lg);
            padding: 32px;
            border: 1px solid var(--border);
            transition: var(--transition);
        }

        .testimonial-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-lg);
            border-color: var(--primary-light);
        }

        .carousel-btn {
            flex-shrink: 0;
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: var(--bg-alt);
            border: 1px solid var(--border);
            color: var(--text);
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition);
        }

        .carousel-btn:hover {
            background: var(--primary);
            border-color: var(--primary);
            color: white;
        }

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

        .carousel-btn:disabled:hover {
            background: var(--bg-alt);
            border-color: var(--border);
            color: var(--text);
        }

        .carousel-dots {
            display: flex;
            justify-content: center;
            gap: 12px;
            margin-top: 32px;
        }

        .carousel-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: var(--border);
            border: none;
            cursor: pointer;
            transition: var(--transition);
        }

        .carousel-dot:hover {
            background: var(--primary-light);
        }

        .carousel-dot.active {
            background: var(--primary);
            transform: scale(1.2);
        }

        .testimonial-stars {
            color: #F59E0B;
            font-size: 1.25rem;
            margin-bottom: 16px;
            letter-spacing: 2px;
        }

        .testimonial-text {
            font-size: 1rem;
            line-height: 1.7;
            color: var(--text);
            margin-bottom: 24px;
            font-style: italic;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .author-avatar {
            width: 48px;
            height: 48px;
            background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
        }

        .author-info {
            display: flex;
            flex-direction: column;
        }

        .author-name {
            font-weight: 600;
            color: var(--text);
        }

        .author-role {
            font-size: 0.875rem;
            color: var(--text-light);
        }

        /* Pricing */
        .pricing {
            padding: var(--section-padding) 0;
            background: var(--bg-alt);
        }

        .pricing-notice {
            text-align: center;
            font-size: 14px;
            color: var(--text-muted);
            margin-bottom: 48px;
        }

        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 32px;
            max-width: 1000px;
            margin: 0 auto 40px;
        }

        .pricing-card {
            background: var(--bg);
            border: 2px solid var(--border);
            border-radius: var(--radius-lg);
            padding: 40px;
            transition: var(--transition);
        }

        .pricing-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-xl);
        }

        .pricing-card.featured {
            border-color: var(--primary);
            position: relative;
            background: linear-gradient(180deg, rgba(79, 70, 229, 0.05) 0%, var(--bg) 100%);
        }

        .pricing-badge {
            position: absolute;
            top: -14px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--primary);
            color: white;
            padding: 8px 20px;
            border-radius: var(--radius-full);
            font-size: 14px;
            font-weight: 600;
            white-space: nowrap;
        }

        .pricing-header {
            text-align: center;
            margin-bottom: 32px;
        }

        .pricing-name {
            font-size: 28px;
            font-weight: 700;
            color: var(--text);
            margin-bottom: 8px;
        }

        .pricing-description {
            font-size: 14px;
            color: var(--text-light);
            line-height: 1.6;
        }

        .pricing-options {
            display: flex;
            flex-direction: column;
            gap: 12px;
            margin-bottom: 32px;
        }

        .pricing-option {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 16px 20px;
            background: var(--bg-alt);
            border-radius: var(--radius);
            border: 2px solid transparent;
            transition: var(--transition);
        }

        .pricing-option:hover {
            background: var(--border-light);
        }

        .pricing-option.best-value {
            border-color: var(--secondary);
            background: #ecfdf5;
        }

        .pricing-option-info {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .pricing-option-badge {
            background: var(--secondary);
            color: var(--white);
            font-size: 10px;
            font-weight: 600;
            padding: 4px 8px;
            border-radius: 4px;
            text-transform: uppercase;
        }

        .pricing-option-period {
            font-size: 14px;
            color: var(--text-light);
        }

        .pricing-option-price {
            font-size: 18px;
            font-weight: 700;
            color: var(--text);
        }

        .btn-choose {
            padding: 8px 20px;
            background: var(--primary);
            color: white;
            border: none;
            border-radius: var(--radius);
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
        }

        .btn-choose:hover {
            background: var(--primary-dark);
            transform: translateY(-1px);
        }

        .btn-choose-featured {
            background: var(--primary);
        }

        .pricing-notice {
            display: block;
            font-size: 11px;
            color: var(--text-muted);
            margin-top: 6px;
            font-style: italic;
        }

        .pricing-features {
            margin-bottom: 24px;
        }

        .pricing-features h4 {
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            color: var(--text-muted);
            margin-bottom: 16px;
        }

        .pricing-features ul {
            list-style: none;
        }

        .pricing-features li {
            padding: 8px 0;
            font-size: 15px;
            color: var(--text-light);
        }

        .pricing-cta-download {
            display: block;
            width: 100%;
            padding: 16px;
            text-align: center;
            border-radius: var(--radius);
            font-size: 16px;
            font-weight: 600;
            text-decoration: none;
            background: var(--bg);
            border: 2px solid var(--border);
            color: var(--text);
            transition: var(--transition);
        }

        .pricing-cta-download:hover {
            border-color: var(--primary);
            color: var(--primary);
        }

        .pricing-cta-download.featured {
            background: var(--primary);
            border: none;
            color: white;
        }

        .pricing-cta-download.featured:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-lg);
        }

        .pricing-guarantee {
            text-align: center;
            margin-top: 32px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            color: var(--gray-600);
        }

        .pricing-guarantee span {
            font-size: 24px;
        }

        /* FAQ */
        .faq {
            padding: var(--section-padding) 0;
            background: var(--bg);
        }

        .faq-grid {
            max-width: 800px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .faq-item {
            background: var(--bg-alt);
            border-radius: var(--radius-lg);
            overflow: hidden;
            border: 1px solid var(--border);
        }

        .faq-question {
            width: 100%;
            padding: 24px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: none;
            border: none;
            cursor: pointer;
            text-align: left;
            font-size: 18px;
            font-weight: 600;
            color: var(--text);
            transition: var(--transition);
        }

        .faq-question:hover {
            background: var(--border-light);
        }

        .faq-icon {
            width: 24px;
            height: 24px;
            transition: transform 0.3s;
            flex-shrink: 0;
            margin-left: 16px;
        }

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

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease-out;
        }

        .faq-item.active .faq-answer {
            max-height: 500px;
        }

        .faq-answer-content {
            padding: 0 24px 24px;
            color: var(--text-light);
            line-height: 1.7;
        }

        /* Contact */
        .contact {
            padding: 80px 0;
            background: var(--bg-alt);
        }

        .contact-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 48px;
            align-items: start;
        }

        .contact-form {
            background: var(--bg);
            padding: 32px;
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-md);
        }

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

        .form-group label {
            display: block;
            font-weight: 500;
            margin-bottom: 8px;
            color: var(--text);
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 12px 16px;
            border: 2px solid var(--border);
            border-radius: var(--radius);
            font-size: 1rem;
            font-family: inherit;
            transition: var(--transition);
            background: var(--bg);
            color: var(--text);
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
        }

        .form-group textarea {
            resize: vertical;
            min-height: 120px;
        }

        .form-group input::placeholder,
        .form-group textarea::placeholder {
            color: var(--text-muted);
        }

        /* Star Rating */
        .rating-group {
            animation: slideDown 0.3s ease;
        }

        @keyframes slideDown {
            from { opacity: 0; transform: translateY(-10px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .star-rating {
            display: flex;
            flex-direction: row-reverse;
            justify-content: flex-end;
            gap: 4px;
        }

        .star-rating input {
            display: none;
        }

        .star-rating label {
            cursor: pointer;
            font-size: 2rem;
            color: var(--border);
            transition: color 0.2s ease, transform 0.1s ease;
        }

        .star-rating label:hover,
        .star-rating label:hover ~ label,
        .star-rating input:checked ~ label {
            color: #F59E0B;
        }

        .star-rating label:hover {
            transform: scale(1.1);
        }

        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .contact-card {
            background: var(--bg);
            padding: 24px;
            border-radius: var(--radius);
            box-shadow: var(--shadow-sm);
            text-align: center;
            transition: var(--transition);
            text-align: center;
            box-shadow: var(--shadow);
        }

        .contact-card:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-md);
        }

        .contact-icon {
            font-size: 2rem;
            margin-bottom: 12px;
        }

        .contact-card-icon {
            font-size: 2rem;
            margin-bottom: 12px;
        }

        .contact-card h3 {
            font-size: 1.1rem;
            margin-bottom: 4px;
        }

        .contact-card p {
            color: var(--text-muted);
            font-size: 0.9rem;
            margin-bottom: 8px;
        }

        .contact-link {
            color: var(--primary);
            font-weight: 600;
            text-decoration: none;
            transition: var(--transition);
        }

        .contact-link:hover {
            color: var(--primary-dark);
            text-decoration: underline;
        }

        .contact-highlight {
            color: var(--primary);
            font-weight: 600;
            font-size: 1.1rem;
        }

        /* Final CTA */
        .final-cta {
            padding: var(--section-padding) 0;
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            color: white;
            text-align: center;
        }

        .final-cta h2 {
            font-size: clamp(28px, 4vw, 42px);
            font-weight: 800;
            margin-bottom: 16px;
            color: white;
        }

        .final-cta p {
            font-size: 18px;
            opacity: 0.9;
            max-width: 600px;
            margin: 0 auto 12px;
        }

        .final-cta-note {
            font-size: 14px;
            opacity: 0.8;
            margin-bottom: 32px;
        }

        .final-cta .btn-primary {
            background: white;
            color: var(--primary);
        }

        .final-cta .btn-primary:hover {
            background: var(--bg-alt);
        }

        /* Footer */
        .footer {
            padding: 64px 0 32px;
            background: var(--bg-dark);
            color: var(--text-muted);
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 48px;
            margin-bottom: 48px;
        }

        .footer-brand p {
            margin-top: 16px;
            font-size: 14px;
            line-height: 1.6;
        }

        .footer-links h4 {
            color: var(--white);
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 16px;
        }

        .footer-links ul {
            list-style: none;
        }

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

        .footer-links a {
            color: var(--gray-400);
            text-decoration: none;
            font-size: 14px;
            transition: color 0.2s;
        }

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

        .footer-bottom {
            padding-top: 32px;
            border-top: 1px solid var(--gray-800);
            text-align: center;
            font-size: 14px;
        }

        .footer-bottom a {
            color: var(--gray-400);
            text-decoration: none;
        }

        .footer-bottom a:hover {
            color: var(--white);
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .nav-links {
                display: none;
            }
        }

        @media (max-width: 768px) {
            .translation .container,
            .privacy .container,
            .contact-content {
                grid-template-columns: 1fr;
                gap: 48px;
            }

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

            .step {
                grid-template-columns: 60px 1fr;
            }

            .step-visual {
                grid-column: span 2;
            }

            .calculator-results {
                grid-template-columns: 1fr;
            }

            .hero-stats {
                gap: 32px;
            }

            .testimonial-card {
                flex: 0 0 calc((100% - 32px) / 2);
            }

            .testimonials-carousel {
                gap: 8px;
            }

            .carousel-btn {
                width: 36px;
                height: 36px;
            }

            .carousel-btn svg {
                width: 18px;
                height: 18px;
            }

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

            .config-diagram {
                flex-direction: column;
            }

            .config-arrow {
                transform: rotate(90deg);
            }
        }

        @media (max-width: 640px) {
            .testimonial-card {
                flex: 0 0 100%;
            }
        }

        @media (max-width: 480px) {
            .footer-grid {
                grid-template-columns: 1fr;
            }
        }

        /* Download Modal */
        .download-modal {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            z-index: 2000;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
        }

        .download-modal.active {
            opacity: 1;
            visibility: visible;
        }

        .download-modal-backdrop {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.6);
            backdrop-filter: blur(4px);
        }

        .download-modal-content {
            position: relative;
            background: var(--bg);
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-xl);
            max-width: 650px;
            width: 90%;
            max-height: 90vh;
            overflow-y: auto;
            padding: 32px;
            transform: translateY(20px);
            transition: var(--transition);
        }

        .download-modal.active .download-modal-content {
            transform: translateY(0);
        }

        .download-modal-close {
            position: absolute;
            top: 16px;
            right: 16px;
            width: 40px;
            height: 40px;
            border: none;
            background: var(--bg-alt);
            border-radius: 50%;
            font-size: 1.5rem;
            color: var(--text-muted);
            cursor: pointer;
            transition: var(--transition);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .download-modal-close:hover {
            background: var(--border);
            color: var(--text);
        }

        .download-modal-header {
            text-align: center;
            margin-bottom: 24px;
        }

        .download-icon-img {
            width: 64px;
            height: 64px;
            display: block;
            margin: 0 auto 12px auto;
        }

        .download-modal-header h2 {
            margin-bottom: 8px;
            font-size: 1.5rem;
        }

        .download-modal-header p {
            color: var(--text-muted);
        }

        .download-options {
            display: flex;
            flex-direction: column;
            gap: 12px;
            margin-bottom: 0;
        }

        .download-option {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 14px 16px;
            border: 2px solid var(--border);
            border-radius: var(--radius);
            text-decoration: none;
            color: var(--text);
            transition: var(--transition);
        }

        .download-option:hover {
            border-color: var(--primary);
            background: rgba(79, 70, 229, 0.05);
            transform: translateX(4px);
        }

        .download-option.windows:hover {
            border-color: #0078D4;
            background: rgba(0, 120, 212, 0.05);
        }

        .download-option.macos:hover {
            border-color: #333;
            background: rgba(0, 0, 0, 0.03);
        }

        .download-option-icon {
            width: 44px;
            height: 44px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            background: var(--bg-alt);
            border-radius: var(--radius);
            flex-shrink: 0;
        }

        .download-option.windows .download-option-icon {
            background: rgba(0, 120, 212, 0.1);
            color: #0078D4;
        }

        .download-option.macos .download-option-icon {
            background: rgba(0, 0, 0, 0.05);
            color: #333;
        }

        .download-option-info {
            flex: 1;
        }

        .download-option-info h3 {
            font-size: 1rem;
            margin-bottom: 2px;
        }

        .beta-badge {
            display: inline-block;
            background: linear-gradient(135deg, #F59E0B, #D97706);
            color: white;
            font-size: 0.65rem;
            font-weight: 700;
            padding: 2px 6px;
            border-radius: 4px;
            margin-left: 8px;
            vertical-align: middle;
            text-transform: uppercase;
        }

        .download-option-info p {
            font-size: 0.85rem;
            color: var(--text-muted);
            margin-bottom: 2px;
        }

        .download-size {
            font-size: 0.8rem;
            color: var(--text-muted);
            background: var(--bg-alt);
            padding: 2px 8px;
            border-radius: var(--radius-sm);
        }

        .download-option-btn {
            width: 36px;
            height: 36px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--primary);
            color: white;
            border-radius: 50%;
            flex-shrink: 0;
        }

        .download-option.windows .download-option-btn {
            background: #0078D4;
        }

        .download-option.macos .download-option-btn {
            background: #333;
        }

        .download-option.disabled {
            opacity: 0.5;
            cursor: not-allowed;
            pointer-events: none;
        }

        /* Turnstile Container */
        .turnstile-container {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
            padding: 16px;
            margin-bottom: 16px;
            background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
            border-radius: var(--radius);
            border: 1px solid var(--border);
        }

        .turnstile-container .turnstile-hint {
            font-size: 0.85rem;
            color: var(--text-muted);
            margin: 0;
        }

        .turnstile-container.verified {
            background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
            border-color: #10B981;
        }

        .turnstile-container.verified .turnstile-hint {
            color: #059669;
            font-weight: 500;
        }

        .turnstile-container.verified .cf-turnstile {
            opacity: 0.7;
        }

        /* macOS Beta Warning */
        .macos-beta-warning {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            background: linear-gradient(135deg, #FEE2E2 0%, #FECACA 100%);
            border: 2px solid #EF4444;
            border-radius: var(--radius);
            padding: 16px;
            margin-top: 16px;
        }

        .beta-warning-icon {
            font-size: 1.5rem;
            flex-shrink: 0;
        }

        .beta-warning-content strong {
            display: block;
            font-size: 1rem;
            color: #DC2626;
            margin-bottom: 4px;
        }

        .beta-warning-content p {
            font-size: 0.85rem;
            color: #991B1B;
            margin: 0;
            line-height: 1.4;
        }

        .beta-warning-content a {
            color: #DC2626;
            font-weight: 600;
        }

        /* Download Warnings */
        .download-warnings {
            background: #FEF3C7;
            border: 1px solid #F59E0B;
            border-radius: var(--radius);
            padding: 12px 16px;
            margin-top: 16px;
        }

        .download-warnings h4 {
            font-size: 0.9rem;
            color: #92400E;
            margin-bottom: 8px;
        }

        .download-warnings h4::before {
            content: "⚠️ ";
        }

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

        .warning-list li {
            font-size: 0.8rem;
            color: #78350F;
            padding: 4px 0;
            line-height: 1.5;
        }

        .warning-list li .warning-icon {
            margin-right: 8px;
        }

        .warning-list li strong {
            color: #92400E;
        }

        .warning-list li.smartscreen-warning {
            background: #FEF3C7;
            padding: 12px 16px;
            border-radius: 6px;
            margin-bottom: 8px;
            border-left: 3px solid #F59E0B;
            display: block;
        }

        .warning-list li.smartscreen-warning .warning-icon {
            display: inline;
        }

        .warning-list li.antivirus-warning {
            background: #FEE2E2;
            padding: 12px 16px;
            border-radius: 6px;
            margin-bottom: 8px;
            border-left: 3px solid #EF4444;
            display: block;
        }

        .warning-list li.antivirus-warning .warning-icon {
            display: inline;
        }

        .warning-list li.antivirus-warning a {
            color: #991B1B;
        }

        /* FAQ antivirus procedures */
        .faq-answer-content .av-procedures p {
            margin: 8px 0 4px 0;
        }

        .faq-answer-content .av-procedures ol {
            margin: 4px 0 12px 20px;
            padding: 0;
        }

        .faq-answer-content .av-procedures ol li {
            margin: 2px 0;
            line-height: 1.6;
        }

        .faq-answer-content .av-procedures code {
            background: rgba(0,0,0,0.06);
            padding: 1px 5px;
            border-radius: 3px;
            font-size: 0.9em;
        }

        .faq-answer-content .av-why {
            margin-top: 16px;
            padding-top: 12px;
            border-top: 1px solid rgba(0,0,0,0.1);
        }

        .faq-answer-content .av-why ul {
            margin: 6px 0 0 20px;
            padding: 0;
        }

        .faq-answer-content .av-why ul li {
            margin: 4px 0;
            line-height: 1.5;
        }

        /* Download Config */
        .download-config {
            background: var(--gray-100);
            border-radius: 12px;
            padding: 12px 16px;
            margin-top: 12px;
        }

        .download-config h4 {
            font-size: 0.9rem;
            color: var(--gray-800);
            margin-bottom: 8px;
        }

        .config-levels {
            display: flex;
            flex-direction: column;
            gap: 6px;
        }

        .config-level {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 6px 10px;
            border-radius: 6px;
            background: white;
        }

        .config-level .level-badge {
            font-size: 0.7rem;
            font-weight: 600;
            padding: 3px 8px;
            border-radius: 100px;
            min-width: 70px;
            text-align: center;
        }

        .config-level.optimal .level-badge {
            background: #D1FAE5;
            color: #065F46;
        }

        .config-level.good .level-badge {
            background: #DBEAFE;
            color: #1E40AF;
        }

        .config-level.acceptable .level-badge {
            background: #FEF3C7;
            color: #92400E;
        }

        .config-level .level-desc {
            font-size: 0.8rem;
            color: var(--text-light);
        }

        /* Download Footer */
        .download-footer {
            text-align: center;
            padding-top: 12px;
            margin-top: 16px;
            border-top: 1px solid var(--border-light);
        }

        .download-footer p {
            font-size: 0.85rem;
            color: var(--text-muted);
        }

        .download-footer .trial-note {
            margin-top: 8px;
            font-size: 0.8rem;
            color: var(--text-light);
            font-style: italic;
        }
