/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Colors */
    --color-primary: #0f172a;
    --color-primary-light: #1e293b;
    --color-primary-dark: #020617;
    --color-secondary: #3b82f6;
    --color-secondary-light: #60a5fa;
    --color-secondary-dark: #2563eb;
    --color-background: #ffffff;
    --color-surface: #f8fafc;
    --color-text: #1e293b;
    --color-text-muted: #64748b;
    --color-border: #e2e8f0;
    --color-success: #10b981;
    --color-warning: #f59e0b;
    --color-error: #ef4444;
    
    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    
    /* Typography */
    --font-sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    --font-mono: 'SF Mono', Monaco, 'Cascadia Code', 'Roboto Mono', Consolas, 'Courier New', monospace;
    
    /* Breakpoints */
    --breakpoint-sm: 640px;
    --breakpoint-md: 768px;
    --breakpoint-lg: 1024px;
    --breakpoint-xl: 1280px;
    
    /* Other */
    --radius: 0.5rem;
    --shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
}

/* Base */
html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    color: var(--color-text);
    background-color: var(--color-background);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.125rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: var(--space-md);
}

a {
    color: var(--color-secondary);
    text-decoration: none;
    transition: color 0.2s ease;
}

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

/* Utility Classes */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

/* Updated Color Variables for New Design */
:root {
    --color-urgency: #ef4444;
    --color-urgency-light: #fef2f2;
    --color-urgency-dark: #dc2626;
}

.text-center { text-align: center; }
.text-white { color: white !important; }
.bg-light { background-color: var(--color-surface); }
.bg-primary { background-color: var(--color-primary); }
.mt-8 { margin-top: 2rem; }
.w-full { width: 100%; }
.max-w-4xl { max-width: 56rem; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* Grid System */
.grid {
    display: grid;
    gap: var(--space-lg);
}

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

.grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

/* Components */

/* Button */
.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-lg);
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: none;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
}

.btn::after {
    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;
}

.btn:hover::after {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: var(--color-secondary);
    border: 1px solid rgba(59, 130, 246, 0.3);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-secondary:hover {
    background: rgba(59, 130, 246, 0.1);
    color: var(--color-secondary);
    border-color: var(--color-secondary);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.2);
}

.btn-white {
    background: rgba(255, 255, 255, 0.95);
    color: var(--color-primary);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-white:hover {
    background: white;
    color: var(--color-primary);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.btn-outline-white {
    background-color: transparent;
    color: white;
    border: 1px solid white;
}

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

.btn-sm {
    padding: var(--space-xs) var(--space-md);
    font-size: 0.875rem;
}

.btn-icon {
    width: 1rem;
    height: 1rem;
}

/* Badge */
.badge {
    display: inline-block;
    padding: var(--space-xs) var(--space-sm);
    background-color: var(--color-secondary);
    color: white;
    border-radius: var(--radius);
    font-size: 0.875rem;
    font-weight: 500;
}

/* Card */
.card {
    background-color: var(--color-background);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    padding: var(--space-lg);
    transition: box-shadow 0.2s ease;
}

.card:hover {
    box-shadow: var(--shadow-md);
}

.card-title {
    font-size: 1.25rem;
    margin-bottom: var(--space-sm);
}

.card-description {
    color: var(--color-text-muted);
    margin-bottom: var(--space-md);
}

.card-list {
    list-style: none;
}

.card-list li {
    padding: var(--space-xs) 0;
    color: var(--color-text-muted);
}

.card-list li:before {
    content: "• ";
    color: var(--color-secondary);
    font-weight: bold;
    margin-right: var(--space-xs);
}

/* Header */
.header {
    position: sticky;
    top: 0;
    z-index: 50;
    background-color: white;
    border-bottom: 1px solid var(--color-border);
    backdrop-filter: blur(8px);
    background-color: rgba(255, 255, 255, 0.95);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 4rem;
}

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

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

.logo-icon {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--color-secondary);
}

.logo-text {
    font-weight: 700;
}

/* Navigation */
.nav-desktop {
    display: none;
    gap: var(--space-xl);
}

.nav-link {
    font-weight: 500;
    color: var(--color-text);
    transition: color 0.2s ease;
}

.nav-link:hover {
    color: var(--color-secondary);
}

.mobile-menu-toggle {
    display: block;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--space-sm);
}

.menu-icon {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--color-text);
}

.nav-mobile {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: white;
    border-bottom: 1px solid var(--color-border);
    padding: var(--space-md);
    box-shadow: var(--shadow-md);
}

.nav-mobile .nav-link {
    display: block;
    padding: var(--space-sm) 0;
}

/* Sections */
.section {
    padding: var(--space-3xl) 0;
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-2xl);
}

.section-title {
    font-size: 2rem;
    margin-bottom: var(--space-md);
}

.section-description {
    font-size: 1.125rem;
    color: var(--color-text-muted);
    max-width: 800px;
    margin: 0 auto;
}

