﻿        :root {
            --primary: #2563EB;
            --primary-light: #3B82F6;
            --primary-ultra-light: #EFF6FF;
            --accent: #059669;
            --accent-light: #D1FAE5;
            --gold: #F59E0B;
            --danger: #EF4444;
            --gradient-1: linear-gradient(135deg, #2563EB 0%, #059669 100%);
            --radius: 16px;
            --radius-sm: 10px;
            --radius-xs: 8px;
            --transition: 0.35s ease;
        }
        [data-theme="light"] {
            --bg: #FAFBFE;
            --bg-white: #FFFFFF;
            --bg-soft: #F1F5F9;
            --bg-card: #FFFFFF;
            --bg-hero: linear-gradient(160deg, #EFF6FF 0%, #F0FDF4 50%, #FAFBFE 100%);
            --text: #0F172A;
            --text-secondary: #475569;
            --text-muted: #64748B;
            --border: #E2E8F0;
            --border-light: #F1F5F9;
            --shadow-sm: 0 1px 3px rgba(15,23,42,0.04), 0 1px 2px rgba(15,23,42,0.06);
            --shadow-md: 0 4px 16px rgba(15,23,42,0.06), 0 2px 4px rgba(15,23,42,0.04);
            --shadow-lg: 0 12px 40px rgba(15,23,42,0.08), 0 4px 12px rgba(15,23,42,0.04);
            --shadow-xl: 0 20px 60px rgba(15,23,42,0.1), 0 8px 20px rgba(15,23,42,0.05);
            --nav-bg: rgba(255,255,255,0.85);
            --badge-bg: #FFFFFF;
            --chip-bg: #FFFFFF;
            --daily-bg: #D1FAE5;
            --daily-border: rgba(5,150,105,0.12);
            --discount-bg: #FEF2F2;
            --faq-card-bg: #FFFFFF;
            --cta-text: white;
            --cta-btn-bg: white;
            --cta-btn-color: #2563EB;
            --footer-bg: #FFFFFF;
            --shape-1: rgba(37,99,235,0.06);
            --shape-2: rgba(5,150,105,0.05);
            --shape-3: rgba(37,99,235,0.06);
            --featured-bg: #FFFFFF;
            --featured-border: #2563EB;
            --toggle-bg: #F1F5F9;
            --toggle-knob: #FFFFFF;
            --toggle-icon-active: #F59E0B;
            --toggle-icon-inactive: #94A3B8;
        }
        [data-theme="dark"] {
            --bg: #0A0E1A;
            --bg-white: #111827;
            --bg-soft: #0F1629;
            --bg-card: #111827;
            --bg-hero: linear-gradient(160deg, #0A0E1A 0%, #0F1629 50%, #0A0E1A 100%);
            --text: #E8ECF4;
            --text-secondary: #8B95AA;
            --text-muted: #828DA3;
            --border: rgba(255,255,255,0.06);
            --border-light: rgba(255,255,255,0.04);
            --shadow-sm: 0 1px 3px rgba(0,0,0,0.2);
            --shadow-md: 0 4px 16px rgba(0,0,0,0.25);
            --shadow-lg: 0 12px 40px rgba(0,0,0,0.3);
            --shadow-xl: 0 20px 60px rgba(0,0,0,0.4);
            --nav-bg: rgba(10,14,26,0.9);
            --badge-bg: rgba(0,87,255,0.1);
            --chip-bg: rgba(255,255,255,0.04);
            --daily-bg: rgba(0,212,170,0.06);
            --daily-border: rgba(0,212,170,0.12);
            --discount-bg: rgba(255,71,87,0.15);
            --faq-card-bg: #111827;
            --cta-text: white;
            --cta-btn-bg: white;
            --cta-btn-color: #2563EB;
            --footer-bg: #0A0E1A;
            --shape-1: rgba(0,87,255,0.12);
            --shape-2: rgba(0,212,170,0.08);
            --shape-3: rgba(0,87,255,0.08);
            --featured-bg: linear-gradient(160deg, rgba(0,87,255,0.08) 0%, #111827 40%);
            --featured-border: rgba(37,99,235,0.4);
            --toggle-bg: #1A2035;
            --toggle-knob: #2563EB;
            --toggle-icon-active: #E8ECF4;
            --toggle-icon-inactive: #5A6478;
        }
        * { margin: 0; padding: 0; box-sizing: border-box; }
        body {
            font-family: 'Noto Sans Georgian', 'Plus Jakarta Sans', sans-serif;
            background: var(--bg);
            color: var(--text);
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
            transition: background var(--transition), color var(--transition);
        }

        .theme-toggle {
            position: fixed;
            top: 14px;
            right: 14px;
            z-index: 200;
            display: flex;
            align-items: center;
            gap: 0;
            background: var(--toggle-bg);
            border: 1px solid var(--border);
            border-radius: 100px;
            padding: 3px;
            cursor: pointer;
            transition: all var(--transition);
            box-shadow: var(--shadow-sm);
        }
        .theme-toggle .toggle-option {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            transition: all var(--transition);
            position: relative;
            z-index: 1;
        }
        .theme-toggle .toggle-option.active {
            background: var(--toggle-knob);
            box-shadow: var(--shadow-sm);
        }

        .nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 100;
            padding: 10px 16px;
            transition: all var(--transition);
        }
        .nav.scrolled {
            background: var(--nav-bg);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid var(--border);
            box-shadow: var(--shadow-sm);
        }
        .nav-inner {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        .nav-brand {
            display: flex;
            align-items: center;
            text-decoration: none;
        }
        .nav-brand img, .nav-brand svg {
            height: 36px;
            width: auto;
        }
        [data-theme="dark"] .nav-logo-dark { display: block; }
        [data-theme="dark"] .nav-logo-light { display: none; }
        [data-theme="light"] .nav-logo-dark { display: none; }
        [data-theme="light"] .nav-logo-light { display: block; }
        .nav-links {
            display: none;
            align-items: center;
            gap: 28px;
        }
        .nav-links a {
            color: var(--text-secondary);
            text-decoration: none;
            font-size: 14px;
            font-weight: 600;
            transition: color 0.2s ease;
        }
        .nav-links a:hover { color: var(--primary); }
        .nav-cta {
            padding: 9px 22px !important;
            background: var(--primary) !important;
            color: white !important;
            border-radius: 100px;
        }

        .hero {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 80px 16px 60px;
            background: var(--bg-hero);
            overflow: hidden;
            transition: background var(--transition);
        }
        .hero-shape-1 {
            position: absolute;
            top: -80px;
            right: -120px;
            width: 300px;
            height: 300px;
            border-radius: 50%;
            background: radial-gradient(circle, var(--shape-1) 0%, transparent 70%);
            animation: drift 12s ease-in-out infinite;
        }
        .hero-shape-2 {
            position: absolute;
            bottom: -60px;
            left: -100px;
            width: 250px;
            height: 250px;
            border-radius: 50%;
            background: radial-gradient(circle, var(--shape-2) 0%, transparent 70%);
            animation: drift 10s ease-in-out infinite reverse;
        }
        .hero-shape-3 {
            position: absolute;
            top: 20%;
            left: 10%;
            width: 40px;
            height: 40px;
            border-radius: 12px;
            background: var(--shape-3);
            transform: rotate(45deg);
            animation: spin-slow 20s linear infinite;
        }
        .hero-shape-4 {
            position: absolute;
            top: 30%;
            right: 15%;
            width: 28px;
            height: 28px;
            border-radius: 50%;
            background: var(--shape-2);
            animation: drift 8s ease-in-out infinite;
        }
        [data-theme="dark"] .hero::after {
            content: '';
            position: absolute;
            inset: 0;
            background-image: 
                linear-gradient(rgba(255,255,255,0.015) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255,255,255,0.015) 1px, transparent 1px);
            background-size: 60px 60px;
            pointer-events: none;
        }
        @keyframes drift {
            0%, 100% { transform: translate(0,0); }
            50% { transform: translate(30px,-20px); }
        }
        @keyframes spin-slow {
            from { transform: rotate(45deg); }
            to { transform: rotate(405deg); }
        }
        .hero-content {
            position: relative;
            z-index: 2;
            text-align: center;
            max-width: 860px;
        }
        .badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 6px 14px;
            background: var(--badge-bg);
            border: 1px solid var(--border);
            border-radius: 100px;
            font-size: 11px;
            font-weight: 600;
            color: var(--primary);
            margin-bottom: 20px;
            box-shadow: var(--shadow-sm);
            animation: fadeInDown 0.8s ease;
        }
        [data-theme="dark"] .badge { color: #00D4AA; border-color: rgba(0,87,255,0.25); }
        .badge .dot {
            width: 7px;
            height: 7px;
            border-radius: 50%;
            background: var(--accent);
            animation: pulse 2s ease-in-out infinite;
        }
        @keyframes pulse {
            0%, 100% { opacity: 1; transform: scale(1); }
            50% { opacity: 0.5; transform: scale(0.8); }
        }
        .hero h1 {
            font-size: 30px;
            font-weight: 900;
            line-height: 1.18;
            margin-bottom: 18px;
            color: var(--text);
            animation: fadeInUp 0.8s ease 0.1s both;
        }
        .hero h1 .gradient-text {
            background: var(--gradient-1);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .hero-subtitle {
            font-size: 15px;
            color: var(--text-secondary);
            max-width: 560px;
            margin: 0 auto 32px;
            line-height: 1.7;
            animation: fadeInUp 0.8s ease 0.2s both;
            padding: 0 8px;
        }
        .hero-stats {
            display: flex;
            justify-content: center;
            gap: 8px;
            animation: fadeInUp 0.8s ease 0.3s both;
            flex-wrap: wrap;
        }
        .hero-stat-chip {
            display: flex;
            align-items: center;
            gap: 8px;
            background: var(--chip-bg);
            border: 1px solid var(--border);
            border-radius: 100px;
            padding: 7px 14px;
            box-shadow: var(--shadow-sm);
            transition: all var(--transition);
        }
        [data-theme="light"] .hero-stat-chip { background: var(--bg-white); }
        .hero-stat-chip .icon { font-size: 18px; }
        .hero-stat-chip .info .number {
            font-size: 15px;
            font-weight: 800;
            color: var(--text);
        }
        .hero-stat-chip .info .label {
            font-size: 10px;
            color: var(--text-muted);
            font-weight: 500;
        }
        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }
        @keyframes fadeInDown {
            from { opacity: 0; transform: translateY(-20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .scroll-indicator {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 2;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 4px;
            color: var(--text-muted);
            font-size: 11px;
            animation: bounce 2s ease-in-out infinite;
        }
        .scroll-indicator svg { width: 20px; height: 20px; stroke: var(--text-muted); }
        @keyframes bounce {
            0%, 100% { transform: translateX(-50%) translateY(0); }
            50% { transform: translateX(-50%) translateY(8px); }
        }

        .section {
            padding: 56px 16px;
            position: relative;
            transition: background var(--transition);
        }
        .container { max-width: 1200px; margin: 0 auto; }
        .section-header { text-align: center; margin-bottom: 36px; }
        .section-tag {
            display: inline-block;
            font-size: 11px;
            font-weight: 700;
            color: var(--primary);
            text-transform: uppercase;
            letter-spacing: 1.5px;
            margin-bottom: 10px;
        }
        [data-theme="dark"] .section-tag { color: #00D4AA; }
        .section-header h2 {
            font-size: 24px;
            font-weight: 800;
            margin-bottom: 10px;
            color: var(--text);
        }
        .section-header p {
            color: var(--text-secondary);
            font-size: 14px;
            max-width: 480px;
            margin: 0 auto;
            line-height: 1.6;
        }

        .steps-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 14px;
            position: relative;
        }
        .steps-grid::before { display: none; }
        .step-card {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: var(--radius);
            padding: 28px 20px;
            text-align: center;
            position: relative;
            transition: all var(--transition);
        }
        .step-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-lg);
            border-color: rgba(37,99,235,0.15);
        }
        .step-number {
            width: 46px;
            height: 46px;
            border-radius: 50%;
            background: var(--gradient-1);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            font-weight: 800;
            color: white;
            margin: 0 auto 16px;
            box-shadow: 0 4px 16px rgba(37,99,235,0.25);
        }
        .step-icon { font-size: 30px; margin-bottom: 12px; }
        .step-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; color: var(--text); }
        .step-card p { color: var(--text-secondary); font-size: 13px; line-height: 1.65; }

        .pricing-section { background: var(--bg-soft); }
        .pricing-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 14px;
        }
        .price-card {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: var(--radius);
            padding: 22px 20px;
            position: relative;
            transition: all var(--transition);
            overflow: hidden;
        }
        .price-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-xl);
            border-color: rgba(37,99,235,0.15);
        }
        .price-card.featured {
            border-color: var(--featured-border);
            background: var(--featured-bg);
        }
        [data-theme="light"] .price-card.featured {
            box-shadow: var(--shadow-lg), 0 0 0 1px var(--primary);
        }
        .price-card.featured::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: var(--gradient-1);
        }
        .popular-badge {
            display: block;
            width: fit-content;
            margin: 0 auto 12px;
            background: var(--gradient-1);
            color: white;
            padding: 5px 16px;
            border-radius: 100px;
            font-size: 11px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            text-align: center;
        }
        .price-card-header {
            display: flex;
            align-items: flex-start;
            justify-content: space-between;
            margin-bottom: 14px;
        }
        .validity-label {
            font-size: 11px;
            color: var(--text-muted);
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 2px;
        }
        .validity-days {
            font-size: 26px;
            font-weight: 900;
            color: var(--text);
        }
        .validity-days span { font-size: 14px; font-weight: 500; color: var(--text-secondary); }
        .price-block { text-align: right; }
        .original-price { font-size: 12px; color: var(--text-muted); text-decoration: line-through; margin-bottom: 2px; }
        .current-price { font-size: 24px; font-weight: 800; color: var(--accent); }
        .current-price .currency { font-size: 15px; font-weight: 600; }
        .discount-tag {
            display: inline-block;
            background: var(--discount-bg);
            color: var(--danger);
            font-size: 10px;
            font-weight: 700;
            padding: 2px 7px;
            border-radius: 6px;
            margin-left: 4px;
        }
        .price-divider { height: 1px; background: var(--border-light); margin: 14px 0; }
        .price-features { list-style: none; margin-bottom: 16px; }
        .price-features li {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 4px 0;
            font-size: 13px;
            color: var(--text-secondary);
        }
        .price-features li svg { width: 17px; height: 17px; flex-shrink: 0; color: var(--accent); }
        .daily-cost {
            display: flex;
            align-items: center;
            justify-content: space-between;
            background: var(--daily-bg);
            border: 1px solid var(--daily-border);
            border-radius: var(--radius-xs);
            padding: 10px 14px;
            margin-bottom: 14px;
        }
        .daily-cost .label { font-size: 12px; color: var(--text-secondary); }
        .daily-cost .value { font-size: 16px; font-weight: 700; color: var(--accent); }
        .btn {
            display: block;
            width: 100%;
            padding: 13px;
            border: none;
            border-radius: var(--radius-xs);
            font-family: inherit;
            font-size: 14px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.25s ease;
            text-align: center;
            text-decoration: none;
        }
        .btn-primary { background: var(--primary); color: white; }
        .btn-primary:hover {
            background: var(--primary-light);
            transform: translateY(-2px);
            box-shadow: 0 6px 24px rgba(37,99,235,0.3);
        }
        .btn-outline {
            background: var(--bg);
            color: var(--text);
            border: 1px solid var(--border);
        }
        .btn-outline:hover {
            border-color: var(--primary);
            color: var(--primary);
            background: var(--primary-ultra-light);
        }
        [data-theme="dark"] .btn-outline:hover { background: rgba(37,99,235,0.08); }

        .coverage-section {
            background: var(--bg-white);
            border-top: 1px solid var(--border-light);
            border-bottom: 1px solid var(--border-light);
        }
        .countries-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 8px;
            margin-top: 28px;
        }
        .country-tag {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 10px 12px;
            background: var(--bg);
            border: 1px solid var(--border-light);
            border-radius: var(--radius-xs);
            font-size: 12px;
            font-weight: 500;
            color: var(--text);
            transition: all 0.2s ease;
        }
        .country-tag:hover {
            background: var(--primary-ultra-light);
            border-color: rgba(37,99,235,0.15);
            transform: translateY(-2px);
        }
        [data-theme="dark"] .country-tag:hover { background: rgba(37,99,235,0.08); }
        .country-flag {
            width: 24px;
            height: 16px;
            border-radius: 3px;
            object-fit: cover;
            flex-shrink: 0;
        }

        .details-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 14px;
        }
        .detail-card {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: var(--radius);
            padding: 24px 20px;
            transition: all var(--transition);
        }
        .detail-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-md);
            border-color: rgba(37,99,235,0.12);
        }
        .detail-icon {
            width: 44px;
            height: 44px;
            border-radius: 12px;
            background: var(--primary-ultra-light);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            margin-bottom: 14px;
        }
        [data-theme="dark"] .detail-icon { background: rgba(37,99,235,0.1); }
        .detail-card h3 { font-size: 15px; font-weight: 700; margin-bottom: 6px; color: var(--text); }
        .detail-card p { font-size: 13px; color: var(--text-secondary); line-height: 1.65; }

        .faq-section { background: var(--bg-soft); }
        .faq-list { max-width: 760px; margin: 0 auto; }
        .faq-item {
            background: var(--faq-card-bg);
            border: 1px solid var(--border);
            border-radius: var(--radius-sm);
            margin-bottom: 8px;
            overflow: hidden;
            transition: all var(--transition);
        }
        .faq-item:hover { box-shadow: var(--shadow-sm); }
        .faq-question {
            width: 100%;
            background: none;
            border: none;
            color: var(--text);
            font-family: inherit;
            font-size: 14px;
            font-weight: 600;
            padding: 16px 18px;
            text-align: left;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            transition: color 0.2s ease;
        }
        .faq-question:hover { color: var(--primary); }
        .faq-question svg { width: 18px; height: 18px; flex-shrink: 0; transition: transform 0.3s ease; stroke: var(--text-muted); }
        .faq-item.active .faq-question svg { transform: rotate(45deg); stroke: var(--primary); }
        .faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
        .faq-item.active .faq-answer { max-height: 250px; }
        .faq-answer p { color: var(--text-secondary); font-size: 13px; line-height: 1.7; padding: 0 18px 16px; }

        .cta-section { text-align: center; }
        .cta-box {
            background: var(--gradient-1);
            border-radius: 20px;
            padding: 40px 20px;
            position: relative;
            overflow: hidden;
        }
        .cta-box::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 300px;
            height: 300px;
            border-radius: 50%;
            background: rgba(255,255,255,0.06);
        }
        .cta-box h2 { font-size: 22px; font-weight: 800; margin-bottom: 12px; color: white; position: relative; }
        .cta-box p { color: rgba(255,255,255,0.85); font-size: 14px; margin-bottom: 28px; max-width: 480px; margin-left: auto; margin-right: auto; position: relative; }
        .cta-btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 13px 30px;
            background: white;
            color: var(--primary);
            border: none;
            border-radius: 100px;
            font-family: inherit;
            font-size: 15px;
            font-weight: 700;
            cursor: pointer;
            text-decoration: none;
            transition: all 0.3s ease;
            position: relative;
        }
        .cta-btn:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(0,0,0,0.2); }

        .footer {
            padding: 32px 16px;
            text-align: center;
            border-top: 1px solid var(--border);
            background: var(--footer-bg);
            transition: all var(--transition);
        }
        .footer-brand { font-size: 18px; font-weight: 800; margin-bottom: 6px; color: var(--text); }
        .footer-brand .accent { color: var(--primary); }
        .footer p { color: var(--text-muted); font-size: 12px; }
        .footer-links { display: flex; justify-content: center; gap: 16px; margin-top: 12px; flex-wrap: wrap; }
        .footer-links a { color: var(--text-secondary); text-decoration: none; font-size: 12px; font-weight: 500; transition: color 0.2s ease; }
        .footer-links a:hover { color: var(--primary); }

        .reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
        .reveal.visible { opacity: 1; transform: translateY(0); }
        .reveal-delay-1 { transition-delay: 0.1s; }
        .reveal-delay-2 { transition-delay: 0.2s; }
        .reveal-delay-3 { transition-delay: 0.3s; }

        @media (min-width: 576px) {
            .countries-grid { grid-template-columns: repeat(3, 1fr); }
            .details-grid { grid-template-columns: repeat(2, 1fr); }
            .pricing-grid { grid-template-columns: repeat(2, 1fr); }
            .hero h1 { font-size: 36px; }
            .section-header h2 { font-size: 28px; }
        }

        @media (min-width: 769px) {
            .theme-toggle { top: 18px; right: 20px; padding: 4px; }
            .theme-toggle .toggle-option { width: 36px; height: 36px; font-size: 16px; }
            .nav { padding: 12px 20px; }
            .nav-brand { font-size: 22px; }
            .nav-links { display: flex; margin-right: 100px; }
            .hero { padding: 100px 20px 80px; }
            .hero-shape-1 { width: 500px; height: 500px; }
            .hero-shape-2 { width: 400px; height: 400px; }
            .hero h1 { font-size: clamp(40px, 5.5vw, 68px); line-height: 1.12; margin-bottom: 24px; }
            .hero-subtitle { font-size: clamp(16px, 2vw, 19px); margin: 0 auto 44px; padding: 0; }
            .hero-stats { gap: 16px; }
            .hero-stat-chip { padding: 10px 22px; gap: 10px; }
            .hero-stat-chip .info .number { font-size: 18px; }
            .badge { padding: 8px 20px; font-size: 13px; gap: 8px; margin-bottom: 28px; }
            .section { padding: 100px 20px; }
            .section-header { margin-bottom: 56px; }
            .section-header h2 { font-size: clamp(26px, 3.5vw, 42px); margin-bottom: 14px; }
            .section-header p { font-size: 16px; }
            .steps-grid { grid-template-columns: repeat(3, 1fr); gap: 28px; }
            .steps-grid::before {
                display: block;
                content: '';
                position: absolute;
                top: 52px;
                left: 18%;
                right: 18%;
                height: 2px;
                background: linear-gradient(90deg, transparent, var(--border), transparent);
            }
            .step-card { padding: 36px 24px; }
            .pricing-grid { grid-template-columns: repeat(auto-fit, minmax(310px, 1fr)); gap: 20px; }
            .price-card { padding: 28px; }
            .validity-days { font-size: 30px; }
            .current-price { font-size: 26px; }
            .countries-grid { grid-template-columns: repeat(auto-fill, minmax(155px, 1fr)); gap: 10px; margin-top: 36px; }
            .country-tag { padding: 11px 14px; font-size: 13px; }
            .details-grid { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; }
            .detail-card { padding: 28px; }
            .faq-question { font-size: 15px; padding: 20px 24px; }
            .cta-box { border-radius: 24px; padding: 64px 40px; }
            .cta-box h2 { font-size: clamp(24px, 4vw, 38px); margin-bottom: 14px; }
            .cta-box p { font-size: 16px; margin-bottom: 32px; }
            .footer { padding: 40px 20px; }
        }

