/* =============================================================================
   CASCO Scurt - Mobile-First Design System
   Modern, distinctive, TailwindCSS-inspired
   ============================================================================= */

:root {
    /* Primary - Deep blue */
    --primary-50: #EEF2FF;
    --primary-100: #E0E7FF;
    --primary-200: #C7D2FE;
    --primary-300: #A5B4FC;
    --primary-400: #818CF8;
    --primary-500: #6366F1;
    --primary-600: #4F46E5;
    --primary-700: #4338CA;
    --primary-800: #3730A3;
    --primary-900: #312E81;
    
    /* Accent - Vibrant teal */
    --accent-400: #2DD4BF;
    --accent-500: #14B8A6;
    --accent-600: #0D9488;
    
    /* Success */
    --success-50: #ECFDF5;
    --success-500: #10B981;
    --success-600: #059669;
    
    /* Warning */
    --warning-50: #FFFBEB;
    --warning-500: #F59E0B;
    
    /* Error */
    --error-50: #FEF2F2;
    --error-500: #EF4444;
    --error-600: #DC2626;
    
    /* Neutrals */
    --gray-50: #F9FAFB;
    --gray-100: #F3F4F6;
    --gray-200: #E5E7EB;
    --gray-300: #D1D5DB;
    --gray-400: #9CA3AF;
    --gray-500: #6B7280;
    --gray-600: #4B5563;
    --gray-700: #374151;
    --gray-800: #1F2937;
    --gray-900: #111827;
    --gray-950: #030712;
    
    /* Typography */
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --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);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
    
    /* Border radius */
    --radius-sm: 0.375rem;
    --radius: 0.5rem;
    --radius-md: 0.625rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.25rem;
    --radius-3xl: 1.5rem;
    --radius-full: 9999px;
}

/* =============================================================================
   Test Mode Banner
   ============================================================================= */

.test-mode-banner {
    background: linear-gradient(90deg, #F59E0B, #D97706);
    color: white;
    padding: 0.625rem 0;
    font-size: 0.8125rem;
    text-align: center;
}

.test-mode-banner .container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.test-mode-banner svg {
    flex-shrink: 0;
}

.test-mode-banner strong {
    font-weight: 700;
    letter-spacing: 0.05em;
}

/* =============================================================================
   Reset
   ============================================================================= */

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

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-sans);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--gray-900);
    background: var(--gray-50);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img, svg { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
input, select, textarea { font: inherit; }

/* =============================================================================
   Layout
   ============================================================================= */

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .container { padding: 0 1.5rem; }
}

@media (min-width: 1024px) {
    .container { padding: 0 2rem; }
}

/* =============================================================================
   Header
   ============================================================================= */

.header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--gray-200);
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-weight: 700;
    font-size: 1.25rem;
}

.logo-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--primary-600), var(--primary-700));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(79, 70, 229, 0.3);
}

.logo-icon svg {
    width: 20px;
    height: 20px;
    color: white;
}

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

.logo-text span {
    color: var(--primary-600);
}

.nav-desktop {
    display: none;
    align-items: center;
    gap: 2rem;
}

.nav-desktop a {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--gray-600);
    transition: color 0.15s;
}

.nav-desktop a:hover {
    color: var(--gray-900);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: var(--radius-lg);
    color: var(--gray-600);
    transition: all 0.15s;
}

.menu-btn:hover {
    background: var(--gray-100);
    color: var(--gray-900);
}

.menu-btn svg {
    width: 24px;
    height: 24px;
}

@media (min-width: 768px) {
    .nav-desktop { display: flex; }
    .menu-btn { display: none; }
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    inset: 0;
    background: white;
    z-index: 200;
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding-top: 64px;
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-menu-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1rem;
    border-bottom: 1px solid var(--gray-200);
}

.mobile-menu nav {
    padding: 1rem;
}

.mobile-menu a {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    padding: 1rem;
    color: var(--gray-700);
    font-weight: 500;
    border-radius: var(--radius-lg);
    transition: all 0.15s;
}

.mobile-menu a:hover {
    background: var(--gray-50);
    color: var(--primary-600);
}