/* Hero Section */
.hero {
    position: relative;
    padding: var(--space-3xl) 0 var(--space-2xl);
    background: linear-gradient(135deg, #0a0e1a 0%, #0f172a 25%, #1e293b 50%, #1e3a5f 75%, #1e293b 100%);
    overflow: hidden;
    min-height: 90vh;
    display: flex;
    align-items: center;
    color: white;
}

/* Floating Particles */
.hero::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
    opacity: 0.6;
    background-image: 
        radial-gradient(2px 2px at 20% 30%, white, transparent),
        radial-gradient(2px 2px at 60% 70%, white, transparent),
        radial-gradient(1px 1px at 50% 50%, white, transparent),
        radial-gradient(1px 1px at 80% 10%, white, transparent),
        radial-gradient(2px 2px at 90% 60%, white, transparent);
    background-size: 300px 300px;
    background-position: 0 0, 150px 150px, 100px 50px, 200px 100px, 50px 200px;
    animation: float-particles 120s linear infinite;
}

@keyframes float-particles {
    0% { transform: translateY(0); }
    100% { transform: translateY(-100vh); }
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at top left, rgba(59, 130, 246, 0.15) 0%, transparent 40%),
        radial-gradient(ellipse at bottom right, rgba(139, 92, 246, 0.1) 0%, transparent 40%),
        radial-gradient(ellipse at center, rgba(34, 197, 94, 0.08) 0%, transparent 60%);
    animation: gradient-morph 15s ease-in-out infinite;
}

@keyframes gradient-morph {
    0%, 100% { opacity: 1; transform: scale(1) rotate(0deg); }
    33% { opacity: 0.8; transform: scale(1.1) rotate(120deg); }
    66% { opacity: 0.9; transform: scale(0.95) rotate(240deg); }
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(139, 92, 246, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(34, 197, 94, 0.06) 0%, transparent 50%);
    animation: pattern-float 30s ease-in-out infinite;
}

@keyframes pattern-float {
    0%, 100% { transform: translate(0, 0); }
    33% { transform: translate(20px, -20px); }
    66% { transform: translate(-20px, 20px); }
}

.hero-content-centered {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.badge-animated {
    display: inline-block;
    animation: fadeInDown 0.6s ease-out;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: var(--space-md);
    animation: fadeInUp 0.8s ease-out 0.2s both;
    font-weight: 800;
    background: linear-gradient(135deg, #ffffff 0%, #cbd5e1 25%, #ffffff 50%, #ddd6fe 75%, #ffffff 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.3));
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

@keyframes gradient-text {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.highlight {
    color: var(--color-secondary);
    position: relative;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--color-secondary);
    transform: scaleX(0);
    transform-origin: right;
    animation: underlineReveal 0.8s ease-out 0.8s forwards;
}

.hero-subtitle {
    font-size: 2rem;
    font-weight: 400;
    color: var(--color-text-muted);
    margin-bottom: var(--space-lg);
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--color-text-muted);
    margin-bottom: var(--space-2xl);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: var(--space-3xl);
    margin-bottom: var(--space-2xl);
    animation: fadeInUp 0.8s ease-out 0.5s both;
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1;
    margin-bottom: var(--space-xs);
}

.stat-label {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero-actions {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: var(--space-2xl);
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.btn-glow {
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 4px 15px rgba(59, 130, 246, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.btn-glow:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 
        0 8px 30px rgba(59, 130, 246, 0.5),
        0 0 60px rgba(59, 130, 246, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.btn-glow::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.3) 0%, transparent 70%);
    animation: pulse-glow 3s ease-in-out infinite;
    pointer-events: none;
}

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

.btn-glow::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn-glow:hover::before {
    left: 100%;
}

.hero-preview-banner {
    margin-top: var(--space-2xl);
    animation: fadeIn 1s ease-out 0.8s both;
}

.slideshow-container {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 8.5 / 11; /* Letter/A4 page ratio */
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.hero-preview-img {
    width: 100%;
    max-width: 900px;
    height: auto;
    border-radius: var(--radius);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.slideshow-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.slideshow-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    z-index: 10;
    opacity: 1;
}

.slideshow-nav:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: translateY(-50%) scale(1.1);
}

.slideshow-nav svg {
    width: 20px;
    height: 20px;
    color: white;
    stroke-width: 2.5;
}

.slideshow-nav-prev {
    left: 20px;
}

.slideshow-nav-next {
    right: 20px;
}

.slideshow-dots {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 10;
    padding: 6px 12px;
    background: rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
}

.slideshow-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    border: none;
    background: rgba(0, 0, 0, 0.3);
    cursor: pointer;
    transition: all 0.2s ease;
}

.slideshow-dot:hover {
    background: rgba(0, 0, 0, 0.5);
}

.slideshow-dot.active {
    background: var(--color-primary);
    width: 18px;
    border-radius: 3px;
}

@media (max-width: 768px) {
    .slideshow-nav {
        width: 36px;
        height: 36px;
    }
    
    .slideshow-nav svg {
        width: 18px;
        height: 18px;
    }
    
    .slideshow-nav-prev {
        left: 10px;
    }
    
    .slideshow-nav-next {
        right: 10px;
    }
    
    .slideshow-container {
        aspect-ratio: 1 / 1.3; /* Portrait ratio for mobile */
        max-width: 600px;
    }
    
    .slideshow-dots {
        padding: 4px 8px;
        gap: 4px;
    }
    
    .slideshow-dot {
        width: 5px;
        height: 5px;
    }
    
    .slideshow-dot.active {
        width: 15px;
    }
}

/* Animations */
@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);
    }
}

@keyframes underlineReveal {
    to {
        transform: scaleX(1);
        transform-origin: left;
    }
}

