/* CSS Variables */
:root {
    --primary: #2d4a6f;
    --primary-light: #4299e1;
    --secondary: #718096;
    --accent: #ed8936;
    --success: #48bb78;
    --bg-light: #f7fafc;
    --bg-white: #ffffff;
    --text-dark: #1a365d;
    --text-body: #4a5568;
    --text-light: #718096;
    --border: #e2e8f0;
    --shadow: rgba(0, 0, 0, 0.1);
    --shadow-lg: rgba(0, 0, 0, 0.15);
    --radius: 8px;
    --radius-lg: 16px;
    --transition: all 0.2s ease;
}

/* Reset */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

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

h1, h2, h3, h4, h5, h6 {
    color: var(--text-dark);
    line-height: 1.3;
}

a {
    text-decoration: none;
    color: inherit;
}

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

/* Utility Classes */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    font-size: 15px;
    font-weight: 600;
    border-radius: var(--radius);
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-light) 0%, #3182ce 100%);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(66, 153, 225, 0.4);
}

.btn-secondary {
    background: white;
    color: var(--primary);
    border: 2px solid var(--primary);
}

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

.btn-large {
    padding: 16px 32px;
    font-size: 16px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 2px 10px var(--shadow);
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    font-size: 28px;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
}

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

.nav-link {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-body);
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-light);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
}

/* Hero Section */
.hero {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, #1a365d 0%, #2d4a6f 50%, #3182ce 100%);
    color: white;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 56px;
    margin-bottom: 20px;
    color: white;
}

.hero-subtitle {
    font-size: 20px;
    opacity: 0.9;
    margin-bottom: 40px;
    line-height: 1.6;
}

/* Selector Card */
.selector-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: 0 10px 40px var(--shadow-lg);
}

.selector-title {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    color: var(--text-dark);
    margin-bottom: 30px;
}

.selector-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    text-align: left;
}

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

.form-group select {
    width: 100%;
    padding: 14px 16px;
    font-size: 16px;
    font-family: inherit;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    background: white;
    color: var(--text-body);
    transition: var(--transition);
    cursor: pointer;
}

.form-group select:focus {
    outline: none;
    border-color: var(--primary-light);
    box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.1);
}

/* Features Section */
.features {
    padding: 80px 0;
    background: var(--bg-light);
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    text-align: center;
    margin-bottom: 10px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 50px;
}

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

.feature-card {
    background: white;
    padding: 30px;
    border-radius: var(--radius-lg);
    box-shadow: 0 2px 10px var(--shadow);
    transition: var(--transition);
}

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

.feature-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.feature-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
}

.feature-desc {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.5;
}

/* Pricing Section */
.pricing {
    padding: 80px 0;
    background: white;
}

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

.pricing-card {
    background: white;
    border: 2px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 30px;
    position: relative;
    transition: var(--transition);
}

.pricing-card:hover {
    border-color: var(--primary-light);
}

.pricing-card.featured {
    border-color: var(--primary-light);
    box-shadow: 0 8px 30px rgba(66, 153, 225, 0.2);
    transform: scale(1.05);
}

.featured-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary-light) 0%, #3182ce 100%);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

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

.pricing-tier {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
}

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

.pricing-price {
    text-align: center;
    margin-bottom: 20px;
}

.pricing-price .currency {
    font-size: 24px;
    vertical-align: top;
    color: var(--text-dark);
}

.pricing-price .amount {
    font-size: 48px;
    font-weight: 700;
    color: var(--text-dark);
}

.pricing-price .savings {
    display: block;
    font-size: 14px;
    color: var(--success);
    margin-top: 5px;
}

.pricing-features {
    list-style: none;
    margin-bottom: 25px;
}

.pricing-features li {
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
    font-size: 15px;
}

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

.pricing-card .btn {
    width: 100%;
}

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

.steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
}

.step {
    text-align: center;
    flex: 1;
    max-width: 250px;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-light) 0%, #3182ce 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 15px;
}

.step-title {
    font-size: 18px;
    margin-bottom: 8px;
}

.step-desc {
    font-size: 14px;
    color: var(--text-light);
}

