/* ============================================
   ExpatEmergency - 24/7 Emergency Support
   ============================================ */

/* CSS Variables */
:root {
    /* Colors */
    --primary: #dc2626;
    --primary-dark: #b91c1c;
    --primary-light: #ef4444;
    --secondary: #0f172a;
    --accent: #f97316;
    --accent-light: #fb923c;

    /* Neutrals */
    --white: #ffffff;
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-400: #94a3b8;
    --gray-500: #64748b;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1e293b;
    --gray-900: #0f172a;

    /* Semantic */
    --success: #10b981;
    --warning: #f59e0b;
    --error: #ef4444;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #dc2626 0%, #9f1239 100%);
    --gradient-dark: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    --gradient-glow: radial-gradient(ellipse at center, rgba(220, 38, 38, 0.15) 0%, transparent 70%);

    /* 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-glow: 0 0 40px rgba(220, 38, 38, 0.3);

    /* Typography */
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

    /* Spacing */
    --container-max: 1200px;
    --section-padding: 6rem;

    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 250ms ease;
    --transition-slow: 350ms ease;

    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius: 0.5rem;
    --radius-md: 0.75rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    --radius-full: 9999px;
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-sans);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--gray-700);
    background: var(--white);
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

/* Container */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    color: var(--gray-900);
    font-weight: 700;
    line-height: 1.2;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); }
h4 { font-size: 1.125rem; }

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-size: 0.9375rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    border: none;
    cursor: pointer;
    transition: all var(--transition-base);
    white-space: nowrap;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: var(--shadow-md), 0 0 0 0 rgba(37, 99, 235, 0.5);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg), 0 0 20px rgba(37, 99, 235, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--gray-700);
    border: 2px solid var(--gray-200);
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(37, 99, 235, 0.05);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1rem;
}

.btn-xl {
    padding: 1.125rem 2.5rem;
    font-size: 1.0625rem;
}

.btn-full {
    width: 100%;
}

/* Section Styling */
.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 4rem;
}

.section-tag {
    display: inline-block;
    padding: 0.375rem 1rem;
    background: rgba(220, 38, 38, 0.08);
    color: var(--primary);
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    margin-bottom: 1rem;
}

.section-header h2 {
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--gray-500);
    font-size: 1.125rem;
}

/* ============================================
   Navigation
   ============================================ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--gray-100);
    transition: all var(--transition-base);
}

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

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

.logo-icon {
    font-size: 1.5rem;
}

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

.logo-accent {
    color: var(--primary);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

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

.nav-links a:hover {
    color: var(--primary);
}

.nav-cta {
    padding: 0.625rem 1.25rem;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--gray-700);
    border-radius: 2px;
    transition: all var(--transition-fast);
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 8rem 0 4rem;
    overflow: hidden;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(16, 185, 129, 0.1);
    color: var(--success);
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    margin-bottom: 1.5rem;
}

.hero-content h1 {
    margin-bottom: 1.5rem;
}

.hero-tagline {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 1rem;
    letter-spacing: 0.025em;
}

.hero-freedom-tag {
    display: inline-block;
    font-size: 1rem;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: 0.02em;
    margin-top: 0.25rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--gray-500);
    margin-bottom: 2rem;
    max-width: 540px;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--gray-900);
}

.stat-label {
    font-size: 0.875rem;
    color: var(--gray-500);
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--gray-200);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.hero-image-wrapper {
    position: relative;
}

.hero-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    background: var(--gradient-glow);
    border-radius: 50%;
    filter: blur(40px);
    z-index: -1;
}

.hero-image-container {
    position: relative;
    width: 100%;
    max-width: 600px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.hero-image {
    width: 100%;
    height: 480px;
    object-fit: cover;
    filter: brightness(0.6) contrast(1.1);
}

.hero-image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
}

.emergency-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.25rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-full);
    color: var(--white);
    font-size: 0.9375rem;
    font-weight: 600;
}

/* Speech Bubbles */
.speech-bubble {
    position: absolute;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50px;
    font-size: 0.9375rem;
    font-weight: 600;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    white-space: nowrap;
    animation: float 3s ease-in-out infinite;
    z-index: 10;
    backdrop-filter: blur(5px);
}

.speech-bubble::after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border: 10px solid transparent;
}

.bubble-1 {
    top: 8%;
    left: 10%;
    background: rgba(254, 242, 242, 0.95);
    color: #dc2626;
    animation-delay: 0s;
}

.bubble-1::after {
    bottom: -18px;
    left: 25px;
    border-top-color: rgba(254, 242, 242, 0.95);
}

.bubble-2 {
    top: 25%;
    right: 8%;
    background: rgba(254, 252, 232, 0.95);
    color: #b45309;
    animation-delay: 0.75s;
}

.bubble-2::after {
    bottom: -18px;
    right: 25px;
    border-top-color: rgba(254, 252, 232, 0.95);
}

.bubble-3 {
    top: 50%;
    left: 5%;
    background: rgba(254, 252, 232, 0.95);
    color: #b45309;
    animation-delay: 1.5s;
}

.bubble-3::after {
    top: -18px;
    left: 25px;
    border-bottom-color: rgba(254, 252, 232, 0.95);
}

.bubble-4 {
    top: 68%;
    right: 5%;
    background: rgba(254, 242, 242, 0.95);
    color: #dc2626;
    animation-delay: 2.25s;
}

.bubble-4::after {
    top: -18px;
    right: 25px;
    border-bottom-color: rgba(254, 242, 242, 0.95);
}

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

@media (max-width: 1024px) {
    .speech-bubble {
        display: none;
    }
}

.pulse {
    width: 10px;
    height: 10px;
    background: var(--success);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4);
    }
    50% {
        box-shadow: 0 0 0 8px rgba(16, 185, 129, 0);
    }
}

.mini-map {
    height: 200px;
    background: var(--gray-100);
    border-radius: var(--radius-md);
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, var(--gray-50) 0%, transparent 100%);
    z-index: -2;
}

/* ============================================
   Coverage Map Section - Full Width Interactive
   ============================================ */
.coverage-map-section {
    padding: var(--section-padding) 0 3rem;
    background: var(--gray-50);
    overflow: hidden;
}

.coverage-map-section .section-header {
    margin-bottom: 2rem;
}

/* Full Width Map Container */
.full-width-map-container {
    position: relative;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto 3rem;
    padding: 0 1rem;
}

.leaflet-map {
    width: 100%;
    height: 500px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    z-index: 1;
}

/* Custom Leaflet tooltip */
.country-tooltip-custom {
    background: white;
    border: none;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    padding: 0;
    min-width: 220px;
}

.country-tooltip-custom::before {
    display: none;
}

.tooltip-inner {
    padding: 16px 20px;
}

.tooltip-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid #e2e8f0;
}

.tooltip-flag {
    font-size: 2rem;
}

.tooltip-country {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0;
}

.tooltip-stats {
    display: flex;
    gap: 20px;
}

.tooltip-stat {
    display: flex;
    flex-direction: column;
}

.tooltip-stat-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0f172a;
}

.tooltip-stat-value.growth {
    color: #10b981;
}