.visual-placeholder {
    background-color: var(--color-surface);
    border-radius: var(--radius);
    overflow: hidden;
}

/* Tabs */
.tabs {
    width: 100%;
}

.tab-list {
    display: flex;
    gap: var(--space-xs);
    border-bottom: 2px solid var(--color-border);
    margin-bottom: var(--space-xl);
}

.tab-list-centered {
    display: flex;
    justify-content: center;
    gap: var(--space-md);
    margin-bottom: var(--space-2xl);
    border-bottom: 2px solid var(--color-border);
}

.tab-button {
    background: none;
    border: none;
    padding: var(--space-md) var(--space-xl);
    font-weight: 600;
    font-size: 1.125rem;
    color: var(--color-text-muted);
    cursor: pointer;
    transition: all 0.2s ease;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
}

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

.tab-button.active {
    color: var(--color-secondary);
    border-bottom-color: var(--color-secondary);
}

.tab-content {
    animation: fadeIn 0.3s ease;
}

.tab-panels {
    margin-top: var(--space-xl);
    min-height: 400px;
    position: relative;
}

.tab-panel {
    animation: fadeIn 0.3s ease;
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
}

.tab-panel[x-show="false"] {
    display: none !important;
}

/* Info Cards for Tabs */
.info-card {
    background-color: white;
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    padding: var(--space-xl);
    transition: all 0.2s ease;
    height: 100%;
}

.info-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--color-secondary);
}

.info-card-header {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
}

.info-icon {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--color-secondary);
    flex-shrink: 0;
}

.info-card-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin: 0;
}

.info-card-text {
    color: var(--color-text-muted);
    font-size: 0.875rem;
    line-height: 1.6;
    margin: 0;
}

/* Content Card */
.content-card {
    background-color: white;
    padding: var(--space-xl);
    border-radius: var(--radius);
    border: 1px solid var(--color-border);
}

.content-card h3 {
    margin-bottom: var(--space-md);
}

/* Feature List */
.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    padding: var(--space-sm) 0;
    padding-left: var(--space-xl);
    position: relative;
}

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

/* Country Grid */
#countries {
    position: relative;
    background: linear-gradient(180deg, white 0%, var(--color-surface) 100%);
}

.country-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: var(--space-md);
    margin-bottom: var(--space-2xl);
}

.country-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: var(--space-lg);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    color: var(--color-text);
    position: relative;
    overflow: hidden;
    opacity: 0;
    animation: fadeInScale 0.6s ease-out forwards;
}

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

.country-card:nth-child(n) { animation-delay: calc(0.03s * var(--i)); }
.country-card:nth-child(1) { --i: 1; }
.country-card:nth-child(2) { --i: 2; }
.country-card:nth-child(3) { --i: 3; }
.country-card:nth-child(4) { --i: 4; }
.country-card:nth-child(5) { --i: 5; }
.country-card:nth-child(6) { --i: 6; }
.country-card:nth-child(7) { --i: 7; }
.country-card:nth-child(8) { --i: 8; }
.country-card:nth-child(9) { --i: 9; }
.country-card:nth-child(10) { --i: 10; }
.country-card:nth-child(11) { --i: 11; }
.country-card:nth-child(12) { --i: 12; }
.country-card:nth-child(13) { --i: 13; }
.country-card:nth-child(14) { --i: 14; }
.country-card:nth-child(15) { --i: 15; }
.country-card:nth-child(16) { --i: 16; }
.country-card:nth-child(17) { --i: 17; }
.country-card:nth-child(18) { --i: 18; }
.country-card:nth-child(19) { --i: 19; }
.country-card:nth-child(20) { --i: 20; }
.country-card:nth-child(21) { --i: 21; }
.country-card:nth-child(22) { --i: 22; }
.country-card:nth-child(23) { --i: 23; }
.country-card:nth-child(24) { --i: 24; }
.country-card:nth-child(25) { --i: 25; }
.country-card:nth-child(26) { --i: 26; }
.country-card:nth-child(27) { --i: 27; }
.country-card:nth-child(28) { --i: 28; }
.country-card:nth-child(29) { --i: 29; }
.country-card:nth-child(30) { --i: 30; }
.country-card:nth-child(31) { --i: 31; }

.country-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(59, 130, 246, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.country-card:hover::before {
    opacity: 1;
}

.country-card:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.2);
    border-color: var(--color-secondary);
    background: white;
}

.country-flag {
    font-size: 3.5rem;
    margin-bottom: var(--space-sm);
    transition: transform 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.country-card:hover .country-flag {
    transform: scale(1.2) rotate(5deg);
}

.country-name {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: var(--space-xs);
    color: var(--color-text);
}

.country-info {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    transition: color 0.3s ease;
}

.country-card:hover .country-info {
    color: var(--color-secondary);
}

/* Feature Card */
.feature-card {
    padding: var(--space-xl);
    background-color: white;
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    transition: all 0.2s ease;
}

.feature-card:hover {
    box-shadow: var(--shadow-md);
}

.feature-icon {
    width: 3rem;
    height: 3rem;
    margin-bottom: var(--space-md);
    color: var(--color-secondary);
}

.feature-title {
    font-size: 1.25rem;
    margin-bottom: var(--space-sm);
}

.feature-description {
    color: var(--color-text-muted);
    margin-bottom: var(--space-md);
}

.feature-link {
    font-weight: 500;
    color: var(--color-secondary);
}

/* Resource Card */
.resource-card {
    padding: var(--space-lg);
    background-color: white;
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    text-align: center;
}

.resource-title {
    font-size: 1.25rem;
    margin-bottom: var(--space-sm);
}

.resource-description {
    color: var(--color-text-muted);
    margin-bottom: var(--space-md);
}

/* CTA Section */
.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    color: white;
    margin-bottom: var(--space-md);
}