.mobile-menu a svg {
    width: 20px;
    height: 20px;
    color: var(--gray-400);
}

/* =============================================================================
   Buttons
   ============================================================================= */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    height: 44px;
    padding: 0 1.25rem;
    font-size: 0.9375rem;
    font-weight: 600;
    border-radius: var(--radius-lg);
    transition: all 0.15s;
    white-space: nowrap;
}

.btn svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.btn-primary {
    background: var(--primary-600);
    color: white;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.btn-primary:hover {
    background: var(--primary-700);
    box-shadow: 0 4px 12px rgba(79, 70, 229, 0.35);
    transform: translateY(-1px);
}

.btn-secondary {
    background: white;
    color: var(--gray-700);
    border: 1px solid var(--gray-300);
}

.btn-secondary:hover {
    background: var(--gray-50);
    border-color: var(--gray-400);
}

.btn-ghost {
    color: var(--gray-600);
}

.btn-ghost:hover {
    background: var(--gray-100);
    color: var(--gray-900);
}

.btn-lg {
    height: 52px;
    padding: 0 1.75rem;
    font-size: 1rem;
    border-radius: var(--radius-xl);
}

.btn-xl {
    height: 56px;
    padding: 0 2rem;
    font-size: 1.0625rem;
    border-radius: var(--radius-xl);
}

.btn-sm {
    height: 36px;
    padding: 0 0.875rem;
    font-size: 0.875rem;
}

.btn-full { width: 100%; }

.btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none !important;
}

.btn-loading {
    color: transparent !important;
    position: relative;
}

.btn-loading::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid white;
    border-right-color: transparent;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
}

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

/* =============================================================================
   Hero Section - Modern Two-Column Layout
   ============================================================================= */

.hero {
    position: relative;
    background: linear-gradient(135deg, var(--primary-700) 0%, var(--primary-900) 50%, var(--gray-950) 100%);
    color: white;
    overflow: hidden;
    min-height: calc(100vh - 64px);
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse 80% 50% at 50% -20%, rgba(99, 102, 241, 0.3), transparent),
        radial-gradient(ellipse 60% 40% at 100% 100%, rgba(45, 212, 191, 0.15), transparent);
    pointer-events: none;
}

/* Background pattern */
.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(99, 102, 241, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(45, 212, 191, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.hero .container {
    position: relative;
    z-index: 1;
    padding-top: 2rem;
    padding-bottom: 2rem;
}

/* Two-column grid layout */
.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .hero .container {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }
    
    .hero-grid {
        grid-template-columns: 1fr 420px;
        gap: 4rem;
    }
}

@media (min-width: 1200px) {
    .hero-grid {
        grid-template-columns: 1fr 460px;
        gap: 5rem;
    }
}

.hero-content {
    max-width: 600px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-full);
    font-size: 0.8125rem;
    font-weight: 500;
    margin-bottom: 1.25rem;
    backdrop-filter: blur(8px);
}

.hero-badge svg {
    width: 14px;
    height: 14px;
    color: var(--accent-400);
}

.hero-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.025em;
    margin-bottom: 1rem;
}

.hero-title .highlight {
    background: linear-gradient(135deg, var(--accent-400), #34D399);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.125rem);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    max-width: 500px;
}

/* =============================================================================
   Hero Visual - Right Column
   ============================================================================= */

.hero-visual {
    display: none;
    position: relative;
}

@media (min-width: 1024px) {
    .hero-visual {
        display: block;
    }
}

/* Trust Card */
.hero-trust-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-2xl);
    padding: 2rem;
    position: relative;
}

.trust-card-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--accent-400), var(--accent-500));
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    box-shadow: 0 8px 24px rgba(45, 212, 191, 0.25);
}

.trust-card-icon svg {
    width: 28px;
    height: 28px;
    color: white;
}

.trust-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: white;
}

/* Benefits List */
.trust-card-benefits {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.trust-benefit {
    display: flex;
    align-items: flex-start;
    gap: 0.875rem;
    padding: 0.875rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.2s;
}

.trust-benefit:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.12);
}