.tooltip-stat-label {
    font-size: 0.7rem;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Tooltip Locations */
.tooltip-locations {
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid #e2e8f0;
}

.locations-label {
    display: block;
    font-size: 0.75rem;
    color: #64748b;
    font-weight: 600;
    margin-bottom: 4px;
}

.locations-list {
    display: block;
    font-size: 0.8rem;
    color: #0f172a;
    line-height: 1.4;
}

/* Pulsing City Markers */
.pulsing-marker {
    width: 20px;
    height: 20px;
    position: relative;
}

.pulsing-marker::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 12px;
    background: #2563eb;
    border-radius: 50%;
    border: 2px solid #fff;
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.4);
    z-index: 2;
}

.pulsing-marker::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    background: rgba(37, 99, 235, 0.4);
    border-radius: 50%;
    animation: markerPulse 2s ease-out infinite;
    z-index: 1;
}

@keyframes markerPulse {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(2);
        opacity: 0;
    }
}

/* Country Layer Animations */
.country-layer {
    transition: all 0.3s ease;
}

.covered-country {
    animation: countryGlow 3s ease-in-out infinite;
}

@keyframes countryGlow {
    0%, 100% {
        filter: drop-shadow(0 0 0 transparent);
    }
    50% {
        filter: drop-shadow(0 0 8px rgba(37, 99, 235, 0.3));
    }
}

.country-hover {
    animation: none;
    filter: drop-shadow(0 0 12px rgba(37, 99, 235, 0.5));
}

/* Hotspot Tooltip */
.hotspot-tooltip-custom {
    background: white;
    border: none;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    padding: 0;
    min-width: 200px;
}

.hotspot-tooltip-custom::before {
    display: none;
}

.hotspot-tooltip-inner {
    padding: 14px 16px;
}

.hotspot-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.hotspot-flag {
    font-size: 1.75rem;
}

.hotspot-name {
    font-size: 1rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0;
    line-height: 1.2;
}

.hotspot-country {
    font-size: 0.75rem;
    color: #64748b;
}

.hotspot-stats {
    margin-bottom: 8px;
}

.hotspot-expats {
    display: inline-block;
    background: rgba(37, 99, 235, 0.1);
    color: #2563eb;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
}

.hotspot-desc {
    font-size: 0.8rem;
    color: #64748b;
    margin: 0 0 10px 0;
    line-height: 1.4;
}

.hotspot-country-stats {
    background: #f1f5f9;
    border-radius: 8px;
    padding: 10px 12px;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    align-items: center;
}

.country-stat-label {
    font-size: 0.7rem;
    color: #64748b;
    font-weight: 500;
}

.country-stat-value {
    font-size: 0.85rem;
    font-weight: 700;
    color: #0f172a;
}

.country-stat-growth {
    font-size: 0.75rem;
    font-weight: 600;
    color: #10b981;
    background: rgba(16, 185, 129, 0.1);
    padding: 2px 8px;
    border-radius: 20px;
}

/* Leaflet overrides for smoother animations */
.leaflet-interactive {
    transition: fill 0.3s ease, fill-opacity 0.3s ease, stroke 0.3s ease, stroke-width 0.3s ease;
}

.leaflet-tooltip-top:before {
    border-top-color: white;
}

.leaflet-zoom-anim .leaflet-zoom-animated {
    transition: transform 0.25s cubic-bezier(0, 0, 0.25, 1);
}

/* Country Styling */
.country-group {
    cursor: pointer;
}

.country-path {
    fill: #94a3b8;
    stroke: var(--white);
    stroke-width: 2;
    transition: all 0.3s ease;
}

.country-group:hover .country-path,
.country-group.active .country-path {
    fill: #3b82f6;
    filter: url(#glow);
    stroke: #1d4ed8;
    stroke-width: 2.5;
}

.inactive-countries path {
    pointer-events: none;
    opacity: 0.6;
}

/* Country Labels */
.country-labels text {
    pointer-events: none;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    opacity: 0.8;
}

/* Location Markers */
.city-marker {
    pointer-events: none;
}

.marker-pulse {
    animation: markerPulse 2s ease-in-out infinite;
}

@keyframes markerPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.7;
    }
}

/* Map Tooltip */
.map-tooltip {
    position: absolute;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: var(--white);
    padding: 1.25rem 1.5rem;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(0, 0, 0, 0.05);
    pointer-events: none;
    opacity: 0;
    transform: translateY(10px) scale(0.95);
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 100;
    min-width: 260px;
}

.map-tooltip.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.tooltip-flag {
    font-size: 2.5rem;
    line-height: 1;
}

.tooltip-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--gray-900);
}

.map-tooltip .tooltip-stats {
    display: flex;
    gap: 1.5rem;
}

.map-tooltip .tooltip-stat {
    display: flex;
    flex-direction: column;
}

.map-tooltip .stat-value {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--gray-900);
}

.map-tooltip .stat-value.growth {
    color: var(--success);
}

.map-tooltip .stat-label {
    font-size: 0.75rem;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.025em;
}

/* Coverage Cards */
.coverage-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

/* 5-card location grid */
.coverage-cards.locations-grid {
    grid-template-columns: repeat(5, 1fr);
}

.location-card .card-info {
    flex: 1;
}

.card-location {
    display: block;
    font-size: 0.75rem;
    color: var(--gray-500);
    margin-bottom: 0.25rem;
}

.card-locations {
    display: block;
    font-size: 0.75rem;
    color: var(--gray-500);
    margin-top: 0.25rem;
    line-height: 1.4;
}

/* 5-card grid for countries */
.coverage-cards {
    grid-template-columns: repeat(5, 1fr);
}

.coverage-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    cursor: pointer;
    transition: all var(--transition-base);
    border: 2px solid transparent;
}

.coverage-card:hover,
.coverage-card.active {
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

.card-flag {
    font-size: 2rem;
}

.card-info h4 {
    font-size: 1rem;
    margin-bottom: 0.125rem;
    color: var(--gray-900);
}

.card-expats {
    font-size: 0.875rem;
    color: var(--gray-500);
}

.card-status {
    margin-left: auto;
    padding: 0.25rem 0.75rem;
    background: rgba(16, 185, 129, 0.1);
    color: var(--success);
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    white-space: nowrap;
}

/* Responsive */
@media (max-width: 1200px) {
    .coverage-cards.locations-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

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

@media (max-width: 600px) {
    .coverage-cards,
    .coverage-cards.locations-grid {
        grid-template-columns: 1fr;
    }

    .leaflet-map {
        height: 350px;
    }

    .map-tooltip {
        min-width: 220px;
        padding: 1rem;
    }

    .tooltip-flag {
        font-size: 2rem;
    }
}

/* ============================================
   How It Works
   ============================================ */
.how-it-works {
    padding: var(--section-padding) 0;
}

.steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 1rem;
}

.step {
    flex: 1;
    max-width: 280px;
    text-align: center;
    padding: 2rem 1.5rem;
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: var(--primary);
    color: var(--white);
    font-size: 0.875rem;
    font-weight: 700;
    border-radius: 50%;
    margin-bottom: 1.5rem;
}

.step-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background: var(--gray-100);
    border-radius: var(--radius-lg);
    margin: 0 auto 1.5rem;
    color: var(--primary);
}

.step h3 {
    margin-bottom: 0.75rem;
}

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

.step-connector {
    width: 80px;
    height: 2px;
    background: var(--gray-200);
    margin-top: 4rem;
    position: relative;
}

.step-connector::after {
    content: '';
    position: absolute;
    right: 0;
    top: -4px;
    border: solid var(--gray-200);
    border-width: 0 2px 2px 0;
    padding: 4px;
    transform: rotate(-45deg);
}

/* ============================================
   Services Section
   ============================================ */