.cta-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.125rem;
    margin-bottom: var(--space-xl);
}

.cta-actions {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer */
.footer {
    background-color: var(--color-primary);
    color: white;
    padding: var(--space-2xl) 0 var(--space-lg);
}

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

.footer-section {
    min-width: 200px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    color: white;
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: var(--space-md);
}

.footer-logo:hover {
    color: white;
}

.footer-logo .logo-icon {
    color: white;
}

.footer-title {
    font-size: 1rem;
    margin-bottom: var(--space-md);
    color: white;
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.footer-nav a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
}

.footer-nav a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: var(--space-xl);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Alpine.js transitions */
[x-cloak] {
    display: none !important;
}

/* Responsive Design */
@media (min-width: 768px) {
    .nav-desktop {
        display: flex;
    }
    
    .mobile-menu-toggle {
        display: none;
    }
    
    .hero-title {
        font-size: 4rem;
    }
    
    .hero-subtitle {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        gap: var(--space-3xl);
    }
}

@media (min-width: 1024px) {
    h1 { font-size: 3rem; }
    h2 { font-size: 2.5rem; }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .hero-title {
        font-size: 4rem;
    }
}

/* New Landing Page Styles */

/* Button Sizes */
.btn-lg {
    padding: var(--space-md) var(--space-xl);
    font-size: 1.125rem;
}

.btn-xl {
    padding: var(--space-lg) var(--space-2xl);
    font-size: 1.25rem;
    font-weight: 600;
}

/* Guide Preview */
.guide-preview {
    position: relative;
    max-width: 500px;
    margin: 0 auto;
}

.guide-preview-img {
    width: 100%;
    height: auto;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
}

.preview-badge {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    background-color: var(--color-success);
    color: white;
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 0.875rem;
}

/* Pain Points Section */
.pain-points {
    position: relative;
    background: linear-gradient(135deg, #fef3c7 0%, #fed7aa 100%);
    padding: var(--space-3xl) 0;
    overflow: hidden;
}

.pain-points::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(251, 191, 36, 0.1) 0%, transparent 70%);
    animation: float 20s ease-in-out infinite;
}

.pain-point-content {
    position: relative;
    text-align: center;
    z-index: 1;
}

.pain-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: var(--space-2xl);
    line-height: 1.4;
    animation: fadeInUp 0.8s ease-out;
}

.pain-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-xl);
    max-width: 1000px;
    margin: 0 auto;
}

.pain-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    padding: var(--space-xl);
    border-radius: var(--radius);
    border: 1px solid rgba(251, 191, 36, 0.2);
    transition: all 0.3s ease;
    animation: fadeInUp 0.8s ease-out;
}

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

.pain-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(251, 191, 36, 0.2);
    background: rgba(255, 255, 255, 0.95);
}

.pain-icon {
    width: 3.5rem;
    height: 3.5rem;
    color: var(--color-warning);
    margin-bottom: var(--space-md);
    animation: pulse 2s ease-in-out infinite;
}

.pain-item h3 {
    font-size: 1.25rem;
    color: var(--color-text);
    margin: 0;
    font-weight: 600;
}

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

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

/* Guide Features Section */
#whats-inside {
    position: relative;
    background: linear-gradient(180deg, var(--color-surface) 0%, white 100%);
}

.guide-features {
    display: grid;
    gap: var(--space-md);
    max-width: 900px;
    margin: 0 auto;
}

.feature-item {
    display: flex;
    gap: var(--space-lg);
    align-items: start;
    background: white;
    padding: var(--space-lg);
    border-radius: var(--radius);
    border: 1px solid var(--color-border);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    animation: slideInLeft 0.8s ease-out both;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.05), transparent);
    transition: left 0.5s ease;
}

.feature-item:hover::before {
    left: 100%;
}

.feature-item:nth-child(1) { animation-delay: 0.1s; }
.feature-item:nth-child(2) { animation-delay: 0.15s; }
.feature-item:nth-child(3) { animation-delay: 0.2s; }
.feature-item:nth-child(4) { animation-delay: 0.25s; }
.feature-item:nth-child(5) { animation-delay: 0.3s; }
.feature-item:nth-child(6) { animation-delay: 0.35s; }
.feature-item:nth-child(7) { animation-delay: 0.4s; }
.feature-item:nth-child(8) { animation-delay: 0.45s; }

.feature-item:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 20px rgba(59, 130, 246, 0.1);
    border-color: var(--color-secondary-light);
}

.feature-check {
    width: 2rem;
    height: 2rem;
    color: var(--color-success);
    flex-shrink: 0;
    margin-top: 0.125rem;
    animation: checkmark 0.6s ease-out;
    animation-delay: inherit;
}

.feature-content h3 {
    font-size: 1.25rem;
    margin-bottom: var(--space-xs);
    color: var(--color-text);
    font-weight: 600;
}