.step-arrow {
    font-size: 30px;
    color: var(--primary-light);
}

/* About Section */
.about {
    padding: 80px 0;
    background: white;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-content p {
    margin-bottom: 20px;
    line-height: 1.8;
}

/* Footer */
.footer {
    background: #1a365d;
    color: white;
    padding: 60px 0 30px;
}

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

.footer-brand .logo-icon {
    font-size: 28px;
}

.footer-brand .logo-text {
    color: white;
}

.footer-tagline {
    margin-top: 15px;
    font-size: 14px;
    opacity: 0.8;
}

.footer-links h4 {
    color: white;
    font-size: 14px;
    margin-bottom: 20px;
}

.footer-links a {
    display: block;
    font-size: 14px;
    opacity: 0.8;
    margin-bottom: 10px;
    transition: var(--transition);
}

.footer-links a:hover {
    opacity: 1;
    color: var(--primary-light);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 14px;
    opacity: 0.8;
}

.payment-methods {
    display: flex;
    gap: 15px;
    align-items: center;
}

.payment-icon {
    padding: 4px 8px;
    background: rgba(255,255,255,0.1);
    border-radius: 4px;
    font-size: 12px;
}

/* Page Header */
.page-header {
    padding: 120px 0 40px;
    background: linear-gradient(135deg, #1a365d 0%, #2d4a6f 100%);
    color: white;
    text-align: center;
}

.page-title {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    margin-bottom: 10px;
    color: white;
}

.page-subtitle {
    font-size: 18px;
    opacity: 0.9;
}

/* Search Box */
.search-box {
    max-width: 500px;
    margin: 30px auto 0;
    position: relative;
}

.search-input {
    width: 100%;
    padding: 16px 20px 16px 50px;
    font-size: 16px;
    font-family: inherit;
    border: none;
    border-radius: 50px;
    background: white;
    box-shadow: 0 4px 15px var(--shadow);
}

.search-input:focus {
    outline: none;
    box-shadow: 0 4px 20px var(--shadow-lg);
}

.search-icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
}

/* Region Tabs */
.region-tabs {
    padding: 30px 0;
    background: white;
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 70px;
    z-index: 100;
}

.tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.tab {
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
    border: 2px solid var(--border);
    border-radius: 25px;
    background: white;
    cursor: pointer;
    transition: var(--transition);
}

.tab:hover {
    border-color: var(--primary-light);
}

.tab.active {
    background: var(--primary-light);
    border-color: var(--primary-light);
    color: white;
}

/* Countries Grid */
.countries-section {
    padding: 50px 0;
    background: var(--bg-light);
}

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

.country-card {
    background: white;
    padding: 25px;
    border-radius: var(--radius-lg);
    box-shadow: 0 2px 10px var(--shadow);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.country-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px var(--shadow);
}

.country-flag {
    font-size: 50px;
    margin-bottom: 15px;
}

.country-name {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.country-desc {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.4;
}

.country-price {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid var(--border);
    font-size: 14px;
    color: var(--success);
    font-weight: 600;
}

/* Mobile Responsive */
@media (max-width: 900px) {
    .hero-title {
        font-size: 40px;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .steps {
        flex-direction: column;
    }
    
    .step-arrow {
        transform: rotate(90deg);
    }
    
    .countries-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .product-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .nav-links {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .countries-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .page-title {
        font-size: 32px;
    }
    
    .tabs {
        flex-direction: column;
        align-items: stretch;
    }
    
    .category-grid {
        grid-template-columns: 1fr !important;
    }
}

/* Checkout Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

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

.modal {
    background: white;
    border-radius: var(--radius-lg);
    padding: 40px;
    max-width: 450px;
    width: 90%;
    transform: translateY(20px);
    transition: transform 0.3s;
}

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

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

.modal-title {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    margin-bottom: 5px;
}

.modal-subtitle {
    color: var(--text-light);
    font-size: 14px;
}

.modal-body {
    margin-bottom: 20px;
}

.order-summary {
    background: var(--bg-light);
    padding: 20px;
    border-radius: var(--radius);
    margin-bottom: 20px;
}

.order-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
}

.order-item:last-child {
    border-bottom: none;
}

.order-total {
    display: flex;
    justify-content: space-between;
    padding-top: 15px;
    font-weight: 700;
    font-size: 18px;
}

.modal-footer {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.modal-footer .btn {
    width: 100%;
}

.divider {
    text-align: center;
    color: var(--text-light);
    font-size: 14px;
    margin: 15px 0;
}

.divider::before,
.divider::after {
    content: '';
    display: inline-block;
    width: 40%;
    height: 1px;
    background: var(--border);
    vertical-align: middle;
    margin: 0 10px;
}

/* Success Page Styles */
.success-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 20px 60px;
}

.success-content {
    text-align: center;
    max-width: 500px;
}

.success-icon {
    font-size: 80px;
    margin-bottom: 20px;
}

.success-title {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    margin-bottom: 15px;
}

.success-desc {
    color: var(--text-light);
    margin-bottom: 30px;
}

.download-card {
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    padding: 30px;
    margin-bottom: 20px;
}

.download-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px;
    background: white;
    border-radius: var(--radius);
    margin-bottom: 10px;
}

.download-item:last-child {
    margin-bottom: 0;
}

.download-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.download-icon {
    font-size: 30px;
}

.download-name {
    font-weight: 600;
}

.download-size {
    font-size: 13px;
    color: var(--text-light);
}

.download-btn {
    padding: 10px 20px;
    background: var(--success);
    color: white;
    border: none;
    border-radius: var(--radius);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.download-btn:hover {
    background: #38a169;
}

/* Popular Destinations */
.popular-destinations {
    padding: 80px 0;
    background: var(--bg-light);
}

.popular-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.popular-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 25px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 2px 10px var(--shadow);
    border: 2px solid transparent;
}

.popular-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px var(--shadow);
    border-color: var(--primary-light);
}

.popular-flag {
    font-size: 50px;
    display: block;
    margin-bottom: 10px;
}

.popular-name {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.popular-tag {
    font-size: 12px;
    color: var(--primary-light);
    margin-bottom: 10px;
}

.popular-price {
    font-size: 14px;
    color: var(--success);
    font-weight: 600;
}

/* How It Works Visual */
.how-it-works-visual {
    padding: 80px 0;
    background: white;
}

.flow-diagram {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 20px;
    margin-top: 50px;
}

.flow-step {
    text-align: center;
    flex: 1;
    max-width: 200px;
    position: relative;
}

.flow-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-light) 0%, #3182ce 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    margin: 0 auto 15px;
}