/* ============================================================
   COMPARISON PAGE COMPONENTS  (X vs AviaeSIM)
   ============================================================ */
.breadcrumb { max-width: 1200px; margin: 0 auto; padding: 86px 16px 0; font-size: 12px; color: var(--text-muted); }
.breadcrumb a { color: var(--text-secondary); text-decoration: none; }
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb span { margin: 0 6px; opacity: 0.5; }

.compare-hero { padding: 26px 16px 44px; background: var(--bg-hero); position: relative; overflow: hidden; text-align: center; transition: background var(--transition); }
.compare-hero .container { position: relative; z-index: 2; }
.compare-hero h1 { font-size: 26px; font-weight: 900; line-height: 1.2; margin: 18px 0 12px; color: var(--text); }
.compare-hero h1 .gradient-text { background: var(--gradient-1); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.compare-hero .lead { font-size: 14px; color: var(--text-secondary); max-width: 580px; margin: 0 auto; line-height: 1.7; }

.vs-row { display: flex; align-items: center; justify-content: center; gap: 14px; margin: 4px auto 6px; flex-wrap: wrap; }
.vs-party { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.vs-party .vp-logo { width: 66px; height: 66px; border-radius: 18px; display: flex; align-items: center; justify-content: center; font-size: 26px; font-weight: 800; background: var(--bg-white); border: 1px solid var(--border); box-shadow: var(--shadow-md); color: var(--text); overflow: hidden; }
.vs-party .vp-logo img { width: 100%; height: 100%; object-fit: contain; padding: 10px; }
.vs-party.ours .vp-logo { background: var(--gradient-1); color: #fff; border: none; }
.vs-party .vp-name { font-size: 13px; font-weight: 700; color: var(--text); }
.vs-circle { width: 44px; height: 44px; border-radius: 50%; background: var(--bg-white); border: 2px solid var(--primary); color: var(--primary); display: flex; align-items: center; justify-content: center; font-weight: 900; font-size: 14px; box-shadow: var(--shadow-sm); flex-shrink: 0; }

.verdict-box { max-width: 760px; margin: 26px auto 0; background: var(--bg-card); border: 1px solid var(--border); border-left: 4px solid var(--accent); border-radius: var(--radius-sm); padding: 18px 20px; box-shadow: var(--shadow-sm); text-align: left; }
.verdict-box .vb-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--accent); margin-bottom: 6px; }
.verdict-box p { font-size: 14px; color: var(--text-secondary); line-height: 1.7; }
.verdict-box strong { color: var(--text); }

.ctable-wrap { max-width: 860px; margin: 0 auto; overflow-x: auto; border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow-sm); -webkit-overflow-scrolling: touch; }
.ctable { width: 100%; border-collapse: collapse; min-width: 460px; background: var(--bg-card); }
.ctable th, .ctable td { padding: 13px 14px; text-align: left; font-size: 13px; border-bottom: 1px solid var(--border-light); vertical-align: middle; }
.ctable thead th { font-size: 12px; font-weight: 800; color: var(--text); background: var(--bg-soft); }
.ctable thead th.col-ours { color: var(--primary); }
[data-theme="dark"] .ctable thead th.col-ours { color: #00D4AA; }
.ctable td.feat, .ctable th.feat { font-weight: 600; color: var(--text-secondary); white-space: nowrap; font-size: inherit; }
.ctable td.col-ours { background: var(--primary-ultra-light); font-weight: 700; color: var(--text); }
[data-theme="dark"] .ctable td.col-ours { background: rgba(37,99,235,0.08); }
.ctable tr:last-child td { border-bottom: none; }
.ctable .yes { color: var(--accent); font-weight: 700; }
.ctable .no { color: var(--text-muted); }

.wins-grid { display: grid; grid-template-columns: 1fr; gap: 14px; max-width: 860px; margin: 0 auto; }
.win-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 22px 20px; }
.win-card.ours { border-color: rgba(37,99,235,0.25); }
[data-theme="light"] .win-card.ours { box-shadow: var(--shadow-md); }
.win-card h3 { font-size: 15px; font-weight: 800; margin-bottom: 12px; display: flex; align-items: center; gap: 8px; color: var(--text); }
.win-card ul { list-style: none; }
.win-card li { display: flex; gap: 8px; padding: 5px 0; font-size: 13px; color: var(--text-secondary); line-height: 1.55; }
.win-card li svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 2px; }
.win-card.ours li svg { color: var(--accent); }
.win-card.theirs li svg { color: var(--text-muted); }