.feature-content p {
    color: var(--color-text-muted);
    margin: 0;
    font-size: 0.9375rem;
    line-height: 1.5;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes checkmark {
    0% {
        transform: scale(0) rotate(-45deg);
    }
    50% {
        transform: scale(1.2) rotate(15deg);
    }
    100% {
        transform: scale(1) rotate(0deg);
    }
}

/* Trust Section */
.trust-section {
    position: relative;
    background: linear-gradient(135deg, white 0%, var(--color-surface) 100%);
    overflow: hidden;
}

.trust-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 30% 20%, rgba(59, 130, 246, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 70% 80%, rgba(16, 185, 129, 0.05) 0%, transparent 40%);
}

.trust-content {
    position: relative;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-xl);
    margin-bottom: var(--space-3xl);
    z-index: 1;
}

.trust-item {
    text-align: center;
    padding: var(--space-xl);
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border-radius: var(--radius);
    border: 1px solid rgba(59, 130, 246, 0.1);
    transition: all 0.3s ease;
    animation: fadeInUp 0.8s ease-out both;
}

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

.trust-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.15);
    background: rgba(255, 255, 255, 0.9);
}

.trust-icon {
    width: 4rem;
    height: 4rem;
    color: var(--color-secondary);
    margin-bottom: var(--space-md);
    transition: transform 0.3s ease;
}

.trust-item:hover .trust-icon {
    transform: scale(1.1) rotate(5deg);
}

.trust-item h3 {
    font-size: 1.5rem;
    margin-bottom: var(--space-sm);
    color: var(--color-text);
    font-weight: 700;
}

.trust-item p {
    color: var(--color-text-muted);
    margin: 0;
    font-size: 1rem;
}

/* Testimonials */
.testimonials {
    position: relative;
    background: linear-gradient(135deg, var(--color-surface) 0%, rgba(59, 130, 246, 0.05) 100%);
    padding: var(--space-3xl);
    border-radius: var(--radius);
    margin-top: var(--space-2xl);
    overflow: hidden;
}

.testimonials::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 20px;
    font-size: 200px;
    color: rgba(59, 130, 246, 0.1);
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonials-title {
    position: relative;
    text-align: center;
    font-size: 2rem;
    margin-bottom: var(--space-2xl);
    color: var(--color-text);
    font-weight: 700;
    z-index: 1;
}

.testimonial-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--space-xl);
    z-index: 1;
}

.testimonial {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: var(--space-xl);
    border-radius: var(--radius);
    border: 1px solid rgba(59, 130, 246, 0.1);
    transition: all 0.3s ease;
    animation: fadeInUp 0.8s ease-out both;
}

.testimonial:nth-child(1) { animation-delay: 0.4s; }
.testimonial:nth-child(2) { animation-delay: 0.5s; }
.testimonial:nth-child(3) { animation-delay: 0.6s; }

.testimonial:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.15);
}

.testimonial-text {
    font-size: 1.125rem;
    font-style: italic;
    margin-bottom: var(--space-lg);
    color: var(--color-text);
    line-height: 1.6;
    position: relative;
}

.testimonial-text::before,
.testimonial-text::after {
    content: '"';
    font-size: 1.5rem;
    color: var(--color-secondary);
    position: absolute;
}

.testimonial-text::before {
    top: -5px;
    left: -20px;
}

.testimonial-text::after {
    bottom: -20px;
    right: -20px;
}

.testimonial-author {
    font-weight: 700;
    color: var(--color-secondary);
    font-size: 1rem;
    text-align: right;
}

/* Who Needs Section */
.who-needs {
    position: relative;
    background: linear-gradient(180deg, var(--color-surface) 0%, white 50%, var(--color-surface) 100%);
    overflow: hidden;
}

.who-needs::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(59, 130, 246, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(16, 185, 129, 0.03) 0%, transparent 50%);
    animation: rotate 30s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.target-audience {
    position: relative;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-xl);
    z-index: 1;
}

.audience-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: var(--space-2xl);
    border-radius: var(--radius);
    text-align: center;
    border: 1px solid var(--color-border);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.8s ease-out both;
}

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

.audience-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-secondary), var(--color-success));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.audience-card:hover::before {
    transform: scaleX(1);
}

.audience-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: transparent;
}

.audience-icon {
    width: 4rem;
    height: 4rem;
    color: var(--color-secondary);
    margin-bottom: var(--space-lg);
    transition: all 0.3s ease;
}

.audience-card:hover .audience-icon {
    transform: scale(1.2) rotate(10deg);
    color: var(--color-secondary-dark);
}

.audience-card h3 {
    font-size: 1.25rem;
    margin-bottom: var(--space-sm);
    color: var(--color-text);
    font-weight: 700;
}

.audience-card p {
    color: var(--color-text-muted);
    margin: 0;
    font-size: 0.9375rem;
    line-height: 1.5;
}

/* Download Section */
.download-section {
    position: relative;
    background: linear-gradient(135deg, white 0%, rgba(59, 130, 246, 0.02) 100%);
    overflow: hidden;
}

.download-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 10s ease-in-out infinite;
}

.download-content {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-3xl);
    align-items: start;
    z-index: 1;
}

.download-info {
    text-align: center;
    animation: fadeInLeft 0.8s ease-out;
}

.download-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: var(--space-xl);
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pricing-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--space-xl);
    margin: var(--space-3xl) 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 100;
}