.services {
    padding: var(--section-padding) 0;
    background: var(--gray-50);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.service-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    transition: all var(--transition-base);
    position: relative;
}

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

.service-card.featured {
    background: var(--gradient-dark);
}

.service-card.featured h3,
.service-card.featured p {
    color: var(--white);
}

.service-card.featured p {
    opacity: 0.8;
}

.service-card.featured .service-icon {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
}

.service-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: var(--gray-100);
    border-radius: var(--radius-md);
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.service-card h3 {
    margin-bottom: 0.75rem;
}

.service-card p {
    color: var(--gray-500);
    font-size: 0.9375rem;
    margin-bottom: 1.5rem;
}

.service-tag {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: var(--gray-100);
    color: var(--gray-600);
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: var(--radius-full);
}

.service-tag.highlight {
    background: var(--accent);
    color: var(--white);
}

/* ============================================
   Pricing Section
   ============================================ */
.pricing {
    padding: var(--section-padding) 0;
}

.pricing-card {
    max-width: 480px;
    margin: 0 auto;
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    border: 2px solid var(--primary);
}

.pricing-header {
    text-align: center;
    padding: 2.5rem 2rem 2rem;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.05) 0%, transparent 100%);
}

.pricing-badge {
    display: inline-block;
    padding: 0.375rem 1rem;
    background: var(--primary);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: var(--radius-full);
    margin-bottom: 1rem;
}

.pricing-header h3 {
    margin-bottom: 1rem;
}

.price {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0.25rem;
    margin-bottom: 0.5rem;
}

.currency {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-top: 0.5rem;
}

.amount {
    font-size: 4rem;
    font-weight: 800;
    color: var(--gray-900);
    line-height: 1;
}

.period {
    font-size: 1.25rem;
    color: var(--gray-500);
    margin-top: auto;
    margin-bottom: 0.5rem;
}

.price-note {
    color: var(--gray-500);
    font-size: 0.9375rem;
}

.pricing-features {
    padding: 2rem;
    border-top: 1px solid var(--gray-100);
    border-bottom: 1px solid var(--gray-100);
}

.pricing-features ul {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9375rem;
}

.pricing-features li svg {
    flex-shrink: 0;
    color: var(--success);
}

.pricing-cta {
    padding: 2rem;
    text-align: center;
}

.guarantee {
    margin-top: 1rem;
    font-size: 0.875rem;
    color: var(--gray-500);
}

.pricing-comparison {
    text-align: center;
    margin-top: 2rem;
    color: var(--gray-500);
}

.pricing-comparison strong {
    color: var(--gray-900);
}

/* ============================================
   Testimonials
   ============================================ */
.testimonials {
    padding: var(--section-padding) 0;
    background: var(--gray-50);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

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

.testimonial-rating {
    color: var(--warning);
    font-size: 1.125rem;
    margin-bottom: 1rem;
    letter-spacing: 0.125em;
}

.testimonial-card > p {
    color: var(--gray-600);
    font-size: 0.9375rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 48px;
    height: 48px;
    background: var(--gradient-primary);
    color: var(--white);
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.author-info strong {
    display: block;
    font-size: 0.9375rem;
    color: var(--gray-900);
}

.author-info span {
    font-size: 0.8125rem;
    color: var(--gray-500);
}

/* ============================================
   Contact Section
   ============================================ */
.contact {
    padding: var(--section-padding) 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info h2 {
    margin: 0.5rem 0 1rem;
}

.contact-info > p {
    color: var(--gray-500);
    margin-bottom: 2rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: var(--gray-100);
    border-radius: var(--radius-md);
    color: var(--primary);
}

.contact-method strong {
    display: block;
    color: var(--gray-900);
    margin-bottom: 0.125rem;
}

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

/* Contact Form */
.contact-form-wrapper {
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    padding: 2.5rem;
    border: 1px solid var(--gray-100);
}

.contact-form h3 {
    margin-bottom: 1.5rem;
    text-align: center;
}

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

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

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.875rem 1rem;
    font-size: 1rem;
    font-family: inherit;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
    background: var(--white);
}

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

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-note {
    text-align: center;
    font-size: 0.8125rem;
    color: var(--gray-500);
    margin-top: 1rem;
}

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

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

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

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

.footer-brand p {
    font-size: 0.9375rem;
    line-height: 1.7;
}

.footer-links h4 {
    color: var(--white);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.25rem;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    font-size: 0.9375rem;
    transition: color var(--transition-fast);
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid var(--gray-800);
}

.footer-bottom p {
    font-size: 0.875rem;
}

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

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--gray-800);
    border-radius: var(--radius);
    transition: all var(--transition-fast);
}

.footer-social a:hover {
    background: var(--primary);
    color: var(--white);
}

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-subtitle {
        margin: 0 auto 2rem;
    }

    .hero-cta {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-visual {
        display: none;
    }

    .coverage-content {
        grid-template-columns: 1fr;
    }

    .coverage-stats {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }

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

    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 0 auto;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 768px) {
    :root {
        --section-padding: 4rem;
    }

    .nav-links,
    .nav-cta {
        display: none;
    }

    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        padding: 1.5rem;
        gap: 1.25rem;
        border-top: 1px solid var(--gray-100);
        box-shadow: var(--shadow-lg);
        z-index: 100;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .hero {
        min-height: auto;
        padding: 7rem 0 4rem;
    }

    .steps {
        flex-direction: column;
        align-items: center;
    }

    .step-connector {
        width: 2px;
        height: 40px;
        margin: 0;
    }

    .step-connector::after {
        display: none;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .coverage-stats {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-cta {
        flex-direction: column;
    }

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

    .hero-stats {
        flex-wrap: wrap;
        gap: 1.5rem;
    }

    .stat-divider {
        display: none;
    }

    .pricing-card {
        margin: 0 -0.5rem;
    }
}

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

.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

/* Scroll animations */
[data-animate] {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

[data-animate].visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   GPS Add-on Section
   ============================================ */
.gps-addon {
    padding: var(--section-padding) 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
}

.gps-addon-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

.gps-addon-info .section-tag {
    background: rgba(220, 38, 38, 0.15);
    color: #fca5a5;
}

.gps-addon-info h2 {
    color: var(--white);
    margin-bottom: 1rem;
}

.gps-addon-info > p {
    color: var(--gray-400);
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.gps-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.gps-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: var(--gray-300);
    font-size: 1rem;
}

.gps-features li svg {
    flex-shrink: 0;
    color: var(--success);
    margin-top: 2px;
}

.gps-features li strong {
    color: var(--white);
}

.gps-addon-visual {
    display: flex;
    justify-content: center;
}

.gps-device-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    padding: 3rem;
    text-align: center;
    backdrop-filter: blur(10px);
}

.device-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--primary) 0%, #7c3aed 100%);
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    color: var(--white);
}

.gps-device-card h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.device-tagline {
    color: var(--gray-400);
    margin-bottom: 1.5rem;
}

.device-status {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(16, 185, 129, 0.15);
    border-radius: var(--radius-full);
    color: var(--success);
    font-size: 0.875rem;
    font-weight: 500;
}

@media (max-width: 1024px) {
    .gps-addon-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .gps-addon-visual {
        order: -1;
    }
}

/* ============================================
   Founder Story Section
   ============================================ */
.founder-story {
    padding: var(--section-padding) 0;
    background: linear-gradient(135deg, var(--gray-900) 0%, var(--gray-800) 100%);
}

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