.price-compare { display: grid; grid-template-columns: 1fr; gap: 14px; max-width: 760px; margin: 0 auto; }
.pc-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 22px 20px; text-align: center; }
.pc-card.ours { border-color: var(--featured-border); background: var(--featured-bg); position: relative; overflow: hidden; }
.pc-card.ours::after { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--gradient-1); }
.pc-card .pc-name { font-size: 14px; font-weight: 700; color: var(--text); margin-bottom: 10px; }
.pc-card .pc-price { font-size: 28px; font-weight: 900; color: var(--text); }
.pc-card.ours .pc-price { color: var(--accent); }
.pc-card .pc-price span { font-size: 13px; font-weight: 600; color: var(--text-secondary); }
.pc-card .pc-sub { font-size: 12px; color: var(--text-muted); margin-top: 6px; }

.related-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; max-width: 860px; margin: 0 auto; }
.related-link { display: flex; align-items: center; justify-content: space-between; gap: 8px; padding: 12px 14px; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-xs); font-size: 13px; font-weight: 600; color: var(--text); text-decoration: none; transition: all 0.2s ease; }
.related-link:hover { border-color: var(--primary); color: var(--primary); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.related-link svg { width: 16px; height: 16px; flex-shrink: 0; opacity: 0.5; }

@media (min-width: 576px) {
    .wins-grid { grid-template-columns: 1fr 1fr; }
    .price-compare { grid-template-columns: 1fr 1fr; }
    .compare-hero h1 { font-size: 34px; }
}
@media (min-width: 769px) {
    .breadcrumb { padding: 96px 20px 0; }
    .compare-hero { padding: 34px 20px 60px; }
    .compare-hero h1 { font-size: clamp(34px, 4.5vw, 52px); margin: 22px 0 16px; }
    .compare-hero .lead { font-size: 16px; }
    .vs-party .vp-logo { width: 80px; height: 80px; font-size: 30px; }
    .vs-circle { width: 50px; height: 50px; font-size: 16px; }
    .ctable th, .ctable td { padding: 16px 20px; font-size: 14px; }
    .win-card { padding: 28px; }
}


/* ============================================================
   AUDIT ROUND 2 — robustness, a11y & no-JS fallback
   ============================================================ */
/* No-JS / crawler fallback: reveal-on-scroll must never hide content if JS is off */
html:not(.js) .reveal { opacity: 1 !important; transform: none !important; }

/* Visible keyboard focus for all interactive elements */
a:focus-visible,
button:focus-visible,
[role="button"]:focus-visible,
.faq-question:focus-visible,
.theme-toggle:focus-visible {
    outline: 3px solid var(--primary);
    outline-offset: 2px;
    border-radius: 6px;
}

/* Skip-to-content link (visible only on keyboard focus) */
.skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
    z-index: 300;
    background: var(--primary);
    color: #fff;
    padding: 10px 18px;
    border-radius: 0 0 10px 0;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
}
.skip-link:focus { left: 0; }