.flow-number {
    position: absolute;
    top: -5px;
    right: calc(50% - 50px);
    width: 30px;
    height: 30px;
    background: var(--accent);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
}

.flow-step h3 {
    font-size: 16px;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.flow-step p {
    font-size: 13px;
    color: var(--text-light);
}

.flow-arrow {
    font-size: 24px;
    color: var(--primary-light);
    margin-top: 15px;
}

/* Preview Modal */
.preview-modal {
    max-width: 600px;
}

.preview-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.preview-flag {
    font-size: 60px;
}

.preview-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    margin-bottom: 5px;
}

.preview-info p {
    color: var(--text-light);
    font-size: 14px;
}

.preview-section {
    margin-bottom: 20px;
}

.preview-section h4 {
    font-size: 14px;
    color: var(--text-dark);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.preview-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    list-style: none;
}

.preview-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-body);
    padding: 8px 12px;
    background: var(--bg-light);
    border-radius: var(--radius);
}

.preview-list li .check {
    color: var(--success);
    font-weight: bold;
}

.preview-pricing {
    background: linear-gradient(135deg, #1a365d 0%, #2d4a6f 100%);
    color: white;
    padding: 20px;
    border-radius: var(--radius);
    margin-top: 20px;
}

.preview-pricing h4 {
    color: white;
    margin-bottom: 15px;
}

.preview-tiers {
    display: flex;
    gap: 10px;
}

.preview-tier {
    flex: 1;
    background: rgba(255,255,255,0.1);
    padding: 12px;
    border-radius: var(--radius);
    text-align: center;
}

.preview-tier-name {
    font-size: 12px;
    opacity: 0.8;
    display: block;
}

.preview-tier-price {
    font-size: 18px;
    font-weight: 700;
}

.preview-cta {
    margin-top: 20px;
}

.preview-cta .btn {
    width: 100%;
}

/* Eligibility Checker */
.eligibility-section {
    padding: 60px 0;
    background: var(--bg-light);
}

.eligibility-form {
    max-width: 600px;
    margin: 30px auto 0;
    background: white;
    padding: 30px;
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 20px var(--shadow);
}

.eligibility-result {
    margin-top: 20px;
    padding: 20px;
    background: #ebf8ff;
    border-radius: var(--radius);
    display: none;
}

.eligibility-result.show {
    display: block;
}

.eligibility-result h4 {
    color: var(--primary);
    margin-bottom: 10px;
}

.eligibility-list {
    list-style: none;
    margin-top: 15px;
}

.eligibility-list li {
    padding: 8px 0;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 10px;
}

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

.eligibility-note {
    margin-top: 15px;
    font-size: 13px;
    color: var(--text-light);
    font-style: italic;
}

/* Mobile Responsive Updates */
@media (max-width: 900px) {
    .popular-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .flow-diagram {
        flex-direction: column;
        align-items: center;
    }
    
    .flow-step {
        max-width: 300px;
    }
    
    .flow-arrow {
        transform: rotate(90deg);
    }
    
    .preview-list {
        grid-template-columns: 1fr;
    }
    
    .preview-tiers {
        flex-direction: column;
    }
}

@media (max-width: 600px) {
    .popular-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .popular-card {
        padding: 20px 15px;
    }
    
    .popular-flag {
        font-size: 40px;
    }
    
    .popular-name {
        font-size: 14px;
    }
}

/* Press Bar */
.press-bar {
    background: #f7fafc;
    padding: 30px 0;
    border-bottom: 1px solid var(--border);
}

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

.press-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-light);
    font-weight: 600;
}