.trust-benefit-icon {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.trust-benefit-icon svg {
    width: 18px;
    height: 18px;
    color: var(--accent-400);
}

.trust-benefit-content {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
}

.trust-benefit-title {
    font-size: 0.9375rem;
    font-weight: 600;
    color: white;
}

.trust-benefit-desc {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Partners Section */
.trust-card-partners {
    padding-top: 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.partners-label {
    display: block;
    font-size: 0.6875rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.75rem;
}

.partners-logos {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.partner-item {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.partner-name {
    font-size: 0.9375rem;
    font-weight: 700;
    color: white;
}

.partner-reg {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
}

.partner-divider {
    width: 1px;
    height: 32px;
    background: rgba(255, 255, 255, 0.15);
}

/* Floating Stats */
.hero-floating-stat {
    position: absolute;
    background: white;
    border-radius: var(--radius-xl);
    padding: 0.625rem 0.875rem;
    box-shadow: var(--shadow-xl);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    max-width: calc(100% - 2rem);
}

@media (min-width: 480px) {
    .hero-floating-stat {
        padding: 0.75rem 1rem;
        gap: 0.625rem;
    }
}

.stat-bottom {
    bottom: -1.25rem;
    left: 50%;
    transform: translateX(-50%);
}

.stat-top-right {
    top: -1rem;
    right: -1rem;
    z-index: 10;
}

/* Hide floating stats on very small screens to prevent overlap */
@media (max-width: 400px) {
    .hero-floating-stat {
        display: none;
    }
}

/* Adjust floating stat on smaller screens */
@media (max-width: 768px) {
    .stat-top-right {
        top: -0.75rem;
        right: 0;
        padding: 0.5rem 0.75rem;
    }
}

.floating-stat-icon {
    width: 32px;
    height: 32px;
    background: var(--success-50);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.floating-stat-icon svg {
    width: 16px;
    height: 16px;
    color: var(--success-500);
}

.floating-stat-value {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--gray-900);
    line-height: 1.2;
    white-space: nowrap;
}

.floating-stat-label {
    font-size: 0.6875rem;
    font-weight: 500;
    color: var(--gray-500);
    white-space: nowrap;
}

/* =============================================================================
   License Plate Input - Modern Design
   ============================================================================= */

.plate-input-wrapper {
    background: white;
    border-radius: var(--radius-2xl);
    padding: 1.5rem;
    box-shadow: 
        var(--shadow-2xl),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        0 0 80px rgba(99, 102, 241, 0.15);
    max-width: 500px;
}

.plate-input-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 0.625rem;
}

/* Input row - stacked on mobile, inline on desktop */
.plate-input-row {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

@media (min-width: 480px) {
    .plate-input-row {
        flex-direction: row;
        gap: 0.625rem;
    }
}

.plate-input-container {
    position: relative;
    flex: 1;
}

/* Romanian-style license plate input */
.plate-input {
    width: 100%;
    height: 56px;
    padding: 0 1rem 0 4rem;
    font-size: 1.375rem;
    font-weight: 700;
    font-family: 'Courier New', monospace;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gray-900);
    background: var(--gray-50);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-lg);
    transition: all 0.2s;
}

.plate-input::placeholder {
    font-weight: 500;
    font-family: var(--font-sans);
    letter-spacing: 0;
    color: var(--gray-400);
    font-size: 1rem;
}

.plate-input:focus {
    outline: none;
    border-color: var(--primary-500);
    background: white;
    box-shadow: 0 0 0 4px var(--primary-100);
}

/* EU flag badge on input */
.plate-input-eu {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3rem;
    background: linear-gradient(180deg, #003399 0%, #002277 100%);
    border-radius: var(--radius-lg) 0 0 var(--radius-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.125rem;
    border: 2px solid var(--gray-200);
    border-right: none;
}

.plate-input:focus ~ .plate-input-eu {
    border-color: var(--primary-500);
}

.plate-input-eu .country {
    font-size: 0.75rem;
    font-weight: 700;
    color: white;
    letter-spacing: 0.05em;
}

/* Submit button */
.plate-submit {
    width: 100%;
    height: 56px;
    background: linear-gradient(135deg, var(--primary-600), var(--primary-700));
    color: white;
    font-size: 0.9375rem;
    font-weight: 600;
    border: none;
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    white-space: nowrap;
}

@media (min-width: 480px) {
    .plate-submit {
        width: auto;
        padding: 0 1.5rem;
    }
}

.plate-submit:hover {
    background: linear-gradient(135deg, var(--primary-700), var(--primary-800));
    box-shadow: 0 8px 24px rgba(79, 70, 229, 0.35);
    transform: translateY(-1px);
}

.plate-submit:active {
    transform: translateY(0);
}

.plate-submit svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.plate-submit-text {
    display: inline;
}

.plate-helper {
    text-align: center;
    margin-top: 0.875rem;
    font-size: 0.8125rem;
    color: var(--gray-500);
}

.plate-helper a {
    color: var(--primary-600);
    font-weight: 500;
    transition: color 0.15s;
}

.plate-helper a:hover {
    color: var(--primary-700);
    text-decoration: underline;
}

/* Trust indicators below input */
.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 0.875rem 1.5rem;
    margin-top: 2rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8125rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.75);
}

.hero-trust-item svg {
    width: 16px;
    height: 16px;
    color: var(--accent-400);
}

/* =============================================================================
   Features Section
   ============================================================================= */

.features {
    padding: 5rem 0;
    background: white;
}

.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.375rem 0.875rem;
    background: var(--primary-50);
    color: var(--primary-700);
    font-size: 0.8125rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.section-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--gray-900);
    letter-spacing: -0.025em;
    margin-bottom: 0.75rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--gray-500);
    max-width: 600px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    gap: 1.5rem;
}