.price-option {
    background: white;
    border: 2px solid var(--color-border);
    border-radius: var(--radius);
    padding: var(--space-2xl);
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    animation: fadeInUp 0.8s ease-out both;
    overflow: visible;
}

.price-option:nth-child(1) { animation-delay: 0.2s; }
.price-option:nth-child(2) { animation-delay: 0.3s; }

.price-option.featured {
    border-color: var(--color-secondary);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.2);
    transform: scale(1.05);
}

.price-option:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.price-option.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.badge-featured {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-secondary);
    color: white;
    padding: var(--space-xs) var(--space-lg);
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.option-title {
    font-size: 1.5rem;
    margin-bottom: var(--space-md);
    color: var(--color-text);
}

.price {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: var(--space-xs);
    line-height: 1;
}

.price-note {
    color: var(--color-text-muted);
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: var(--space-xl);
}

.option-features {
    list-style: none;
    margin: var(--space-xl) 0;
    text-align: left;
}

.option-features li {
    padding: var(--space-sm) 0;
    color: var(--color-text);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.download-features {
    background: var(--color-surface);
    padding: var(--space-2xl);
    border-radius: var(--radius);
    margin: var(--space-2xl) auto;
    max-width: 600px;
    animation: fadeInUp 0.8s ease-out 0.5s both;
}

.download-features h4 {
    font-size: 1.25rem;
    margin-bottom: var(--space-lg);
    text-align: center;
    color: var(--color-text);
}

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

.download-features li {
    padding: var(--space-sm) 0;
    color: var(--color-text);
    display: flex;
    align-items: center;
    position: relative;
    padding-left: var(--space-xl);
}

.download-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-success);
    font-weight: bold;
    font-size: 1.25rem;
}

.btn-xl {
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
    }
    50% { 
        transform: scale(1.05);
        box-shadow: 0 6px 25px rgba(59, 130, 246, 0.4);
    }
}

.payment-badges {
    margin-top: var(--space-lg);
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.payment-badges:hover {
    opacity: 1;
}

.payment-badges img {
    height: 40px;
    width: auto;
}

.download-preview {
    position: relative;
    animation: fadeInRight 0.8s ease-out;
}

.download-preview img {
    width: 100%;
    height: auto;
    border-radius: var(--radius);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.download-preview:hover img {
    transform: scale(1.05) rotate(1deg);
}

.preview-label {
    text-align: center;
    margin-top: var(--space-md);
    color: var(--color-text-muted);
    font-size: 0.875rem;
    font-weight: 500;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

/* FAQ Section */
#faq {
    position: relative;
    background: linear-gradient(135deg, var(--color-surface) 0%, rgba(59, 130, 246, 0.03) 100%);
    overflow: hidden;
}

#faq::before {
    content: '?';
    position: absolute;
    top: -50px;
    right: -50px;
    font-size: 300px;
    color: rgba(59, 130, 246, 0.05);
    font-weight: 700;
    transform: rotate(-15deg);
}

.faq-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--space-lg);
    z-index: 1;
}

/* Final CTA */
.final-cta {
    position: relative;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(59, 130, 246, 0.3) 0%, transparent 40%),
        radial-gradient(circle at 80% 80%, rgba(16, 185, 129, 0.3) 0%, transparent 40%);
    animation: parallax 20s ease-in-out infinite;
}

@keyframes parallax {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.final-cta .cta-content {
    position: relative;
    z-index: 1;
    animation: fadeIn 1s ease-out;
}

.final-cta .cta-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: var(--space-lg);
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 0.8s ease-out;
}

.final-cta .cta-description {
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: var(--space-3xl);
    margin-bottom: var(--space-2xl);
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    color: white;
    padding: var(--space-md) var(--space-xl);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.badge-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.badge-icon {
    width: 2rem;
    height: 2rem;
    animation: rotate 3s ease-in-out infinite;
}

.badge-item:nth-child(2) .badge-icon { animation-delay: 1s; }
.badge-item:nth-child(3) .badge-icon { animation-delay: 2s; }

@keyframes rotate {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(10deg); }
    75% { transform: rotate(-10deg); }
}

.badge-item span {
    font-weight: 600;
    font-size: 1.125rem;
}

