/* root-index.css - Vimania Global Landing Page (V4 Design System) */
/* All variables now provided by tokens.css (loaded before this file) */
        * { margin: 0; padding: 0; box-sizing: border-box; }

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

        body {
            font-family: var(--font-body);
            background: var(--bg-base);
            color: var(--text-primary);
            line-height: 1.6;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
            -webkit-tap-highlight-color: transparent;
            touch-action: manipulation;
        }

        /* Fixed background fix for mobile */
        body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('/img/markets/global.jpg');
            background-size: cover;
            background-position: center;
            z-index: -2;
            will-change: transform;
        }

        body::after {
            content: '';
            position: fixed;
            top: 0; left: 0; right: 0; bottom: 0;
            background: rgba(0, 0, 0, 0.55);
            backdrop-filter: blur(3px);
            -webkit-backdrop-filter: blur(3px);
            z-index: -1;
        }

        /* ============ HEADER ============ */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            padding: 1rem 2rem;
            background: transparent;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .header.scrolled {
            background: rgba(13, 27, 42, 0.92);
            backdrop-filter: blur(20px) saturate(180%);
            border-bottom: 1px solid var(--border);
        }

        .header-inner {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .logo {
            font-family: var(--font-display);
            font-size: 1.8rem;
            font-weight: 400;
            color: var(--text-primary);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 0.6rem;
            letter-spacing: -0.02em;
        }

        .logo-icon {
            width: 42px;
            height: 42px;
            background: linear-gradient(135deg, var(--accent) 0%, var(--accent-400) 100%);
            border-radius: var(--radius-md);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
            box-shadow: 0 4px 15px var(--accent-glow);
        }

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

        .nav-link {
            color: var(--text-secondary);
            text-decoration: none;
            font-weight: 500;
            font-size: 0.95rem;
            transition: color 0.25s;
            position: relative;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--accent);
            transition: width 0.3s;
        }

        .nav-link:hover { color: var(--text-primary); }
        .nav-link:hover::after { width: 100%; }

        /* Market flags in header */
        .market-flags {
            display: flex;
            gap: 0.5rem;
            align-items: center;
        }

        .market-flag-link {
            font-size: 1.1rem;
            opacity: 0.7;
            transition: all 0.2s;
            text-decoration: none;
        }

        .market-flag-link:hover {
            opacity: 1;
            transform: scale(1.15);
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            padding: 0.8rem 1.6rem;
            font-family: var(--font-body);
            font-size: 0.9rem;
            font-weight: 600;
            border: none;
            border-radius: var(--radius-full);
            cursor: pointer;
            text-decoration: none;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--accent) 0%, var(--accent-400) 100%);
            color: white;
            box-shadow: 0 4px 20px var(--accent-glow);
        }

        .btn-primary:hover {
            transform: translateY(-3px) scale(1.02);
            box-shadow: 0 8px 30px var(--accent-glow);
        }

        .btn-ghost {
            background: rgba(255,255,255,0.05);
            color: var(--text-primary);
            border: 1px solid var(--border);
        }

        .btn-ghost:hover {
            background: rgba(255,255,255,0.1);
            border-color: var(--accent);
        }

        .btn-hot {
            background: linear-gradient(135deg, var(--danger) 0%, #FF0A54 100%);
            color: white;
            box-shadow: 0 4px 20px var(--hot-glow);
        }

        .btn-hot:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 30px var(--hot-glow);
        }

        /* ============ HERO ============ */
        .hero {
            min-height: 100vh;
            padding: 7rem 2rem 5rem;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
        }

        /* Gradient Background */
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background:
                radial-gradient(ellipse 80% 50% at 50% -20%, var(--accent-soft) 0%, transparent 50%),
                radial-gradient(ellipse 60% 40% at 80% 60%, var(--danger-soft) 0%, transparent 50%),
                radial-gradient(ellipse 50% 30% at 20% 80%, var(--warning-soft) 0%, transparent 50%);
            pointer-events: none;
        }

        /* Floating planes animation */
        .hero-planes {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            overflow: hidden;
            opacity: 0.4;
            pointer-events: none;
        }

        .floating-plane {
            position: absolute;
            font-size: 1.5rem;
            animation: floatPlane 25s linear infinite;
            opacity: 0;
        }

        .floating-plane:nth-child(1) { top: 20%; animation-delay: 0s; }
        .floating-plane:nth-child(2) { top: 40%; animation-delay: 5s; }
        .floating-plane:nth-child(3) { top: 60%; animation-delay: 10s; }
        .floating-plane:nth-child(4) { top: 80%; animation-delay: 15s; }

        @keyframes floatPlane {
            0% { left: -5%; opacity: 0; transform: rotate(-5deg); }
            10% { opacity: 0.6; }
            90% { opacity: 0.6; }
            100% { left: 105%; opacity: 0; transform: rotate(5deg); }
        }

        .hero-content {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1.1fr 0.9fr;
            gap: 5rem;
            align-items: center;
            position: relative;
            z-index: 10;
        }

        /* Live badge with pulse */
        .live-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.6rem;
            padding: 0.6rem 1.2rem;
            background: rgba(16, 185, 129, 0.12);
            border: 1px solid rgba(16, 185, 129, 0.25);
            border-radius: var(--radius-full);
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--success);
            margin-bottom: 1.5rem;
        }

        .live-dot {
            width: 8px;
            height: 8px;
            background: var(--success);
            border-radius: 50%;
            animation: livePulse 2s ease-in-out infinite;
        }

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

        .hero-title {
            font-family: var(--font-display);
            font-size: clamp(2.8rem, 5.5vw, 4.5rem);
            font-weight: 400;
            line-height: 1.1;
            margin-bottom: 1.5rem;
            letter-spacing: -0.02em;
        }

        .hero-title em {
            font-style: italic;
            background: linear-gradient(135deg, var(--accent) 0%, var(--warning) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-subtitle {
            font-size: 1.2rem;
            color: var(--text-secondary);
            margin-bottom: 2.5rem;
            max-width: 480px;
            line-height: 1.7;
        }

        /* Social proof ticker */
        .social-proof-ticker {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding: 1rem 1.5rem;
            background: rgba(255,255,255,0.03);
            border: 1px solid var(--border);
            border-radius: var(--radius-lg);
            margin-bottom: 2.5rem;
            max-width: 480px;
        }

        .ticker-avatar {
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, var(--accent-400) 0%, var(--danger) 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.9rem;
            font-weight: 600;
            flex-shrink: 0;
        }

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

        .ticker-text strong {
            color: var(--text-primary);
        }

        .ticker-time {
            font-size: 0.75rem;
            color: var(--text-muted);
            margin-left: auto;
            flex-shrink: 0;
        }

        /* Stats row */
        .hero-stats {
            display: flex;
            gap: 3rem;
            margin-bottom: 2.5rem;
        }

        .hero-stat {
            text-align: left;
        }

        .hero-stat-value {
            font-family: var(--font-display);
            font-size: 2.2rem;
            font-weight: 400;
            color: var(--text-primary);
            line-height: 1;
            margin-bottom: 0.3rem;
        }

        .hero-stat-value span {
            color: var(--accent);
        }

        .hero-stat-label {
            font-size: 0.85rem;
            color: var(--text-muted);
        }

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

        /* Featured card (hero right side) */
        .hero-featured {
            position: relative;
        }

        .featured-card {
            background: linear-gradient(180deg, var(--bg-elevated) 0%, var(--bg-surface) 100%);
            border: 1px solid var(--border);
            border-radius: var(--radius-xl);
            overflow: hidden;
            position: relative;
            box-shadow:
                0 30px 60px -15px rgba(0, 0, 0, 0.5),
                0 0 0 1px rgba(255,255,255,0.05),
                inset 0 1px 0 rgba(255,255,255,0.05);
            transform: rotate(-2deg);
            transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .featured-card:hover {
            transform: rotate(0deg) translateY(-8px);
        }

        .featured-image {
            height: 200px;
            background-size: cover;
            background-position: center;
            position: relative;
        }

        .featured-image::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, var(--bg-elevated), transparent 70%);
        }

        /* Hot badge with urgency */
        .featured-hot-badge {
            position: absolute;
            top: 1rem;
            left: 1rem;
            background: linear-gradient(135deg, var(--danger) 0%, #FF0A54 100%);
            color: white;
            padding: 0.5rem 1rem;
            border-radius: var(--radius-full);
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            display: flex;
            align-items: center;
            gap: 0.4rem;
            z-index: 10;
            box-shadow: 0 4px 15px var(--hot-glow);
        }

        /* Countdown urgency */
        .featured-countdown {
            position: absolute;
            top: 1rem;
            right: 1rem;
            background: rgba(0,0,0,0.7);
            backdrop-filter: blur(10px);
            padding: 0.4rem 0.8rem;
            border-radius: var(--radius-md);
            font-size: 0.75rem;
            color: var(--warning);
            font-weight: 600;
            z-index: 10;
            display: flex;
            align-items: center;
            gap: 0.4rem;
        }

        .featured-body {
            padding: 1.5rem;
        }

        .featured-route {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1rem;
        }

        .featured-city {
            text-align: center;
        }

        .featured-city-code {
            font-family: var(--font-display);
            font-size: 2rem;
            font-weight: 400;
            letter-spacing: -0.02em;
        }

        .featured-city-name {
            font-size: 0.8rem;
            color: var(--text-muted);
        }

        .featured-plane {
            flex: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--accent);
        }

        .featured-plane svg {
            width: 28px;
            height: 28px;
        }

        .featured-plane-line {
            flex: 1;
            height: 2px;
            background: linear-gradient(90deg, transparent, var(--accent), transparent);
        }

        .featured-meta {
            display: flex;
            gap: 1.5rem;
            margin-bottom: 1.5rem;
            font-size: 0.85rem;
            color: var(--text-secondary);
        }

        .featured-meta span {
            display: flex;
            align-items: center;
            gap: 0.3rem;
        }

        /* Seats warning */
        .seats-warning {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.6rem 1rem;
            background: var(--danger-soft);
            border: 1px solid var(--danger-glow);
            border-radius: var(--radius-md);
            margin-bottom: 1rem;
            font-size: 0.8rem;
            color: var(--danger);
            font-weight: 500;
        }

        .featured-price-row {
            display: flex;
            align-items: flex-end;
            justify-content: space-between;
        }

        .featured-price-container {
            display: flex;
            flex-direction: column;
        }

        .featured-price-original {
            font-size: 0.9rem;
            color: var(--text-muted);
            text-decoration: line-through;
        }

        .featured-price {
            font-family: var(--font-display);
            font-size: 2.8rem;
            font-weight: 400;
            color: var(--success);
            line-height: 1;
        }

        .featured-price-currency {
            font-size: 1.2rem;
            opacity: 0.7;
        }

        /* ============ SECTIONS ============ */
        .section {
            padding: 6rem 2rem;
            position: relative;
        }

        .section-dark {
            background: var(--bg-surface);
        }

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

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

        .section-tag {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.5rem 1.2rem;
            background: var(--accent-soft);
            border: 1px solid var(--border-warm);
            border-radius: var(--radius-full);
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--accent);
            margin-bottom: 1.5rem;
        }

        .section-title {
            font-family: var(--font-display);
            font-size: clamp(2rem, 3.5vw, 3rem);
            font-weight: 400;
            margin-bottom: 1rem;
            letter-spacing: -0.02em;
        }

        .section-title em {
            font-style: italic;
            color: var(--accent);
        }

        .section-subtitle {
            color: var(--text-secondary);
            font-size: 1.1rem;
            max-width: 550px;
            margin: 0 auto;
        }

        /* ============ OFFER CARDS ============ */
        .offers-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
            gap: 1.5rem;
        }

        .offer-card {
            background: linear-gradient(180deg, var(--bg-elevated) 0%, var(--bg-surface) 100%);
            border: 1px solid var(--border);
            border-radius: var(--radius-lg);
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
        }

        .offer-card:hover {
            border-color: var(--border-warm);
            transform: translateY(-6px);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.35);
        }

        .offer-card.chollo {
            border-color: var(--accent-glow);
        }

        .offer-card.chollo::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--accent), var(--warning));
        }

        .offer-image {
            height: 150px;
            background-size: cover;
            background-position: center;
            position: relative;
        }

        .offer-image::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, var(--bg-elevated) 0%, transparent 70%);
        }

        .offer-badge {
            position: absolute;
            top: 0.75rem;
            right: 0.75rem;
            background: rgba(0, 0, 0, 0.6);
            backdrop-filter: blur(8px);
            padding: 0.35rem 0.85rem;
            border-radius: var(--radius-full);
            font-size: 0.7rem;
            font-weight: 600;
            color: var(--warning);
            z-index: 5;
        }

        .offer-chollo-badge {
            position: absolute;
            top: 0.75rem;
            left: 0.75rem;
            background: linear-gradient(135deg, var(--danger) 0%, #FF0A54 100%);
            padding: 0.35rem 0.85rem;
            border-radius: var(--radius-full);
            font-size: 0.7rem;
            font-weight: 700;
            color: white;
            z-index: 5;
            text-transform: uppercase;
            box-shadow: 0 2px 10px var(--hot-glow);
        }

        .offer-body {
            padding: 1.25rem;
        }

        .offer-route {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            margin-bottom: 0.5rem;
        }

        .offer-code {
            font-family: var(--font-display);
            font-size: 1.3rem;
            font-weight: 400;
        }

        .offer-arrow {
            color: var(--accent);
            font-size: 1rem;
        }

        .offer-names {
            font-size: 0.85rem;
            color: var(--text-secondary);
            margin-bottom: 1rem;
        }

        .offer-details {
            display: flex;
            gap: 1rem;
            font-size: 0.8rem;
            color: var(--text-muted);
            margin-bottom: 1rem;
        }

        .offer-detail {
            display: flex;
            align-items: center;
            gap: 0.3rem;
        }

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

        .offer-price-container {
            display: flex;
            flex-direction: column;
        }

        .offer-price-old {
            font-size: 0.8rem;
            color: var(--text-muted);
            text-decoration: line-through;
        }

        .offer-price {
            font-family: var(--font-display);
            font-size: 1.9rem;
            font-weight: 400;
            color: var(--success);
            line-height: 1;
        }

        .offer-btn {
            padding: 0.7rem 1.4rem;
            background: var(--accent-soft);
            border: 1px solid var(--border-warm);
            color: var(--accent);
            border-radius: var(--radius-full);
            font-weight: 600;
            font-size: 0.85rem;
            cursor: pointer;
            transition: all 0.25s;
            text-decoration: none;
        }

        .offer-btn:hover {
            background: var(--accent);
            color: white;
        }

        /* ============ DESTINATIONS ============ */
        .destinations-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
            gap: 1.25rem;
        }

        .destination-card {
            position: relative;
            height: 280px;
            border-radius: var(--radius-lg);
            overflow: hidden;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            text-decoration: none;
        }

        .destination-card:hover {
            transform: scale(1.03) translateY(-5px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.4);
        }

        .destination-card::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(13, 27, 42, 0.95) 0%, rgba(13, 27, 42, 0.2) 50%, transparent 100%);
            z-index: 1;
        }

        .destination-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }

        .destination-card:hover .destination-img {
            transform: scale(1.1);
        }

        .destination-info {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 1.5rem;
            z-index: 2;
        }

        .destination-name {
            font-family: var(--font-display);
            font-size: 1.4rem;
            font-weight: 400;
            margin-bottom: 0.3rem;
            color: var(--text-primary);
        }

        .destination-price {
            font-size: 0.95rem;
            color: var(--accent);
            font-weight: 500;
        }

        /* ============ WHY SECTION ============ */
        .why-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
        }

        .why-card {
            padding: 2rem;
            background: var(--bg-elevated);
            border: 1px solid var(--border);
            border-radius: var(--radius-lg);
            text-align: center;
            transition: all 0.3s;
        }

        .why-card:hover {
            border-color: var(--border-warm);
            transform: translateY(-4px);
        }

        .why-icon {
            width: 60px;
            height: 60px;
            margin: 0 auto 1.25rem;
            background: var(--accent-soft);
            border-radius: var(--radius-md);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.75rem;
        }

        .why-title {
            font-family: var(--font-display);
            font-size: 1.3rem;
            margin-bottom: 0.75rem;
        }

        .why-text {
            font-size: 0.95rem;
            color: var(--text-secondary);
            line-height: 1.6;
        }

        /* ============ MARKET SELECTOR ============ */
        .market-selector-section {
            padding: 4rem 2rem;
            background: var(--bg-surface);
            text-align: center;
        }

        .market-selector-title {
            font-family: var(--font-display);
            font-size: 1.8rem;
            margin-bottom: 0.5rem;
        }

        .market-selector-subtitle {
            color: var(--text-secondary);
            margin-bottom: 2rem;
        }

        .market-grid {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 1rem;
            max-width: 800px;
            margin: 0 auto;
        }

        .market-link {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.75rem 1.25rem;
            background: var(--bg-elevated);
            border: 1px solid var(--border);
            border-radius: var(--radius-full);
            text-decoration: none;
            color: var(--text-primary);
            font-size: 0.9rem;
            transition: all 0.2s;
        }

        .market-link:hover {
            border-color: var(--accent);
            transform: translateY(-2px);
        }

        .market-link .flag {
            font-size: 1.2rem;
        }

        /* ============ CTA SECTION ============ */
        .cta-section {
            padding: 7rem 2rem;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background:
                radial-gradient(ellipse 60% 40% at 50% 50%, var(--accent-soft) 0%, transparent 60%);
            pointer-events: none;
        }

        .cta-title {
            font-family: var(--font-display);
            font-size: clamp(2.2rem, 4.5vw, 3.5rem);
            font-weight: 400;
            margin-bottom: 1rem;
            position: relative;
            z-index: 1;
        }

        .cta-title em {
            font-style: italic;
            color: var(--accent);
        }

        .cta-subtitle {
            font-size: 1.2rem;
            color: var(--text-secondary);
            margin-bottom: 2.5rem;
            position: relative;
            z-index: 1;
        }

        /* ============ FOOTER ============ */
        .footer {
            padding: 3rem 2rem;
            background: var(--bg-surface);
            border-top: 1px solid var(--border);
        }

        .footer-inner {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 1rem;
        }

        .footer-logo {
            font-family: var(--font-display);
            font-size: 1.3rem;
            color: var(--text-primary);
        }

        .footer-markets {
            display: flex;
            gap: 0.75rem;
            flex-wrap: wrap;
            align-items: center;
        }

        .footer-markets a {
            font-size: 1.3rem;
            opacity: 0.6;
            transition: all 0.2s;
            text-decoration: none;
        }

        .footer-markets a:hover {
            opacity: 1;
            transform: scale(1.2);
        }

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

        .footer-links {
            display: flex;
            gap: 1.5rem;
            flex-wrap: wrap;
        }

        .footer-links a {
            color: var(--text-secondary);
            text-decoration: none;
            font-size: 0.85rem;
            transition: color 0.2s;
        }

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

        .footer-disclosure {
            width: 100%;
            text-align: center;
            margin-top: 1.5rem;
            padding-top: 1.5rem;
            border-top: 1px solid var(--border);
            font-size: 0.8rem;
            color: var(--text-muted);
        }

        /* ============ MOBILE MENU (HAMBURGER) ============ */
        .mobile-menu-toggle {
            display: none;
            width: 44px;
            height: 44px;
            background: rgba(255,255,255,0.08);
            border: 1px solid var(--border);
            border-radius: var(--radius-md);
            cursor: pointer;
            position: relative;
            z-index: 1002;
            flex-shrink: 0;
            -webkit-tap-highlight-color: transparent;
        }

        .mobile-menu-toggle:active {
            background: rgba(255,255,255,0.15);
        }

        .mobile-menu-toggle span {
            display: block;
            width: 20px;
            height: 2px;
            background: var(--text-primary);
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .mobile-menu-toggle span:nth-child(1) { top: 14px; }
        .mobile-menu-toggle span:nth-child(2) { top: 21px; }
        .mobile-menu-toggle span:nth-child(3) { top: 28px; }

        .mobile-menu-toggle.active span:nth-child(1) {
            top: 21px;
            transform: translateX(-50%) rotate(45deg);
        }
        .mobile-menu-toggle.active span:nth-child(2) {
            opacity: 0;
            transform: translateX(-50%) scale(0);
        }
        .mobile-menu-toggle.active span:nth-child(3) {
            top: 21px;
            transform: translateX(-50%) rotate(-45deg);
        }

        /* ============ MOBILE MENU PREMIUM ============ */
        .mobile-menu {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            height: 100dvh;
            background: linear-gradient(135deg,
                rgba(13, 27, 42, 0.97) 0%,
                rgba(26, 47, 71, 0.98) 50%,
                rgba(13, 27, 42, 0.99) 100%);
            backdrop-filter: blur(30px);
            -webkit-backdrop-filter: blur(30px);
            z-index: 1001;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 2rem;
            clip-path: circle(0% at calc(100% - 40px) 40px);
            visibility: hidden;
            pointer-events: none;
            transition: clip-path 0.7s cubic-bezier(0.65, 0, 0.35, 1),
                        visibility 0s linear 0.7s;
            overflow: hidden;
        }

        .mobile-menu::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle at 30% 20%, rgba(255,138,76,0.08) 0%, transparent 40%),
                        radial-gradient(circle at 70% 80%, rgba(255,107,107,0.05) 0%, transparent 35%);
            animation: menuGlow 8s ease-in-out infinite;
            pointer-events: none;
        }

        @keyframes menuGlow {
            0%, 100% { transform: translate(0, 0) rotate(0deg); }
            50% { transform: translate(-5%, 5%) rotate(5deg); }
        }

        .mobile-menu.active {
            clip-path: circle(150% at calc(100% - 40px) 40px);
            visibility: visible;
            pointer-events: auto;
            transition: clip-path 0.8s cubic-bezier(0.65, 0, 0.35, 1),
                        visibility 0s linear 0s;
        }

        /* Logo en el menú */
        .menu-brand {
            position: absolute;
            top: 2rem;
            left: 2rem;
            opacity: 0;
            transform: translateY(-20px);
            transition: all 0.5s ease 0.3s;
        }

        .mobile-menu.active .menu-brand {
            opacity: 1;
            transform: translateY(0);
        }

        .menu-brand-text {
            font-family: var(--font-display);
            font-size: 1.5rem;
            color: var(--text-primary);
            letter-spacing: 0.1em;
        }

        .menu-brand-tagline {
            font-size: 0.65rem;
            color: rgba(255,255,255,0.5);
            text-transform: uppercase;
            letter-spacing: 0.2em;
            margin-top: 0.25rem;
        }

        /* Botón cerrar premium */
        .menu-close {
            position: absolute;
            top: 1.5rem;
            right: 1.5rem;
            width: 50px;
            height: 50px;
            background: rgba(255,255,255,0.05);
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            opacity: 0;
            transform: scale(0.5) rotate(-90deg);
            transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) 0.4s;
        }

        .mobile-menu.active .menu-close {
            opacity: 1;
            transform: scale(1) rotate(0deg);
        }

        .menu-close svg {
            width: 20px;
            height: 20px;
            stroke: var(--text-primary);
            stroke-width: 2;
            transition: all 0.3s ease;
        }

        .menu-close:active {
            background: var(--accent);
            transform: scale(0.9);
        }

        /* Container de navegación */
        .menu-nav {
            display: flex;
            flex-direction: column;
            gap: 0;
            text-align: center;
            position: relative;
            z-index: 1;
        }

        .mobile-menu-link {
            font-family: var(--font-display);
            font-size: clamp(2rem, 8vw, 3rem);
            color: var(--text-primary);
            text-decoration: none;
            display: block;
            padding: 0.8rem 0;
            position: relative;
            opacity: 0;
            transform: translateY(40px);
            transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
        }

        .mobile-menu.active .mobile-menu-link {
            opacity: 1;
            transform: translateY(0);
        }

        .mobile-menu.active .mobile-menu-link:nth-child(1) { transition-delay: 0.15s; }
        .mobile-menu.active .mobile-menu-link:nth-child(2) { transition-delay: 0.22s; }
        .mobile-menu.active .mobile-menu-link:nth-child(3) { transition-delay: 0.29s; }
        .mobile-menu.active .mobile-menu-link:nth-child(4) { transition-delay: 0.36s; }

        .mobile-menu-link::after {
            content: '';
            position: absolute;
            bottom: 0.5rem;
            left: 50%;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, transparent, var(--accent), transparent);
            transform: translateX(-50%);
            transition: width 0.3s ease;
        }

        .mobile-menu-link:active::after {
            width: 60%;
        }

        .mobile-menu-link .link-icon {
            display: block;
            font-size: 1.5rem;
            margin-bottom: 0.3rem;
            opacity: 0.7;
        }

        .mobile-menu-link .link-text {
            display: block;
        }

        .mobile-menu-link .link-subtitle {
            display: block;
            font-family: var(--font-body);
            font-size: 0.7rem;
            color: rgba(255,255,255,0.4);
            text-transform: uppercase;
            letter-spacing: 0.15em;
            margin-top: 0.2rem;
            font-weight: 500;
        }

        /* Separador decorativo */
        .menu-divider {
            width: 60px;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
            margin: 2rem auto;
            opacity: 0;
            transform: scaleX(0);
            transition: all 0.6s ease 0.5s;
        }

        .mobile-menu.active .menu-divider {
            opacity: 1;
            transform: scaleX(1);
        }

        /* Selector de idiomas premium */
        .mobile-menu-flags {
            display: flex;
            justify-content: center;
            gap: 0.6rem;
            flex-wrap: wrap;
            max-width: 320px;
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.5s ease 0.6s;
        }

        .mobile-menu.active .mobile-menu-flags {
            opacity: 1;
            transform: translateY(0);
        }

        .mobile-menu-flags a {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            text-decoration: none;
            background: rgba(255,255,255,0.03);
            padding: 0.6rem 1rem;
            border-radius: 100px;
            border: 1px solid rgba(255,255,255,0.08);
            transition: all 0.3s ease;
        }

        .mobile-menu-flags a .flag {
            font-size: 1.1rem;
        }

        .mobile-menu-flags a .code {
            font-size: 0.7rem;
            color: rgba(255,255,255,0.6);
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        .mobile-menu-flags a:active {
            background: rgba(255,138,76,0.2);
            border-color: var(--accent);
            transform: scale(0.95);
        }

        .mobile-menu-flags a:active .code {
            color: var(--text-primary);
        }

        /* Footer del menú */
        .menu-footer {
            position: absolute;
            bottom: 2rem;
            left: 0;
            right: 0;
            text-align: center;
            opacity: 0;
            transition: opacity 0.5s ease 0.7s;
        }

        .mobile-menu.active .menu-footer {
            opacity: 1;
        }

        .menu-footer-text {
            font-size: 0.65rem;
            color: rgba(255,255,255,0.3);
            letter-spacing: 0.1em;
            text-transform: uppercase;
        }

        /* Ocultar overlay antiguo */
        .menu-overlay {
            display: none;
        }

        /* ============ RESPONSIVE - TABLET ============ */
        @media (max-width: 1024px) {
            .hero-content {
                grid-template-columns: 1fr;
                text-align: center;
                gap: 2.5rem;
            }

            .hero-subtitle {
                margin-left: auto;
                margin-right: auto;
            }

            .social-proof-ticker {
                margin-left: auto;
                margin-right: auto;
            }

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

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

            .hero-featured {
                max-width: 400px;
                margin: 0 auto;
            }

            .featured-card {
                transform: none;
            }

            .nav-links {
                display: none;
            }

            .mobile-menu-toggle {
                display: block;
            }

            .header .btn-primary {
                display: none;
            }
        }

        /* ============ RESPONSIVE - MOBILE ============ */
        @media (max-width: 640px) {
            /* Safe area for notched devices */
            html {
                padding: env(safe-area-inset-top) env(safe-area-inset-right) env(safe-area-inset-bottom) env(safe-area-inset-left);
            }

            /* Reduce motion for performance */
            .floating-plane {
                display: none;
            }

            .header {
                padding: 0.75rem 1rem;
            }

            .logo {
                font-size: 1.4rem;
            }

            .logo-icon {
                width: 36px;
                height: 36px;
                font-size: 1.1rem;
            }

            .hero {
                min-height: auto;
                padding: 5rem 1rem 2.5rem;
            }

            .hero-title {
                font-size: clamp(2rem, 8vw, 2.8rem);
                margin-bottom: 1rem;
            }

            .hero-subtitle {
                font-size: 1rem;
                margin-bottom: 1.5rem;
                line-height: 1.5;
            }

            .live-badge {
                padding: 0.5rem 1rem;
                font-size: 0.8rem;
                margin-bottom: 1rem;
            }

            .social-proof-ticker {
                padding: 0.75rem 1rem;
                margin-bottom: 1.5rem;
                gap: 0.75rem;
            }

            .ticker-avatar {
                width: 32px;
                height: 32px;
                font-size: 0.8rem;
            }

            .ticker-text {
                font-size: 0.8rem;
            }

            .ticker-time {
                display: none;
            }

            .hero-stats {
                flex-direction: row;
                flex-wrap: wrap;
                gap: 1rem;
                justify-content: center;
                margin-bottom: 1.5rem;
            }

            .hero-stat {
                flex: 0 0 auto;
                min-width: 80px;
                text-align: center;
            }

            .hero-stat-value {
                font-size: 1.5rem;
            }

            .hero-stat-label {
                font-size: 0.7rem;
            }

            .hero-cta {
                flex-direction: column;
                gap: 0.75rem;
                width: 100%;
                max-width: 300px;
                margin: 0 auto;
            }

            .hero-cta .btn {
                width: 100%;
                padding: 1rem;
                font-size: 1rem;
            }

            /* Featured card - more compact */
            .hero-featured {
                max-width: 100%;
                margin-top: 1rem;
            }

            .featured-card {
                border-radius: var(--radius-lg);
            }

            .featured-image {
                height: 140px;
            }

            .featured-hot-badge {
                padding: 0.4rem 0.8rem;
                font-size: 0.65rem;
            }

            .featured-countdown {
                padding: 0.3rem 0.6rem;
                font-size: 0.65rem;
            }

            .featured-body {
                padding: 1rem;
            }

            .featured-city-code {
                font-size: 1.5rem;
            }

            .featured-city-name {
                font-size: 0.7rem;
            }

            .featured-meta {
                gap: 0.75rem;
                font-size: 0.75rem;
                margin-bottom: 1rem;
            }

            .seats-warning {
                padding: 0.5rem 0.75rem;
                font-size: 0.75rem;
                margin-bottom: 0.75rem;
            }

            .featured-price {
                font-size: 2rem;
            }

            .featured-price-row .btn {
                padding: 0.6rem 1rem;
                font-size: 0.85rem;
            }

            /* Sections */
            .section {
                padding: 3rem 1rem;
            }

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

            .section-tag {
                padding: 0.4rem 0.9rem;
                font-size: 0.75rem;
                margin-bottom: 1rem;
            }

            .section-title {
                font-size: clamp(1.5rem, 6vw, 2rem);
                margin-bottom: 0.75rem;
            }

            .section-subtitle {
                font-size: 0.95rem;
            }

            /* Why cards */
            .why-grid {
                gap: 1rem;
            }

            .why-card {
                padding: 1.25rem;
            }

            .why-icon {
                width: 48px;
                height: 48px;
                font-size: 1.4rem;
                margin-bottom: 1rem;
            }

            .why-title {
                font-size: 1.1rem;
            }

            .why-text {
                font-size: 0.85rem;
            }

            /* Offer cards - optimized for thumb */
            .offers-grid {
                grid-template-columns: 1fr;
                gap: 1rem;
            }

            .offer-card {
                border-radius: var(--radius-md);
            }

            .offer-image {
                height: 120px;
            }

            .offer-body {
                padding: 1rem;
            }

            .offer-code {
                font-size: 1.1rem;
            }

            .offer-names {
                font-size: 0.8rem;
                margin-bottom: 0.75rem;
            }

            .offer-details {
                gap: 0.75rem;
                font-size: 0.75rem;
                margin-bottom: 0.75rem;
            }

            .offer-footer {
                padding-top: 0.75rem;
            }

            .offer-price {
                font-size: 1.6rem;
            }

            .offer-btn {
                padding: 0.6rem 1rem;
                font-size: 0.8rem;
                /* Minimum touch target */
                min-height: 44px;
                display: flex;
                align-items: center;
            }

            /* Destinations - 2 columns compact */
            .destinations-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 0.75rem;
            }

            .destination-card {
                height: 160px;
                border-radius: var(--radius-md);
            }

            .destination-info {
                padding: 1rem;
            }

            .destination-name {
                font-size: 1.1rem;
            }

            .destination-price {
                font-size: 0.85rem;
            }

            /* Market selector */
            .market-selector-section {
                padding: 2.5rem 1rem;
            }

            .market-selector-title {
                font-size: 1.4rem;
            }

            .market-selector-subtitle {
                font-size: 0.9rem;
                margin-bottom: 1.5rem;
            }

            .market-grid {
                gap: 0.6rem;
            }

            .market-link {
                padding: 0.6rem 1rem;
                font-size: 0.8rem;
                /* Touch target */
                min-height: 44px;
            }

            /* CTA Section */
            .cta-section {
                padding: 4rem 1rem;
            }

            .cta-title {
                font-size: clamp(1.6rem, 7vw, 2.2rem);
            }

            .cta-subtitle {
                font-size: 1rem;
                margin-bottom: 2rem;
            }

            /* Footer */
            .footer {
                padding: 2rem 1rem;
            }

            .footer-inner {
                flex-direction: column;
                text-align: center;
                gap: 1.5rem;
            }

            .footer-logo {
                font-size: 1.2rem;
            }

            .footer-markets {
                justify-content: center;
            }

            .footer-markets a {
                font-size: 1.5rem;
            }

            .footer-links {
                justify-content: center;
                gap: 1rem;
            }

            .footer-links a {
                font-size: 0.8rem;
                /* Touch target */
                padding: 0.5rem;
            }

            .footer-disclosure {
                margin-top: 1rem;
                padding-top: 1rem;
                font-size: 0.7rem;
            }

            /* Reduce animation delays on mobile */
            .fade-in {
                animation-duration: 0.4s;
            }

            .delay-1, .delay-2, .delay-3, .delay-4, .delay-5 {
                animation-delay: 0s !important;
            }
        }

        /* ============ VERY SMALL SCREENS (iPhone SE, etc) ============ */
        @media (max-width: 375px) {
            .hero-title {
                font-size: 1.8rem;
            }

            .hero-stats {
                gap: 0.5rem;
            }

            .hero-stat {
                min-width: 70px;
            }

            .hero-stat-value {
                font-size: 1.3rem;
            }

            .featured-city-code {
                font-size: 1.3rem;
            }

            .section-title {
                font-size: 1.4rem;
            }

            .offer-route {
                gap: 0.5rem;
            }

            .destination-card {
                height: 140px;
            }

            .market-link {
                padding: 0.5rem 0.8rem;
            }
        }

        /* ============ LANDSCAPE MOBILE ============ */
        @media (max-width: 896px) and (orientation: landscape) {
            .hero {
                min-height: auto;
                padding: 5rem 2rem 2rem;
            }

            .hero-content {
                gap: 2rem;
            }

            .hero-title {
                font-size: 2rem;
            }

            .hero-featured {
                display: none;
            }
        }

        /* ============ ANIMATIONS ============ */
        .fade-in {
            opacity: 0;
            transform: translateY(25px);
            animation: fadeIn 0.7s cubic-bezier(0.4, 0, 0.2, 1) forwards;
        }

        @keyframes fadeIn {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .delay-1 { animation-delay: 0.1s; }
        .delay-2 { animation-delay: 0.2s; }
        .delay-3 { animation-delay: 0.3s; }
        .delay-4 { animation-delay: 0.4s; }
        .delay-5 { animation-delay: 0.5s; }

        /* Card entrance stagger */
        .offers-grid .offer-card:nth-child(1) { animation-delay: 0.1s; }
        .offers-grid .offer-card:nth-child(2) { animation-delay: 0.2s; }
        .offers-grid .offer-card:nth-child(3) { animation-delay: 0.3s; }
        .offers-grid .offer-card:nth-child(4) { animation-delay: 0.4s; }
        .offers-grid .offer-card:nth-child(5) { animation-delay: 0.5s; }
        .offers-grid .offer-card:nth-child(6) { animation-delay: 0.6s; }