.founder-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    color: var(--white);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.us-flag {
    font-size: 1.25rem;
}

.founder-content h2 {
    color: var(--white);
    margin-bottom: 1.5rem;
}

.founder-content > p {
    color: var(--gray-300);
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.founder-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2.5rem;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.founder-stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    margin-bottom: 0.25rem;
}

.founder-stat-label {
    font-size: 0.875rem;
    color: var(--gray-400);
}

@media (max-width: 768px) {
    .founder-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
}

/* ============================================
   Expat Concerns Section
   ============================================ */
.expat-concerns {
    padding: var(--section-padding) 0;
    background: var(--white);
}

.concerns-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.concern-card {
    display: flex;
    gap: 1.25rem;
    padding: 1.75rem;
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-100);
    transition: all var(--transition-base);
}

.concern-card:hover {
    background: var(--white);
    box-shadow: var(--shadow-lg);
    border-color: var(--gray-200);
}

.concern-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    flex-shrink: 0;
}

.concern-icon.danger {
    background: rgba(239, 68, 68, 0.1);
    color: var(--error);
}

.concern-content h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    color: var(--gray-900);
}

.concern-problem {
    font-size: 0.9375rem;
    color: var(--gray-500);
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

.concern-solution {
    font-size: 0.9375rem;
    color: var(--gray-700);
    line-height: 1.6;
}

.concern-solution strong {
    color: var(--success);
}

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

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

    .concern-card {
        flex-direction: column;
        text-align: center;
    }

    .concern-icon {
        margin: 0 auto;
    }
}

/* ============================================
   Page Header (for subpages)
   ============================================ */
.page-header {
    padding: 10rem 0 4rem;
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--white) 100%);
    text-align: center;
}

.page-header h1 {
    margin-bottom: 1rem;
}

.page-header p {
    color: var(--gray-500);
    font-size: 1.25rem;
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================
   Testimonials Page
   ============================================ */
.testimonials-page {
    padding: var(--section-padding) 0;
}

.testimonials-full-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.testimonial-card-full {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    border: 1px solid var(--gray-100);
}

.testimonial-location {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.375rem 0.75rem;
    background: var(--gray-100);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-600);
    margin-bottom: 1rem;
}

.location-flag {
    font-size: 1.25rem;
}

.testimonial-text {
    color: var(--gray-600);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.testimonials-cta {
    text-align: center;
    padding: 3rem;
    background: var(--gray-50);
    border-radius: var(--radius-xl);
}

.testimonials-cta h2 {
    margin-bottom: 0.75rem;
}

.testimonials-cta p {
    color: var(--gray-500);
    margin-bottom: 1.5rem;
}

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

/* ============================================
   Referral Page
   ============================================ */
.referral-section {
    padding: var(--section-padding) 0;
}

.referral-hero-card {
    display: flex;
    align-items: center;
    gap: 3rem;
    background: var(--gradient-primary);
    padding: 3rem;
    border-radius: var(--radius-xl);
    color: var(--white);
    margin-bottom: 4rem;
}

.referral-savings {
    text-align: center;
    flex-shrink: 0;
}

.savings-amount {
    display: block;
    font-size: 5rem;
    font-weight: 800;
    line-height: 1;
}

.savings-label {
    display: block;
    font-size: 1.125rem;
    opacity: 0.9;
    margin-top: 0.5rem;
}

.referral-info h2 {
    color: var(--white);
    margin-bottom: 1rem;
}

.referral-info p {
    opacity: 0.9;
    font-size: 1.125rem;
    line-height: 1.7;
}

.referral-steps {
    margin-bottom: 4rem;
}

.referral-steps h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.referral-step {
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.referral-step .step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: var(--primary);
    color: var(--white);
    font-size: 0.875rem;
    font-weight: 700;
    border-radius: 50%;
    margin-bottom: 1rem;
}

.referral-step .step-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background: var(--gray-100);
    border-radius: var(--radius-lg);
    margin: 0 auto 1rem;
    color: var(--primary);
}

.referral-step h3 {
    margin-bottom: 0.75rem;
}

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

.referral-benefits {
    margin-bottom: 4rem;
}

.referral-benefits h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.benefit-card {
    padding: 1.5rem;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    text-align: center;
}

.benefit-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: var(--gray-100);
    border-radius: var(--radius-md);
    margin: 0 auto 1rem;
    color: var(--primary);
}

.benefit-card h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.benefit-card p {
    color: var(--gray-500);
    font-size: 0.875rem;
}

.referral-faq {
    margin-bottom: 4rem;
}

.referral-faq h2 {
    text-align: center;
    margin-bottom: 2rem;
}

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

.faq-item {
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--gray-200);
}

.faq-item h3 {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
}

.faq-item p {
    color: var(--gray-500);
}

.referral-cta {
    text-align: center;
    padding: 3rem;
    background: var(--gray-50);
    border-radius: var(--radius-xl);
}

.referral-cta h2 {
    margin-bottom: 0.75rem;
}

.referral-cta p {
    color: var(--gray-500);
    margin-bottom: 1.5rem;
}

.cta-note {
    margin-top: 1rem;
    font-size: 0.875rem;
    color: var(--gray-500);
}

.cta-note a {
    color: var(--primary);
    font-weight: 500;
}

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

@media (max-width: 768px) {
    .referral-hero-card {
        flex-direction: column;
        text-align: center;
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   Partners Page
   ============================================ */
.partner-overview {
    padding: var(--section-padding) 0;
    background: var(--gray-50);
}

.partner-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.partner-intro h2 {
    margin-bottom: 1rem;
}

.partner-intro p {
    color: var(--gray-500);
    font-size: 1.125rem;
}

.partner-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.partner-stat {
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.partner-stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.partner-stat-label {
    color: var(--gray-500);
    font-size: 0.9375rem;
}

.partner-types {
    padding: var(--section-padding) 0;
}

.partner-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.partner-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-100);
}

.partner-card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: var(--gray-100);
    border-radius: var(--radius-lg);
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.partner-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
}

.partner-card-subtitle {
    color: var(--gray-500);
    font-size: 0.9375rem;
    margin-bottom: 1rem;
}

.partner-card > p {
    color: var(--gray-600);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.partner-benefits-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.partner-benefits-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9375rem;
    color: var(--gray-600);
}

.partner-benefits-list li::before {
    content: '✓';
    color: var(--success);
    font-weight: 700;
}

.commission-section {
    padding: var(--section-padding) 0;
    background: var(--gray-50);
}

.commission-card {
    background: var(--white);
    padding: 3rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    max-width: 900px;
    margin: 0 auto;
}

.commission-header {
    text-align: center;
    margin-bottom: 2rem;
}

.commission-header h2 {
    margin-bottom: 0.5rem;
}

.commission-header p {
    color: var(--gray-500);
}

.commission-tiers {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.commission-tier {
    text-align: center;
    padding: 2rem;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-lg);
    position: relative;
}

.commission-tier.featured {
    border-color: var(--primary);
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.05) 0%, transparent 100%);
}

.tier-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.25rem 1rem;
    background: var(--primary);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: var(--radius-full);
}

.tier-label {
    display: block;
    font-size: 0.875rem;
    color: var(--gray-500);
    margin-bottom: 0.5rem;
}