/* Respect users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
        scroll-behavior: auto !important;
    }
}

/* Intro prose block (unique indexable copy for SEO) */
.prose-block { max-width: 760px; margin: 0 auto; }
.prose-block p { font-size: 15px; line-height: 1.85; color: var(--text-secondary); margin-bottom: 14px; }
.prose-block p:last-child { margin-bottom: 0; }
.prose-block strong { color: var(--text); font-weight: 700; }
@media (min-width: 769px) { .prose-block p { font-size: 16px; } }


/* ============================================================
   COUNTRY LANDING PAGES (eSIM {Country})
   ============================================================ */
.country-flag-lg {
    width: 76px; height: 51px; border-radius: 10px; object-fit: cover;
    box-shadow: var(--shadow-md); border: 1px solid var(--border); margin: 0 auto 16px;
}
.btn-pill {
    display: inline-flex; align-items: center; gap: 8px; padding: 14px 32px;
    border-radius: 100px; font-family: inherit; font-size: 15px; font-weight: 700;
    text-decoration: none; cursor: pointer; transition: all 0.3s ease; border: none;
}
.btn-pill-primary { background: var(--primary); color: #fff; box-shadow: 0 6px 24px rgba(37,99,235,0.25); }
.btn-pill-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(37,99,235,0.35); color: #fff; }
.hero-cta-row { margin-top: 26px; display: flex; justify-content: center; }
@media (min-width: 769px) { .country-flag-lg { width: 92px; height: 61px; } }

/* Plan-tier table buy link + meta line (country pages) */
.tbl-buy { color: var(--primary); font-weight: 700; text-decoration: none; white-space: nowrap; }
[data-theme="dark"] .tbl-buy { color: #00D4AA; }
.tbl-buy:hover { text-decoration: underline; }
.plan-meta { text-align: center; font-size: 12px; color: var(--text-secondary); margin-top: 14px; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.plan-meta span { display: inline-flex; align-items: center; gap: 5px; }

/* ============================================================
   SITE FOOTER (multi-column) + LEGAL/STATIC PAGES
   ============================================================ */
.footer-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px 20px; max-width: 1100px; margin: 0 auto; text-align: left; }
.footer-brand-col p { color: var(--text-muted); font-size: 13px; line-height: 1.6; margin-top: 8px; max-width: 280px; }
.footer-col h4 { font-size: 12px; font-weight: 800; color: var(--text); margin-bottom: 12px; text-transform: uppercase; letter-spacing: 0.5px; }
.footer-col a { display: block; color: var(--text-secondary); text-decoration: none; font-size: 13px; padding: 4px 0; transition: color 0.2s ease; }
.footer-col a:hover { color: var(--primary); }
.footer-bottom { text-align: center; color: var(--text-muted); font-size: 12px; margin: 28px auto 0; padding-top: 20px; border-top: 1px solid var(--border-light); max-width: 1100px; }
@media (min-width: 769px) { .footer-grid { grid-template-columns: 2.2fr 1fr 1fr 1.2fr; gap: 40px; } }

.legal { max-width: 800px; margin: 0 auto; }
.legal .updated { font-size: 13px; color: var(--text-muted); margin-bottom: 22px; }
.legal h2 { font-size: 20px; font-weight: 800; color: var(--text); margin: 30px 0 12px; }
.legal h3 { font-size: 16px; font-weight: 700; color: var(--text); margin: 22px 0 8px; }
.legal p, .legal li { font-size: 15px; line-height: 1.8; color: var(--text-secondary); }
.legal p { margin-bottom: 14px; }
.legal ul { padding-left: 22px; margin-bottom: 16px; }
.legal li { margin-bottom: 6px; }
.legal strong { color: var(--text); font-weight: 700; }
.legal a { color: var(--primary); text-decoration: none; }
.legal a:hover { text-decoration: underline; }

.contact-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 26px 22px; text-align: center; transition: all var(--transition); }
.contact-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.contact-card .ci { font-size: 30px; margin-bottom: 12px; }
.contact-card h3 { font-size: 16px; font-weight: 700; color: var(--text); margin-bottom: 6px; }
.contact-card p, .contact-card a { font-size: 14px; color: var(--text-secondary); text-decoration: none; line-height: 1.6; }
.contact-card a:hover { color: var(--primary); }

