/* ==========================================
   VARIABLES Y RESET
========================================== */
:root {
    /* Colores principales MegacityGo - Azul Cobalto/Eléctrico */
    --go-primary: #3B82F6;
    --go-primary-light: #60A5FA;
    --go-primary-dark: #2563EB;
    --go-secondary: #06B6D4;
    --go-accent: #F59E0B;
    --go-danger: #EF4444;
    
    /* Gradientes */
    --gradient-go: linear-gradient(135deg, #3B82F6 0%, #2563EB 50%, #1D4ED8 100%);
    --gradient-go-light: linear-gradient(135deg, #60A5FA 0%, #3B82F6 100%);
    --gradient-hero: linear-gradient(180deg, #0f1420 0%, #0a1628 50%, #0f1420 100%);
    --gradient-card: linear-gradient(145deg, rgba(59, 130, 246, 0.1) 0%, rgba(37, 99, 235, 0.05) 100%);
    
    /* Fondos dark mode */
    --dark-bg: #0a0e14;
    --dark-surface: #0f1420;
    --dark-elevated: #151c28;
    --dark-card: #1a2332;
    --dark-input: rgba(255, 255, 255, 0.03);
    
    /* Fondos light mode */
    --light-bg: #f8fafc;
    --light-surface: #ffffff;
    --light-elevated: #f1f5f9;
    --light-card: #ffffff;
    
    /* Textos */
    --text: #f8fafc;
    --text-muted: #94a3b8;
    --text-subtle: #64748b;
    
    /* Bordes */
    --border-subtle: rgba(255, 255, 255, 0.08);
    --border-light: rgba(255, 255, 255, 0.12);
    
    /* Sombras */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.5);
    --shadow-go: 0 0 40px rgba(59, 130, 246, 0.3);
    
    /* Spacing */
    --nav-height: 72px;
}

/* Light Mode */
[data-theme="light"] {
    --dark-bg: var(--light-bg);
    --dark-surface: var(--light-surface);
    --dark-elevated: var(--light-elevated);
    --dark-card: var(--light-card);
    --dark-input: rgba(0, 0, 0, 0.03);
    --text: #0f172a;
    --text-muted: #475569;
    --text-subtle: #64748b;
    --border-subtle: rgba(0, 0, 0, 0.08);
    --border-light: rgba(0, 0, 0, 0.12);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.15);
    --gradient-hero: linear-gradient(180deg, #f8fafc 0%, #e2e8f0 50%, #f8fafc 100%);
}

/* Reset */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Sora', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--dark-bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
}

/* ==========================================
   ANIMACIONES BASE
========================================== */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.05); }
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes roadMove {
    from { background-position: 0 0; }
    to { background-position: 0 100px; }
}

@keyframes carMove {
    0% { transform: translateX(-100px); }
    100% { transform: translateX(calc(100vw + 100px)); }
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

@keyframes radarPulse {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(2.5); opacity: 0; }
}

/* ==========================================
   BACKGROUND EFFECTS
========================================== */
.bg-gradient {
    position: fixed;
    inset: 0;
    background: var(--gradient-hero);
    z-index: 0;
}