.tier-commission {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.tier-detail {
    font-size: 0.875rem;
    color: var(--gray-500);
}

.commission-note {
    text-align: center;
    color: var(--gray-500);
    font-size: 0.875rem;
}

.partner-form-section {
    padding: var(--section-padding) 0;
}

.partner-form-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1000px;
    margin: 0 auto;
}

.partner-form-info h2 {
    margin-bottom: 1rem;
}

.partner-form-info > p {
    color: var(--gray-500);
    margin-bottom: 2rem;
}

.partner-contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.partner-contact {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--gray-600);
}

.partner-contact svg {
    color: var(--primary);
}

.partner-form {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

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

    .partner-cards {
        grid-template-columns: 1fr;
    }

    .commission-tiers {
        grid-template-columns: 1fr;
    }

    .partner-form-wrapper {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   Coming Soon Section
   ============================================ */
.coming-soon-section {
    padding: 3rem 0;
    background: linear-gradient(135deg, var(--gray-900) 0%, var(--gray-800) 100%);
}

.coming-soon-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.coming-soon-text h3 {
    color: var(--white);
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.coming-soon-text p {
    color: var(--gray-400);
}

.coming-soon-countries {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.coming-soon-country {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    color: var(--white);
    font-size: 0.9375rem;
}

.coming-soon-country .flag {
    font-size: 1.25rem;
}

@media (max-width: 768px) {
    .coming-soon-content {
        flex-direction: column;
        text-align: center;
    }

    .coming-soon-countries {
        justify-content: center;
    }
}

/* ============================================
   Vehicle Registration Form
   ============================================ */
.vehicle-form-section {
    padding: var(--section-padding) 0;
    background: var(--gray-50);
}

.vehicle-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.vehicle-form-info .section-tag {
    margin-bottom: 1rem;
}

.vehicle-form-info h2 {
    margin-bottom: 1rem;
}

.vehicle-form-info > p {
    color: var(--gray-500);
    margin-bottom: 2rem;
    font-size: 1.125rem;
}

.trust-badges {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow);
}

.trust-badge-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: var(--gray-100);
    border-radius: var(--radius-md);
    color: var(--primary);
}

.trust-badge-text strong {
    display: block;
    color: var(--gray-900);
    margin-bottom: 0.125rem;
}

.trust-badge-text span {
    font-size: 0.875rem;
    color: var(--gray-500);
}

.vehicle-form-wrapper {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--gray-100);
}

.vehicle-form h3 {
    text-align: center;
    margin-bottom: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

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

    .form-row {
        grid-template-columns: 1fr;
    }

    .vehicle-form-wrapper {
        padding: 1.5rem;
        border-radius: var(--radius-lg);
    }

    .vehicle-form-section {
        padding: 3rem 0;
    }

    .vehicle-form h3 {
        font-size: 1.1rem;
    }

    .form-group input,
    .form-group select {
        font-size: 1rem;
    }

    .btn-full {
        font-size: 0.95rem;
        padding: 1rem;
    }
}

/* ============================================
   Blog Styles
   ============================================ */
.blog-section {
    padding: var(--section-padding) 0;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.blog-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all var(--transition-base);
    text-decoration: none;
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.blog-card-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.05);
}

.blog-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.375rem 0.875rem;
    background: var(--primary);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.blog-card-content {
    padding: 1.5rem;
}

.blog-date {
    font-size: 0.875rem;
    color: var(--gray-500);
}

.blog-card-content h2 {
    font-size: 1.25rem;
    margin: 0.5rem 0;
    color: var(--gray-900);
}

.blog-card-content p {
    color: var(--gray-600);
    font-size: 0.9375rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.blog-read-more {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9375rem;
}

/* Blog Post Page */
.blog-post-header {
    padding: 10rem 0 3rem;
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--white) 100%);
}

.back-to-blog {
    display: inline-block;
    color: var(--primary);
    font-weight: 500;
    margin-bottom: 1rem;
}

.back-to-blog:hover {
    text-decoration: underline;
}

.blog-post-header .blog-category {
    position: static;
    display: inline-block;
    margin-bottom: 1rem;
}

.blog-post-header h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
    max-width: 800px;
}

.blog-excerpt {
    font-size: 1.25rem;
    color: var(--gray-600);
    max-width: 700px;
    margin-bottom: 1.5rem;
}

.blog-meta {
    display: flex;
    gap: 1.5rem;
    color: var(--gray-500);
    font-size: 0.9375rem;
}

.blog-post-image {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 1.5rem;
    box-sizing: border-box;
}

.blog-post-image img {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: cover;
    display: block;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.blog-post-content {
    max-width: 750px;
    margin: 0 auto;
    padding: 4rem 0 6rem;
}

.blog-post-content .lead {
    font-size: 1.25rem;
    color: var(--gray-700);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.blog-post-content h2 {
    font-size: 1.75rem;
    margin: 3rem 0 1rem;
    color: var(--gray-900);
}

.blog-post-content h3 {
    font-size: 1.25rem;
    margin: 2rem 0 0.75rem;
    color: var(--gray-800);
}

.blog-post-content p {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--gray-700);
    margin-bottom: 1.5rem;
}

.blog-post-content ul,
.blog-post-content ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.blog-post-content li {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--gray-700);
    margin-bottom: 0.75rem;
}

.blog-post-content li strong {
    color: var(--gray-900);
}

.checklist {
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.checklist-item {
    display: flex;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--gray-200);
}

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

.checklist-item .check {
    color: var(--success);
    font-weight: 700;
}

.blog-cta {
    background: var(--gradient-primary);
    padding: 2.5rem;
    border-radius: var(--radius-xl);
    text-align: center;
    margin-top: 3rem;
}

.blog-cta h3 {
    color: var(--white);
    margin-bottom: 0.75rem;
}

.blog-cta p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.blog-cta .btn {
    background: var(--white);
    color: var(--primary);
}

.blog-cta .btn:hover {
    background: var(--gray-100);
}

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

    .blog-post-content {
        padding: 2rem 0;
    }
}

/* ============================================
   Legal Pages (Privacy, Terms)
   ============================================ */
.legal-content {
    padding: var(--section-padding) 0;
}

.legal-content .container {
    max-width: 800px;
}

.legal-content h2 {
    font-size: 1.5rem;
    margin: 2.5rem 0 1rem;
    color: var(--gray-900);
}

.legal-content h3 {
    font-size: 1.125rem;
    margin: 2rem 0 0.75rem;
    color: var(--gray-800);
}

.legal-content p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--gray-700);
    margin-bottom: 1rem;
}

.legal-content ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.legal-content li {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--gray-700);
    margin-bottom: 0.5rem;
}

.legal-updated {
    color: var(--gray-500);
    font-size: 0.9375rem;
    margin-bottom: 2rem;
}

/* ============================================
   Blog Article Styles
   ============================================ */
.blog-article {
    padding: var(--section-padding) 0;
}

.blog-article .container {
    max-width: 800px;
}

.blog-article-header {
    margin-bottom: 3rem;
}

.blog-back-link {
    display: inline-block;
    color: var(--primary);
    font-weight: 500;
    margin-bottom: 1.5rem;
    transition: var(--transition-fast);
}

.blog-back-link:hover {
    color: var(--primary-dark);
}

.blog-article-header .blog-category {
    background: var(--primary);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: inline-block;
    margin-bottom: 1rem;
}

.blog-article-header h1 {
    font-size: clamp(2rem, 5vw, 2.75rem);
    font-weight: 800;
    color: var(--gray-900);
    line-height: 1.2;
    margin-bottom: 1rem;
}

