        /* Critical CSS - Above the fold styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            /* Light theme colors */
            --primary-blue: #007AFF;
            --secondary-blue: #5856D6;
            --accent-blue: #0066CC;
            --bg-primary: #ffffff;
            --bg-secondary: #f8f9fa;
            --text-primary: #1a1a1a;
            --text-secondary: #666666;
            --border-color: #e5e5ea;
            --success-color: #34C759;
            --gradient-primary: linear-gradient(135deg, #007AFF 0%, #5856D6 100%);
            --gradient-success: linear-gradient(135deg, #34C759 0%, #28A745 100%);
            --shadow-light: 0 2px 12px rgba(0, 0, 0, 0.08);
            --shadow-medium: 0 4px 20px rgba(0, 0, 0, 0.12);
            --border-radius: 12px;
            --max-width: 1200px;
            --section-padding: 80px 0;
        }

        /* Dark theme colors */
        [data-theme="dark"] {
            --bg-primary: #1a1a1a;
            --bg-secondary: #2d2d2d;
            --text-primary: #ffffff;
            --text-secondary: #a0a0a0;
            --border-color: #404040;
            --shadow-light: 0 2px 12px rgba(0, 0, 0, 0.3);
            --shadow-medium: 0 4px 20px rgba(0, 0, 0, 0.4);
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            line-height: 1.6;
            color: var(--text-primary);
            background-color: var(--bg-primary);
            transition: all 0.3s ease;
            overflow-x: hidden;
        }

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

        /* Header Styles */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid var(--border-color);
            z-index: 1000;
            transition: all 0.3s ease;
        }

        [data-theme="dark"] .header {
            background: rgba(26, 26, 26, 0.95);
        }

        .nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }

        .logo {
            font-size: 24px;
            font-weight: 700;
            color: var(--text-primary);
            text-decoration: none;
            display: flex;
            align-items: center;
            transition: color 0.3s ease;
        }

        .logo-img {
            height: 40px;
            width: 40px;
            margin-left: 10px;
            transition: all 0.3s ease;
        }

        .nav-controls {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .theme-toggle {
            background: none;
            border: 2px solid var(--border-color);
            border-radius: 25px;
            padding: 8px 12px;
            cursor: pointer;
            font-size: 16px;
            transition: all 0.3s ease;
        }

        .theme-toggle:hover {
            border-color: var(--primary-blue);
        }

        .lang-selector {
            position: relative;
            display: inline-block;
        }

        .lang-dropdown-btn {
            background: none;
            border: 2px solid var(--border-color);
            border-radius: 25px;
            padding: 8px 12px;
            cursor: pointer;
            font-size: 20px;
            display: flex;
            align-items: center;
            gap: 5px;
            transition: all 0.3s ease;
            color: var(--text-primary);
        }

        .lang-dropdown-btn:hover {
            border-color: var(--primary-blue);
        }

        .lang-dropdown-btn .current-lang {
            font-size: 12px;
            font-weight: 600;
            text-transform: uppercase;
            min-width: 20px;
        }

        .lang-dropdown-menu {
            position: absolute;
            top: calc(100% + 5px);
            right: 0;
            background: var(--bg-primary);
            border: 2px solid var(--border-color);
            border-radius: 8px;
            box-shadow: var(--shadow-medium);
            padding: 5px;
            display: none;
            min-width: 120px;
            z-index: 1000;
        }

        .lang-dropdown-menu.active {
            display: block;
        }

        .lang-btn {
            background: none;
            border: none;
            padding: 8px 12px;
            border-radius: 6px;
            cursor: pointer;
            font-size: 14px;
            font-weight: 500;
            color: var(--text-primary);
            transition: all 0.3s ease;
            width: 100%;
            text-align: left;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .lang-btn:hover {
            background: var(--bg-secondary);
        }

        .lang-btn.active {
            background: var(--primary-blue);
            color: white;
        }

        .lang-btn .lang-flag {
            font-size: 16px;
        }

        .lang-btn .lang-name {
            font-size: 14px;
        }

        /* Feature Screens Section */
        .feature-screens {
            padding: 120px 0 80px;
            text-align: center;
            background: linear-gradient(135deg, rgba(0, 122, 255, 0.05) 0%, rgba(88, 86, 214, 0.05) 100%);
        }

        .hero-trust {
            font-size: 0.95rem;
            color: var(--text-secondary);
            margin-bottom: 25px;
            font-weight: 500;
            animation: fadeInDown 0.6s ease;
        }

        .feature-screens h1 {
            font-size: clamp(2.5rem, 5vw, 3.5rem);
            font-weight: 700;
            margin-bottom: 20px;
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: fadeInUp 0.8s ease;
        }

        .hero-subtitle {
            font-size: clamp(1.1rem, 2.5vw, 1.3rem);
            color: var(--text-secondary);
            margin-bottom: 40px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.6;
            animation: fadeInUp 1s ease;
        }

        .hero-ctas {
            display: flex;
            gap: 15px;
            justify-content: center;
            align-items: center;
            flex-wrap: wrap;
            margin-bottom: 25px;
            animation: fadeInUp 1.2s ease;
        }

        .cta-button {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            text-decoration: none;
            padding: 16px 32px;
            border-radius: var(--border-radius);
            font-weight: 600;
            font-size: 18px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .cta-button::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.3);
            transform: translate(-50%, -50%);
            transition: width 0.6s, height 0.6s;
        }

        .cta-button:hover::before {
            width: 300px;
            height: 300px;
        }

        .cta-primary {
            background: var(--gradient-primary);
            color: white;
            box-shadow: var(--shadow-medium);
        }

        .cta-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 30px rgba(0, 122, 255, 0.4);
        }

        .cta-secondary {
            background: white;
            color: var(--primary-blue);
            border: 2px solid var(--primary-blue);
            box-shadow: var(--shadow-light);
        }

        [data-theme="dark"] .cta-secondary {
            background: var(--bg-primary);
            border-color: var(--primary-blue);
        }

        .cta-secondary:hover {
            background: var(--primary-blue);
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 6px 25px rgba(0, 122, 255, 0.3);
        }

        .hero-guarantee {
            font-size: 0.9rem;
            color: var(--text-secondary);
            margin-bottom: 50px;
            animation: fadeInUp 1.4s ease;
        }

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

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

        @media (max-width: 768px) {
            .hero-ctas {
                flex-direction: column;
                width: 100%;
                padding: 0 20px;
            }

            .cta-button {
                width: 100%;
                justify-content: center;
            }
        }

        /* Feature Screens Slider */
        .screens-slider-container {
            position: relative;
            margin-top: clamp(40px, 5vw, 60px);
            width: 100%;
            max-width: 1400px;
            margin-left: auto;
            margin-right: auto;
            padding: 0 clamp(10px, 2vw, 20px);
        }

        .screens-slider-wrapper {
            overflow: hidden;
            position: relative;
        }

        .screens-grid {
            display: flex;
            align-items: center;
            position: relative;
            min-height: 700px;
            height: auto;
            overflow: hidden;
            width: 100%;
        }

        .screen-card {
            position: absolute;
            width: clamp(280px, 80vw, 350px);
            max-width: 350px;
            text-align: center;
            padding: 0 clamp(10px, 2.5vw, 25px);
            box-sizing: border-box;
            transition: transform 0.5s ease-in-out, opacity 0.3s ease;
            will-change: transform;
        }

        .screen-card .screenshot-img {
            opacity: 0.3;
            transform: scale(0.75);
            transition: all 0.5s ease;
            width: 100%;
            height: auto;
            max-height: 700px;
            object-fit: contain;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow-medium);
        }

        .screen-card.active .screenshot-img {
            opacity: 1;
            transform: scale(1);
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
        }

        /* Slider Navigation */
        .slider-nav {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 15px;
            margin-top: 30px;
            position: relative;
        }

        .slider-btn {
            position: static;
            background: rgba(0, 122, 255, 0.9);
            backdrop-filter: blur(10px);
            color: white;
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            cursor: pointer;
            font-size: 24px;
            font-weight: bold;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            box-shadow: 0 4px 12px rgba(0, 122, 255, 0.3);
        }

        .slider-btn:hover {
            background: rgba(0, 122, 255, 1);
            transform: scale(1.1);
            box-shadow: 0 6px 16px rgba(0, 122, 255, 0.4);
        }

        .slider-btn:active {
            transform: scale(0.95);
        }

        @media (max-width: 768px) {
            .slider-btn {
                width: 40px;
                height: 40px;
                font-size: 20px;
            }
        }

        [data-theme="dark"] .slider-btn {
            background: rgba(0, 122, 255, 0.2);
            border-color: rgba(0, 122, 255, 0.4);
            color: var(--primary-blue);
        }

        [data-theme="dark"] .slider-btn:hover {
            background: rgba(0, 122, 255, 0.3);
            border-color: rgba(0, 122, 255, 0.6);
        }

        /* Slider Dots */
        .slider-dots {
            display: flex;
            gap: 10px;
            justify-content: center;
            padding: 0 15px;
        }

        .slider-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: var(--border-color);
            cursor: pointer;
            transition: all 0.3s ease;
            border: none;
            padding: 0;
        }

        .slider-dot.active {
            background: var(--primary-blue);
            width: 30px;
            border-radius: 5px;
        }

        /* Screenshot Images */
        .screenshot-img {
            width: 100%;
            height: auto;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow-medium);
        }

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

        .section-title {
            text-align: center;
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 20px;
        }

        .section-subtitle {
            text-align: center;
            font-size: 1.2rem;
            color: var(--text-secondary);
            margin-bottom: 60px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 60px;
        }

        .feature-card {
            background: var(--bg-primary);
            padding: 40px 30px;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow-light);
            text-align: center;
            transition: all 0.3s ease;
        }

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

        .feature-icon {
            font-size: 3rem;
            margin-bottom: 20px;
        }

        .feature-icon-gradient {
            width: 80px;
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            border-radius: 20px;
            background: var(--gradient-primary);
            box-shadow: 0 4px 15px rgba(0, 122, 255, 0.2);
            transition: all 0.3s ease;
        }

        .feature-card:hover .feature-icon-gradient {
            transform: scale(1.1) rotate(5deg);
            box-shadow: 0 6px 20px rgba(0, 122, 255, 0.3);
        }

        .feature-title {
            font-size: 1.4rem;
            font-weight: 700;
            margin-bottom: 15px;
            color: var(--text-primary);
        }

        .feature-description {
            color: var(--text-secondary);
            line-height: 1.7;
            margin-bottom: 20px;
            font-size: 0.95rem;
        }

        .feature-benefits {
            list-style: none;
            padding: 0;
            margin: 20px 0 0;
            text-align: left;
        }

        .feature-benefits li {
            padding: 8px 0 8px 25px;
            color: var(--text-primary);
            font-size: 0.9rem;
            position: relative;
        }

        .feature-benefits li::before {
            content: "✓";
            position: absolute;
            left: 0;
            color: var(--success-color);
            font-weight: bold;
            font-size: 1.1rem;
        }

        /* How It Works Section */
        .how-it-works {
            padding: var(--section-padding);
            background: var(--bg-secondary);
            position: relative;
        }

        .steps-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
            margin-top: 60px;
            position: relative;
        }

        @media (min-width: 900px) {
            .steps-grid::before {
                content: '';
                position: absolute;
                top: 80px;
                left: 20%;
                right: 20%;
                height: 2px;
                background: linear-gradient(90deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
                z-index: 0;
            }
        }

        .step-card {
            background: var(--bg-primary);
            padding: 40px 30px;
            border-radius: var(--border-radius);
            text-align: center;
            position: relative;
            z-index: 1;
            box-shadow: var(--shadow-light);
            transition: all 0.3s ease;
        }

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

        .step-number {
            position: absolute;
            top: -20px;
            left: 50%;
            transform: translateX(-50%);
            width: 50px;
            height: 50px;
            background: var(--gradient-primary);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: 700;
            box-shadow: 0 4px 15px rgba(0, 122, 255, 0.3);
            z-index: 2;
        }

        .step-icon {
            font-size: 4rem;
            margin: 30px 0 20px;
            filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.1));
        }

        .step-title {
            font-size: 1.4rem;
            font-weight: 700;
            margin-bottom: 15px;
            color: var(--text-primary);
        }

        .step-description {
            color: var(--text-secondary);
            line-height: 1.7;
            font-size: 0.95rem;
        }

        .steps-cta {
            text-align: center;
            margin-top: 60px;
        }

        /* Comparison Section */
        .comparison {
            padding: var(--section-padding);
            background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
        }

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

        .comparison .section-title,
        .comparison .section-subtitle {
            text-align: center;
            margin-left: auto;
            margin-right: auto;
        }

        .comparison-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 50px;
            max-width: 1000px;
            margin-left: auto;
            margin-right: auto;
            text-align: left;
        }

        .comparison-column {
            background: var(--bg-primary);
            border-radius: 20px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            text-align: left;
        }

        .comparison-column:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
        }

        .lemme-column {
            border: 2px solid var(--primary-color);
            position: relative;
        }

        .lemme-column::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
            border-radius: 20px 20px 0 0;
        }

        .others-column {
            border: 2px solid rgba(128, 128, 128, 0.3);
            opacity: 0.9;
        }

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

        .comparison-logo {
            font-size: 48px;
            margin-bottom: 15px;
        }

        .comparison-header h3 {
            margin: 10px 0;
            font-size: 24px;
            color: var(--text-primary);
        }

        .comparison-badge {
            display: inline-block;
            padding: 6px 16px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
            background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
            color: white;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .others-badge {
            background: linear-gradient(135deg, #6b7280, #9ca3af);
        }

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

        .comparison-list li {
            display: flex;
            gap: 15px;
            margin-bottom: 25px;
            align-items: flex-start;
        }

        .comparison-icon {
            flex-shrink: 0;
            width: 28px;
            height: 28px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 16px;
        }

        .comparison-pro .comparison-icon {
            background: linear-gradient(135deg, #10b981, #059669);
            color: white;
        }

        .comparison-con .comparison-icon {
            background: linear-gradient(135deg, #ef4444, #dc2626);
            color: white;
        }

        .comparison-list strong {
            display: block;
            color: var(--text-primary);
            margin-bottom: 5px;
            font-size: 16px;
        }

        .comparison-list p {
            margin: 0;
            color: var(--text-secondary);
            font-size: 14px;
            line-height: 1.5;
        }

        .comparison-cta {
            text-align: center;
            margin-top: 60px;
        }

        @media (max-width: 768px) {
            .comparison-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
        }

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

        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
            margin-top: 60px;
            max-width: 1600px;
            margin-left: auto;
            margin-right: auto;
        }

        .pricing-card {
            background: var(--bg-secondary);
            border: 2px solid var(--border-color);
            border-radius: var(--border-radius);
            padding: 50px 30px 40px 30px;
            text-align: center;
            position: relative;
            transition: all 0.3s ease;
            display: grid;
            grid-template-rows: auto auto auto 1fr auto;
            gap: 20px;
            min-height: 580px;
        }

        .pricing-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 40px rgba(0, 122, 255, 0.15);
            border-color: var(--primary-blue);
        }

        .pricing-card.recommended {
            background: linear-gradient(135deg, rgba(0, 122, 255, 0.05) 0%, rgba(88, 86, 214, 0.05) 100%);
            border: 2px solid var(--primary-blue);
            box-shadow: 0 8px 30px rgba(0, 122, 255, 0.25);
        }

        .pricing-card.recommended:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 40px rgba(0, 122, 255, 0.35);
        }

        .pricing-badge {
            position: absolute;
            top: 10px;
            right: 20px;
            background: var(--gradient-primary);
            color: white;
            padding: 6px 16px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
            box-shadow: var(--shadow-medium);
        }

        .pricing-badge.best-deal {
            background: var(--gradient-success);
        }

        .pricing-tier {
            font-size: 0.95rem;
            font-weight: 600;
            color: var(--text-secondary);
            margin-bottom: 15px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .pricing-price {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 10px;
            line-height: 1;
        }

        .pricing-price .currency {
            font-size: 1.25rem;
            vertical-align: super;
            opacity: 0.7;
        }

        .pricing-price .period {
            font-size: 1.2rem;
            color: var(--text-secondary);
            font-weight: 400;
        }

        .pricing-value {
            font-size: 0.9rem;
            color: var(--text-secondary);
            margin-bottom: 25px;
        }

        .pricing-features {
            list-style: none;
            padding: 0;
            margin: 0;
            min-height: 200px;
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
        }

        .pricing-features li {
            padding: 12px 0;
            border-bottom: 1px solid var(--border-color);
            color: var(--text-primary);
            font-size: 0.95rem;
        }

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

        .pricing-features li::before {
            content: "✓";
            color: var(--success-color);
            font-weight: bold;
            margin-right: 10px;
            font-size: 1.1rem;
        }

        .pricing-cta {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 100%;
            padding: 16px 32px;
            border-radius: var(--border-radius);
            font-weight: 600;
            font-size: 1.1rem;
            text-decoration: none;
            transition: all 0.3s ease;
            margin-top: auto;
            background: var(--gradient-primary);
            color: white;
            border: none;
        }

        .pricing-cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(0, 122, 255, 0.4);
        }

        .pricing-toggle {
            text-align: center;
            margin-top: 50px;
        }

        .pricing-toggle-btn {
            background: var(--bg-secondary);
            border: 2px solid var(--border-color);
            color: var(--text-primary);
            padding: 12px 30px;
            border-radius: var(--border-radius);
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 1rem;
        }

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

        .pricing-extra {
            display: none;
            margin-top: 40px;
        }

        .pricing-extra.active {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
        }

        .pricing-note {
            text-align: center;
            margin-top: 40px;
            color: var(--text-secondary);
            font-size: 0.95rem;
        }

        .pricing-note strong {
            color: var(--primary-blue);
        }

        @media (max-width: 1199px) {
            .pricing-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .pricing-extra.active {
                grid-template-columns: repeat(2, 1fr);
            }
        }

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

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

            .pricing-tier {
                font-size: 0.85rem;
            }

            .pricing-price {
                font-size: 2rem;
            }

            .pricing-price .currency {
                font-size: 1rem;
            }

            .pricing-value {
                font-size: 0.85rem;
            }

            .pricing-features li {
                font-size: 0.9rem;
            }

            .pricing-cta {
                font-size: 1rem;
                padding: 14px 28px;
            }

            .hero h1 {
                font-size: 2.25rem;
            }

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

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

            .section-subtitle {
                font-size: 1.1rem;
            }

            .feature-title {
                font-size: 1.25rem;
            }

            .feature-description {
                font-size: 0.92rem;
            }

            .step-title {
                font-size: 1.25rem;
            }

            .comparison-card h3 {
                font-size: 1.25rem;
            }

            .faq-question {
                font-size: 1.05rem;
            }

            .faq-answer {
                font-size: 0.92rem;
            }

            /* Ensure proper text alignment on mobile */
            .hero, .feature-screens {
                text-align: center;
            }

            .section-title, .section-subtitle {
                text-align: center;
                padding: 0 10px;
            }

            .feature-card {
                text-align: center;
                align-items: center;
            }

            .hero-ctas {
                justify-content: center;
                align-items: center;
            }
        }

        /* Stats Section */
        .stats {
            padding: var(--section-padding);
            background: var(--gradient-primary);
            color: white;
            position: relative;
            overflow: hidden;
        }

        .stats::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
            background-size: 50px 50px;
            opacity: 0.3;
            animation: moveBackground 20s linear infinite;
        }

        @keyframes moveBackground {
            0% {
                transform: translate(0, 0);
            }
            100% {
                transform: translate(50px, 50px);
            }
        }

        .stats .section-title {
            color: white;
            position: relative;
            z-index: 1;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            margin-top: 60px;
            position: relative;
            z-index: 1;
        }

        .stat-card {
            text-align: center;
            padding: 20px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: var(--border-radius);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: all 0.3s ease;
        }

        .stat-card:hover {
            transform: translateY(-8px);
            background: rgba(255, 255, 255, 0.15);
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
        }

        .stat-icon {
            font-size: 3rem;
            margin-bottom: 15px;
            filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.2));
        }

        .stat-number {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 10px;
            line-height: 1;
        }

        .stat-number::after {
            content: '+';
            font-size: 2rem;
            margin-left: 5px;
        }

        .stat-number[data-decimals]::after {
            content: '';
        }

        .stat-label {
            font-size: 1rem;
            opacity: 0.9;
            font-weight: 500;
        }

        @media (max-width: 768px) {
            .stats-grid {
                grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
                gap: 20px;
            }

            .stat-number {
                font-size: 2.5rem;
            }

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

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

        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-item {
            background: var(--bg-primary);
            border-radius: var(--border-radius);
            margin-bottom: 20px;
            box-shadow: var(--shadow-light);
            overflow: hidden;
        }

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

        .faq-answer {
            padding: 0 30px 25px;
            color: var(--text-secondary);
            line-height: 1.6;
            display: none;
        }

        .faq-answer.active {
            display: block;
        }

        .faq-icon {
            transition: transform 0.3s ease;
        }

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

        /* CTA Section */
        .cta-section {
            padding: var(--section-padding);
            text-align: center;
            background: var(--gradient-primary);
            color: white;
            position: relative;
            overflow: hidden;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
            background-size: 40px 40px;
            opacity: 0.4;
            animation: moveBackground 30s linear infinite reverse;
        }

        .cta-section .container {
            position: relative;
            z-index: 1;
        }

        .cta-section h2 {
            font-size: clamp(2rem, 4vw, 2.8rem);
            margin-bottom: 20px;
            font-weight: 700;
        }

        .cta-section p {
            font-size: 1.2rem;
            margin-bottom: 40px;
            opacity: 0.95;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        .cta-buttons {
            display: flex;
            gap: 15px;
            justify-content: center;
            align-items: center;
            flex-wrap: wrap;
            margin-bottom: 30px;
        }

        .cta-button-white {
            background: white;
            color: var(--primary-blue);
            padding: 18px 36px;
            border-radius: var(--border-radius);
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
            position: relative;
            overflow: hidden;
        }

        .cta-button-white::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: rgba(0, 122, 255, 0.1);
            transform: translate(-50%, -50%);
            transition: width 0.6s, height 0.6s;
        }

        .cta-button-white:hover::before {
            width: 300px;
            height: 300px;
        }

        .cta-button-white:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
        }

        .cta-button-primary {
            background: white;
            color: var(--primary-blue);
            border: 2px solid white;
        }

        .cta-button-secondary {
            background: transparent;
            color: white;
            border: 2px solid white;
        }

        .cta-button-secondary:hover {
            background: white;
            color: var(--primary-blue);
        }

        .cta-guarantee {
            margin-top: 25px;
            opacity: 0.95;
            text-align: center;
            width: 100%;
        }

        .cta-guarantee p {
            font-size: 0.95rem;
            margin: 0 auto;
            text-align: center;
            width: 100%;
            max-width: 100%;
        }

        .cta-section .cta-guarantee p {
            text-align: center !important;
            margin-left: auto !important;
            margin-right: auto !important;
        }

        @media (max-width: 768px) {
            .cta-buttons {
                flex-direction: column;
                width: 100%;
                padding: 0 20px;
            }

            .cta-button-white {
                width: 100%;
                justify-content: center;
            }
        }

        /* Footer */
        .footer {
            padding: 60px 0 40px;
            background: var(--bg-secondary);
            border-top: 1px solid var(--border-color);
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-section h3 {
            margin-bottom: 20px;
            color: var(--primary-blue);
        }

        .footer-section p,
        .footer-section a {
            color: var(--text-secondary);
            text-decoration: none;
            line-height: 1.6;
        }

        .footer-section a:hover {
            color: var(--primary-blue);
        }

        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .social-link {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: var(--primary-blue);
            color: white;
            border-radius: 50%;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .social-link:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-light);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 40px;
            border-top: 1px solid var(--border-color);
            color: var(--text-secondary);
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .nav {
                flex-direction: column;
                gap: 15px;
            }

            .hero {
                padding: 100px 0 60px;
            }

            .feature-screens {
                padding: 140px 0 80px;
            }

            .features-grid,
            .testimonials-grid {
                grid-template-columns: 1fr;
            }

            .lang-selector {
                order: -1;
            }

            .container {
                padding: 0 15px;
            }
        }

        @media (max-width: 480px) {
            .feature-screens {
                padding: 140px 0 60px;
            }

            .feature-screens h1 {
                font-size: clamp(1.75rem, 5vw, 2.5rem);
            }

            .hero h1 {
                font-size: 1.75rem;
            }

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

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

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

            .feature-title {
                font-size: 1.15rem;
            }

            .feature-description {
                font-size: 0.9rem;
            }

            .feature-benefits li {
                font-size: 0.85rem;
            }

            .step-number {
                font-size: 2rem;
            }

            .step-title {
                font-size: 1.15rem;
            }

            .step-description {
                font-size: 0.9rem;
            }

            .comparison-card h3 {
                font-size: 1.15rem;
            }

            .comparison-card li {
                font-size: 0.85rem;
            }

            .faq-question {
                font-size: 1rem;
            }

            .faq-answer {
                font-size: 0.9rem;
            }

            .stat-number {
                font-size: 2rem;
            }

            .stat-label {
                font-size: 0.85rem;
            }

            .cta-section h2 {
                font-size: 1.75rem;
            }

            .cta-section p {
                font-size: 1rem;
            }

            .cta-button,
            .cta-button-white {
                padding: 14px 24px;
                font-size: 16px;
            }

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

            /* Force center alignment for all text on small screens */
            body {
                text-align: center;
            }

            .feature-benefits {
                text-align: left;
                margin-left: auto;
                margin-right: auto;
                max-width: 90%;
            }

            .container {
                padding: 0 10px;
            }
        }

        /* Accessibility */
        @media (prefers-reduced-motion: reduce) {
            * {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
            }
        }

        /* Focus states */
        button:focus,
        a:focus {
            outline: 2px solid var(--primary-blue);
            outline-offset: 2px;
        }

        /* Hidden content for screen readers */
        .sr-only {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            white-space: nowrap;
            border: 0;
        }

        /* Scroll Animation Classes */
        .fade-in-section {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.8s ease-out, transform 0.8s ease-out;
        }

        .fade-in-section.is-visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Reduce motion for accessibility */
        @media (prefers-reduced-motion: reduce) {
            .fade-in-section {
                opacity: 1;
                transform: none;
                transition: none;
            }
        }