.bg-grid {
    position: fixed;
    inset: 0;
    background-image: 
        linear-gradient(rgba(59, 130, 246, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(59, 130, 246, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 0;
    pointer-events: none;
}

.bg-road {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px;
    background: linear-gradient(to top, rgba(59, 130, 246, 0.05) 0%, transparent 100%);
    z-index: 0;
    pointer-events: none;
}

/* Floating cars in background */
.floating-cars {
    position: fixed;
    inset: 0;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
    opacity: 0.3;
}

.car-icon {
    position: absolute;
    font-size: 2rem;
    animation: carMove linear infinite;
}

.car-icon:nth-child(1) { top: 20%; animation-duration: 15s; animation-delay: 0s; }
.car-icon:nth-child(2) { top: 40%; animation-duration: 20s; animation-delay: 3s; }
.car-icon:nth-child(3) { top: 60%; animation-duration: 18s; animation-delay: 7s; }
.car-icon:nth-child(4) { top: 80%; animation-duration: 22s; animation-delay: 10s; }

/* ==========================================
   NAVBAR
========================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--nav-height);
    background: rgba(10, 14, 20, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-subtle);
    z-index: 1000;
    transition: all 0.3s ease;
}

[data-theme="light"] .navbar {
    background: rgba(255, 255, 255, 0.95);
}

.navbar.scrolled {
    background: rgba(10, 14, 20, 0.95);
    box-shadow: var(--shadow-md);
}

[data-theme="light"] .navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

[data-theme="light"] .navbar.scrolled .logo-text {
    color: #0f172a !important;
}

[data-theme="light"] .navbar.scrolled .nav-link {
    color: #1e293b;
}

[data-theme="light"] .navbar.scrolled .nav-link:hover {
    color: var(--go-primary);
}

[data-theme="light"] .navbar.scrolled .btn-ghost {
    color: #1e293b;
    border-color: #cbd5e1;
}

.navbar-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-icon {
    width: 44px;
    height: 44px;
    background: var(--gradient-go);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.3rem;
    color: white;
    box-shadow: var(--shadow-go);
}

.logo-text {
    font-size: 1.4rem;
    font-weight: 700;
    color: #ffffff !important;
}

.logo-text span {
    font-weight: 700;
    color: var(--go-primary) !important;
}

[data-theme="light"] .logo-text {
    color: #0f172a !important;
}

[data-theme="light"] .logo-text span {
    color: var(--go-primary) !important;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: #ffffff;
    transition: color 0.3s ease;
    position: relative;
}

[data-theme="light"] .nav-link {
    color: #1e293b;
}

[data-theme="light"] .nav-link:hover {
    color: var(--go-primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-go);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--go-primary);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.theme-toggle {
    width: 44px;
    height: 44px;
    background: var(--dark-elevated);
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.theme-toggle:hover {
    background: rgba(59, 130, 246, 0.1);
    border-color: var(--go-primary);
}

.theme-toggle svg {
    width: 22px;
    height: 22px;
    color: var(--text-muted);
    transition: color 0.3s ease;
}

.theme-toggle:hover svg {
    color: var(--go-primary);
}

.theme-toggle .icon-sun { display: none; }
[data-theme="light"] .theme-toggle .icon-moon { display: none; }
[data-theme="light"] .theme-toggle .icon-sun { display: block; }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn svg {
    width: 20px;
    height: 20px;
}

.btn-primary {
    background: var(--gradient-go);
    color: white;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(59, 130, 246, 0.4);
}

.btn-ghost {
    background: transparent;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-ghost:hover {
    background: rgba(59, 130, 246, 0.1);
    border-color: var(--go-primary);
    color: var(--go-primary);
}

[data-theme="light"] .btn-ghost {
    color: #1e293b;
    border-color: #cbd5e1;
}

[data-theme="light"] .btn-ghost:hover {
    color: var(--go-primary);
    border-color: var(--go-primary);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.05rem;
}

.btn-block {
    width: 100%;
    justify-content: center;
}

.btn-whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
}

.btn-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--dark-bg);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    overflow-y: auto;
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

[data-theme="light"] .mobile-menu {
    background: #ffffff;
}

.mobile-menu-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.mobile-menu-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text);
    background: var(--dark-card);
    border: 1px solid var(--border-subtle);
    border-radius: 14px;
    transition: all 0.3s ease;
}

.mobile-menu-link:hover,
.mobile-menu-link:active {
    background: rgba(59, 130, 246, 0.1);
    border-color: var(--go-primary);
    color: var(--go-primary);
}

.mobile-menu-link svg {
    width: 22px;
    height: 22px;
    color: var(--go-primary);
}

[data-theme="light"] .mobile-menu-link {
    background: #f8fafc;
}

.mobile-menu-divider {
    height: 1px;
    background: var(--border-subtle);
    margin: 1rem 0;
}

.mobile-menu-content .btn {
    padding: 1rem;
    font-size: 1rem;
    border-radius: 14px;
}

.mobile-menu-content .btn-ghost {
    background: var(--dark-card);
}

[data-theme="light"] .mobile-menu-content .btn-ghost {
    background: #f1f5f9;
    color: #1e293b;
    border-color: #e2e8f0;
}

/* Mobile menu button animation */
.mobile-menu-btn.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* ==========================================
   HERO SECTION
========================================== */
.hero {
    position: relative;
    min-height: 100vh;
    padding: calc(var(--nav-height) + 4rem) 2rem 4rem;
    display: flex;
    align-items: center;
    z-index: 1;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1449824913935-59a10b8d2000?w=1200&q=80') center/cover no-repeat;
    opacity: 0.15;
    mask-image: linear-gradient(to left, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%);
    -webkit-mask-image: linear-gradient(to left, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%);
    z-index: -1;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    animation: slideUp 0.8s ease;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 1rem;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 100px;
    margin-bottom: 1.5rem;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--go-primary);
    border-radius: 50%;
    animation: blink 1.5s infinite;
}

.badge-text {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--go-primary);
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero h1 .gradient {
    background: var(--gradient-go);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero h1 .highlight {
    position: relative;
    display: inline-block;
}

.hero h1 .highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 12px;
    background: rgba(59, 130, 246, 0.2);
    border-radius: 4px;
    z-index: -1;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    max-width: 540px;
    line-height: 1.8;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--dark-elevated);
    border: 1px solid var(--border-subtle);
    border-radius: 100px;
    font-size: 0.9rem;
}

.hero-feature svg {
    width: 18px;
    height: 18px;
    color: var(--go-primary);
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    animation: slideUp 0.8s ease 0.2s backwards;
}

.phone-mockup {
    position: relative;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

.phone-frame {
    position: relative;
    background: linear-gradient(145deg, #1a2332 0%, #0f1420 100%);
    border-radius: 40px;
    padding: 12px;
    box-shadow: 
        0 0 0 1px rgba(255, 255, 255, 0.1),
        0 25px 60px rgba(0, 0, 0, 0.5),
        0 0 100px rgba(59, 130, 246, 0.2);
}

.phone-screen {
    background: linear-gradient(180deg, #111827 0%, #1f2937 100%);
    border-radius: 32px;
    overflow: hidden;
    aspect-ratio: 9/16;
    position: relative;
}

.phone-notch {
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 28px;
    background: #000;
    border-radius: 20px;
    z-index: 10;
}

.phone-content {
    padding: 50px 16px 16px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.app-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.app-logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.app-logo-icon {
    width: 32px;
    height: 32px;
    background: var(--gradient-go);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9rem;
    color: white;
}

.app-logo-text {
    font-weight: 700;
    font-size: 1rem;
    color: white;
}

.app-status {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    color: var(--go-primary);
}

.status-dot {
    width: 8px;
    height: 8px;
    background: var(--go-primary);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

/* Map Preview */
.map-preview {
    flex: 1;
    min-height: 280px;
    background: #1a2332;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    margin-bottom: 12px;
}

/* Estilos para Leaflet dentro del teléfono */
#phoneMap {
    height: 100%;
    width: 100%;
}

#phoneMap .leaflet-control-attribution {
    display: none;
}

.map-bg {
    position: absolute;
    inset: 0;
    background: 
        linear-gradient(90deg, rgba(59, 130, 246, 0.1) 1px, transparent 1px),
        linear-gradient(rgba(59, 130, 246, 0.1) 1px, transparent 1px);
    background-size: 30px 30px;
}

.map-route {
    position: absolute;
    top: 20%;
    left: 10%;
    width: 80%;
    height: 60%;
}

.map-route svg {
    width: 100%;
    height: 100%;
}

.route-line {
    stroke: var(--go-primary);
    stroke-width: 4;
    stroke-linecap: round;
    fill: none;
    stroke-dasharray: 300;
    stroke-dashoffset: 300;
    animation: drawRoute 3s ease forwards infinite;
}

@keyframes drawRoute {
    to { stroke-dashoffset: 0; }
}

.map-marker {
    position: absolute;
    width: 24px;
    height: 24px;
    background: var(--go-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.5);
}

.map-marker::before {
    content: '';
    position: absolute;
    inset: -8px;
    border: 2px solid var(--go-primary);
    border-radius: 50%;
    animation: radarPulse 2s infinite;
}

.map-marker svg {
    width: 14px;
    height: 14px;
    color: white;
}

.marker-start {
    top: 20%;
    left: 15%;
}

.marker-end {
    bottom: 25%;
    right: 20%;
    background: var(--go-secondary);
    box-shadow: 0 0 20px rgba(14, 165, 233, 0.5);
}

.marker-end::before {
    border-color: var(--go-secondary);
}

.marker-alert {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--go-danger);
    box-shadow: 0 0 20px rgba(239, 68, 68, 0.5);
    animation: pulse 1s infinite;
}

.marker-alert::before {
    border-color: var(--go-danger);
}

/* Traffic Cards */
.traffic-cards {
    display: flex;
    gap: 8px;
}

.traffic-card {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 12px;
}

.traffic-card-header {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 6px;
}

.traffic-card-icon {
    width: 24px;
    height: 24px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.traffic-card-icon svg {
    width: 14px;
    height: 14px;
    color: white;
}

.traffic-card-icon.green { background: var(--go-primary); }
.traffic-card-icon.yellow { background: var(--go-accent); }
.traffic-card-icon.red { background: var(--go-danger); }

.traffic-card-title {
    font-size: 0.7rem;
    color: var(--text-muted);
}

.traffic-card-value {
    font-size: 0.9rem;
    font-weight: 700;
    color: white;
}

/* Floating Alerts */
.floating-alert {
    position: absolute;
    background: rgba(10, 14, 20, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    padding: 1rem;
    animation: float 4s ease-in-out infinite;
    box-shadow: var(--shadow-lg);
}

.alert-1 {
    top: 10%;
    right: -20px;
    animation-delay: 0s;
}

.alert-2 {
    bottom: 20%;
    left: -30px;
    animation-delay: 1s;
}

.floating-alert-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.floating-alert-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-alert-icon.whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}

.floating-alert-icon.alert {
    background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
}

.floating-alert-icon svg {
    width: 20px;
    height: 20px;
    color: white;
}

.floating-alert-text h4 {
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 2px;
}

.floating-alert-text p {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* ==========================================
   STATS SECTION
========================================== */
.stats {
    position: relative;
    padding: 4rem 2rem;
    background: var(--gradient-go);
    z-index: 1;
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
}

.stat-number {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    color: white;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-number::after {
    content: '+';
    font-size: 0.6em;
    opacity: 0.8;
}

.stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
}

@media (max-width: 768px) {
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .stats-container {
        grid-template-columns: 1fr;
    }
}


/* ==========================================
   FEATURES SECTION - BENTO GRID MEJORADO
========================================== */
.features {
    position: relative;
    padding: 6rem 2rem;
    z-index: 1;
    background: var(--dark-surface);
    overflow: hidden;
}

.features::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse at 20% 0%, rgba(59, 130, 246, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 100%, rgba(6, 182, 212, 0.05) 0%, transparent 50%);
    z-index: -1;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--go-primary);
    margin-bottom: 1.5rem;
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* Bento Grid Layout */
.features-bento {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: auto;
    gap: 1.5rem;
}

.bento-card {
    background: var(--dark-card);
    border: 1px solid var(--border-subtle);
    border-radius: 24px;
    padding: 2rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.bento-card:hover {
    transform: translateY(-5px);
    border-color: rgba(59, 130, 246, 0.3);
    box-shadow: 0 25px 60px rgba(59, 130, 246, 0.15);
}

/* Card sizes */
.bento-large {
    grid-column: span 8;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 2rem;
    align-items: center;
    min-height: 380px;
}

.bento-medium {
    grid-column: span 4;
    min-height: 380px;
    display: flex;
    flex-direction: column;
}

.bento-small {
    grid-column: span 4;
    min-height: 200px;
    display: flex;
    flex-direction: column;
}

/* Card content */
.bento-content {
    display: flex;
    flex-direction: column;
}

.bento-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.bento-icon svg {
    width: 28px;
    height: 28px;
    color: white;
}

.bento-icon.blue { background: linear-gradient(135deg, #3B82F6 0%, #2563EB 100%); box-shadow: 0 8px 25px rgba(59, 130, 246, 0.35); }
.bento-icon.green { background: linear-gradient(135deg, #25D366 0%, #128C7E 100%); box-shadow: 0 8px 25px rgba(37, 211, 102, 0.35); }
.bento-icon.red { background: linear-gradient(135deg, #EF4444 0%, #DC2626 100%); box-shadow: 0 8px 25px rgba(239, 68, 68, 0.35); }
.bento-icon.orange { background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%); box-shadow: 0 8px 25px rgba(245, 158, 11, 0.35); }
.bento-icon.purple { background: linear-gradient(135deg, #8B5CF6 0%, #7C3AED 100%); box-shadow: 0 8px 25px rgba(139, 92, 246, 0.35); }
.bento-icon.cyan { background: linear-gradient(135deg, #06B6D4 0%, #0891B2 100%); box-shadow: 0 8px 25px rgba(6, 182, 212, 0.35); }
.bento-icon.pink { background: linear-gradient(135deg, #EC4899 0%, #DB2777 100%); box-shadow: 0 8px 25px rgba(236, 72, 153, 0.35); }

.bento-card h3 {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.bento-card p {
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 0.95rem;
}

.bento-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.35rem 0.75rem;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--go-primary);
    margin-top: auto;
    width: fit-content;
}

/* WhatsApp Visual */
.whatsapp-visual {
    background: linear-gradient(145deg, #1a2332 0%, #0f1420 100%);
    border-radius: 20px;
    padding: 1.5rem;
    border: 1px solid var(--border-subtle);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.whatsapp-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-subtle);
    margin-bottom: 1rem;
}

.whatsapp-avatar {
    width: 40px;
    height: 40px;
    background: var(--gradient-go);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: white;
    font-size: 0.9rem;
}

.whatsapp-info h4 {
    font-size: 0.9rem;
    font-weight: 600;
}

.whatsapp-info span {
    font-size: 0.75rem;
    color: #25D366;
}

.whatsapp-messages {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    overflow: hidden;
}

.wa-msg {
    max-width: 90%;
    padding: 0.75rem 1rem;
    border-radius: 16px;
    font-size: 0.85rem;
    line-height: 1.5;
    animation: slideInMsg 0.5s ease forwards;
    opacity: 0;
}

.wa-msg:nth-child(1) { animation-delay: 0.2s; }
.wa-msg:nth-child(2) { animation-delay: 0.6s; }
.wa-msg:nth-child(3) { animation-delay: 1s; }

@keyframes slideInMsg {
    to { opacity: 1; transform: translateY(0); }
    from { opacity: 0; transform: translateY(10px); }
}

.wa-msg.incoming {
    background: #25D366;
    color: white;
    border-bottom-left-radius: 4px;
    align-self: flex-start;
}

.wa-msg.outgoing {
    background: var(--dark-elevated);
    border: 1px solid var(--border-subtle);
    border-bottom-right-radius: 4px;
    align-self: flex-end;
}

.wa-time {
    font-size: 0.65rem;
    opacity: 0.7;
    text-align: right;
    margin-top: 4px;
}

/* Traffic Visual */
.traffic-visual {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1rem;
}

.traffic-route {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: var(--dark-elevated);
    border-radius: 12px;
    border: 1px solid var(--border-subtle);
}

.route-indicator {
    width: 10px;
    height: 36px;
    border-radius: 5px;
}

.route-indicator.green { background: linear-gradient(to bottom, #10B981, #34D399); }
.route-indicator.yellow { background: linear-gradient(to bottom, #F59E0B, #FBBF24); }
.route-indicator.red { background: linear-gradient(to bottom, #EF4444, #F87171); }

.route-info {
    flex: 1;
}

.route-info h5 {
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.15rem;
}

.route-info span {
    font-size: 0.7rem;
    color: var(--text-muted);
}

.route-time {
    font-size: 0.95rem;
    font-weight: 700;
}

.route-time.fast { color: #10B981; }
.route-time.medium { color: #F59E0B; }
.route-time.slow { color: #EF4444; }

@media (max-width: 1024px) {
    .bento-large { grid-column: span 12; }
    .bento-medium { grid-column: span 6; }
    .bento-small { grid-column: span 6; }
}

@media (max-width: 768px) {
    .bento-large { 
        grid-column: span 12; 
        grid-template-columns: 1fr;
    }
    .bento-medium { grid-column: span 12; }
    .bento-small { grid-column: span 12; }
}

/* ==========================================
   HOW IT WORKS
========================================== */
.how-it-works {
    position: relative;
    padding: 6rem 2rem;
    background: var(--dark-surface);
    z-index: 1;
    overflow: hidden;
}

.how-it-works::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1494976388531-d1058494cdd8?w=1400&q=80') center/cover no-repeat;
    opacity: 0.08;
    z-index: -1;
}

.steps-container {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.steps-line {
    position: absolute;
    top: 50%;
    left: 60px;
    right: 60px;
    height: 2px;
    background: var(--border-subtle);
    transform: translateY(-50%);
}

.steps-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background: var(--gradient-go);
    animation: lineGrow 3s ease-in-out infinite;
}

@keyframes lineGrow {
    0%, 100% { width: 0%; }
    50% { width: 100%; }
}

.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
}

.step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--dark-card);
    border: 2px solid var(--border-subtle);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-muted);
    margin: 0 auto 1.5rem;
    position: relative;
    z-index: 1;
    transition: all 0.4s ease;
}

.step:hover .step-number {
    background: var(--gradient-go);
    border-color: var(--go-primary);
    color: white;
    transform: scale(1.1);
    box-shadow: var(--shadow-go);
}

.step h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.step p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* ==========================================
   SERVICES SECTION - DISEÑO MEJORADO
========================================== */
.services {
    position: relative;
    padding: 6rem 2rem;
    z-index: 1;
    overflow: hidden;
    background: var(--dark-surface);
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(6, 182, 212, 0.08) 0%, transparent 50%);
    z-index: -1;
}

.services-hero {
    max-width: 800px;
    margin: 0 auto 4rem;
    text-align: center;
    padding: 3rem;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(6, 182, 212, 0.05) 100%);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 24px;
    position: relative;
    overflow: hidden;
}

.services-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, transparent 70%);
    animation: float 6s ease-in-out infinite;
}

.services-hero-content {
    position: relative;
    z-index: 1;
}

.services-hero-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-go);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.4);
}

.services-hero-icon svg {
    width: 40px;
    height: 40px;
    color: white;
}

.services-hero h3 {
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.services-hero h3 span {
    color: var(--go-primary);
}

.services-hero p {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.services-hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-subtle);
}

.hero-stat {
    text-align: center;
}

.hero-stat-value {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--go-primary);
}

.hero-stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.services-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.service-card {
    background: var(--dark-card);
    border: 1px solid var(--border-subtle);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-go);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(59, 130, 246, 0.3);
    box-shadow: 0 20px 50px rgba(59, 130, 246, 0.15);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 70px;
    height: 70px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: transform 0.4s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
}

.service-icon svg {
    width: 35px;
    height: 35px;
    color: white;
}

/* Colores variados para cada icono */
.service-icon.danger { background: linear-gradient(135deg, #EF4444 0%, #DC2626 100%); box-shadow: 0 10px 30px rgba(239, 68, 68, 0.3); }
.service-icon.warning { background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%); box-shadow: 0 10px 30px rgba(245, 158, 11, 0.3); }
.service-icon.info { background: linear-gradient(135deg, #3B82F6 0%, #2563EB 100%); box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3); }
.service-icon.success { background: linear-gradient(135deg, #10B981 0%, #059669 100%); box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3); }
.service-icon.purple { background: linear-gradient(135deg, #8B5CF6 0%, #7C3AED 100%); box-shadow: 0 10px 30px rgba(139, 92, 246, 0.3); }
.service-icon.cyan { background: linear-gradient(135deg, #06B6D4 0%, #0891B2 100%); box-shadow: 0 10px 30px rgba(6, 182, 212, 0.3); }

.service-content h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.service-content p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

.service-tag {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--go-primary);
    margin-top: 1rem;
}

@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .services-hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
}

/* ==========================================
   GALLERY SECTION
========================================== */
.gallery {
    position: relative;
    padding: 4rem 2rem;
    background: var(--dark-surface);
    z-index: 1;
}

.gallery-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 200px);
    gap: 1rem;
}

.gallery-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
}

.gallery-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease, filter 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
    filter: brightness(0.7);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-tag {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: var(--gradient-go);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.5rem;
    width: fit-content;
}

.gallery-overlay h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
}

@media (max-width: 1024px) {
    .gallery-container {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 180px);
    }
    
    .gallery-item.large {
        grid-column: span 2;
        grid-row: span 1;
    }
}

@media (max-width: 768px) {
    .gallery-container {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }
    
    .gallery-item {
        height: 200px;
    }
    
    .gallery-item.large {
        grid-column: span 1;
        height: 250px;
    }
}

/* ==========================================
   PRICING SECTION
========================================== */
.pricing {
    position: relative;
    padding: 6rem 2rem;
    background: var(--dark-surface);
    z-index: 1;
}

.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.pricing-label {
    font-size: 0.95rem;
    color: var(--text-muted);
    cursor: pointer;
    transition: color 0.3s ease;
}

.pricing-label.active {
    color: var(--go-primary);
    font-weight: 600;
}

.toggle-switch {
    width: 60px;
    height: 32px;
    background: var(--dark-card);
    border: 1px solid var(--border-subtle);
    border-radius: 100px;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

.toggle-switch::after {
    content: '';
    position: absolute;
    top: 4px;
    left: 4px;
    width: 24px;
    height: 24px;
    background: var(--gradient-go);
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.toggle-switch.annual::after {
    transform: translateX(28px);
}

.pricing-cards {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.pricing-card {
    background: var(--dark-card);
    border: 1px solid var(--border-subtle);
    border-radius: 24px;
    padding: 2rem;
    position: relative;
    transition: all 0.4s ease;
}

.pricing-card.featured {
    border-color: var(--go-primary);
    transform: scale(1.05);
    box-shadow: var(--shadow-go);
}

.pricing-card.featured::before {
    content: 'Más Popular';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-go);
    color: white;
    padding: 0.35rem 1rem;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
}

.pricing-card:hover:not(.featured) {
    transform: translateY(-8px);
    border-color: rgba(59, 130, 246, 0.3);
}

.pricing-header {
    text-align: center;
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-subtle);
}

.pricing-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
}

.pricing-currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--go-primary);
}

.pricing-amount {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1;
}

.pricing-period {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.pricing-features {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.pricing-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
}

.pricing-feature svg {
    width: 20px;
    height: 20px;
    color: var(--go-primary);
    flex-shrink: 0;
}

.pricing-card .btn {
    width: 100%;
}

/* ==========================================
   CTA SECTION
========================================== */
.cta {
    position: relative;
    padding: 6rem 2rem;
    z-index: 1;
}

.cta-container {
    max-width: 900px;
    margin: 0 auto;
    background: var(--gradient-go);
    border-radius: 32px;
    padding: 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-container::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.05'%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");
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta h2 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
}

.cta p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta .btn-primary {
    background: white;
    color: var(--go-primary-dark);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.cta .btn-primary:hover {
    background: #f8fafc;
    transform: translateY(-3px);
}

.cta .btn-ghost {
    border-color: rgba(255, 255, 255, 0.3);
    color: white;
}

.cta .btn-ghost:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
}

/* ==========================================
   FOOTER
========================================== */
.footer {
    position: relative;
    background: var(--dark-surface);
    border-top: 1px solid var(--border-subtle);
    padding: 4rem 2rem 2rem;
    z-index: 1;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand p {
    color: var(--text-muted);
    margin: 1rem 0 1.5rem;
    max-width: 280px;
    line-height: 1.7;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: var(--dark-card);
    border: 1px solid var(--border-subtle);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: rgba(59, 130, 246, 0.1);
    border-color: var(--go-primary);
}

.social-link svg {
    width: 20px;
    height: 20px;
    color: var(--text-muted);
}

.social-link:hover svg {
    color: var(--go-primary);
}

.footer-column h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-link {
    color: var(--text-muted);
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--go-primary);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid var(--border-subtle);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-copyright {
    font-size: 0.9rem;
    color: var(--text-subtle);
}

.footer-mexico {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.megacity-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(233, 78, 27, 0.1);
    border: 1px solid rgba(233, 78, 27, 0.2);
    border-radius: 100px;
    font-size: 0.85rem;
    color: #E94E1B;
}

.megacity-badge-icon {
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #E94E1B 0%, #FF7A45 100%);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.6rem;
    color: white;
}

/* ==========================================
   LOGIN MODAL
========================================== */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal {
    background: var(--dark-card);
    border: 1px solid var(--border-subtle);
    border-radius: 24px;
    width: 100%;
    max-width: 440px;
    padding: 2.5rem;
    transform: scale(0.9) translateY(20px);
    transition: transform 0.3s ease;
}

.modal-overlay.active .modal {
    transform: scale(1) translateY(0);
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 36px;
    height: 36px;
    background: var(--dark-elevated);
    border: none;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: rgba(239, 68, 68, 0.2);
}

.modal-close svg {
    width: 20px;
    height: 20px;
    color: var(--text-muted);
}

.modal-header {
    text-align: center;
    margin-bottom: 2rem;
}

.modal-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.modal-logo .logo-icon {
    background: linear-gradient(135deg, #E94E1B 0%, #FF7A45 100%);
    box-shadow: 0 0 30px rgba(233, 78, 27, 0.3);
}

.modal-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.modal-header p {
    color: var(--text-muted);
}

.login-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-muted);
}

.form-input {
    width: 100%;
    padding: 0.9rem 1rem;
    background: var(--dark-input);
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    color: var(--text);
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    outline: none;
}

.form-input::placeholder {
    color: var(--text-subtle);
}

.form-input:focus {
    border-color: var(--go-primary);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
}

.form-link {
    color: var(--go-primary);
    transition: opacity 0.3s ease;
}

.form-link:hover {
    opacity: 0.8;
}

.modal-divider {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 1rem 0;
}

.modal-divider::before,
.modal-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border-subtle);
}

.modal-divider span {
    font-size: 0.85rem;
    color: var(--text-subtle);
}

.modal-footer {
    text-align: center;
    margin-top: 1.5rem;
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* ==========================================
   MOBILE MENU
========================================== */
.mobile-menu-btn {
    display: none;
    width: 42px;
    height: 42px;
    background: var(--dark-elevated);
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mobile-menu-btn:hover {
    background: rgba(59, 130, 246, 0.1);
    border-color: var(--go-primary);
}

[data-theme="light"] .mobile-menu-btn {
    background: #f1f5f9;
    border-color: #e2e8f0;
}

[data-theme="light"] .mobile-menu-btn:hover {
    background: rgba(59, 130, 246, 0.1);
    border-color: var(--go-primary);
}

.mobile-menu-btn span {
    width: 18px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

[data-theme="light"] .mobile-menu-btn span {
    background: #1e293b;
}

/* ==========================================
   RESPONSIVE
========================================== */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content {
        order: 1;
    }

    .hero-visual {
        order: 0;
        margin-bottom: 2rem;
    }

    .phone-mockup {
        max-width: 300px;
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-features {
        justify-content: center;
    }

    .hero-cta {
        justify-content: center;
    }

    .floating-alert {
        display: none;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .feature-card.large {
        grid-column: span 1;
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .pricing-cards {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

    .pricing-card.featured {
        transform: none;
    }

    .steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .steps-line {
        display: none;
    }

    .footer-main {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .navbar-container {
        padding: 0 1rem;
    }

    .nav-actions {
        gap: 0.5rem;
    }

    .nav-actions .btn-ghost,
    .nav-actions .btn-primary {
        display: none;
    }

    .mobile-menu-btn {
        display: flex !important;
    }

    .theme-toggle {
        width: 38px;
        height: 38px;
        border-radius: 10px;
    }

    .theme-toggle svg {
        width: 18px;
        height: 18px;
    }

    .logo-text {
        font-size: 1.15rem;
    }

    .logo-icon {
        width: 36px;
        height: 36px;
        font-size: 1rem;
        border-radius: 10px;
    }

    .logo {
        gap: 0.5rem;
    }

    .hero {
        padding: calc(var(--nav-height) + 2rem) 1rem 2rem;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .section-header h2 {
        font-size: 1.75rem;
    }

    .steps {
        grid-template-columns: 1fr;
    }

    .footer-main {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand p {
        max-width: 100%;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .cta-container {
        padding: 2.5rem 1.5rem;
    }
}