.blog-meta {
    display: flex;
    gap: 1.5rem;
    color: var(--gray-500);
    font-size: 0.9375rem;
}

.blog-article-content {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--gray-700);
}

.blog-article-content h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--gray-900);
    margin: 3rem 0 1.25rem;
}

.blog-article-content h3 {
    font-size: 1.375rem;
    font-weight: 600;
    color: var(--gray-800);
    margin: 2.5rem 0 1rem;
}

.blog-article-content h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--gray-800);
    margin: 2rem 0 0.75rem;
}

.blog-article-content p {
    margin-bottom: 1.5rem;
}

.blog-article-content ul,
.blog-article-content ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.blog-article-content li {
    margin-bottom: 0.5rem;
}

.blog-article-content strong {
    color: var(--gray-900);
}

.blog-intro {
    font-size: 1.25rem;
    color: var(--gray-600);
    border-left: 4px solid var(--primary);
    padding-left: 1.5rem;
    margin-bottom: 2.5rem;
}

/* Blog Phrase Box (for Spanish phrases) */
.phrase-box {
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    padding: 1.25rem 1.5rem;
    margin-bottom: 1rem;
}

.phrase-box p {
    margin-bottom: 0;
}

.phrase-box em {
    color: var(--gray-500);
    font-size: 0.9375rem;
}

/* Blog Tables */
.blog-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0 2rem;
    font-size: 0.9375rem;
}

.blog-table th,
.blog-table td {
    padding: 0.75rem 1rem;
    text-align: left;
    border-bottom: 1px solid var(--gray-200);
}

.blog-table th {
    background: var(--gray-50);
    font-weight: 600;
    color: var(--gray-900);
}

.blog-table tr:hover td {
    background: var(--gray-50);
}

/* Blog Checklist */
.blog-checklist {
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 1.5rem 2rem;
    margin: 2rem 0;
}

.blog-checklist h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--gray-900);
    margin: 0 0 1rem;
}

.blog-checklist ul {
    margin-bottom: 0;
    list-style: none;
    padding-left: 0;
}

.blog-checklist li {
    position: relative;
    padding-left: 1.75rem;
    margin-bottom: 0.5rem;
}

.blog-checklist li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: 700;
}

/* Blog CTA Box */
.blog-cta-box {
    background: var(--gradient-primary);
    padding: 2.5rem;
    border-radius: var(--radius-xl);
    margin: 3rem 0;
    text-align: center;
}

.blog-cta-box h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin: 0 0 0.75rem;
}

.blog-cta-box p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.blog-cta-box .btn {
    background: var(--white);
    color: var(--primary);
}

.blog-cta-box .btn:hover {
    background: var(--gray-100);
}

/* Blog Share */
.blog-share {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 2rem;
    margin-top: 3rem;
    border-top: 1px solid var(--gray-200);
}

.blog-share span {
    color: var(--gray-600);
    font-weight: 500;
}

.share-links {
    display: flex;
    gap: 1rem;
}

.share-links a {
    color: var(--primary);
    font-weight: 500;
    transition: var(--transition-fast);
}

.share-links a:hover {
    color: var(--primary-dark);
}

/* Related Articles */
.related-articles {
    background: var(--gray-50);
    padding: 4rem 0;
}

.related-articles h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 2rem;
    text-align: center;
}

.related-articles .blog-grid {
    max-width: 800px;
    margin: 0 auto;
}

/* Blog Listing Page */
.blog-section {
    padding: var(--section-padding) 0;
}

.blog-section .blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
}

.blog-section .blog-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition-base);
    position: relative;
}

.blog-section .blog-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: var(--transition-base);
}

.blog-section .blog-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.blog-section .blog-card:hover::before {
    opacity: 1;
}

.blog-section .blog-card-content {
    padding: 1.75rem;
}

.blog-section .blog-card .blog-category {
    background: var(--primary);
    color: var(--white);
    padding: 0.3rem 0.875rem;
    border-radius: var(--radius-full);
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: inline-block;
    margin-bottom: 0.75rem;
}

.blog-section .blog-card .blog-date {
    display: block;
    color: var(--gray-400);
    font-size: 0.8125rem;
    margin-bottom: 0.75rem;
}

.blog-section .blog-card h2 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900);
    line-height: 1.3;
    margin-bottom: 0.75rem;
    transition: var(--transition-fast);
}

.blog-section .blog-card:hover h2 {
    color: var(--primary);
}

.blog-section .blog-card p {
    color: var(--gray-600);
    font-size: 0.9375rem;
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

.blog-section .blog-card .blog-read-more {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9375rem;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    transition: var(--transition-fast);
}

.blog-section .blog-card:hover .blog-read-more {
    gap: 0.5rem;
}

@media (max-width: 768px) {
    .blog-article-content h2 {
        font-size: 1.5rem;
    }
    
    .blog-checklist {
        padding: 1.25rem 1.5rem;
    }
    
    .blog-cta-box {
        padding: 2rem 1.5rem;
    }
    
    .blog-table {
        font-size: 0.875rem;
    }
    
    .blog-table th,
    .blog-table td {
        padding: 0.5rem 0.75rem;
    }
    
    .blog-share {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* ============================================
   Neutrality Promise
   ============================================ */

.neutrality-section {
    padding: 3rem 0;
    background: var(--gray-50);
}

.neutrality-card {
    background: white;
    border: 1px solid var(--gray-200);
    border-left: 4px solid var(--primary);
    border-radius: var(--radius-xl);
    padding: 2rem 2.5rem;
    box-shadow: var(--shadow-md);
}

.neutrality-top {
    display: grid;
    grid-template-columns: 3rem 1fr 260px;
    gap: 1.5rem 2rem;
    align-items: start;
    margin-bottom: 1.5rem;
}

.neutrality-icon {
    font-size: 2.25rem;
    line-height: 1;
    padding-top: 0.2rem;
}

.neutrality-content h3 {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

.neutrality-content p {
    font-size: 0.95rem;
    color: var(--gray-600);
    line-height: 1.6;
}

.neutrality-pillars {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    border-left: 1px solid var(--gray-200);
    padding-left: 1.5rem;
}

.neutrality-pillar {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gray-700);
}

.pillar-icon {
    font-size: 1rem;
    flex-shrink: 0;
}

.neutrality-assurance {
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    padding: 1rem 1.25rem;
}

.neutrality-assurance p {
    font-size: 0.875rem;
    color: var(--gray-500);
    line-height: 1.65;
    margin: 0;
}

@media (max-width: 860px) {
    .neutrality-top {
        grid-template-columns: 3rem 1fr;
    }

    .neutrality-pillars {
        grid-column: 2 / 3;
        border-left: none;
        border-top: 1px solid var(--gray-200);
        padding-left: 0;
        padding-top: 1rem;
        flex-direction: row;
        flex-wrap: wrap;
    }
}

@media (max-width: 600px) {
    .neutrality-card {
        padding: 1.5rem;
    }

    .neutrality-top {
        grid-template-columns: 1fr;
    }

    .neutrality-icon {
        display: none;
    }

    .neutrality-pillars {
        grid-column: 1;
        flex-direction: column;
    }
}

/* ============================================
   The Call Visual Section
   ============================================ */

.the-call-section {
    padding: var(--section-padding) 0;
    background: var(--gray-900);
    color: white;
}

.the-call-section .section-header h2,
.the-call-section .section-header p {
    color: white;
}

.the-call-section .section-header p {
    color: var(--gray-400);
}

.the-call-section .section-tag {
    background: rgba(220, 38, 38, 0.2);
    border: 1px solid rgba(220, 38, 38, 0.35);
    color: #fca5a5;
}

.call-visual {
    display: grid;
    grid-template-columns: 1fr 140px 1fr;
    gap: 1.5rem;
    align-items: start;
    margin: 2rem 0 2rem;
}

/* Call Parties */
.call-party {
    background: var(--gray-800);
    border: 1px solid var(--gray-700);
    border-radius: var(--radius-xl);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    min-height: 320px;
}

.call-party-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-bottom: 0.25rem;
    flex-shrink: 0;
}

.call-party-avatar.them {
    background: #1d4ed8;
}

.call-party-label {
    font-weight: 700;
    font-size: 1rem;
    color: white;
    transition: opacity 200ms ease;
}

.call-party-sub {
    font-size: 0.75rem;
    color: var(--gray-400);
    margin-bottom: 0.5rem;
    letter-spacing: 0.03em;
}

/* Chat bubbles */
.call-bubbles {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    transition: opacity 200ms ease;
}

.call-bubbles.fading {
    opacity: 0;
}

.call-bubble {
    padding: 0.6rem 0.85rem;
    border-radius: var(--radius-md);
    font-size: 0.8rem;
    line-height: 1.55;
    max-width: 100%;
}

.bubble-speaker {
    display: block;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: rgba(255,255,255,0.4);
    margin-bottom: 2px;
    text-transform: uppercase;
}

.call-bubble.outgoing {
    background: rgba(220, 38, 38, 0.15);
    border: 1px solid rgba(220, 38, 38, 0.25);
    color: #fca5a5;
}

.call-bubble.incoming {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--gray-300);
}

.them-bubbles .them-bubble {
    background: rgba(29, 78, 216, 0.12);
    border: 1px solid rgba(29, 78, 216, 0.25);
    color: #93c5fd;
    font-style: italic;
    font-size: 0.8rem;
    transition: opacity 200ms ease;
}

.them-bubbles.fading .them-bubble {
    opacity: 0;
}

/* Bridge */
.call-bridge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
    padding: 1.25rem 0.75rem;
    background: var(--gray-800);
    border: 1px solid var(--gray-700);
    border-radius: var(--radius-xl);
    min-height: 320px;
    justify-content: center;
}