.final-cta .cta-actions {
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.final-cta .btn-white {
    background: white;
    color: var(--color-primary);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.final-cta .btn-white:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .download-content {
        grid-template-columns: 1fr;
    }
    
    .download-info {
        text-align: center;
    }
    
    .hero-title {
        font-size: 2rem;
        line-height: 1.3;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
    }
    
    .hero-description {
        font-size: 1.125rem;
    }
    
    .hero-stats {
        gap: var(--space-xl);
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .download-title {
        font-size: 1.75rem;
    }
    
    .price {
        font-size: 2.5rem;
    }
    
    .pain-title {
        font-size: 1.5rem;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .trust-badges {
        gap: var(--space-lg);
    }
}

/* Country Dropdown Styles */
.country-selector {
    margin: var(--space-lg) 0;
    position: relative;
}

.country-dropdown-btn {
    width: 100%;
    padding: var(--space-md) var(--space-lg);
    background: white;
    border: 2px solid var(--color-border);
    border-radius: var(--radius);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    font-weight: 500;
    color: var(--color-text);
}

.country-dropdown-btn:hover {
    border-color: var(--color-secondary);
    background: rgba(59, 130, 246, 0.02);
}

.country-dropdown-btn.active {
    border-color: var(--color-secondary);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.dropdown-icon {
    width: 1.25rem;
    height: 1.25rem;
    transition: transform 0.3s ease;
}

.country-dropdown-btn.active .dropdown-icon {
    transform: rotate(180deg);
}

.country-dropdown {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 0;
    right: 0;
    background: white;
    border: 2px solid var(--color-secondary);
    border-radius: var(--radius);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-height: 300px;
    overflow-y: auto;
    z-index: 1000;
}

.country-option {
    width: 100%;
    padding: var(--space-md) var(--space-lg);
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    transition: background 0.2s ease;
    font-size: 0.9375rem;
    color: var(--color-text);
}

.country-option:hover {
    background: rgba(59, 130, 246, 0.1);
}

.country-option:not(:last-child) {
    border-bottom: 1px solid var(--color-border);
}

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

/* FAQ Expandable Styles */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border: 2px solid var(--color-border);
    border-radius: var(--radius);
    margin-bottom: var(--space-md);
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    animation: fadeInUp 0.6s ease-out both;
}

.faq-item:nth-child(1) { animation-delay: 0.1s; }
.faq-item:nth-child(2) { animation-delay: 0.2s; }
.faq-item:nth-child(3) { animation-delay: 0.3s; }
.faq-item:nth-child(4) { animation-delay: 0.4s; }
.faq-item:nth-child(5) { animation-delay: 0.5s; }

.faq-item:hover {
    border-color: var(--color-secondary);
    box-shadow: 0 5px 20px rgba(59, 130, 246, 0.1);
}

.faq-question {
    padding: var(--space-lg) var(--space-xl);
    margin: 0;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-text);
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
}

.faq-toggle {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--color-secondary);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-toggle.rotate {
    transform: rotate(180deg);
}

.faq-answer-wrapper {
    border-top: 1px solid var(--color-border);
    background: rgba(248, 250, 252, 0.5);
}

.faq-answer {
    padding: var(--space-lg) var(--space-xl);
    margin: 0;
    color: var(--color-text-muted);
    line-height: 1.6;
}

/* Update download features for cleaner list */
.download-features {
    background: rgba(248, 250, 252, 0.8);
    backdrop-filter: blur(10px);
    border-radius: var(--radius);
    padding: var(--space-xl);
    margin-top: var(--space-2xl);
    border: 1px solid rgba(226, 232, 240, 0.5);
}

.download-features h4 {
    font-size: 1.125rem;
    margin-bottom: var(--space-md);
    color: var(--color-text);
}

.download-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: var(--space-sm);
}

.download-features li {
    color: var(--color-text-muted);
    padding-left: var(--space-lg);
    position: relative;
}

.download-features li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--color-secondary);
    font-weight: bold;
    font-size: 1.25rem;
}

/* Print Styles */
@media print {
    .header,
    .footer,
    .nav-mobile,
    .mobile-menu-toggle {
        display: none;
    }
    
    .section {
        page-break-inside: avoid;
    }
}

/* ============================== */
/* NEW LANDING PAGE STYLES 2025   */
/* ============================== */

/* Hero Section - Two Column Layout */
.hero-content-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-3xl);
    align-items: center;
    position: relative;
    z-index: 2;
}

@media (min-width: 1024px) {
    .hero-content-grid {
        grid-template-columns: 60% 40%;
        gap: var(--space-3xl);
    }
}

.hero-left {
    animation: fadeInUp 0.8s ease-out;
}

.hero-right {
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.country-highlight {
    color: var(--color-secondary);
    font-weight: 700;
}

/* Country Roller Animation */
.country-roller {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--color-secondary-light), var(--color-secondary));
    color: white;
    padding: 0.25rem 1rem;
    border-radius: 50px;
    font-weight: 800;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
    animation: subtle-glow 2s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

.country-roller::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: rotate(45deg);
    animation: shine 3s ease-in-out infinite;
}

@keyframes subtle-glow {
    0%, 100% { 
        box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
        transform: translateY(0);
    }
    50% { 
        box-shadow: 0 6px 20px rgba(59, 130, 246, 0.5);
        transform: translateY(-2px);
    }
}

@keyframes shine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.country-flag {
    font-size: 1.25em;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.country-name {
    position: relative;
    z-index: 1;
}

.hero-benefits {
    margin: var(--space-xl) 0;
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    font-size: 1.125rem;
}

.benefit-icon {
    width: 24px;
    height: 24px;
    color: var(--color-success);
    flex-shrink: 0;
}

.hero-cta {
    margin: var(--space-xl) 0;
}

.trust-indicator {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 1rem;
    color: var(--color-text-muted);
}

.stars {
    font-size: 1.25rem;
    color: #fbbf24;
}

/* PDF Preview Slideshow */
.pdf-preview-slideshow {
    position: relative;
    background: white;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.preview-badge {
    position: absolute;
    top: var(--space-md);
    left: var(--space-md);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius);
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    z-index: 10;
}

.preview-icon {
    width: 20px;
    height: 20px;
}

.slideshow-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: var(--space-md);
    text-align: center;
    font-size: 0.875rem;
}

/* Urgency Strip */
.urgency-strip {
    background: var(--color-urgency);
    color: white;
    padding: var(--space-md) 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.urgency-strip::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: urgency-sweep 3s ease-in-out infinite;
}

@keyframes urgency-sweep {
    0% { left: -100%; }
    100% { left: 100%; }
}