.feature-card {
    background: var(--gray-50);
    border-radius: var(--radius-2xl);
    padding: 2rem;
    transition: all 0.2s;
}

.feature-card:hover {
    background: white;
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.feature-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary-100), var(--primary-50));
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.feature-icon svg {
    width: 28px;
    height: 28px;
    color: var(--primary-600);
}

.feature-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

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

@media (min-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
}

/* =============================================================================
   How It Works
   ============================================================================= */

.how-it-works {
    padding: 5rem 0;
    background: var(--gray-50);
}

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

.step-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem 0;
    position: relative;
}

.step-item:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 24px;
    top: 72px;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--primary-200), transparent);
}

.step-number {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary-600), var(--primary-700));
    color: white;
    font-size: 1.125rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(79, 70, 229, 0.3);
}

.step-content h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.375rem;
}

.step-content p {
    font-size: 0.9375rem;
    color: var(--gray-500);
}

/* =============================================================================
   Coverage Section
   ============================================================================= */

.coverage {
    padding: 5rem 0;
    background: white;
}

.coverage-card {
    background: linear-gradient(135deg, var(--gray-900), var(--gray-950));
    border-radius: var(--radius-3xl);
    padding: 3rem 2rem;
    color: white;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.coverage-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: radial-gradient(ellipse at 100% 0%, rgba(99, 102, 241, 0.15), transparent 70%);
}

.coverage-header {
    text-align: center;
    margin-bottom: 2.5rem;
    position: relative;
}

.coverage-header h2 {
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.coverage-header p {
    color: rgba(255, 255, 255, 0.6);
}

.coverage-grid {
    display: grid;
    gap: 1rem;
    margin-bottom: 2.5rem;
    position: relative;
}

.coverage-item {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    padding: 1rem 1.25rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
}

.coverage-item svg {
    width: 20px;
    height: 20px;
    color: var(--accent-400);
    flex-shrink: 0;
}

.coverage-item span {
    font-size: 0.9375rem;
}

.coverage-footer {
    text-align: center;
    position: relative;
}

.coverage-partners {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 2rem;
}

.coverage-partner {
    text-align: center;
}

.coverage-partner .label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.25rem;
}

.coverage-partner .name {
    font-size: 1rem;
    font-weight: 600;
}

.coverage-partner .reg {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
}

