/* ============================================
   ExpatAutoAssist - Modern Roadside Assistance
   ============================================ */

/* CSS Variables */
:root {
    /* Colors */
    --primary: #2563eb;
    --primary-dark: #1d4ed8;
    --primary-light: #3b82f6;
    --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, #2563eb 0%, #7c3aed 100%);
    --gradient-dark: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    --gradient-glow: radial-gradient(ellipse at center, rgba(37, 99, 235, 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(37, 99, 235, 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(37, 99, 235, 0.1);
    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-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;
    }

    .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(37, 99, 235, 0.2);
    color: #60a5fa;
}

.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;
    }
}