.call-bridge-icon {
    font-size: 2rem;
    line-height: 1;
}

.call-bridge-name {
    font-weight: 800;
    font-size: 0.85rem;
    color: white;
    text-align: center;
}

.call-bridge-tag {
    font-size: 0.65rem;
    background: rgba(220,38,38,0.15);
    border: 1px solid rgba(220,38,38,0.3);
    padding: 0.2rem 0.55rem;
    border-radius: var(--radius-full);
    color: #fca5a5;
    white-space: nowrap;
}

.call-bridge-arrows {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
    margin-top: 0.25rem;
    color: var(--gray-400);
}

.bridge-arrow {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.7rem;
    letter-spacing: 0.04em;
    color: var(--gray-400);
}

/* Scenario pills */
.call-scenarios {
    display: flex;
    gap: 0.6rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.call-scenario {
    padding: 0.45rem 0.9rem;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 500;
    background: var(--gray-800);
    border: 1px solid var(--gray-700);
    color: var(--gray-400);
    cursor: pointer;
    transition: all var(--transition-base);
    font-family: var(--font-sans);
}

.call-scenario:hover {
    border-color: var(--gray-500);
    color: var(--gray-200);
}

.call-scenario.active {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

.call-scenario:focus-visible {
    outline: 2px solid var(--primary-light);
    outline-offset: 2px;
}

@media (max-width: 900px) {
    .call-visual {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .call-party,
    .call-bridge {
        min-height: unset;
    }

    .call-bridge {
        flex-direction: row;
        justify-content: center;
        padding: 1rem;
    }

    .call-bridge-arrows {
        display: none;
    }
}

/* ============================================
   Quote CTA Banner
   ============================================ */

.quote-cta-banner {
    background: linear-gradient(135deg, #b91c1c 0%, #7f1d1d 60%, #450a0a 100%);
    padding: 5rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.quote-cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.quote-cta-inner {
    position: relative;
    max-width: 780px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.quote-mark {
    font-size: 8rem;
    line-height: 0.5;
    color: rgba(255,255,255,0.15);
    font-family: Georgia, serif;
    font-weight: 700;
    align-self: flex-start;
    margin-left: 1rem;
}

.quote-cta-banner blockquote {
    font-size: 1.75rem;
    font-weight: 700;
    color: white;
    line-height: 1.45;
    letter-spacing: -0.01em;
    margin: -2rem 0 0;
}

.quote-attribution {
    font-size: 1rem;
    color: white;
    font-style: italic;
    margin-top: -0.5rem;
}

.quote-cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 0.5rem;
}

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

.btn-white:hover {
    background: var(--gray-100);
    border-color: var(--gray-100);
}

.btn-outline-white {
    background: transparent;
    color: white;
    border: 2px solid rgba(255,255,255,0.5);
}

.btn-outline-white:hover {
    border-color: white;
    background: rgba(255,255,255,0.1);
}

@media (max-width: 700px) {
    .quote-cta-banner blockquote {
        font-size: 1.35rem;
    }

    .quote-mark {
        font-size: 5rem;
    }
}

/* ============================================
   Membership Card Section
   ============================================ */

.member-card-section {
    padding: var(--section-padding) 0;
    background: var(--gray-50);
}

.member-card-showcase {
    display: flex;
    gap: 2.5rem;
    justify-content: center;
    align-items: center;
    margin: 3rem 0 4rem;
    flex-wrap: wrap;
}

/* Wallet Card Base */
.wallet-card {
    width: 380px;
    height: 240px;
    border-radius: 18px;
    padding: 1.5rem 1.75rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow:
        0 25px 50px rgba(0,0,0,0.25),
        0 10px 20px rgba(0,0,0,0.15),
        inset 0 1px 0 rgba(255,255,255,0.15);
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
    transition: transform var(--transition-base);
}

.wallet-card:hover {
    transform: translateY(-6px) rotate(-1deg);
}

/* Front Card */
.wallet-card-front {
    background: linear-gradient(135deg, #b91c1c 0%, #7f1d1d 50%, #450a0a 100%);
    color: white;
}

.wallet-card-front::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
}

.wallet-card-front::after {
    content: '';
    position: absolute;
    bottom: -40px;
    left: -40px;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: rgba(255,255,255,0.04);
}

.card-top-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.card-logo-group {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.card-logo-icon {
    font-size: 1.5rem;
    line-height: 1;
}

.card-brand {
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: white;
}

.card-tagline-small {
    font-size: 0.6rem;
    color: rgba(255,255,255,0.7);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-top: 1px;
}

.card-qr {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
}

.card-qr svg {
    border-radius: 3px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.25);
}

.card-qr-label {
    font-size: 0.4rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    color: rgba(255,255,255,0.7);
    text-transform: uppercase;
}

.card-member-info {
    margin-top: 0.25rem;
}

.card-label {
    font-size: 0.55rem;
    letter-spacing: 0.12em;
    color: rgba(255,255,255,0.55);
    text-transform: uppercase;
    margin-bottom: 2px;
}

.card-value {
    font-size: 0.85rem;
    font-weight: 600;
    color: white;
    letter-spacing: 0.04em;
}

.card-name {
    font-size: 1rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.card-bottom-row {
    display: flex;
    gap: 1.5rem;
    align-items: flex-end;
}

.card-hotline-strip {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.35);
    padding: 0.4rem 1.75rem;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: rgba(255,255,255,0.9);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

/* Back Card */
.wallet-card-back {
    background: linear-gradient(160deg, #1e293b 0%, #0f172a 100%);
    color: white;
    padding: 0;
    justify-content: flex-start;
}

.card-mag-strip {
    width: 100%;
    height: 44px;
    background: linear-gradient(180deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    margin-bottom: 0;
    flex-shrink: 0;
}

.card-back-content {
    padding: 0.9rem 1.5rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex: 1;
}

.card-back-title {
    font-size: 0.6rem;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    text-align: center;
}

.card-services-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.2rem 1rem;
}

.card-service-item {
    font-size: 0.65rem;
    color: rgba(255,255,255,0.8);
    font-weight: 500;
}

.card-back-hotline {
    background: var(--primary);
    border-radius: var(--radius-sm);
    padding: 0.35rem 0.75rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 0.25rem;
}

.card-back-hotline strong {
    font-size: 0.6rem;
    letter-spacing: 0.08em;
    color: white;
}

.card-back-hotline span {
    font-size: 0.75rem;
    font-weight: 700;
    color: white;
}

.card-back-whatsapp {
    font-size: 0.58rem;
    color: rgba(255,255,255,0.4);
    text-align: center;
    letter-spacing: 0.05em;
}

/* Card Callouts */
.card-callouts {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 1rem;
}

.card-callout {
    text-align: center;
}

.card-callout-icon {
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.card-callout h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: 0.4rem;
}

.card-callout p {
    font-size: 0.875rem;
    color: var(--gray-500);
    line-height: 1.5;
}

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

@media (max-width: 600px) {
    .wallet-card {
        width: 320px;
        height: 200px;
    }

    .card-callouts {
        grid-template-columns: 1fr;
    }

    .member-card-showcase {
        flex-direction: column;
        align-items: center;
    }
}

/* ==========================================
   FAQ SECTION
   ========================================== */
.faq-section {
    padding: var(--section-padding);
    background: var(--gray-50);
}

.faq-grid {
    max-width: 820px;
    margin: 3rem auto 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.faq-item {
    background: white;
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: box-shadow 0.2s ease;
}

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

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 1.25rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-900);
    cursor: pointer;
    text-align: left;
    line-height: 1.4;
    transition: color 0.2s ease;
}

.faq-question:hover {
    color: var(--primary);
}

.faq-question[aria-expanded="true"] {
    color: var(--primary);
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--primary);
    flex-shrink: 0;
    transition: transform 0.25s ease;
    line-height: 1;
}

.faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    display: none;
    padding: 0 1.5rem 1.25rem;
    border-top: 1px solid var(--gray-100);
}

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

.faq-answer p {
    color: var(--gray-600);
    line-height: 1.7;
    margin: 0;
    padding-top: 1rem;
}

@media (max-width: 768px) {
    .faq-question {
        font-size: 0.9375rem;
        padding: 1rem 1.25rem;
    }

    .faq-answer {
        padding: 0 1.25rem 1rem;
    }
}

/* ==========================================
   INTERPRETER QUALIFICATIONS
   ========================================== */
.interpreter-quals {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--gray-100);
}

.quals-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.qual-block {
    background: var(--gray-50);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-lg);
    padding: 1.25rem 1.5rem;
}

.qual-icon {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.qual-block h4 {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--gray-900);
    margin: 0 0 0.625rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.qual-block ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.qual-block ul li {
    font-size: 0.8125rem;
    color: var(--gray-600);
    padding-left: 1.1rem;
    position: relative;
    line-height: 1.5;
}

.qual-block ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 700;
}

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

/* ==========================================
   QR MEMBER PROFILE SECTION
   ========================================== */
.qr-profile-section {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 3rem;
    align-items: start;
    margin: 3.5rem 0 3rem;
    background: var(--gray-50);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-xl);
    padding: 2.5rem 3rem;
}

.qr-profile-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Phone mockup */
.qr-phone-mockup {
    width: 200px;
    background: #0f172a;
    border-radius: 20px;
    padding: 1rem;
    box-shadow: 0 24px 60px rgba(0,0,0,0.3), 0 0 0 1px rgba(255,255,255,0.06);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.qr-phone-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.625rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255,255,255,0.4);
}