@media (min-width: 640px) {
    .coverage-card {
        padding: 4rem 3rem;
    }
    
    .coverage-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* =============================================================================
   Trust Section
   ============================================================================= */

.trust-section {
    padding: 3rem 0;
    background: var(--gray-50);
    border-top: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
}

.trust-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem 3rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-size: 0.875rem;
    color: var(--gray-600);
}

.trust-item svg {
    width: 20px;
    height: 20px;
    color: var(--gray-400);
}

/* =============================================================================
   Forms
   ============================================================================= */

.form-group {
    margin-bottom: 1.25rem;
}

.form-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 0.5rem;
}

.form-label .required {
    color: var(--error-500);
}

.form-input {
    width: 100%;
    height: 48px;
    padding: 0 1rem;
    font-size: 1rem;
    color: var(--gray-900);
    background: white;
    border: 1.5px solid var(--gray-300);
    border-radius: var(--radius-lg);
    transition: all 0.15s;
}

.form-input::placeholder {
    color: var(--gray-400);
}

.form-input:focus {
    outline: none;
    border-color: var(--primary-500);
    box-shadow: 0 0 0 3px var(--primary-100);
}

.form-input.error {
    border-color: var(--error-500);
    box-shadow: 0 0 0 3px var(--error-50);
}

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%236B7280' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 44px;
}

.form-helper {
    font-size: 0.8125rem;
    color: var(--gray-500);
    margin-top: 0.375rem;
}

.form-error {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.8125rem;
    color: var(--error-600);
    margin-top: 0.375rem;
}

.form-error svg {
    width: 14px;
    height: 14px;
}

/* Checkbox */
.form-checkbox {
    display: flex;
    gap: 0.75rem;
    cursor: pointer;
}

.form-checkbox input {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    accent-color: var(--primary-600);
    cursor: pointer;
}

.form-checkbox span {
    font-size: 0.875rem;
    color: var(--gray-600);
    line-height: 1.5;
}

/* =============================================================================
   Cards
   ============================================================================= */

.card {
    background: white;
    border-radius: var(--radius-2xl);
    border: 1px solid var(--gray-200);
    padding: 1.5rem;
}

.card-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

.card-hover {
    transition: all 0.2s;
}

.card-hover:hover {
    border-color: var(--gray-300);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

@media (min-width: 640px) {
    .card { padding: 2rem; }
}

/* =============================================================================
   Chips
   ============================================================================= */

.chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 44px;
    padding: 0 1.25rem;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--gray-600);
    background: white;
    border: 1.5px solid var(--gray-300);
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all 0.15s;
}

.chip:hover {
    border-color: var(--primary-400);
    color: var(--primary-600);
}

.chip.active {
    background: var(--primary-600);
    border-color: var(--primary-600);
    color: white;
}

/* =============================================================================
   Badges
   ============================================================================= */

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.25rem 0.625rem;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    text-transform: uppercase;
    letter-spacing: 0.025em;
}

.badge-primary {
    background: var(--primary-100);
    color: var(--primary-700);
}

.badge-success {
    background: var(--success-50);
    color: var(--success-600);
}

.badge-warning {
    background: var(--warning-50);
    color: var(--warning-500);
}

.badge-error {
    background: var(--error-50);
    color: var(--error-600);
}

/* =============================================================================
   Stepper
   ============================================================================= */

.stepper {
    padding: 1rem 0 1.5rem;
}

.stepper-mobile {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.stepper-progress {
    flex: 1;
    height: 6px;
    background: var(--gray-200);
    border-radius: var(--radius-full);
    overflow: hidden;
}

.stepper-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-500), var(--primary-600));
    border-radius: var(--radius-full);
    transition: width 0.3s ease;
}

.stepper-text {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gray-500);
}

.stepper-desktop {
    display: none;
}