.press-logos {
    display: flex;
    gap: 30px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}

.press-logo {
    font-size: 16px;
    color: var(--text-body);
    font-weight: 500;
    opacity: 0.7;
    transition: opacity 0.2s;
}

.press-logo:hover {
    opacity: 1;
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
    background: var(--bg-light);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: var(--radius-lg);
    box-shadow: 0 2px 10px var(--shadow);
}

.testimonial-header {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-bottom: 20px;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-info h4 {
    font-size: 16px;
    margin-bottom: 3px;
}

.testimonial-info p {
    font-size: 13px;
    color: var(--text-light);
    margin: 0;
}

.testimonial-stars {
    margin-top: 5px;
}

.testimonial-text {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-body);
    font-style: italic;
}

/* Verified Badge */
.verified-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: #f0fff4;
    color: var(--success);
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    margin-left: 8px;
}

.verified-badge::before {
    content: '✓';
}

.links-box .verified-badge {
    background: rgba(255,255,255,0.2);
    color: white;
}

@media (max-width: 900px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .press-bar .container {
        flex-direction: column;
        gap: 20px;
    }
}

/* Filter Bar */
.filter-bar {
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
    padding: 15px 0;
}

/* Step Zero */
.flow-step.step-zero {
    background: linear-gradient(135deg, #f0fff4 0%, #e6ffe6 100%);
    border-color: var(--success);
}

.flow-step.step-zero .flow-icon {
    background: var(--success);
}

.flow-step.step-zero .flow-number {
    background: var(--success);
    color: white;
}

/* Real Stories, Real Savings */
.savings-section {
    background: #f8fafc;
    padding: 80px 0;
}

.savings-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.savings-card {
    background: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    position: relative;
    overflow: hidden;
}

.savings-card.featured {
    border: 2px solid var(--primary);
}

.savings-card .featured-badge {
    position: absolute;
    top: 15px;
    right: -30px;
    background: var(--primary);
    color: white;
    padding: 5px 40px;
    font-size: 12px;
    font-weight: 600;
    transform: rotate(45deg);
}

.savings-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.savings-flag {
    font-size: 40px;
}

.savings-info h3 {
    margin: 0 0 5px;
    font-size: 20px;
    color: var(--text-heading);
}

.savings-tagline {
    margin: 0;
    font-size: 14px;
    color: var(--text-light);
}

.savings-budget {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e2e8f0;
}

.budget-amount {
    font-size: 36px;
    font-weight: 700;
    color: var(--success);
}

.budget-period {
    font-size: 16px;
    color: var(--text-light);
}

.savings-breakdown {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.breakdown-item {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
}

.breakdown-label {
    color: var(--text-body);
}

.breakdown-value {
    font-weight: 600;
    color: var(--text-heading);
}

.savings-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.highlight-badge {
    background: #f0f0ff;
    color: var(--primary);
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}

.savings-btn {
    width: 100%;
    text-align: center;
}

/* No Income Requirements */
.no-income-section {
    background: linear-gradient(135deg, var(--primary) 0%, #2d3748 100%);
    padding: 60px 0;
    color: white;
}

.no-income-content {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.no-income-icon {
    font-size: 60px;
    flex-shrink: 0;
}

.no-income-text h3 {
    color: white;
    margin: 0 0 15px;
    font-size: 28px;
}

.no-income-text p {
    font-size: 16px;
    line-height: 1.7;
    opacity: 0.95;
    margin-bottom: 20px;
}

.no-income-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}

.no-income-list li {
    padding: 8px 0;
    font-size: 16px;
}

.no-income-note {
    font-size: 14px !important;
    opacity: 0.85;
    font-style: italic;
}

@media (max-width: 900px) {
    .savings-grid {
        grid-template-columns: 1fr;
    }
    .no-income-content {
        flex-direction: column;
        text-align: center;
    }
    .no-income-icon {
        font-size: 48px;
    }
}

.filter-row {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.budget-filter {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.budget-filter input[type="checkbox"] {
    display: none;
}

.budget-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-body);
    transition: all 0.2s;
}

.budget-filter input:checked + .budget-label {
    background: #f0fff4;
    border-color: var(--success);
    color: var(--success);
}

.budget-icon {
    font-size: 16px;
}

.budget-hint {
    font-size: 11px;
    color: var(--text-light);
    font-weight: 400;
}

/* Country Badge */
.country-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #f0fff4;
    color: var(--success);
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
}

/* Coming Soon Modal */
.coming-soon-modal {
    max-width: 450px;
}

.coming-soon-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.coming-soon-flag {
    font-size: 48px;
}

.coming-soon-info h3 {
    margin: 0 0 5px;
    font-size: 22px;
    color: var(--text-heading);
}

.coming-soon-subtitle {
    color: var(--warning);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0;
}

.coming-soon-text {
    font-size: 15px;
    color: var(--text-body);
    line-height: 1.6;
    margin-bottom: 25px;
}

.waitlist-form .form-group {
    margin-bottom: 15px;
}

.waitlist-form input {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 15px;
    transition: border-color 0.2s;
}

.waitlist-form input:focus {
    outline: none;
    border-color: var(--primary);
}

.waitlist-note {
    font-size: 12px;
    color: var(--text-light);
    text-align: center;
    margin-top: 12px;
}

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

/* Newsletter Section */
.newsletter-section {
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    padding: 80px 20px;
    text-align: center;
}

.newsletter-content {
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.newsletter-section h2 {
    color: white;
    font-size: 32px;
    margin-bottom: 15px;
}

.newsletter-section p {
    color: rgba(255,255,255,0.9);
    font-size: 18px;
    margin-bottom: 30px;
}

.newsletter-form {
    display: flex;
    gap: 12px;
    max-width: 500px;
    margin: 0 auto 15px;
}

.newsletter-input {
    flex: 1;
    padding: 16px 20px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    background: white;
}

.newsletter-section .btn-primary {
    background: #10b981;
    color: white;
    padding: 16px 32px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.newsletter-section .btn-primary:hover {
    background: #059669;
}

.newsletter-note {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
}

.newsletter-note a {
    color: white;
    text-decoration: underline;
}

@media (max-width: 600px) {
    .newsletter-form {
        flex-direction: column;
    }
}