.qr-phone-badge {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    background: rgba(220, 38, 38, 0.15);
    border: 1px solid rgba(220, 38, 38, 0.3);
    border-radius: 10px;
    padding: 0.625rem 0.75rem;
}

.qr-phone-icon {
    font-size: 1.25rem;
    line-height: 1;
}

.qr-phone-name {
    font-size: 0.75rem;
    font-weight: 700;
    color: white;
}

.qr-phone-id {
    font-size: 0.5625rem;
    color: rgba(255,255,255,0.45);
    margin-top: 0.1rem;
}

.qr-phone-rows {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.qr-phone-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.4rem 0.625rem;
    border-radius: 7px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);
}

.qr-phone-row.qr-critical {
    background: rgba(220, 38, 38, 0.1);
    border-color: rgba(220, 38, 38, 0.2);
}

.qr-row-label {
    font-size: 0.5625rem;
    color: rgba(255,255,255,0.45);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.qr-row-value {
    font-size: 0.625rem;
    font-weight: 700;
    color: white;
}

.qr-phone-row.qr-critical .qr-row-value {
    color: #fca5a5;
}

.qr-phone-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding-top: 0.5rem;
    border-top: 1px solid rgba(255,255,255,0.07);
}

.qr-phone-scan-hint {
    font-size: 0.5rem;
    color: rgba(255,255,255,0.3);
    text-align: center;
    letter-spacing: 0.03em;
}

.qr-profile-info .section-tag {
    display: inline-block;
    margin-bottom: 0.75rem;
}

.qr-profile-info h3 {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--gray-900);
    margin: 0 0 0.75rem;
    line-height: 1.3;
}

.qr-profile-info > p {
    color: var(--gray-600);
    line-height: 1.7;
    margin: 0 0 1.75rem;
}

.qr-profile-fields {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.qr-field {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    background: white;
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-lg);
    padding: 0.875rem 1rem;
}

.qr-field-icon {
    font-size: 1.25rem;
    flex-shrink: 0;
    line-height: 1;
    padding-top: 0.1rem;
}

.qr-field div {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.qr-field strong {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--gray-900);
}

.qr-field span {
    font-size: 0.75rem;
    color: var(--gray-500);
    line-height: 1.4;
}

.qr-profile-note {
    font-size: 0.8125rem;
    color: var(--gray-500);
    line-height: 1.6;
    padding: 0.875rem 1rem;
    background: rgba(220, 38, 38, 0.04);
    border: 1px solid rgba(220, 38, 38, 0.1);
    border-radius: var(--radius);
    margin: 0;
}

@media (max-width: 900px) {
    .qr-profile-section {
        grid-template-columns: 1fr;
        padding: 2rem;
        gap: 2rem;
    }

    .qr-phone-mockup {
        width: 180px;
    }
}

@media (max-width: 600px) {
    .qr-profile-fields {
        grid-template-columns: 1fr;
    }

    .qr-profile-section {
        padding: 1.5rem;
    }
}