@media (min-width: 768px) {
    .stepper-mobile { display: none; }
    
    .stepper-desktop {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .stepper-step {
        display: flex;
        align-items: center;
        gap: 0.625rem;
    }
    
    .stepper-circle {
        width: 36px;
        height: 36px;
        background: var(--gray-100);
        color: var(--gray-500);
        font-size: 0.875rem;
        font-weight: 600;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 2px solid var(--gray-200);
    }
    
    .stepper-step.completed .stepper-circle {
        background: var(--success-500);
        border-color: var(--success-500);
        color: white;
    }
    
    .stepper-step.active .stepper-circle {
        background: var(--primary-600);
        border-color: var(--primary-600);
        color: white;
    }
    
    .stepper-label {
        font-size: 0.875rem;
        color: var(--gray-500);
    }
    
    .stepper-step.active .stepper-label {
        color: var(--primary-700);
        font-weight: 600;
    }
    
    .stepper-line {
        width: 48px;
        height: 2px;
        background: var(--gray-200);
        margin: 0 0.75rem;
    }
    
    .stepper-line.completed {
        background: var(--success-500);
    }
}

/* =============================================================================
   Alerts
   ============================================================================= */

.alert {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    border-radius: var(--radius-xl);
    font-size: 0.9375rem;
}

.alert svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 1px;
}

.alert-success {
    background: var(--success-50);
    color: var(--success-600);
}

.alert-error {
    background: var(--error-50);
    color: var(--error-600);
}

.alert-warning {
    background: var(--warning-50);
    color: var(--warning-500);
}

.alert-info {
    background: var(--primary-50);
    color: var(--primary-700);
}

/* =============================================================================
   Price Display
   ============================================================================= */

.price-display {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, var(--primary-50), white);
    border-radius: var(--radius-2xl);
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--gray-900);
    letter-spacing: -0.025em;
}

.price-currency {
    font-size: 1.25rem;
    font-weight: 600;
}

.price-label {
    font-size: 0.875rem;
    color: var(--gray-500);
    margin-top: 0.25rem;
}

/* =============================================================================
   Footer
   ============================================================================= */

.footer {
    background: var(--gray-900);
    color: var(--gray-400);
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    gap: 2.5rem;
}

.footer-brand {
    max-width: 280px;
}

.footer .logo {
    margin-bottom: 1rem;
}

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

.footer-brand p {
    font-size: 0.875rem;
    line-height: 1.6;
}

.footer-links h4 {
    color: white;
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.footer-links a {
    display: block;
    font-size: 0.875rem;
    padding: 0.375rem 0;
    transition: color 0.15s;
}

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

.footer-partners {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--gray-800);
}

.footer-partner {
    text-align: center;
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--gray-800);
    font-size: 0.8125rem;
}

.footer-legal {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1fr;
    }
    
    .footer-partners {
        justify-content: center;
    }
    
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

/* =============================================================================
   Utilities
   ============================================================================= */

.hidden { display: none !important; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

.text-center { text-align: center; }
.text-xs { font-size: 0.75rem; }
.text-sm { font-size: 0.875rem; }
.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.25rem; }
.text-2xl { font-size: 1.5rem; }
.text-3xl { font-size: 1.875rem; }

.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }

.text-gray-400 { color: var(--gray-400); }
.text-gray-500 { color: var(--gray-500); }
.text-gray-600 { color: var(--gray-600); }
.text-gray-900 { color: var(--gray-900); }
.text-primary { color: var(--primary-600); }

.bg-white { background: white; }
.bg-gray-50 { background: var(--gray-50); }

.mt-2 { margin-top: 0.5rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }

.py-8 { padding-top: 2rem; padding-bottom: 2rem; }
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }

.space-y-1 > * + * { margin-top: 0.25rem; }
.space-y-2 > * + * { margin-top: 0.5rem; }
.space-y-3 > * + * { margin-top: 0.75rem; }
.space-y-4 > * + * { margin-top: 1rem; }

.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }

.grid { display: grid; }

.w-full { width: 100%; }
.max-w-md { max-width: 28rem; }
.max-w-lg { max-width: 32rem; }
.max-w-xl { max-width: 36rem; }

.rounded-lg { border-radius: var(--radius-lg); }
.rounded-xl { border-radius: var(--radius-xl); }
.rounded-2xl { border-radius: var(--radius-2xl); }

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

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
}