.urgency-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    position: relative;
    z-index: 1;
}

.urgency-icon {
    font-size: 1.5rem;
    animation: pulse 1s ease-in-out infinite;
}

.urgency-text {
    font-size: 1rem;
    margin: 0;
}

.urgency-text strong {
    font-weight: 700;
}

/* Time-Saving Comparison Section */
.time-saving {
    background: white;
    padding: var(--space-3xl) 0;
}

.comparison-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.comparison-table {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    margin: var(--space-2xl) 0;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.comparison-column {
    padding: var(--space-xl);
}

.comparison-bad {
    background: #fef2f2;
    border-right: 2px solid var(--color-error);
}

.comparison-good {
    background: #f0fdf4;
}

.comparison-header {
    font-size: 1.25rem;
    margin-bottom: var(--space-lg);
    font-weight: 700;
}

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

.comparison-list li {
    padding: var(--space-sm) 0;
    font-size: 1rem;
    color: var(--color-text);
}

.testimonial-highlight {
    background: var(--color-urgency-light);
    padding: var(--space-xl);
    border-radius: var(--radius);
    border-left: 4px solid var(--color-urgency);
    margin-top: var(--space-xl);
}

.testimonial-quote {
    font-size: 1.125rem;
    font-style: italic;
    color: var(--color-text);
    margin: 0;
}

.testimonial-note {
    margin-top: var(--space-md);
    font-weight: 600;
    color: var(--color-urgency-dark);
}

/* Features Grid - Visual Cards */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
    margin: var(--space-2xl) 0;
}

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

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

.feature-card-visual {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 24px;
    padding: var(--space-xl) var(--space-lg);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 4px 24px rgba(0, 0, 0, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.feature-card-visual::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, transparent 50%, rgba(139, 92, 246, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.feature-card-visual:hover::before {
    opacity: 1;
}

.feature-card-visual:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 20px 40px rgba(59, 130, 246, 0.15),
        0 0 0 1px rgba(59, 130, 246, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border-color: rgba(59, 130, 246, 0.3);
    background: rgba(255, 255, 255, 0.12);
}

.feature-icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--space-lg);
    background: linear-gradient(135deg, var(--color-secondary-light) 0%, var(--color-secondary) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
    box-shadow: 
        0 4px 20px rgba(59, 130, 246, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.feature-icon-wrapper::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6, #10b981);
    border-radius: 50%;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
    filter: blur(10px);
}

.feature-card-visual:hover .feature-icon-wrapper::after {
    opacity: 0.6;
    animation: glow-pulse 2s ease-in-out infinite;
}

@keyframes glow-pulse {
    0%, 100% { transform: scale(1); opacity: 0.6; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.feature-card-visual:hover .feature-icon-wrapper {
    background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-secondary-dark) 100%);
    transform: scale(1.15) rotate(5deg);
    box-shadow: 
        0 8px 30px rgba(59, 130, 246, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.feature-icon {
    width: 40px;
    height: 40px;
    color: white;
}

.features-cta {
    text-align: center;
    margin-top: var(--space-2xl);
}

/* Social Proof Section Updates */
.enforcement-stats {
    background: var(--color-urgency-light);
    padding: var(--space-xl);
    border-radius: var(--radius);
    margin-bottom: var(--space-2xl);
}

.stats-subtitle {
    font-size: 1.25rem;
    margin-bottom: var(--space-lg);
    color: var(--color-text);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-md);
}

.stat-card {
    background: white;
    padding: var(--space-md);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    border-left: 4px solid var(--color-urgency);
}

.country-flag {
    font-size: 1.5rem;
}

.stat-text {
    font-size: 0.9rem;
    color: var(--color-text);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-xl);
    margin: var(--space-2xl) 0;
}

.trust-badge {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
}

.trust-badge h4 {
    font-size: 1rem;
    margin-bottom: var(--space-xs);
}

.trust-badge p {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    margin: 0;
}

.testimonial-metric {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    margin-top: var(--space-sm);
}

/* Final CTA Section Updates */
.enforcement-stats-final {
    background: rgba(255, 255, 255, 0.1);
    padding: var(--space-xl);
    border-radius: var(--radius);
    margin: var(--space-xl) 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.enforcement-stats-final h3 {
    font-size: 1.25rem;
    margin-bottom: var(--space-md);
    color: white;
}

.stats-list {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 1.125rem;
}

.stats-list li {
    padding: var(--space-xs) 0;
    color: rgba(255, 255, 255, 0.9);
}

.cta-tagline {
    font-size: 1.5rem;
    font-weight: 700;
    margin: var(--space-xl) 0;
}

/* Mobile Optimizations */
@media (max-width: 767px) {
    /* Hide PDF slideshow on mobile */
    .pdf-preview-slideshow,
    .slideshow-container,
    .hero-preview .slideshow-container,
    .hero-preview .pdf-preview-slideshow,
    .hero-content-right,
    .hero-preview {
        display: none !important;
    }
    
    .hero-content-grid {
        text-align: center;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }
    
    .comparison-table {
        grid-template-columns: 1fr;
    }
    
    .comparison-bad {
        border-right: none;
        border-bottom: 2px solid var(--color-error);
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .urgency-content {
        flex-direction: column;
        text-align: center;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .trust-grid {
        grid-template-columns: 1fr;
    }
}