/* ============================================
   CSS VARIABLES
   ============================================ */
:root {
    --white: #ffffff;
    --bg-warm: #F5F5F7;
    --bg-section: #F5F5F7;
    --bg-dark: #0F1729;
    --bg-dark-card: #1A2340;
    --text-primary: #1A1A1A;
    --text-secondary: #6B6B6B;
    --text-tertiary: #6E6E6E;
    --accent-start: #FF690F;
    --accent-end: #FF8C00;
    --accent-solid: #FF690F;
    --accent-hover: #E55D0A;
    --accent-link: #FF690F;
    --blue: #4C9AFF;
    --green: #36D399;
    --purple: #6C5CE7;
    --gold: #FFB800;
    --card-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
    --card-shadow-hover: 0 16px 48px rgba(0, 0, 0, 0.10);
    --border: rgba(0, 0, 0, 0.08);
    --radius: 20px;
    --radius-sm: 14px;
    --radius-full: 100px;
    --text-muted: #86868b;
}

/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

::selection {
    background: var(--accent-start);
    color: var(--white);
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: transparent;
    scroll-padding-top: 88px;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-section);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex: 1;
}

/* ============================================
   IMPERSONATION BAR
   ============================================ */
.impersonation-bar {
    z-index: 2000;
    background: #FF690F;
    color: #fff;
    text-align: center;
    padding: max(8px, env(safe-area-inset-top, 8px)) 16px 8px;
    font-size: 13px;
    font-weight: 600;
}

.impersonation-bar a {
    color: #fff;
    text-decoration: underline;
    margin-left: 8px;
}

.impersonation-bar ~ #mainNav {
    padding-top: 0;
    height: 80px;
}

/* ============================================
   NAVIGATION
   ============================================ */
#mainNav {
    position: sticky;
    top: 0;
    z-index: 1000;
    padding-left: max(48px, env(safe-area-inset-left, 48px));
    padding-right: max(48px, env(safe-area-inset-right, 48px));
    padding-top: env(safe-area-inset-top, 0px);
    padding-bottom: 0;
    height: calc(80px + env(safe-area-inset-top, 0px));
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 1px 12px rgba(15, 23, 41, 0.04);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

#mainNav.nav-hidden {
    transform: translateY(-100%);
}

.nav-logo {
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: var(--text-primary);
    text-decoration: none;
}

.nav-logo span {
    background: linear-gradient(135deg, var(--accent-start), var(--accent-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-logo-img {
    height: 38px;
    width: auto;
    max-width: none;
    display: block;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.2s ease;
}

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

.nav-links a.active {
    font-weight: 600;
}

.nav-cta {
    background: linear-gradient(135deg, var(--accent-start), var(--accent-end)) !important;
    color: var(--white) !important;
    padding: 10px 24px !important;
    border-radius: var(--radius-full) !important;
    font-weight: 600 !important;
    transition: transform 0.2s ease, box-shadow 0.2s ease !important;
    box-shadow: 0 4px 16px rgba(255, 105, 15, 0.3);
}

.nav-cta:hover {
    transform: translateY(-1px) scale(1.02);
    box-shadow: 0 6px 24px rgba(255, 105, 15, 0.4) !important;
}

.nav-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 24px;
    cursor: pointer;
    padding: 10px;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 48px 24px 48px;
    overflow: hidden;
}

.hero-home {
    align-items: stretch;
    text-align: left;
    padding-top: 48px;
    padding-bottom: 56px;
}

.hero-split {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: stretch;
    gap: 56px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-images {
    flex: 0 1 44%;
    min-width: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(9, 1fr);
    gap: 10px;
    overflow: hidden;
    max-height: 480px;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
    min-height: 0;
}

/* 6-image staggered mosaic — kayak style */
.hero-img:nth-child(1) { grid-column: 1; grid-row: 1 / 5; }  /* left tall top */
.hero-img:nth-child(2) { grid-column: 2; grid-row: 1 / 3; }  /* right short top */
.hero-img:nth-child(3) { grid-column: 2; grid-row: 3 / 6; }  /* right medium */
.hero-img:nth-child(4) { grid-column: 1; grid-row: 5 / 7; }  /* left short */
.hero-img:nth-child(5) { grid-column: 2; grid-row: 6 / 10; } /* right tall bottom */
.hero-img:nth-child(6) { grid-column: 1; grid-row: 7 / 10; } /* left medium bottom */

.hero-home .hero-subtitle {
    margin: 16px 0 24px;
}

.hero-home .hero-headline {
    font-size: clamp(40px, 5.5vw, 72px);
    letter-spacing: -2px;
}

.hero-home .hero-route {
    font-size: clamp(11px, 1.2vw, 13px);
    letter-spacing: 1px;
    white-space: nowrap;
    padding: 6px 14px;
}

.hero-home .hero-form {
    margin-bottom: 12px;
}

.hero-home .hero-city {
    white-space: nowrap;
}

.hero-home .cta-social-row {
    align-items: stretch;
    gap: 10px;
    margin-top: 14px;
    width: 100%;
    max-width: 480px;
}

.hero-home .cta-social-label {
    text-align: center;
}

.hero-home .cta-social-stack {
    flex-direction: row;
    gap: 8px;
    width: 100%;
    max-width: 480px;
}

.hero-home .auth-social-btn {
    flex: 1;
    min-height: 42px;
    padding: 0 16px;
    border-radius: 10px;
    gap: 7px;
    font-size: 13px;
    font-weight: 600;
}

.hero-home .auth-social-btn svg {
    width: 22px;
    height: 22px;
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
    pointer-events: none;
}

.hero-orb-1 {
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, rgba(255, 105, 15, 0.4), rgba(255, 140, 0, 0.2));
    top: -150px;
    right: -50px;
    animation: float1 14s ease-in-out infinite;
}

.hero-orb-2 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, rgba(76, 154, 255, 0.3), rgba(108, 92, 231, 0.15));
    bottom: -100px;
    left: -80px;
    animation: float2 18s ease-in-out infinite;
}

.hero-orb-3 {
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, rgba(54, 211, 153, 0.25), rgba(76, 154, 255, 0.15));
    top: 35%;
    left: 15%;
    animation: float3 12s ease-in-out infinite;
}

@keyframes float1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(-40px, 30px) scale(1.08); }
    66% { transform: translate(30px, -20px) scale(0.92); }
}

@keyframes float2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(40px, -30px) scale(1.05); }
    66% { transform: translate(-25px, 40px) scale(0.95); }
}

@keyframes float3 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(60px, -40px) scale(1.12); }
}

.hero-content {
    position: relative;
    flex: 1;
    min-width: 0;
    padding-top: 8px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    border-radius: var(--radius-full);
    background: var(--white);
    border: 1px solid var(--border);
    box-shadow: var(--card-shadow);
    font-size: 13px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 28px;
    letter-spacing: 0.3px;
}

.hero-badge-dot {
    width: 8px;
    height: 8px;
    background: var(--green);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
    box-shadow: 0 0 8px rgba(54, 211, 153, 0.4);
}

.hero-badge-flag {
    border-radius: 2px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.15);
    flex-shrink: 0;
}

.hero-badge-cc {
    font-size: 11px;
    font-weight: 800;
    color: var(--text-tertiary);
    background: var(--bg-section);
    padding: 2px 6px;
    border-radius: 4px;
    letter-spacing: 0.5px;
}

.hero-badge-sep {
    color: var(--text-tertiary);
    font-weight: 400;
}

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

.hero-headline {
    font-size: clamp(48px, 9vw, 92px);
    font-weight: 900;
    line-height: 1.02;
    letter-spacing: -3px;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.hero-city {
    display: inline-block;
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.hero-price {
    background: linear-gradient(135deg, var(--accent-start), var(--accent-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-route {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: clamp(13px, 1.6vw, 15px);
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    background: rgba(0, 0, 0, 0.05);
    padding: 8px 18px;
    border-radius: var(--radius-full);
    margin-bottom: 16px;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.hero-subtitle {
    font-size: clamp(17px, 2.2vw, 21px);
    color: var(--text-secondary);
    max-width: 560px;
    margin: 20px 0 32px;
    line-height: 1.7;
    font-weight: 400;
}

.hero-form {
    display: flex;
    gap: 0;
    width: 100%;
    max-width: 480px;
    margin: 0 0 28px;
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-full);
    padding: 6px;
    box-shadow: 0 4px 32px rgba(15, 23, 41, 0.08), 0 0 0 1px rgba(15, 23, 41, 0.02);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.hero-form:focus-within {
    border-color: var(--accent-start);
    box-shadow: 0 4px 32px rgba(255, 105, 15, 0.12), 0 0 0 4px rgba(255, 105, 15, 0.08);
}

.hero-form input {
    flex: 1;
    background: none;
    border: none;
    outline: none;
    padding: 14px 20px;
    color: var(--text-primary);
    font-family: inherit;
    font-size: 16px;
}

.hero-form input::placeholder {
    color: var(--text-tertiary);
}

.hero-form button {
    background: linear-gradient(135deg, var(--accent-start), var(--accent-end));
    color: var(--white);
    border: none;
    padding: 14px 28px;
    border-radius: var(--radius-full);
    font-family: inherit;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 16px rgba(255, 105, 15, 0.25);
    -webkit-appearance: none;
    appearance: none;
    white-space: nowrap;
    flex-shrink: 0;
}

.hero-form button:hover {
    transform: scale(1.03);
    box-shadow: 0 6px 24px rgba(255, 105, 15, 0.35);
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-top: 24px;
    font-size: 14px;
    color: var(--text-secondary);
    flex-wrap: wrap;
}

.hero-trust span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.hero-trust .check {
    color: var(--green);
    font-weight: 700;
}

.hero-social-proof {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
    flex-wrap: wrap;
}

.hero-proof-item {
    text-align: center;
}

.hero-proof-number {
    font-size: 28px;
    font-weight: 800;
    letter-spacing: -1px;
    color: var(--text-primary);
}

.hero-proof-label {
    font-size: 13px;
    color: var(--text-tertiary);
    font-weight: 500;
}

/* ============================================
   TICKER
   ============================================ */
.ticker {
    background: linear-gradient(135deg, var(--accent-start), var(--accent-end));
    padding: 14px 0;
    overflow: hidden;
    position: relative;
}

.ticker-track {
    display: flex;
    gap: 40px;
    animation: tickerScroll 35s linear infinite;
    width: max-content;
}

.ticker:hover .ticker-track {
    animation-play-state: paused;
}

.ticker-item {
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
}

.ticker-route {
    color: var(--white);
    font-weight: 700;
}

.ticker-price {
    color: var(--white);
    font-weight: 800;
    background: rgba(255, 255, 255, 0.2);
    padding: 2px 10px;
    border-radius: var(--radius-full);
}

.ticker-sep {
    color: rgba(255, 255, 255, 0.3);
}

@keyframes tickerScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ============================================
   SECTIONS COMMON
   ============================================ */
.section {
    padding: 120px 24px;
}

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

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

.section-pricing-peek {
    padding-top: 80px;
}

.section-pricing-peek .pricing-header {
    margin-bottom: 20px;
}

.section-pricing-peek .home-pricing-headline {
    max-width: 14ch;
    margin-inline: auto;
    text-align: center;
    text-wrap: balance;
}

.section-pricing-peek .pricing-toggle {
    margin-bottom: 20px;
}

.section-pricing-peek .pricing-card {
    padding-top: 32px;
}

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

.section-label {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: linear-gradient(135deg, var(--accent-start), var(--accent-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
}

.section-headline {
    font-size: clamp(34px, 4.5vw, 52px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -1.5px;
    margin-bottom: 20px;
    color: var(--text-primary);
    overflow-wrap: break-word;
    text-wrap: balance;
}

.section-dark .section-headline {
    color: var(--white);
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 540px;
    margin: 0 auto;
    line-height: 1.7;
    overflow-wrap: break-word;
}

.section-dark .section-subtitle {
    color: rgba(255, 255, 255, 0.6);
}

.text-link {
    color: var(--accent-start);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: color 0.2s ease;
}

.text-link:hover {
    color: var(--accent-hover);
}

/* Scroll animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.35s; }
.reveal-delay-5 { transition-delay: 0.4s; }
.reveal-delay-6 { transition-delay: 0.45s; }

/* ============================================
   PAGE HERO (inner pages)
   ============================================ */
.page-hero {
    padding: 80px 24px 80px;
    text-align: center;
}

.page-hero-title {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: -2px;
    color: var(--text-primary);
    margin-bottom: 20px;
    overflow-wrap: break-word;
    word-break: break-word;
    -webkit-hyphens: auto;
    hyphens: auto;
    text-wrap: balance;
}

.page-hero-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto;
    overflow-wrap: break-word;
    text-wrap: pretty;
}

/* ============================================
   STATS SECTION
   ============================================ */
.stats {
    padding: 100px 24px;
}

.stats-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 64px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.stat-card {
    text-align: center;
    padding: 48px 24px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--card-shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.stat-number {
    font-size: clamp(38px, 5vw, 56px);
    font-weight: 900;
    letter-spacing: -2px;
    background: linear-gradient(135deg, var(--accent-start), var(--accent-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 12px;
}

.stat-label {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.4;
}

/* ============================================
   VALUE PROPOSITION
   ============================================ */
.vp-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.vp-body {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 16px;
}

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

.vp-highlights {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 28px;
}

.vp-highlight {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
}

.vp-highlight-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 105, 15, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.vp-visual {
    position: relative;
}

.vp-card-stack {
    position: relative;
    height: 340px;
}

.vp-sample-deal {
    position: absolute;
    width: 280px;
    padding: 24px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--card-shadow);
    transition: transform 0.3s ease;
}

.vp-sample-deal:hover {
    transform: translateY(-4px) !important;
}

.vp-sample-deal-1 {
    top: 0;
    left: 0;
    z-index: 3;
    transform: rotate(-2deg);
}

.vp-sample-deal-2 {
    top: 60px;
    left: 100px;
    z-index: 2;
    transform: rotate(1.5deg);
}

.vp-sample-deal-3 {
    top: 130px;
    left: 30px;
    z-index: 1;
    transform: rotate(-1deg);
}

.vp-sample-route {
    font-size: 20px;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.vp-sample-price {
    font-size: 32px;
    font-weight: 900;
    letter-spacing: -1px;
    background: linear-gradient(135deg, var(--accent-start), var(--accent-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 8px;
}

.vp-sample-label {
    font-size: 13px;
    color: var(--text-tertiary);
    font-weight: 500;
}

/* ============================================
   HOW IT WORKS (home cards)
   ============================================ */
.how-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 80px;
}

.how-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1050px;
    margin: 0 auto;
}

.how-card {
    text-align: center;
    padding: 44px 28px;
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    box-shadow: var(--card-shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.how-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--card-shadow-hover);
}

.how-icon {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--accent-start), var(--accent-end));
    box-shadow: 0 8px 24px rgba(255, 105, 15, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.how-step {
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    background: linear-gradient(135deg, var(--accent-start), var(--accent-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
}

.how-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.how-desc {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.65;
}

/* ============================================
   HOW IT WORKS (dedicated page)
   ============================================ */
.hiw-step-block {
    display: flex;
    gap: 40px;
    padding: 48px 0;
    border-bottom: 1px solid var(--border);
}

.hiw-step-block:last-child {
    border-bottom: none;
}

.hiw-step-number {
    font-size: 64px;
    font-weight: 900;
    letter-spacing: -3px;
    background: linear-gradient(135deg, var(--accent-start), var(--accent-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    flex-shrink: 0;
    width: 80px;
}

.hiw-step-content {
    flex: 1;
}

.hiw-step-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--accent-start), var(--accent-end));
    box-shadow: 0 6px 20px rgba(255, 105, 15, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.hiw-step-title {
    font-size: 28px;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: var(--text-primary);
    margin-bottom: 16px;
    overflow-wrap: break-word;
    word-break: break-word;
}

.hiw-step-desc {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 12px;
    overflow-wrap: break-word;
    word-break: break-word;
    -webkit-hyphens: auto;
    hyphens: auto;
}

.hiw-step-stats {
    display: flex;
    gap: 32px;
    margin-top: 24px;
    flex-wrap: wrap;
}

.hiw-mini-stat {
    text-align: center;
    padding: 20px 24px;
    background: var(--bg-section);
    border-radius: var(--radius-sm);
    min-width: 120px;
}

.hiw-mini-stat-number {
    font-size: 24px;
    font-weight: 800;
    letter-spacing: -1px;
    background: linear-gradient(135deg, var(--accent-start), var(--accent-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hiw-mini-stat-label {
    font-size: 12px;
    color: var(--text-tertiary);
    font-weight: 500;
    margin-top: 2px;
    overflow-wrap: break-word;
    word-break: break-word;
    -webkit-hyphens: auto;
    hyphens: auto;
}

.hiw-deal-types {
    display: grid;
    gap: 16px;
    margin-top: 20px;
}

.hiw-deal-type {
    padding: 20px 24px;
    background: var(--bg-section);
    border-radius: var(--radius-sm);
}

.hiw-deal-type p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-top: 8px;
    overflow-wrap: break-word;
    word-break: break-word;
}

.hiw-deal-type-badge {
    display: inline-block;
    padding: 4px 14px;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

.hiw-badge-red,
.hiw-badge-green,
.hiw-badge-blue,
.hiw-badge-accent {
    background: linear-gradient(135deg, rgba(255, 105, 15, 0.12), rgba(255, 140, 0, 0.12));
    color: var(--accent-start);
}

.hiw-channels {
    display: grid;
    gap: 16px;
    margin-top: 20px;
}

.hiw-channel {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 20px 24px;
    background: var(--bg-section);
    border-radius: var(--radius-sm);
}

.hiw-channel-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: var(--card-shadow);
}

.hiw-channel-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.hiw-channel-desc {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
    overflow-wrap: break-word;
    word-break: break-word;
}

/* ============================================
   DEALS SECTION
   ============================================ */
.deals-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 48px;
    flex-wrap: wrap;
    gap: 16px;
}

.deals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.deal-card {
    background: var(--bg-dark-card);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius);
    padding: 0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.deal-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.3);
}

.deal-card-gradient {
    height: 4px;
    background: linear-gradient(90deg, var(--accent-start), var(--accent-end));
}

.deal-card-inner {
    padding: 24px 28px 28px;
}

.deal-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 5px 14px;
    border-radius: var(--radius-full);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.deal-badge-mistake {
    background: rgba(255, 71, 87, 0.15);
    color: var(--accent-start);
}

.deal-badge-low {
    background: rgba(54, 211, 153, 0.15);
    color: var(--green);
}

.deal-top {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.deal-airline-logo {
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.6);
}

.deal-airline {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 500;
}

.deal-route {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 12px;
    padding: 16px;
    margin-left: -8px;
    margin-right: -8px;
}

.deal-city-code {
    font-size: 28px;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: var(--white);
    line-height: 1.1;
}

.deal-city-name {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 4px;
    font-weight: 500;
}

.deal-arrow {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 0 4px;
}

.deal-arrow-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 105, 15, 0.3), transparent);
}

.deal-arrow-icon {
    margin: 0 6px;
    color: var(--accent-start);
    opacity: 0.7;
}

.deal-bottom {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.deal-price {
    font-size: 32px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--accent-start), var(--accent-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -1px;
    line-height: 1;
}

.deal-price-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.35);
    margin-top: 4px;
    font-weight: 500;
}

.deal-dates {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
    text-align: right;
    font-weight: 500;
}

.deal-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: var(--accent-start);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    margin-top: 6px;
    transition: gap 0.2s ease;
}

.deal-link:hover {
    gap: 8px;
}

/* ============================================
   PRICING
   ============================================ */
.pricing-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 64px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 820px;
    margin: 0 auto;
}

.pricing-grid-3 {
    grid-template-columns: repeat(3, 1fr);
    max-width: 1080px;
}

.pricing-grid-4 {
    grid-template-columns: repeat(4, 1fr);
    max-width: 1400px;
}

.pricing-grid-4 .pricing-card {
    padding: 48px 24px;
}

.pricing-grid-4 .pricing-features li {
    font-size: 14px;
    gap: 10px;
    min-height: 52px;
    align-items: center;
    box-sizing: border-box;
}

.pricing-card {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    padding: 48px 36px;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-4px);
}

.pricing-features {
    flex: 1;
}

/* Basic — Most Popular: subtle elevation, only visually distinct card */
.pricing-card-pro {
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

.pricing-card-pro:hover {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

/* Basic — indigo filled button */
.pricing-card-basic .pricing-btn-fill {
    background: #4F46E5;
    box-shadow: 0 4px 16px rgba(79, 70, 229, 0.25);
}

.pricing-card-basic .pricing-btn-fill:hover {
    background: #4338CA;
    box-shadow: 0 8px 24px rgba(79, 70, 229, 0.35);
}

/* Ultra "Premium" badge — dark */
.pricing-popular-ultra {
    background: #1A1A1A !important;
    color: var(--white) !important;
}

/* Ultra button — dark filled */
.pricing-btn-ultra {
    background: #1A1A1A !important;
    color: var(--white) !important;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15) !important;
}

.pricing-btn-ultra:hover {
    background: #333333 !important;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2) !important;
}

.pricing-popular {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-start);
    color: var(--white);
    padding: 6px 24px;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 700;
    text-align: center;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 0 2px 8px rgba(255, 105, 15, 0.25);
    white-space: nowrap;
}

.pricing-name {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.pricing-card-basic .pricing-name {
    color: #4F46E5;
}

.pricing-card-pro .pricing-name {
    color: #FF690F;
}

.pricing-card-ultra .pricing-name {
    color: #1A1A1A;
}

.pricing-price {
    font-size: 48px;
    font-weight: 900;
    letter-spacing: -2px;
    margin-bottom: 4px;
    color: var(--text-primary);
    min-height: 58px;
}

.pricing-price span {
    font-size: 18px;
    font-weight: 500;
    color: var(--text-tertiary);
    letter-spacing: 0;
}

.pricing-promo-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent-start), var(--accent-end));
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 4px 14px;
    border-radius: var(--radius-full);
    margin-bottom: 8px;
}

.pricing-card-basic .pricing-promo-badge {
    background: #4F46E5;
}

.pricing-promo-ultra {
    background: #1A1A1A;
}

.pricing-promo-spacer {
    visibility: hidden;
    pointer-events: none;
}

.pricing-price-original {
    font-size: 48px;
    font-weight: 900;
    color: #c0c0c0;
    text-decoration: line-through;
    text-decoration-thickness: 1.5px;
    text-decoration-color: #c0c0c0;
    margin-right: 8px;
    letter-spacing: -2px;
}

.pricing-period {
    font-size: 14px;
    color: var(--text-tertiary);
    margin-bottom: 32px;
    min-height: 42px;
}

.pricing-features {
    list-style: none;
    margin-bottom: 36px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-size: 15px;
    color: var(--text-secondary);
}

.pricing-features li strong {
    color: var(--text-primary);
}

.pricing-features li .pf-check {
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.pricing-features li .pf-check svg {
    width: 16px;
    height: 16px;
}

.pricing-features li .pf-check-muted {
    background: rgba(203, 213, 225, 0.12);
    color: var(--text-tertiary);
}

.pricing-features li.pf-muted {
    color: #c0c8d4;
    font-weight: 400;
}

/* Stats grid — visible only on mobile */
.pricing-stats {
    display: none;
}

/* See all features toggle — hidden on desktop */
.pricing-features-toggle {
    display: none;
}

.pricing-btn {
    display: block;
    width: 100%;
    padding: 16px;
    border-radius: var(--radius-full);
    border: none;
    font-family: inherit;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    text-align: center;
    text-decoration: none;
    margin-top: auto;
}

.pricing-btn:hover {
    transform: scale(1.02);
}

.pricing-btn-outline {
    background: var(--white);
    color: var(--text-primary);
    border: 1.5px solid var(--border);
}

.pricing-btn-outline:hover {
    border-color: var(--text-secondary);
    box-shadow: 0 4px 16px rgba(15, 23, 41, 0.06);
}

.pricing-btn-fill {
    background: var(--accent-start);
    color: var(--white);
    box-shadow: 0 4px 16px rgba(255, 105, 15, 0.25);
    -webkit-appearance: none;
    appearance: none;
}

.pricing-btn-fill:hover {
    background: #E85D0A;
    box-shadow: 0 8px 24px rgba(255, 105, 15, 0.35);
}

.pricing-btn-sub {
    text-align: center;
    font-size: 13px;
    line-height: 1.4;
    font-weight: 600;
    color: var(--text-tertiary);
    margin-top: 10px;
    letter-spacing: 0.2px;
    min-height: 56px;
}

.pricing-save-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent-start), var(--accent-end));
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 6px 18px;
    border-radius: var(--radius-full);
    margin-top: 6px;
}

.pricing-card-basic .pricing-save-badge {
    background: #4F46E5;
}

.pricing-card-ultra .pricing-save-badge {
    background: #1A1A1A;
}

.pricing-note {
    text-align: center;
    font-size: 14px;
    color: var(--text-tertiary);
    margin-top: 28px;
}

/* ============================================
   FAQ
   ============================================ */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.faq-item {
    border-bottom: 1px solid var(--border);
}

.faq-item:first-child {
    border-top: 1px solid var(--border);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 24px 0;
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-size: 17px;
    font-weight: 600;
    color: var(--text-primary);
    text-align: left;
    line-height: 1.4;
}

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

.faq-chevron {
    flex-shrink: 0;
    color: var(--text-tertiary);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-chevron {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
}

.faq-answer p {
    padding: 0 0 24px;
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ============================================
   DARK SECTION (reusable)
   ============================================ */
.dark-section {
    text-align: center;
    padding: 100px 24px;
    background: #111827;
}

.dark-section-content {
    max-width: 700px;
    margin: 0 auto;
}

.dark-section-eyebrow {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-start);
    margin-bottom: 20px;
}

.dark-section-headline {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -1.5px;
    color: #ffffff;
    margin-bottom: 20px;
    overflow-wrap: break-word;
    word-break: break-word;
}

.dark-section-body {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.7;
    margin-bottom: 56px;
    overflow-wrap: break-word;
    word-break: break-word;
    -webkit-hyphens: auto;
    hyphens: auto;
}

.dark-section-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.dark-section-stat {
    text-align: center;
    min-width: 0;
}

.dark-section-stat-number {
    font-size: 36px;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -1px;
    line-height: 1;
    margin-bottom: 6px;
}

.dark-section-stat-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    overflow-wrap: break-word;
}

.dark-section-stat-sep {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
}

/* ============================================
   FINAL CTA
   ============================================ */
.final-cta {
    text-align: center;
    padding: 120px 24px 140px;
    position: relative;
    overflow: hidden;
    background: #111827;
}

.final-cta-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
}

.final-eyebrow {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-start);
    margin-bottom: 20px;
}

.final-headline {
    font-size: clamp(34px, 4.5vw, 56px);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -2px;
    margin-bottom: 20px;
    color: #ffffff;
    overflow-wrap: break-word;
    text-wrap: balance;
}

.final-body {
    font-size: 19px;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.6;
    margin-bottom: 56px;
    overflow-wrap: break-word;
    word-break: break-word;
    -webkit-hyphens: auto;
    hyphens: auto;
}

.final-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin-bottom: 56px;
}

.final-stat {
    text-align: center;
    min-width: 0;
}

.final-stat-number {
    font-size: 36px;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -1px;
    line-height: 1;
    margin-bottom: 6px;
}

.final-stat-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    overflow-wrap: break-word;
    text-wrap: balance;
}

.final-stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
}

.final-cta-btn {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent-start), var(--accent-end));
    color: #ffffff;
    font-size: 17px;
    font-weight: 700;
    padding: 18px 48px;
    border-radius: var(--radius-full);
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 24px rgba(255, 105, 15, 0.25);
}

.final-cta-btn:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 32px rgba(255, 105, 15, 0.35);
}

.final-footnote {
    margin-top: 20px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.35);
    overflow-wrap: break-word;
}

/* ============================================
   AUTH PAGES
   ============================================ */
.auth-section {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: calc(100dvh - 80px);
    padding: 40px 24px;
    background: #0F1729 url('/background/login.jpg') center/cover no-repeat;
}

.auth-card {
    width: 100%;
    max-width: 440px;
    margin: auto 0;
    background: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-top: 3px solid var(--accent-start);
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(255, 255, 255, 0.08);
    padding: 40px 36px;
    text-align: center;
}

.auth-logo {
    font-size: 20px;
    font-weight: 800;
    letter-spacing: -0.3px;
    color: var(--text-primary);
    text-decoration: none;
    display: inline-block;
    margin-bottom: 32px;
}

.auth-logo span {
    background: linear-gradient(135deg, var(--accent-start), var(--accent-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.auth-title {
    font-size: 24px;
    font-weight: 800;
    letter-spacing: -0.4px;
    margin-bottom: 6px;
    color: var(--text-primary);
}

.auth-subtitle {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

/* Error 404 */
.error-404-code {
    font-size: 72px;
    font-weight: 900;
    letter-spacing: -3px;
    line-height: 1;
    background: linear-gradient(135deg, var(--accent-start), var(--accent-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

/* Social login buttons */
/* Social login — stacked full-width buttons */
.auth-social-stack {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Social login — inline row (auth pages) */
.auth-social-row {
    display: flex;
    flex-direction: row;
    gap: 10px;
}

.auth-social-row .auth-social-btn {
    flex: 1;
    min-height: 44px;
    padding: 0 14px;
    font-size: 13px;
    font-weight: 600;
}

.auth-social-row .auth-social-btn span {
    white-space: nowrap;
}

.auth-social-row .auth-social-btn svg {
    width: 20px;
    height: 20px;
}

.auth-social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    min-height: 46px;
    padding: 0 16px;
    border: 1.5px solid #e5e7eb;
    border-radius: 10px;
    background: #fff;
    color: #1d1d1f;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease, transform 0.1s ease;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}

.auth-social-btn:hover {
    background: #f9fafb;
    border-color: #d1d5db;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    color: #1d1d1f;
    text-decoration: none;
}

.auth-social-btn:active {
    transform: scale(0.985);
}

.auth-social-btn svg {
    flex-shrink: 0;
}

/* Apple — same outline style as others, dark icon */
.auth-social-btn--apple {
    background: var(--white);
    border-color: #e5e7eb;
    color: #1d1d1f;
}

.auth-social-btn--apple:hover {
    background: #f9fafb;
    border-color: #d1d5db;
    color: #1d1d1f;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.auth-social-btn--apple:active {
    background: #f3f4f6;
}

/* "or" separator */
.auth-separator {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 20px;
    margin-bottom: 24px;
    color: var(--text-tertiary);
    font-size: 13px;
    font-weight: 500;
}

.auth-separator::before,
.auth-separator::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #e5e7eb;
}

/* CTA social buttons (used on hero, final-cta, pricing, how-it-works) */
.cta-social-row {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-top: 18px;
}

.cta-social-label {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-tertiary);
}

.cta-social-stack {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    max-width: 400px;
}

.cta-social-stack .auth-social-btn--apple {
    background: var(--white);
    border-color: #e5e7eb;
    color: #1d1d1f;
}

.cta-social-stack .auth-social-btn--apple:hover {
    background: #f9fafb;
    border-color: #d1d5db;
    color: #1d1d1f;
}

.auth-form {
    text-align: left;
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.form-input {
    width: 100%;
    padding: 14px 16px;
    border: 1.5px solid var(--border);
    border-radius: 12px;
    font-family: inherit;
    font-size: 16px;
    color: var(--text-primary);
    background: var(--white);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
}

.form-input-wrap {
    position: relative;
}

.form-input-wrap .form-input {
    padding-right: 44px;
}

.form-pw-toggle {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    padding: 12px;
    min-width: 44px;
    min-height: 44px;
    cursor: pointer;
    color: var(--text-tertiary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s ease;
    -webkit-tap-highlight-color: transparent;
}

.form-pw-toggle:hover {
    color: var(--text-secondary);
}

.form-input::placeholder {
    color: var(--text-tertiary);
}

.form-input:focus {
    border-color: var(--accent-start);
    box-shadow: 0 0 0 4px rgba(255, 105, 15, 0.08);
}

.form-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.form-row-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text-secondary);
    cursor: pointer;
}

.form-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    border-radius: 5px;
    accent-color: var(--accent-start);
    cursor: pointer;
}

.form-checkbox a {
    color: var(--accent-link);
    text-decoration: none;
    font-weight: 600;
}

.form-checkbox a:hover {
    text-decoration: underline;
}

.auth-agreement {
    font-size: 12px;
    color: var(--text-tertiary);
    text-align: center;
    margin-top: 16px;
    line-height: 1.5;
}
.auth-agreement a {
    color: var(--text-secondary);
    text-decoration: underline;
    text-underline-offset: 2px;
}
.auth-agreement a:hover {
    color: var(--accent-start);
}

.form-link {
    font-size: 14px;
    color: var(--accent-start);
    text-decoration: none;
    font-weight: 600;
}

.form-link:hover {
    color: var(--accent-hover);
    text-decoration: underline;
}

.auth-btn {
    width: 100%;
    padding: 16px;
    border: none;
    border-radius: var(--radius-full);
    background: linear-gradient(135deg, var(--accent-start), var(--accent-end));
    color: var(--white);
    font-family: inherit;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.3;
    text-align: center;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 16px rgba(255, 105, 15, 0.25);
    -webkit-appearance: none;
    appearance: none;
}

.auth-btn:hover {
    transform: scale(1.02);
    box-shadow: 0 6px 24px rgba(255, 105, 15, 0.35);
}

/* Auth panel footer — switch between login/register/forgot */
.auth-switch {
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.auth-switch-label {
    display: block;
    margin-bottom: 10px;
}

.auth-switch--link {
    text-align: center;
}

.auth-switch--link .auth-switch-label {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 6px;
}

.auth-switch--link a {
    color: var(--accent-start);
    font-size: 16px;
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.15s ease;
}

.auth-switch--link a:hover {
    color: var(--accent-hover);
}

.auth-switch--small a {
    display: inline-block;
    width: auto;
    padding: 0;
    background: none;
    color: var(--accent-start);
    font-size: 14px;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
    box-shadow: none;
}

.auth-switch--small a:hover {
    color: var(--accent-hover);
    transform: none;
    box-shadow: none;
}

.auth-switch button {
    background: none;
    border: none;
    font-family: inherit;
    font-size: 15px;
    font-weight: 700;
    color: var(--accent-start);
    cursor: pointer;
    padding: 0;
    transition: color 0.15s ease;
}

.auth-switch button:hover {
    color: var(--accent-hover, var(--accent-end));
}

/* Inline link-style button (e.g. "Forgot password?") */
.auth-switch-link {
    background: none;
    border: none;
    font-family: inherit;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-tertiary);
    cursor: pointer;
    padding: 0;
    transition: color 0.15s ease;
}

.auth-switch-link:hover {
    color: var(--accent-start);
}

/* Auth panel stack — active panel in flow, hidden panels absolutely positioned */
.auth-panel-stack {
    position: relative;
    overflow: hidden;
    transition: height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.auth-panel-stack > .auth-panel {
    transition: opacity 0.2s ease;
}

.auth-panel-stack > .auth-panel[aria-hidden="true"] {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
}

/* ============================================
   LEGAL PAGES
   ============================================ */
.legal-content {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-secondary);
    overflow-wrap: break-word;
    word-break: break-word;
    -webkit-hyphens: auto;
    hyphens: auto;
}

.legal-content h2 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-primary);
    margin-top: 48px;
    margin-bottom: 16px;
    letter-spacing: -0.3px;
}

.legal-content h3 {
    font-size: 17px;
    font-weight: 600;
    color: var(--text-primary);
    margin-top: 28px;
    margin-bottom: 12px;
}

.legal-content p {
    margin-bottom: 16px;
}

.legal-content ul {
    margin: 0 0 20px 0;
    padding-left: 24px;
}

.legal-content ul li {
    margin-bottom: 8px;
}

.legal-content ol { margin-bottom: 20px; padding-left: 24px; }
.legal-content ol li { margin-bottom: 8px; line-height: 1.8; }

.legal-content a {
    color: var(--accent-link);
    text-decoration: none;
    font-weight: 500;
}

.legal-content a:hover {
    text-decoration: underline;
}

.legal-content strong {
    color: var(--text-primary);
    font-weight: 600;
}

/* ============================================
   SECURITY PAGE — practices + info grid
   ============================================ */
.sec-practice-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px 48px;
}

.sec-practice-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.sec-practice-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(255, 105, 15, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
}

.sec-practice-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 6px;
    letter-spacing: -0.2px;
}

.sec-practice-text {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.65;
    margin: 0;
}

.sec-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.sec-info-item {
    padding: 32px;
    background: var(--bg-section);
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
}

.sec-info-item h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
    letter-spacing: -0.3px;
    overflow-wrap: break-word;
    word-break: break-word;
}

.sec-info-item p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
    overflow-wrap: break-word;
    word-break: break-word;
}

.sec-info-item a {
    color: var(--accent-start);
    text-decoration: none;
    font-weight: 600;
}

.sec-info-item a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .sec-practice-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .sec-info-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .sec-info-item {
        padding: 24px;
    }
}

@media (max-width: 480px) {
    .sec-practice-icon {
        width: 38px;
        height: 38px;
        border-radius: 10px;
    }

    .sec-practice-icon svg {
        width: 18px;
        height: 18px;
    }

    .sec-practice-title {
        font-size: 15px;
    }

    .sec-practice-text {
        font-size: 13px;
    }

    .sec-info-item {
        padding: 20px;
    }

    .sec-info-item h3 {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .sec-info-item p {
        font-size: 14px;
    }
}

/* ============================================
   FOOTER
   ============================================ */
footer {
    background: #F5F5F7;
    padding: 48px 24px calc(32px + env(safe-area-inset-bottom, 0px));
    padding-left: max(24px, env(safe-area-inset-left, 24px));
    padding-right: max(24px, env(safe-area-inset-right, 24px));
}

.footer-inner {
    max-width: 980px;
    margin: 0 auto;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.4fr repeat(4, 1fr);
    gap: 24px 40px;
    padding-bottom: 28px;
    border-bottom: 1px solid #D2D2D7;
}

.footer-brand {
    max-width: 260px;
    min-width: 0;
}

.footer-logo {
    font-size: 16px;
    font-weight: 800;
    color: #1D1D1F;
    margin-bottom: 10px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    min-height: 48px;
}

.footer-logo span {
    background: linear-gradient(135deg, var(--accent-start), var(--accent-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-logo-img {
    max-height: 32px;
    width: auto;
    max-width: 100%;
    display: block;
    margin-bottom: 10px;
}

.footer-tagline {
    font-size: 13px;
    color: #6B6B70;
    line-height: 1.55;
}

.footer-col-title {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #1D1D1F;
    margin-bottom: 14px;
}

.footer-col-links {
    list-style: none;
}

.footer-col-links li {
    margin-bottom: 0;
}

.footer-col {
    min-width: 0;
}

.footer-col-links a {
    color: #6E6E73;
    text-decoration: none;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.4;
    padding: 8px 0;
    transition: color 0.2s ease;
    overflow-wrap: break-word;
    word-break: break-word;
    display: inline-flex;
    align-items: center;
}

.footer-col-links a:hover {
    color: #1D1D1F;
}

.footer-anpc {
    padding-top: 20px;
    border-top: 1px solid #E5E5EA;
}

.footer-anpc-img {
    height: 38px;
    width: auto;
    display: block;
    opacity: 0.7;
    transition: opacity 0.2s ease;
}

.footer-anpc-img:hover {
    opacity: 1;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    flex-wrap: wrap;
    gap: 8px 16px;
}

.footer-copy {
    font-size: 12px;
    color: #6B6B70;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0;
}

.footer-bottom-links a,
.footer-cookie-btn {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    font-family: inherit;
    color: #6E6E73;
    font-size: 12px;
    font-weight: 400;
    text-decoration: none;
    transition: color 0.2s ease;
    white-space: nowrap;
}

.footer-bottom-links a:hover,
.footer-cookie-btn:hover {
    color: #1D1D1F;
}

.footer-bottom-sep {
    width: 1px;
    height: 12px;
    background: #D2D2D7;
    margin: 0 12px;
    flex-shrink: 0;
}

/* ============================================
   EXPLORE LINKS (SEO section)
   ============================================ */
.explore-section {
    background: #FFFFFF;
    border-top: 1px solid #E5E5EA;
    padding: 48px 24px;
}

.explore-grid {
    max-width: 980px;
    margin: 0 auto;
    display: grid;
    gap: 48px;
}

.explore-cols-3 { grid-template-columns: 1fr 1fr 1fr; }
.explore-cols-2 { grid-template-columns: 1fr 1fr; }
.explore-cols-1 { grid-template-columns: 1fr; max-width: 320px; margin-left: auto; margin-right: auto; }

.explore-col {
    text-align: center;
}

.explore-title {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #1D1D1F;
    margin: 0 0 16px 0;
}

.explore-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.explore-list li {
    border-bottom: 1px solid #F5F5F7;
}

.explore-list li:last-child {
    border-bottom: none;
}

.explore-list a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 6px;
    padding: 8px 0;
    font-size: 13px;
    color: #424245;
    text-decoration: none;
    transition: color 0.2s ease;
}

.explore-list a:hover {
    color: #1D1D1F;
}

.explore-price {
    font-size: 12px;
    color: var(--accent-start);
    font-weight: 600;
    white-space: nowrap;
}

.explore-iata {
    font-size: 11px;
    color: var(--accent-start);
    font-weight: 600;
}

.explore-viewall {
    display: inline-block;
    margin-top: 12px;
    font-size: 12px;
    font-weight: 500;
    color: #424245;
    text-decoration: none;
    transition: color 0.2s ease;
}

.explore-viewall:hover {
    color: #1D1D1F;
}

@media (max-width: 768px) {
    .explore-section {
        padding: 32px 20px;
    }

    .explore-grid {
        grid-template-columns: 1fr !important;
        gap: 24px;
    }
}

/* ============================================
   COOKIE BAR
   ============================================ */
.cookie-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9990;
    background: #F5F5F7;
    border-top: 1px solid #D2D2D7;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.cookie-bar.visible {
    transform: translateY(0);
}

.cookie-bar-inner {
    max-width: 980px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 16px 24px calc(16px + env(safe-area-inset-bottom, 0px));
}

.cookie-bar-text {
    font-size: 12px;
    color: #6E6E73;
    line-height: 1.5;
    flex: 1;
    min-width: 0;
}

.cookie-bar-text a {
    color: #1D1D1F;
    text-decoration: underline;
    text-underline-offset: 2px;
    font-weight: 500;
}

.cookie-bar-actions {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
}

.cookie-bar-btn {
    padding: 12px 18px;
    border-radius: var(--radius-full);
    font-family: inherit;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    white-space: nowrap;
    min-height: 44px;
    transition: opacity 0.15s ease;
}

.cookie-bar-btn:hover {
    opacity: 0.85;
}

.cookie-bar-btn-reject {
    background: transparent;
    color: #6E6E73;
    border: 1px solid #D2D2D7;
}

.cookie-bar-btn-reject:hover {
    background: #fff;
    color: #1D1D1F;
}

.cookie-bar-btn-accept {
    background: #1D1D1F;
    color: #fff;
}

@media (max-width: 920px) {
    .cookie-bar-inner {
        flex-direction: column;
        gap: 14px;
        padding: 16px 20px calc(16px + env(safe-area-inset-bottom, 0px));
    }

    .cookie-bar-text {
        text-align: center;
    }

    .cookie-bar-actions {
        width: 100%;
    }

    .cookie-bar-btn {
        flex: 1;
        text-align: center;
        padding: 12px 14px;
        white-space: normal;
    }
}

@media (max-width: 374px) {
    .cookie-bar-inner {
        padding: 14px 16px calc(14px + env(safe-area-inset-bottom, 0px));
        gap: 12px;
    }

    .cookie-bar-text {
        font-size: 11px;
    }

    .cookie-bar-actions {
        flex-direction: column;
        gap: 8px;
    }

    .cookie-bar-btn {
        font-size: 11px;
        padding: 10px 12px;
        width: 100%;
    }
}

/* ============================================
   AUTH ERROR
   ============================================ */
.auth-error {
    background: rgba(255, 71, 87, 0.08);
    border: 1px solid rgba(255, 71, 87, 0.2);
    border-radius: 12px;
    padding: 12px 16px;
    margin-bottom: 24px;
    font-size: 14px;
    color: #C62828;
    text-align: left;
    line-height: 1.5;
    overflow-wrap: break-word;
    word-break: break-word;
}

.auth-success {
    background: rgba(54, 211, 153, 0.08);
    border: 1px solid rgba(54, 211, 153, 0.2);
    border-radius: 12px;
    padding: 16px 20px;
    margin-bottom: 24px;
    font-size: 15px;
    color: #1B7A4E;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    line-height: 1.5;
    overflow-wrap: break-word;
    word-break: break-word;
}

.auth-success svg {
    flex-shrink: 0;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-stage {
    position: relative;
    overflow: hidden;
    padding: 52px 24px 88px;
    background:
        radial-gradient(circle at top left, rgba(255, 105, 15, 0.16), transparent 34%),
        radial-gradient(circle at bottom right, rgba(255, 183, 77, 0.18), transparent 30%),
        linear-gradient(180deg, #fff7f1 0%, #fffaf5 34%, #ffffff 72%, #f6f7fb 100%);
}

.contact-stage-container {
    position: relative;
    z-index: 1;
    max-width: 1180px;
}

.contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
    gap: 28px;
    align-items: stretch;
}

.contact-panel {
    position: relative;
    min-height: 100%;
    padding: 34px;
    border-radius: 28px;
    color: var(--text-primary);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.56));
    border: 1px solid rgba(255, 105, 15, 0.08);
    box-shadow: 0 16px 40px rgba(255, 105, 15, 0.05);
    backdrop-filter: blur(18px);
}

.contact-panel::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.3), transparent 44%),
        radial-gradient(circle at top right, rgba(255, 140, 0, 0.08), transparent 42%);
    pointer-events: none;
}

.contact-panel-eyebrow {
    display: inline-flex;
    align-items: center;
    margin: 0 0 18px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255, 105, 15, 0.1);
    border: 1px solid rgba(255, 105, 15, 0.12);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(178, 78, 17, 0.82);
}

.contact-panel-title {
    position: relative;
    z-index: 1;
    margin: 0 0 16px;
    font-size: clamp(32px, 3.2vw, 46px);
    line-height: 1.02;
    letter-spacing: -0.04em;
    color: #171717;
    max-width: none;
    text-wrap: balance;
}

.contact-panel-subtitle {
    position: relative;
    z-index: 1;
    margin: 0 0 20px;
    max-width: 45ch;
    font-size: 18px;
    line-height: 1.7;
    color: #5f667b;
}

.contact-panel-tags {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 28px;
}

.contact-panel-tag {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 105, 15, 0.1);
    color: #754b30;
    font-size: 13px;
    font-weight: 700;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

.contact-panel-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    padding: 10px;
    border-radius: 22px;
    border: 1px solid rgba(255, 105, 15, 0.08);
    background: rgba(255, 255, 255, 0.7);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85);
    margin-bottom: 24px;
}

.contact-stat-card {
    position: relative;
    z-index: 1;
    padding: 14px 18px;
    border-right: 1px solid rgba(255, 105, 15, 0.08);
}

.contact-stat-card:last-child {
    border-right: none;
}

.contact-stat-value {
    margin-bottom: 6px;
    font-size: 24px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.04em;
    color: #171717;
}

.contact-stat-label {
    font-size: 13px;
    line-height: 1.4;
    color: #737b91;
}

.contact-panel-direct {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 14px;
    padding: 18px 20px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.74);
    border: 1px solid rgba(255, 105, 15, 0.1);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.contact-panel-direct-label,
.contact-panel-call-label {
    margin: 0;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(137, 92, 60, 0.88);
}

.contact-panel-direct-link {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -0.03em;
    color: #171717;
    text-decoration: none;
    word-break: break-word;
}

.contact-panel-direct-link:hover {
    color: var(--accent-start);
}

.contact-panel-phones {
    position: relative;
    z-index: 1;
    margin-bottom: 22px;
    padding: 20px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.74);
    border: 1px solid rgba(255, 105, 15, 0.1);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.contact-phone-list {
    display: grid;
    gap: 12px;
    margin-top: 16px;
}

.contact-phone-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 18px;
    border-radius: 20px;
    color: inherit;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(255, 105, 15, 0.1);
    box-shadow: 0 12px 28px rgba(20, 25, 31, 0.05);
    transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-phone-card:hover {
    transform: translateY(-1px);
    background: #fffaf6;
    border-color: rgba(255, 105, 15, 0.2);
    box-shadow: 0 18px 36px rgba(255, 105, 15, 0.12);
}

.contact-phone-card.is-revealed {
    background: linear-gradient(180deg, #ffffff 0%, #fff8f1 100%);
    border-color: rgba(255, 105, 15, 0.24);
}

.contact-phone-icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #fff;
    background: linear-gradient(135deg, var(--accent-start), var(--accent-end));
    box-shadow: 0 12px 24px rgba(255, 105, 15, 0.22);
}

.contact-phone-copy {
    display: grid;
    gap: 8px;
    min-width: 0;
    flex: 1;
}

.contact-phone-title {
    font-size: 15px;
    font-weight: 700;
    color: #1c2234;
}

.contact-phone-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.contact-phone-reveal {
    appearance: none;
    border: 1px solid rgba(255, 105, 15, 0.18);
    background: #fff1e5;
    color: #af4d12;
    border-radius: 999px;
    padding: 10px 14px;
    font-family: inherit;
    font-size: 13px;
    font-weight: 700;
    line-height: 1;
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.contact-phone-reveal:hover {
    transform: translateY(-1px);
    background: #ffe5d1;
    border-color: rgba(255, 105, 15, 0.3);
    color: #8e3f0f;
}

.contact-phone-number-link {
    font-size: 14px;
    font-weight: 700;
    color: var(--accent-start);
    text-decoration: none;
    word-break: break-word;
}

.contact-phone-number-link:hover {
    color: var(--accent-hover);
}

.contact-panel-hours {
    margin: 14px 0 0;
    font-size: 13px;
    color: #7d8498;
}

.contact-response-pill {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 11px 16px;
    border-radius: 999px;
    border: 1px solid rgba(255, 105, 15, 0.12);
    background: rgba(255, 255, 255, 0.82);
    color: #636b80;
    font-size: 13px;
    font-weight: 600;
}

.ct-form,
.contact-form-card {
    position: relative;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(255, 105, 15, 0.08);
    border-radius: 28px;
    padding: 34px;
    box-shadow: 0 28px 64px rgba(20, 25, 31, 0.12);
}

.ct-form::before,
.contact-form-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-start), var(--accent-end));
}

.contact-form-head {
    margin-bottom: 24px;
    max-width: 36ch;
}

.contact-form-head h2 {
    margin: 0 0 8px;
    font-size: 32px;
    font-weight: 800;
    letter-spacing: -0.04em;
    color: #171717;
}

.contact-form-head p {
    margin: 0;
    font-size: 15px;
    line-height: 1.65;
    color: #687086;
}

.contact-form-card .form-group {
    margin-bottom: 18px;
}

.contact-form-card .form-label {
    color: #22273a;
}

.contact-form-card .form-input,
.contact-form-card .form-textarea {
    border-color: #eadfd3;
    background: #fffdfb;
}

.contact-form-card .form-input:focus,
.contact-form-card .form-textarea:focus {
    border-color: var(--accent-start);
    box-shadow: 0 0 0 4px rgba(255, 105, 15, 0.12);
}

.contact-form-card .auth-error {
    margin-bottom: 20px;
}

.contact-submit-btn {
    width: 100%;
    margin-top: 8px;
    background: linear-gradient(135deg, var(--accent-start) 0%, var(--accent-end) 100%);
    box-shadow: 0 16px 34px rgba(255, 105, 15, 0.24);
}

.contact-submit-btn:hover {
    background: linear-gradient(135deg, var(--accent-hover) 0%, #d87006 100%);
    transform: translateY(-1px);
}

.contact-form-footnote {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
    padding-top: 18px;
    border-top: 1px solid #f0e3d7;
    font-size: 12px;
    color: #8a7f74;
    text-align: center;
}

.form-textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1.5px solid var(--border);
    border-radius: 12px;
    font-family: inherit;
    font-size: 16px;
    color: var(--text-primary);
    background: var(--white);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    outline: none;
    resize: vertical;
    min-height: 120px;
}

.form-textarea::placeholder {
    color: var(--text-tertiary);
}

.form-textarea:focus {
    border-color: var(--accent-start);
    box-shadow: 0 0 0 4px rgba(255, 105, 15, 0.08);
}

.contact-confirmed {
    text-align: center;
    padding: 20px 0 8px;
    word-break: break-word;
}

.contact-confirmed-icon {
    margin-bottom: 20px;
}

.contact-confirmed h2 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.contact-confirmed-text {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 28px;
}

.contact-confirmed-ticket {
    display: inline-block;
    padding: 16px 32px;
    background: var(--bg-section);
    border: 1px solid var(--border);
    border-radius: 14px;
    margin-bottom: 24px;
}

.contact-confirmed-ticket-label {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-tertiary);
    margin-bottom: 4px;
}

.contact-confirmed-ticket-number {
    font-size: 28px;
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: -0.5px;
    font-family: 'SF Mono', 'Fira Code', ui-monospace, monospace;
}

.contact-confirmed-note {
    font-size: 13px;
    color: var(--text-tertiary);
    line-height: 1.5;
    margin-bottom: 20px;
}

.contact-confirmed-link {
    font-size: 14px;
    font-weight: 600;
    color: var(--accent-start);
    text-decoration: none;
}

.contact-confirmed-link:hover {
    color: var(--accent-hover);
}

@media (max-width: 980px) {
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .contact-panel {
        padding: 28px 24px;
    }

    .contact-panel-title {
        max-width: none;
    }
}

@media (max-width: 640px) {
    .contact-stage {
        padding: 32px 16px 56px;
    }

    .contact-panel-subtitle {
        font-size: 16px;
    }

    .contact-panel-stats {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .contact-stat-card {
        border-right: none;
        border-bottom: 1px solid rgba(255, 105, 15, 0.08);
    }

    .contact-stat-card:last-child {
        border-bottom: none;
    }

    .contact-panel {
        padding: 22px 18px;
        border-radius: 22px;
    }

    .ct-form,
    .contact-form-card {
        padding: 22px 18px;
        border-radius: 22px;
    }

    .contact-form-head h2 {
        font-size: 28px;
    }
}

@media (min-width: 1100px) {
    .contact-panel-title {
        white-space: nowrap;
    }
}

/* ============================================
   MOBILE MENU — Full-screen overlay
   ============================================ */
.mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: #fff;
    flex-direction: column;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
}

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

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: max(18px, env(safe-area-inset-top, 18px)) 24px 18px;
    border-bottom: 1px solid var(--border);
    flex-shrink: 0;
}

.mobile-menu-header .nav-logo {
    font-size: 18px;
}

.mobile-menu-close {
    background: none;
    border: none;
    color: var(--text-primary);
    cursor: pointer;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-menu-links {
    display: flex;
    flex-direction: column;
    padding: 16px 24px;
    flex: 1;
}

.mobile-menu-links > a {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 22px;
    font-weight: 700;
    padding: 16px 0;
    border-bottom: 1px solid rgba(0,0,0,0.04);
}

.mobile-menu-links > a:last-of-type {
    border-bottom: none;
}

.mobile-menu-links > a.active {
    color: var(--accent-start);
}

.mobile-menu-guest-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 24px;
    padding-top: 24px;
    padding-bottom: env(safe-area-inset-bottom, 0px);
    border-top: 1px solid var(--border);
}

.mobile-menu-guest-actions .mobile-menu-switchers {
    margin-top: 4px;
    padding-top: 0;
    border-top: none;
}

.mobile-menu-footer {
    padding: 16px 24px calc(32px + env(safe-area-inset-bottom, 0px));
    border-top: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex-shrink: 0;
}

.mobile-menu-logout {
    background: none;
    border: none;
    font-family: inherit;
    font-size: 17px;
    font-weight: 600;
    color: var(--text-tertiary);
    cursor: pointer;
    padding: 12px 0;
    text-align: left;
    min-height: 44px;
}

.mobile-menu-cta-btn {
    display: block;
    text-align: center;
    padding: 14px 24px;
    background: linear-gradient(135deg, var(--accent-start), var(--accent-end));
    color: #fff !important;
    -webkit-text-fill-color: #fff;
    border-radius: 12px;
    font-size: 17px;
    font-weight: 700;
    text-decoration: none;
    margin-top: 4px;
}

.mobile-menu-social {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-top: 8px;
}

.mobile-menu-social-label {
    font-size: 12px;
    font-weight: 500;
    color: var(--text-tertiary);
}

.mobile-menu-social-btns {
    display: flex;
    flex-direction: row;
    gap: 8px;
    width: 100%;
}

.mobile-menu-social-btns .auth-social-btn {
    flex: 1;
    width: auto;
    min-width: 0;
    min-height: 44px;
    padding: 0 10px;
    border-radius: 10px;
    gap: 7px;
    font-size: 13px;
    font-weight: 600;
    overflow: hidden;
}

.mobile-menu-social-btns .auth-social-btn span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.mobile-menu-social-btns .auth-social-btn svg {
    width: 20px;
    height: 20px;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1100px) {
    .nav-links { gap: 16px; }
    .nav-links a { font-size: 14px; }
    .nav-cta { padding: 10px 18px; font-size: 14px; }
    .nav-user-email { max-width: 100px; }
}

@media (max-width: 1024px) {
    html {
        scroll-padding-top: 72px;
    }

    #mainNav {
        height: calc(64px + env(safe-area-inset-top, 0px));
    }

    .impersonation-bar ~ #mainNav {
        height: 64px;
    }

    .nav-links {
        display: none;
    }

    .nav-menu-btn {
        display: block;
    }

    .hero-split {
        gap: 40px;
    }

    .hero-images {
        flex: 0 0 42%;
        gap: 8px;
        max-height: 440px;
    }

    .hero-img {
        border-radius: 12px;
    }

    .how-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin-left: auto;
        margin-right: auto;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        max-width: 380px;
    }

    .vp-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .vp-visual {
        display: none;
    }

    .pricing-grid-3 {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin-left: auto;
        margin-right: auto;
    }

    .pricing-grid-4 {
        grid-template-columns: repeat(2, 1fr);
        max-width: 820px;
        margin-left: auto;
        margin-right: auto;
    }

    .contact-hero {
        min-height: calc(100dvh - 64px);
        padding: 32px 20px;
    }

    .section-pricing-peek {
        padding-top: 48px;
    }

    .section-pricing-peek .pricing-header {
        margin-bottom: 40px;
    }

    .section-pricing-peek .pricing-card {
        padding-top: 40px;
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
}

@media (max-width: 900px) {
    .hero-images {
        flex: 0 0 38%;
        max-height: 380px;
        gap: 6px;
    }

    .hero-split {
        gap: 28px;
    }

    .hero-img {
        border-radius: 10px;
    }
}

@media (max-width: 768px) {
    .hero-images {
        display: none;
    }

    .hero-home {
        text-align: center;
        align-items: center;
    }

    .hero-split {
        flex-direction: column;
    }

    .hero-home .hero-form {
        margin: 0 auto 28px;
    }

    .hero-home .hero-trust {
        justify-content: center;
    }

    .hero-home .cta-social-row {
        align-items: center;
    }
}

@media (max-width: 768px) {
    #mainNav {
        padding-left: max(20px, env(safe-area-inset-left, 20px));
        padding-right: max(20px, env(safe-area-inset-right, 20px));
        padding-top: env(safe-area-inset-top, 0px);
        padding-bottom: 0;
        height: calc(64px + env(safe-area-inset-top, 0px));
    }

    .nav-logo-img {
        height: 36px;
    }

    .hero {
        padding: 40px 20px 40px;
    }

    .hero-home {
        padding-top: 24px;
        padding-bottom: 24px;
    }

    .hero-home .hero-subtitle {
        margin: 20px auto 32px;
    }

    .hero-home .cta-social-stack {
        max-width: 100%;
    }

    .hero-home .auth-social-btn {
        padding: 0 10px;
        font-size: 12px;
    }

    .hero-home .hero-route {
        white-space: normal;
    }

    .hero-home .hero-city {
        white-space: normal;
    }

    .hero-home .hero-headline {
        font-size: clamp(48px, 9vw, 92px);
        letter-spacing: -3px;
    }

    .section-pricing-peek {
        padding-top: 56px;
    }

    .section-pricing-peek .pricing-header {
        margin-bottom: 48px;
    }

    .section-pricing-peek .pricing-toggle {
        margin-bottom: 32px;
    }

    .section-pricing-peek .pricing-card {
        padding-top: 40px;
    }

    .hero-headline {
        letter-spacing: -2px;
    }

    .hero-form {
        flex-direction: column;
        border-radius: var(--radius);
        padding: 5px;
    }

    .hero-form input {
        text-align: center;
    }

    .hero-form button {
        border-radius: var(--radius-sm);
    }

    .hero-trust {
        flex-direction: column;
        gap: 8px;
    }

    .hero-social-proof {
        gap: 20px;
    }

    .section {
        padding: 80px 20px;
    }

    .page-hero {
        padding: 56px 20px 56px;
    }

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

    .deals-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        gap: 16px;
    }

    .pricing-card {
        padding: 28px 20px;
    }

    /* Stats grid — compact 3-col layout on mobile */
    .pricing-stats {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        text-align: center;
        padding: 16px 0;
        border-top: 1px solid rgba(0, 0, 0, 0.06);
        margin-bottom: 4px;
    }

    .pricing-stat-num {
        font-size: 22px;
        font-weight: 800;
        color: var(--text-primary);
        line-height: 1.2;
    }

    .pricing-stat-label {
        font-size: 11px;
        color: var(--text-secondary);
        margin-top: 2px;
        line-height: 1.3;
    }

    /* Hide ALL features on mobile — stats grid replaces the summary */
    .pricing-features:not(.pf-expanded) li {
        display: none;
    }

    .pricing-features:not(.pf-expanded) {
        flex: 0;
        margin-bottom: 0;
    }

    .pricing-features.pf-expanded {
        margin-bottom: 16px;
    }

    /* Reduce spacing */
    .pricing-period {
        margin-bottom: 0;
        min-height: 0;
    }

    .pricing-price {
        min-height: 0;
    }

    .pricing-btn-sub {
        min-height: 0;
    }

    .pricing-features-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 6px;
        background: none;
        border: none;
        font-family: inherit;
        font-size: 14px;
        font-weight: 600;
        color: var(--accent-start);
        cursor: pointer;
        padding: 8px 0;
        margin-bottom: 8px;
    }

    .pricing-features-toggle svg {
        transition: transform 0.2s ease;
    }

    .pricing-features-toggle.pf-toggled svg {
        transform: rotate(180deg);
    }

    /* How it works page */
    .hiw-step-block {
        flex-direction: column;
        gap: 20px;
        padding: 36px 0;
    }

    .hiw-step-number {
        font-size: 48px;
        width: auto;
    }

    .hiw-step-stats {
        gap: 12px;
    }

    .hiw-mini-stat {
        min-width: 0;
        flex: 1;
    }

    /* Auth */
    .auth-section {
        min-height: calc(100dvh - 64px);
        padding: 32px 16px;
        background-image: url('/background/login-mobile.jpg');
    }

    .auth-card {
        padding: 36px 24px;
    }

    .error-404-code {
        font-size: 64px;
    }

    .auth-social-btn {
        min-height: 44px;
        font-size: 13px;
    }

    .cta-social-row {
        gap: 8px;
    }

    .cta-social-label {
        font-size: 12px;
    }

    .cta-social-stack {
        max-width: 100%;
    }

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

    /* Footer — Apple-style accordion on mobile */
    .footer-top {
        display: block;
    }

    .footer-brand {
        max-width: none;
        padding-bottom: 20px;
        margin-bottom: 0;
    }

    .footer-logo {
        min-height: 48px;
        display: inline-flex;
        align-items: center;
    }

    .footer-logo-img {
        max-height: 30px;
    }

    .footer-col {
        border-top: 1px solid #D2D2D7;
    }

    .footer-col-title {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        cursor: pointer;
        padding: 12px 0;
        margin-bottom: 0;
        -webkit-tap-highlight-color: transparent;
        user-select: none;
    }

    .footer-col-title::after {
        content: '+';
        font-size: 18px;
        font-weight: 300;
        color: #86868B;
        transition: transform 0.3s ease;
        flex-shrink: 0;
        margin-left: 12px;
        line-height: 1;
    }

    .footer-col.open .footer-col-title::after {
        content: '\2212';
    }

    .footer-col-links {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .footer-col.open .footer-col-links {
        max-height: 200px;
    }

    .footer-col-links li {
        margin-bottom: 0;
    }

    .footer-col-links a {
        display: block;
        padding: 12px 0;
        min-height: 48px;
        box-sizing: border-box;
    }

    .footer-col-links li:last-child a {
        padding-bottom: 14px;
    }

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

    .footer-anpc-img {
        margin: 0 auto;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .footer-bottom-links {
        justify-content: center;
        flex-wrap: wrap;
        gap: 4px 16px;
    }

    .footer-bottom-links a,
    .footer-cookie-btn {
        white-space: normal;
        text-align: center;
    }

    .footer-bottom-sep {
        display: none;
    }

    /* Contact */
    .contact-hero {
        padding: 24px 20px;
        justify-content: flex-start;
    }

    .contact-hero .page-hero-title {
        font-size: 28px;
        margin-bottom: 8px;
    }

    .contact-hero .page-hero-subtitle {
        font-size: 14px;
    }

    .contact-hero .ct-form {
        margin-top: 16px;
    }

    .ct-form {
        padding: 28px 20px;
    }

    .ct-strip {
        flex-direction: column;
        gap: 24px;
    }

    .ct-strip-sep {
        width: 100%;
        height: 1px;
        margin: 0;
    }

    .ct-strip-item {
        justify-content: flex-start;
        width: 100%;
    }

    /* Legal */
    .legal-content h2 {
        margin-top: 32px;
    }

    /* Onboarding */
    .ob-step-icon {
        display: none;
    }

    .ob-topbar {
        padding: 12px 16px;
    }

    .ob-user-email {
        display: none;
    }

    .ob-progress-wrap {
        padding: 16px 16px 0;
    }

    .ob-content {
        padding: 24px 16px;
    }

    .ob-airport-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }
    .ob-airport-card {
        padding: 16px 8px 12px;
        border-radius: 12px;
    }
    .ob-airport-city {
        font-size: 14px;
    }
    .ob-airport-code {
        font-size: 11px;
        letter-spacing: 0.5px;
    }
    .ob-airport-distance {
        font-size: 10px;
    }
    .ob-airport-check {
        top: 6px;
        right: 6px;
        width: 18px;
        height: 18px;
    }
    .ob-airport-check svg {
        width: 12px;
        height: 12px;
    }

    .ob-code-box {
        width: 46px;
        height: 54px;
        font-size: 24px;
    }

    .ob-code-boxes {
        gap: 8px;
    }

    .ob-budget-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .ob-budget-card {
        padding: 16px 8px;
    }

    .ob-budget-amount {
        font-size: 18px;
    }

    .final-cta,
    .dark-section {
        padding: 80px 20px;
    }

    .page-hero-subtitle,
    .section-subtitle {
        font-size: 16px;
    }

    .ob-has-bg .ob-step-card {
        padding: 32px 24px;
        border-radius: 16px;
    }

    .ob-has-bg .ob-content {
        padding: 20px 16px;
    }
}

@media (max-width: 640px) {
    .page-hero {
        padding: 48px 20px 48px;
    }

    .hiw-step-title {
        font-size: 24px;
    }

    .final-cta,
    .dark-section {
        padding: 56px 20px 60px;
    }

    .final-stats,
    .dark-section-stats {
        flex-direction: column;
        gap: 24px;
    }

    .final-stat-divider,
    .dark-section-stat-sep {
        width: 80px;
        height: 1px;
    }

    .dark-section-stat-number {
        font-size: 28px;
    }

    .hiw-step-desc {
        font-size: 15px;
    }

    .final-body {
        font-size: 17px;
    }

    /* Legal */
    .legal-content h2 {
        font-size: 20px;
        margin-top: 28px;
        margin-bottom: 14px;
    }
    .legal-content h3 {
        margin-top: 20px;
        margin-bottom: 10px;
    }
}

@media (max-width: 480px) {
    .hero-route {
        font-size: 12px;
        letter-spacing: 1px;
        padding: 6px 14px;
    }

    .deal-city-code {
        font-size: 22px;
    }

    .deal-route {
        gap: 10px;
        padding: 12px;
        margin-left: -4px;
        margin-right: -4px;
    }

    .deal-price {
        font-size: 26px;
    }

    .hero-proof-number {
        font-size: 22px;
    }

    .how-header {
        margin-bottom: 40px;
    }

    .hero-home .auth-social-btn span,
    .mobile-menu-social-btns .auth-social-btn span {
        display: none;
    }

    .hero-home .auth-social-btn,
    .mobile-menu-social-btns .auth-social-btn {
        padding: 0;
        min-width: 40px;
        justify-content: center;
    }

    .hiw-step-title {
        font-size: 22px;
    }

    .hiw-step-number {
        font-size: 40px;
        letter-spacing: -2px;
    }

    .hiw-step-block {
        padding: 28px 0;
    }

    .hiw-step-stats {
        flex-direction: column;
        gap: 8px;
    }

    .hiw-mini-stat {
        flex: none;
        width: 100%;
        padding: 14px 16px;
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .hiw-mini-stat-number {
        font-size: 20px;
        flex-shrink: 0;
    }

    .hiw-mini-stat-label {
        text-align: left;
        margin-top: 0;
    }

    .auth-title {
        font-size: 20px;
        margin-bottom: 4px;
    }

    .auth-subtitle {
        font-size: 13px;
        margin-bottom: 20px;
    }

    .auth-section {
        min-height: calc(100dvh - 64px);
        padding: 24px 12px;
    }

    .auth-card {
        padding: 28px 20px;
    }

    .auth-switch {
        margin-top: 20px;
        padding-top: 18px;
        font-size: 14px;
    }

    .auth-switch--link a {
        font-size: 15px;
    }

    .auth-switch--small a {
        font-size: 13px;
        padding: 0;
    }

    .auth-switch button {
        font-size: 14px;
    }

    .error-404-code {
        font-size: 52px;
        letter-spacing: -2px;
    }

    .form-group {
        margin-bottom: 14px;
    }

    .form-label {
        margin-bottom: 4px;
        font-size: 13px;
    }

    .form-input {
        padding: 11px 14px;
    }

    .form-row {
        margin-bottom: 16px;
    }

    .auth-btn {
        padding: 13px;
        font-size: 15px;
    }

    .auth-subtitle {
        margin-bottom: 20px;
        font-size: 14px;
    }

    .auth-error {
        margin-bottom: 16px;
    }

    .ct-strip-label {
        font-size: 12px;
    }

    .form-textarea {
        min-height: 100px;
    }

    .auth-success {
        margin-bottom: 16px;
        padding: 12px 16px;
        font-size: 14px;
    }

    .auth-separator {
        margin-top: 12px;
        margin-bottom: 14px;
    }

    .auth-social-stack {
        gap: 8px;
    }

    .auth-social-row {
        gap: 6px;
    }

    .auth-social-row .auth-social-btn {
        flex: 1;
        min-width: 0;
        min-height: 44px;
        padding: 0 8px;
        font-size: 12px;
        gap: 6px;
    }

    .auth-social-row .auth-social-btn svg {
        width: 18px;
        height: 18px;
    }

    .auth-social-btn {
        min-height: 44px;
    }

    .final-cta,
    .dark-section {
        padding: 48px 16px;
    }

    .dark-section-body {
        font-size: 16px;
        margin-bottom: 40px;
    }

    .final-stats {
        gap: 24px;
    }

    .final-stat-number {
        font-size: 28px;
    }

    .final-stat-label {
        font-size: 12px;
    }

    .final-body {
        font-size: 16px;
        margin-bottom: 40px;
    }

    .final-eyebrow {
        letter-spacing: 1px;
        font-size: 12px;
    }

    .final-footnote {
        font-size: 13px;
    }

    .hiw-deal-type {
        padding: 16px;
    }

    .hiw-channel {
        padding: 16px;
        gap: 12px;
    }

    .final-cta-btn {
        width: 100%;
        max-width: 320px;
        padding: 16px 24px;
    }

    .page-hero {
        padding: 40px 20px 40px;
    }

    .page-hero-title {
        font-size: clamp(28px, 8vw, 36px);
        letter-spacing: -1.2px;
    }

    .section {
        padding: 56px 20px;
    }

    main > .section:first-child {
        padding-top: 40px;
    }

    .page-hero-subtitle,
    .section-subtitle {
        font-size: 15px;
    }

    /* Legal */
    .legal-content {
        font-size: 14.5px;
    }
    .legal-content h2 {
        font-size: 19px;
        margin-top: 24px;
        margin-bottom: 12px;
    }
    .legal-content h3 {
        font-size: 16px;
        margin-top: 16px;
        margin-bottom: 8px;
    }
    .legal-content ul,
    .legal-content ol {
        padding-left: 18px;
    }
    .legal-content p {
        margin-bottom: 14px;
    }

    /* Pricing — tighter cards on small phones */
    .pricing-card {
        padding: 24px 16px;
    }

    .pricing-price {
        font-size: 40px;
        letter-spacing: -1.5px;
    }

    .pricing-stat-num {
        font-size: 20px;
    }

    .pricing-btn {
        font-size: 15px;
        padding: 14px;
    }

    .pricing-toggle {
        gap: 8px;
    }

    .pricing-toggle-save {
        font-size: 9px;
        padding: 2px 6px;
    }

    .pricing-toggle-pill {
        padding: 10px 24px;
        font-size: 14px;
        gap: 6px;
    }

    .faq-question {
        font-size: 16px;
        padding: 20px 0;
    }

    .faq-answer p {
        font-size: 14px;
        padding: 0 0 20px;
    }

}

@media (max-width: 380px) {
    .auth-social-row .auth-social-btn {
        padding: 0 6px;
        font-size: 11px;
        gap: 4px;
    }

    .auth-btn {
        font-size: 14px;
    }

    .error-404-code {
        font-size: 44px;
    }

    .pricing-toggle-pill {
        padding: 8px 16px;
        font-size: 13px;
    }

    .ob-has-bg .ob-step-card {
        padding: 28px 20px;
        border-radius: 14px;
    }

    .ob-has-bg .ob-content {
        padding: 16px 12px;
    }
}

/* Landscape phones — reduce wasted vertical space */
@media (max-height: 500px) and (orientation: landscape) {
    .auth-section {
        min-height: calc(100dvh - 64px);
        padding: 16px;
    }
}

/* ============================================
   HEADER USER BADGE
   ============================================ */
.nav-user-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: var(--bg-section);
    border-radius: var(--radius-full);
    text-decoration: none;
    transition: background 0.2s ease;
}

.nav-user-badge:hover {
    background: var(--bg-warm);
}

.nav-user-email {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-primary);
    max-width: 140px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.nav-plan-chip {
    padding: 2px 10px;
    border-radius: var(--radius-full);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-plan-free {
    background: rgba(156, 163, 180, 0.15);
    color: var(--text-tertiary);
}

.nav-plan-basic {
    background: var(--accent-start);
    color: var(--white);
}

.nav-plan-pro {
    background: var(--accent-start);
    color: var(--white);
}

.nav-plan-ultra {
    background: #1A1A1A;
    color: var(--white);
}

/* ============================================
   ONBOARDING
   ============================================ */
.ob-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(255, 105, 15, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(76, 154, 255, 0.05) 0%, transparent 50%),
        linear-gradient(180deg, var(--bg-warm) 0%, var(--white) 100%);
}

/* Step background image mode */
.ob-has-bg {
    background: #0F172A;
    position: relative;
}
.ob-has-bg::before {
    content: '';
    position: fixed;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(15,23,42,0.3) 0%, rgba(15,23,42,0.35) 100%),
        var(--step-bg) center/cover no-repeat;
    background-color: #0F172A;
    z-index: 0;
}
.ob-has-bg > * {
    position: relative;
    z-index: 1;
}

.ob-has-bg .ob-topbar {
    background: rgba(15, 23, 42, 0.45);
    border-bottom-color: rgba(255, 255, 255, 0.08);
}

.ob-has-bg .ob-logo {
    color: var(--white);
}

.ob-has-bg .ob-user-email {
    color: rgba(255, 255, 255, 0.6);
}

.ob-has-bg .ob-logout-btn {
    color: rgba(255, 255, 255, 0.7);
    border-color: rgba(255, 255, 255, 0.15);
}

.ob-has-bg .ob-logout-btn:hover {
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.35);
}

.ob-has-bg .ob-progress-bar {
    background: rgba(255, 255, 255, 0.12);
}

.ob-has-bg .ob-progress-label {
    color: rgba(255, 255, 255, 0.9);
    background: rgba(0, 0, 0, 0.35);
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.ob-has-bg .ob-step-card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px 36px;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(255, 255, 255, 0.08);
    border-top: 3px solid var(--accent-start);
}

.ob-has-bg .ob-mode-banner {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.15);
}

.ob-has-bg .ob-mode-banner-icon {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
}

.ob-has-bg .ob-mode-banner-label {
    color: rgba(255, 255, 255, 0.5);
}

.ob-has-bg .ob-mode-banner-value {
    color: var(--white);
}

.ob-topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 32px;
    border-bottom: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.ob-logo {
    font-size: 20px;
    font-weight: 800;
    letter-spacing: -0.3px;
    color: var(--text-primary);
    text-decoration: none;
}

.ob-logo span {
    background: linear-gradient(135deg, var(--accent-start), var(--accent-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ob-topbar-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.ob-user-email {
    font-size: 13px;
    color: var(--text-secondary);
    font-weight: 500;
}

.ob-logout-btn {
    background: none;
    border: 1px solid var(--border);
    border-radius: var(--radius-full);
    padding: 6px 16px;
    font-family: inherit;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.2s ease;
}

.ob-logout-btn:hover {
    border-color: var(--text-secondary);
    color: var(--text-primary);
}

.ob-progress-wrap {
    padding: 24px 32px 0;
    max-width: 500px;
    margin: 0 auto;
    width: 100%;
}

.ob-progress-bar {
    height: 4px;
    background: var(--border);
    border-radius: 2px;
    overflow: hidden;
}

.ob-progress-fill {
    height: 100%;
    background: linear-gradient(135deg, var(--accent-start), var(--accent-end));
    border-radius: 2px;
    transition: width 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.ob-progress-label {
    font-size: 12px;
    color: var(--text-tertiary);
    font-weight: 600;
    text-align: center;
    margin-top: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.ob-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 24px;
}

.ob-step-card {
    width: 100%;
    max-width: 480px;
    text-align: center;
}

.ob-step-wide {
    max-width: 640px;
}

.ob-step-icon {
    width: 72px;
    height: 72px;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--accent-start), var(--accent-end));
    box-shadow: 0 8px 28px rgba(255, 105, 15, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 28px;
}

.ob-step-icon-blue {
    background: linear-gradient(135deg, var(--blue), var(--purple));
    box-shadow: 0 8px 28px rgba(76, 154, 255, 0.3);
}

.ob-step-icon-green {
    background: linear-gradient(135deg, var(--green), var(--blue));
    box-shadow: 0 8px 28px rgba(54, 211, 153, 0.3);
}

.ob-step-icon-accent {
    background: linear-gradient(135deg, var(--accent-start), var(--accent-end));
    box-shadow: 0 8px 28px rgba(255, 105, 15, 0.3);
}

.ob-phone-icon-status {
    display: none;
    align-items: center;
    justify-content: center;
    width: 36px;
    flex-shrink: 0;
}

.ob-phone-icon-status svg {
    display: block;
}

.ob-phone-icon-status.is-visible {
    display: flex;
}

.ob-phone-status-text {
    margin-top: 8px;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    text-align: left;
    min-height: 35px;
    opacity: 0;
    transition: opacity 0.15s ease;
}

.ob-phone-status-text.is-visible {
    opacity: 1;
}

.ob-step-icon-purple {
    background: linear-gradient(135deg, var(--purple), #A855F7);
    box-shadow: 0 8px 28px rgba(108, 92, 231, 0.3);
}

.ob-step-icon-gold {
    background: linear-gradient(135deg, var(--gold), var(--accent-end));
    box-shadow: 0 8px 28px rgba(255, 184, 0, 0.3);
}

.ob-step-icon-orange {
    background: linear-gradient(135deg, var(--accent-start), var(--accent-end));
    box-shadow: 0 8px 28px rgba(255, 105, 15, 0.3);
}

.ob-step-title {
    font-size: clamp(26px, 4vw, 34px);
    font-weight: 800;
    letter-spacing: -1px;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.ob-step-desc {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 32px;
}

.ob-step-desc strong {
    color: var(--text-primary);
}

.ob-step-desc + .ob-step-desc-sub {
    margin-top: -26px;
    font-size: 14px;
    color: var(--text-tertiary);
}

.ob-error {
    background: rgba(255, 71, 87, 0.08);
    border: 1px solid rgba(255, 71, 87, 0.2);
    border-radius: 12px;
    padding: 12px 16px;
    margin-bottom: 24px;
    font-size: 14px;
    color: var(--accent-start);
    text-align: left;
}

.ob-success {
    background: rgba(54, 211, 153, 0.08);
    border: 1px solid rgba(54, 211, 153, 0.2);
    border-radius: 12px;
    padding: 12px 16px;
    margin-bottom: 24px;
    font-size: 14px;
    color: #36D399;
    text-align: left;
}

.ob-form {
    text-align: left;
}

/* Verify email — Apple-style 5-digit code boxes */
.ob-code-boxes {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 24px;
}

.ob-code-box {
    width: 52px;
    height: 60px;
    font-size: 28px;
    font-weight: 700;
    text-align: center;
    border: 2px solid var(--border);
    border-radius: 16px;
    font-family: 'Inter', monospace;
    color: var(--text-primary);
    background: var(--white);
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    -webkit-appearance: none;
    appearance: none;
}

.ob-code-box:focus {
    border-color: var(--accent-start);
    box-shadow: 0 0 0 4px rgba(255, 105, 15, 0.1);
}

@keyframes ob-shake {
    0%, 100% { transform: translateX(0); }
    20% { transform: translateX(-6px); }
    40% { transform: translateX(6px); }
    60% { transform: translateX(-4px); }
    80% { transform: translateX(4px); }
}

.ob-shake {
    animation: ob-shake 0.4s ease;
}

.ob-code-error, .ob-code-success {
    text-align: center;
    min-height: 30px;
    margin-bottom: 16px;
    font-size: 13px;
    font-weight: 500;
}

.ob-code-error { color: #FF3B30; transition: opacity 0.15s ease; }
.ob-code-success { color: var(--accent-start); }

.ob-code-error span {
    display: inline-block;
    background: rgba(255, 59, 48, 0.08);
    padding: 6px 14px;
    border-radius: 8px;
}

.ob-code-success span {
    display: inline-block;
    background: rgba(255, 105, 15, 0.08);
    padding: 6px 14px;
    border-radius: 8px;
}

/* Buttons */
.ob-btn {
    display: block;
    width: 100%;
    padding: 16px;
    margin-top: 32px;
    border: none;
    border-radius: var(--radius-full);
    font-family: inherit;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

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

.ob-btn-primary {
    background: linear-gradient(135deg, var(--accent-start), var(--accent-end));
    color: var(--white);
    box-shadow: 0 4px 16px rgba(255, 105, 15, 0.3);
}

.ob-btn-primary:hover:not(:disabled) {
    transform: scale(1.02);
    box-shadow: 0 6px 24px rgba(255, 105, 15, 0.4);
}

.ob-hint {
    margin-top: 24px;
    font-size: 14px;
    color: var(--text-tertiary);
    text-align: center;
}

.ob-hint a {
    color: var(--accent-start);
    text-decoration: none;
    font-weight: 600;
}

.ob-hint a:hover {
    text-decoration: underline;
}

.ob-resend-btn {
    background: none;
    border: none;
    color: var(--accent-start);
    font-family: inherit;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: underline;
    text-underline-offset: 2px;
}

/* Country detection card */
.ob-detected-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: var(--white);
    border: 2px solid var(--green);
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(54, 211, 153, 0.1);
    margin-bottom: 24px;
}

.ob-detected-flag {
    flex-shrink: 0;
}

.ob-detected-info {
    flex: 1;
}

.ob-detected-country {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
}

.ob-detected-label {
    font-size: 13px;
    color: var(--text-tertiary);
    font-weight: 500;
}

.ob-detected-check {
    flex-shrink: 0;
}

/* Form elements */
.ob-form-group {
    margin-bottom: 20px;
}

.ob-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.ob-select {
    width: 100%;
    padding: 14px 16px;
    border: 1.5px solid var(--border);
    border-radius: 12px;
    font-family: inherit;
    font-size: 16px;
    color: var(--text-primary);
    background: var(--white);
    outline: none;
    cursor: pointer;
    transition: border-color 0.2s ease;
}

.ob-select:focus {
    border-color: var(--accent-start);
}

/* Phone input */
.ob-phone-wrap {
    display: flex;
    gap: 0;
    border: 1.5px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.ob-phone-wrap:focus-within {
    border-color: var(--accent-start);
    box-shadow: 0 0 0 4px rgba(255, 105, 15, 0.1);
}

.ob-phone-country-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 14px 12px;
    background: var(--bg);
    border: none;
    border-right: 1.5px solid var(--border);
    font-family: inherit;
    font-size: 15px;
    color: var(--text-primary);
    cursor: pointer;
    white-space: nowrap;
    flex-shrink: 0;
}

.ob-phone-country-btn:hover {
    background: var(--border);
}

.ob-phone-input {
    flex: 1;
    padding: 14px 16px;
    border: none;
    font-family: inherit;
    font-size: 16px;
    color: var(--text-primary);
    background: var(--white);
    outline: none;
    min-width: 0;
}

.ob-phone-input::placeholder {
    color: var(--text-tertiary);
}

.ob-phone-dropdown {
    position: relative;
    margin-top: -4px;
    margin-bottom: 8px;
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    overflow: hidden;
    z-index: 50;
}

.ob-phone-dropdown-search {
    padding: 12px;
    border-bottom: 1px solid var(--border);
}

.ob-phone-dropdown-search input {
    width: 100%;
    padding: 10px 12px;
    border: 1.5px solid var(--border);
    border-radius: 8px;
    font-family: inherit;
    font-size: 14px;
    color: var(--text-primary);
    background: var(--bg);
    outline: none;
}

.ob-phone-dropdown-search input:focus {
    border-color: var(--accent-start);
}

.ob-phone-dropdown-list {
    max-height: 240px;
    overflow-y: auto;
}

.ob-phone-dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 10px 16px;
    border: none;
    background: none;
    font-family: inherit;
    font-size: 14px;
    color: var(--text-primary);
    cursor: pointer;
    text-align: left;
}

.ob-phone-dropdown-item:hover {
    background: var(--bg);
}

.ob-phone-dropdown-flag {
    font-size: 18px;
    flex-shrink: 0;
}

.ob-phone-dropdown-name {
    flex: 1;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.ob-phone-dropdown-dial {
    color: var(--text-tertiary);
    font-size: 13px;
    flex-shrink: 0;
}

/* Airport grid */
.ob-airport-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 28px;
}

.ob-airport-card {
    position: relative;
    padding: 20px 16px 16px;
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: inherit;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2px;
    min-width: 0;
    overflow: hidden;
}

.ob-airport-card:hover {
    border-color: rgba(255, 105, 15, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06), 0 2px 8px rgba(0, 0, 0, 0.04);
}

.ob-airport-selected {
    border-color: var(--accent-start) !important;
    background: var(--accent-start) !important;
    box-shadow: 0 2px 8px rgba(255, 105, 15, 0.25);
}
.ob-airport-selected .ob-airport-code,
.ob-airport-selected .ob-airport-distance {
    color: rgba(255, 255, 255, 0.75) !important;
}

.ob-airport-city {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.2;
    margin-bottom: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

.ob-airport-selected .ob-airport-city {
    color: #fff;
}

.ob-airport-code {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--text-tertiary);
    line-height: 1;
}

.ob-airport-distance {
    font-size: 11px;
    color: var(--text-tertiary);
    font-weight: 400;
    margin-top: 1px;
}

.ob-airport-check {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 1.5px solid var(--border);
    opacity: 0;
    transition: all 0.2s ease;
}

.ob-airport-card:hover .ob-airport-check {
    opacity: 0.4;
}

.ob-airport-selected .ob-airport-check {
    opacity: 1;
    background: #fff;
    border-color: #fff;
    color: var(--accent-start);
}

.ob-airport-selected .ob-airport-check svg {
    stroke: var(--accent-start);
}

.ob-expand-wrap {
    display: flex;
    justify-content: center;
    margin-bottom: 28px;
}

.ob-expand-toggle {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 20px;
    background: none;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 600;
    color: var(--accent-start);
    cursor: pointer;
    transition: all 0.15s ease;
    font-family: inherit;
}
.ob-expand-toggle svg {
    transition: transform 0.2s ease;
}
.ob-expand-toggle:hover {
    border-color: var(--accent-start);
    background: rgba(255, 105, 15, 0.04);
}
.ob-expand-toggle:hover svg {
    transform: translateY(2px);
}

/* ============================================
   UPGRADE PLANS MODAL (.upm-*)
   ============================================ */
.upm-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
    padding: 20px;
}
.upm-visible {
    opacity: 1;
    visibility: visible;
}
.upm-modal {
    position: relative;
    background: var(--white);
    border-radius: 24px;
    padding: 40px 36px 32px;
    max-width: 940px;
    width: 100%;
    text-align: center;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.18);
    transform: scale(0.95);
    transition: transform 0.25s ease;
    max-height: 90vh;
    overflow-y: auto;
}
.upm-visible .upm-modal {
    transform: scale(1);
}
.upm-x {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    border: none;
    background: var(--bg);
    font-size: 24px;
    color: var(--text-secondary);
    cursor: pointer;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s ease, color 0.15s ease;
    line-height: 1;
    padding: 0;
    z-index: 1;
}
.upm-x:hover {
    background: var(--border);
    color: var(--text-primary);
}
.upm-icon {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--accent-start), var(--accent-end));
    box-shadow: 0 8px 28px rgba(255, 105, 15, 0.3);
    display: none;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}
.upm-title {
    font-size: 22px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}
.upm-desc {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 24px;
}

/* Toggle pills */
.upm-toggle-wrap {
    display: flex;
    justify-content: center;
    margin-bottom: 24px;
}
.upm-toggle-pills {
    display: inline-flex;
    background: var(--bg);
    border-radius: var(--radius-full, 50px);
    padding: 3px;
    gap: 2px;
}
.upm-toggle-pill {
    padding: 8px 22px;
    border: none;
    border-radius: var(--radius-full, 50px);
    background: transparent;
    font-family: inherit;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.2s ease;
}
.upm-toggle-pill-active {
    background: var(--white);
    color: var(--text-primary);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

/* Plans grid */
.upm-plans {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 24px;
    text-align: left;
}
.upm-plan-price,
.upm-plan-sub {
    transition: opacity 0.15s ease;
}
.upm-plan {
    padding: 20px 18px;
    border-radius: 16px;
    border: 1.5px solid var(--border);
    background: var(--white);
    display: flex;
    flex-direction: column;
}
.upm-plan-basic {
    border-color: rgba(79, 70, 229, 0.2);
}
.upm-plan-pro {
    border-color: var(--accent-start);
    position: relative;
    transform: scale(1.02);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}
.upm-plan-ultra {
    border-color: rgba(26, 26, 26, 0.15);
    position: relative;
}
.upm-plan-name {
    font-size: 16px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 4px;
}
.upm-plan-badge {
    position: absolute;
    top: -9px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 20px;
    padding: 1px 10px;
    white-space: nowrap;
    color: var(--white);
    background: var(--accent-start);
    border: 1.5px solid var(--accent-start);
}
.upm-plan-badge-ultra {
    color: #ffffff !important;
    background: #1A1A1A !important;
    border: none !important;
}
.upm-plan-price {
    font-size: 22px;
    font-weight: 800;
    color: var(--text-primary);
    margin-top: 6px;
    letter-spacing: -0.5px;
}
.upm-plan-price span {
    font-size: 12px;
    font-weight: 500;
    color: var(--text-tertiary);
    letter-spacing: 0;
}
.upm-price-original {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-tertiary);
    text-decoration: line-through;
    margin-right: 4px;
}
.upm-promo-badge {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    color: #fff;
    background: linear-gradient(135deg, var(--accent-start), var(--accent-end));
    padding: 2px 8px;
    border-radius: 10px;
    margin-bottom: 6px;
}
.upm-promo-spacer {
    visibility: hidden;
}

/* Stats row */
.upm-plan-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 4px;
    margin: 14px 0 10px;
    padding: 10px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.upm-stat {
    text-align: center;
}
.upm-stat-num {
    font-size: 16px;
    font-weight: 800;
    color: var(--text-primary);
}
.upm-stat-label {
    font-size: 10px;
    font-weight: 500;
    color: var(--text-tertiary);
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

/* Features list */
.upm-features {
    list-style: none;
    padding: 0;
    margin: 0 0 14px;
    flex: 1;
}
.upm-features li {
    font-size: 12.5px;
    font-weight: 500;
    color: var(--text-secondary);
    padding: 3.5px 0;
    display: flex;
    align-items: center;
    gap: 6px;
    line-height: 1.35;
}
.upm-features li strong {
    font-weight: 600;
    color: var(--text-primary);
}
.upm-feat-muted {
    opacity: 0.45;
}
.upm-feat-icon {
    flex-shrink: 0;
    width: 14px;
    height: 14px;
    display: flex;
    align-items: center;
}
.upm-check {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

/* CTA buttons */
.upm-plan-btn {
    display: block;
    width: 100%;
    padding: 11px 16px;
    border: none;
    border-radius: var(--radius-full);
    font-family: inherit;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: opacity 0.15s ease, transform 0.15s ease;
    text-align: center;
    text-decoration: none;
    color: var(--white);
    box-sizing: border-box;
    -webkit-appearance: none;
    appearance: none;
}
.upm-plan-btn:hover {
    opacity: 0.92;
    transform: translateY(-1px);
}
.upm-plan-btn:active {
    transform: translateY(0);
    opacity: 0.85;
}
.upm-plan-btn-basic {
    background: #4F46E5;
    box-shadow: 0 2px 8px rgba(79, 70, 229, 0.2);
}
.upm-plan-btn-pro {
    background: linear-gradient(135deg, var(--accent-start), var(--accent-end));
    box-shadow: 0 2px 8px rgba(255, 105, 15, 0.2);
}
.upm-plan-btn-ultra {
    background: #1A1A1A;
    box-shadow: 0 2px 8px rgba(26, 26, 26, 0.2);
}

/* Sub-text under button */
.upm-plan-sub {
    font-size: 11px;
    color: var(--text-tertiary);
    margin-top: 8px;
    line-height: 1.4;
    min-height: 38px;
    text-align: center;
}
.upm-save-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent-start), var(--accent-end));
    color: #fff;
    font-size: 9px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    padding: 1px 6px;
    border-radius: 10px;
    margin-top: 2px;
}

/* Dismiss button */
.upm-dismiss {
    display: inline-block;
    padding: 12px 32px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-full);
    background: transparent;
    color: var(--text-secondary);
    font-family: inherit;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.15s ease;
    -webkit-appearance: none;
    appearance: none;
    margin-top: 8px;
}
.upm-dismiss:hover {
    border-color: var(--text-tertiary);
    color: var(--text-primary);
    background: var(--bg);
}

/* Mobile — full-screen */
@media (max-width: 768px) {
    .upm-overlay {
        padding: 0;
        align-items: stretch;
    }
    .upm-modal {
        max-width: 100%;
        width: 100%;
        border-radius: 0;
        padding: 20px 20px 24px;
        min-height: 100%;
        max-height: 100%;
        overflow-y: auto;
        display: flex;
        flex-direction: column;
        box-shadow: none;
        transform: none;
    }
    .upm-visible .upm-modal {
        transform: none;
    }
    .upm-x {
        position: sticky;
        top: 0;
        align-self: flex-end;
        width: 40px;
        height: 40px;
        font-size: 26px;
        margin-bottom: 8px;
        flex-shrink: 0;
    }
    .upm-icon {
        display: flex;
        width: 52px;
        height: 52px;
        border-radius: 14px;
        margin-bottom: 16px;
    }
    .upm-icon svg {
        width: 26px;
        height: 26px;
    }
    .upm-title {
        font-size: 19px;
    }
    .upm-desc {
        font-size: 14px;
        margin-bottom: 20px;
    }
    .upm-plans {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    .upm-plan {
        padding: 16px;
    }
    .upm-plan-pro {
        transform: none;
    }
    .upm-plan-badge {
        position: static;
        transform: none;
        display: inline-block;
        margin-bottom: 4px;
    }
    .upm-toggle-pill {
        padding: 7px 16px;
        font-size: 12px;
    }
    .upm-plan-btn {
        padding: 10px 14px;
        font-size: 13px;
    }
    .upm-dismiss {
        margin-top: auto;
        flex-shrink: 0;
        width: 100%;
        text-align: center;
    }
}

/* Pricing cards inside upgrade modal — size adjustments */
.upm-modal .pricing-toggle { margin-bottom: 24px; }
.upm-modal .pricing-grid { max-width: 100%; padding-top: 16px; }
.upm-modal .pricing-card { padding: 32px 24px; }
.upm-modal .pricing-card:hover { transform: none; }
.upm-modal .pricing-price { font-size: 36px; min-height: 44px; letter-spacing: -1.5px; }
.upm-modal .pricing-price span { font-size: 16px; }
.upm-modal .pricing-price-original { font-size: 36px; letter-spacing: -1.5px; }
.upm-modal .pricing-period { margin-bottom: 20px; min-height: 36px; }
.upm-modal .pricing-features { margin-bottom: 24px; }
.upm-modal .pricing-features li { font-size: 13px; padding: 6px 0; gap: 8px; }
.upm-modal .pricing-btn { font-size: 14px; padding: 13px; }
.upm-modal .pricing-btn-sub { min-height: 44px; }

/* Keep 3-col on mid-size screens inside modal */
@media (max-width: 1024px) {
    .upm-modal .pricing-grid-3 { grid-template-columns: repeat(3, 1fr); max-width: 100%; }
}

/* Mobile: always show features, hide toggle/stats (avoid expand/collapse in modal) */
@media (max-width: 768px) {
    .upm-modal .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; gap: 16px; }
    .upm-modal .pricing-features li { display: flex !important; }
    .upm-modal .pricing-features-toggle { display: none !important; }
    .upm-modal .pricing-stats { display: none; }
    .upm-modal .pricing-popular { position: static; transform: none; display: inline-block; margin-bottom: 8px; }
}

/* Dismiss button — orange accent */
.upm-dismiss { border-color: var(--accent-start); color: var(--accent-start); }
.upm-dismiss:hover { background: var(--accent-start); color: #fff; border-color: var(--accent-start); }

/* Destination chips */
.ob-dest-anywhere {
    margin-bottom: 24px;
}

.ob-dest-option {
    position: relative;
    display: block;
    padding: 22px 26px;
    background: linear-gradient(135deg, rgba(255,105,15,0.04) 0%, rgba(76,154,255,0.04) 100%);
    border: 2px solid rgba(255,105,15,0.18);
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.25s ease;
}

.ob-dest-option:hover {
    border-color: var(--accent-start);
    background: linear-gradient(135deg, rgba(255,105,15,0.08) 0%, rgba(76,154,255,0.06) 100%);
    box-shadow: 0 4px 16px rgba(255,105,15,0.12);
    transform: translateY(-1px);
}

.ob-dest-selected {
    border-color: var(--accent-start) !important;
    background: var(--accent-start) !important;
    box-shadow: 0 4px 20px rgba(255, 105, 15, 0.3) !important;
    transform: translateY(-1px);
}
.ob-dest-selected .ob-dest-option-inner strong,
.ob-dest-selected .ob-dest-option-inner span {
    color: #fff !important;
}
.ob-dest-selected .ob-dest-option-inner svg {
    color: #fff !important;
    stroke: #fff !important;
}
.ob-dest-selected .ob-anywhere-icon {
    background: rgba(255,255,255,0.2) !important;
}

.ob-dest-option input { display: none; }

.ob-dest-option-inner {
    display: flex;
    align-items: center;
    gap: 18px;
}

.ob-anywhere-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(255,105,15,0.1) 0%, rgba(76,154,255,0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.25s;
}
.ob-anywhere-icon svg {
    color: var(--accent-start);
    stroke: var(--accent-start);
}

.ob-dest-option-inner svg {
    flex-shrink: 0;
    color: var(--accent-start);
}

.ob-dest-option-inner strong {
    display: block;
    font-size: 17px;
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: -0.2px;
}

.ob-dest-option-inner span {
    font-size: 13px;
    color: var(--text-secondary);
    margin-top: 2px;
}

.ob-dest-section {
    transition: opacity 0.3s ease;
}

.ob-dest-section-label {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-tertiary);
    margin-bottom: 12px;
}

.ob-dest-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
}

.ob-dest-chip {
    padding: 10px 18px;
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 600;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.15s ease;
    -webkit-user-select: none;
    user-select: none;
}

.ob-dest-chip input { display: none; }

.ob-dest-chip:hover {
    border-color: var(--text-tertiary);
    color: var(--text-primary);
}

.ob-dest-chip-selected {
    border-color: var(--accent-start) !important;
    background: var(--accent-start);
    color: var(--white) !important;
}

/* Destination route cards */
.ob-dest-route-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 16px;
}

.ob-dest-route-card {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
    -webkit-user-select: none;
    user-select: none;
}

.ob-dest-route-card input { display: none; }

.ob-dest-route-card:hover {
    border-color: var(--text-tertiary);
    transform: translateY(-1px);
    box-shadow: var(--card-shadow);
}

.ob-dest-route-selected {
    border-color: var(--accent-start) !important;
    background: var(--accent-start) !important;
    box-shadow: 0 2px 8px rgba(255, 105, 15, 0.25);
}
.ob-dest-route-selected .ob-dest-route-city,
.ob-dest-route-selected .ob-dest-route-code,
.ob-dest-route-selected .ob-dest-route-sub,
.ob-dest-route-selected .ob-dest-route-price,
.ob-dest-route-selected .ob-dest-route-from,
.ob-dest-route-selected .ob-dest-route-direct,
.ob-dest-route-selected .ob-dest-route-price-wrap .ob-dest-route-from,
.ob-dest-route-selected .ob-dest-route-price-wrap .ob-dest-route-price {
    color: #fff !important;
}

/* Destination checkmark */
.ob-dest-check {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 1.5px solid var(--border);
    opacity: 0;
    transition: all 0.2s ease;
}
.ob-dest-route-card:hover .ob-dest-check,
.ob-dest-option:hover .ob-dest-check {
    opacity: 0.4;
}
.ob-dest-route-selected .ob-dest-check,
.ob-dest-selected .ob-dest-check {
    opacity: 1;
    background: #fff;
    border-color: #fff;
}
.ob-dest-route-selected .ob-dest-check svg,
.ob-dest-selected .ob-dest-check svg {
    stroke: var(--accent-start);
}

.ob-dest-route-flag {
    flex-shrink: 0;
    width: 28px;
    display: flex;
    align-items: center;
}

.ob-dest-route-flag img {
    border-radius: 3px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.12);
}

.ob-dest-route-info {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.ob-dest-route-city {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.3;
}

.ob-dest-route-code {
    font-size: 11px;
    color: var(--text-tertiary);
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-left: 4px;
}

.ob-dest-route-sub {
    font-size: 12px;
    color: var(--text-tertiary);
    font-weight: 500;
}

.ob-dest-route-meta {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 1px;
}

.ob-dest-route-direct {
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #5B8ABF;
    background: rgba(76,154,255,0.08);
    padding: 2px 8px;
    border-radius: 20px;
}

.ob-dest-route-price {
    font-size: 13px;
    font-weight: 700;
    color: var(--accent-start);
}

.ob-dest-route-from {
    font-size: 11px;
    font-weight: 500;
    color: var(--text-tertiary);
    text-transform: lowercase;
}

.ob-dest-route-price-wrap {
    flex-shrink: 0;
    text-align: right;
    margin-right: 28px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 1px;
}

.ob-dest-route-country-name {
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

/* Destination tabs */
.ob-dest-tabs {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-bottom: 20px;
}

.ob-dest-tab {
    padding: 8px 24px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-full);
    background: var(--white);
    font-size: 14px;
    font-weight: 600;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.15s ease;
    font-family: inherit;
}

.ob-dest-tab:hover {
    border-color: var(--text-tertiary);
    color: var(--text-primary);
}

.ob-dest-tab-active {
    background: var(--accent-start);
    border-color: var(--accent-start);
    color: var(--white);
}

.ob-dest-tab-active:hover {
    border-color: var(--accent-start);
    color: var(--white);
}

.ob-dest-grid-hidden {
    display: none;
}

/* Destination counter */
.ob-dest-counter {
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-tertiary);
    margin-bottom: 20px;
}

@media (max-width: 600px) {
    .ob-dest-route-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .ob-dest-tabs {
        gap: 6px;
    }
    .ob-dest-tab {
        padding: 7px 18px;
        font-size: 13px;
    }
    .ob-dest-counter {
        font-size: 12px;
    }
}

/* Budget grid */
.ob-budget-label {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-tertiary);
    margin-bottom: 12px;
    text-align: center;
}

.ob-budget-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 32px;
}

.ob-budget-card {
    position: relative;
    padding: 20px 10px;
    background: var(--white);
    border: 2px solid var(--border);
    border-radius: 16px;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: inherit;
}

.ob-budget-card:hover {
    border-color: var(--text-tertiary);
    transform: translateY(-2px);
}

.ob-budget-selected {
    border-color: var(--accent-start) !important;
    background: var(--accent-start) !important;
    box-shadow: 0 2px 8px rgba(255, 105, 15, 0.25);
}
.ob-budget-selected .ob-budget-amount,
.ob-budget-selected .ob-budget-desc {
    color: #fff !important;
}

/* Budget card checkmark */
.ob-budget-check {
    position: absolute;
    top: 6px;
    right: 6px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 1.5px solid var(--border);
    opacity: 0;
    transition: all 0.2s ease;
}
.ob-budget-card:hover .ob-budget-check {
    opacity: 0.4;
}
.ob-budget-selected .ob-budget-check {
    opacity: 1;
    background: #fff;
    border-color: #fff;
}
.ob-budget-selected .ob-budget-check svg {
    stroke: var(--accent-start);
}

.ob-budget-amount {
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: var(--text-primary);
}

.ob-budget-desc {
    font-size: 11px;
    color: var(--text-tertiary);
    font-weight: 500;
    margin-top: 2px;
}

/* Budget round-trip hint */
.ob-budget-hint {
    display: none;
    font-size: 13px;
    color: var(--text-secondary);
    text-align: center;
    padding: 10px 16px;
    margin: -16px 0 24px;
    line-height: 1.5;
    background: rgba(76, 154, 255, 0.06);
    border-radius: 10px;
    border: 1px solid rgba(76, 154, 255, 0.12);
    animation: obHintFadeIn 0.25s ease;
}
.ob-budget-hint svg {
    display: inline-block;
    vertical-align: -2px;
    margin-right: 4px;
    color: var(--accent-start);
}
.ob-budget-hint strong {
    font-weight: 700;
    color: var(--text-primary);
}
@keyframes obHintFadeIn {
    from { opacity: 0; transform: translateY(-4px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Trip Style cards */
.ob-trip-style-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 32px;
}

.ob-trip-style-card {
    position: relative;
    padding: 32px 20px 28px;
    background: var(--white);
    border: 2px solid var(--border);
    border-radius: 18px;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: inherit;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}

.ob-trip-style-card:hover {
    border-color: rgba(255, 105, 15, 0.35);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 105, 15, 0.1);
}

.ob-trip-style-selected {
    border-color: var(--accent-start) !important;
    background: linear-gradient(135deg, rgba(255,105,15,0.04) 0%, rgba(255,75,0,0.02) 100%) !important;
    box-shadow: 0 4px 16px rgba(255, 105, 15, 0.18);
}

.ob-trip-style-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    background: rgba(255, 105, 15, 0.07);
    color: var(--accent-start);
    transition: all 0.2s ease;
}

.ob-trip-style-selected .ob-trip-style-icon {
    background: rgba(255, 105, 15, 0.13);
}

.ob-trip-style-label {
    font-size: 17px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 6px;
    letter-spacing: -0.2px;
}

.ob-trip-style-desc {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.5;
    font-weight: 400;
}

.ob-trip-style-check {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 2px solid var(--border);
    opacity: 0;
    transition: all 0.2s ease;
}

.ob-trip-style-card:hover .ob-trip-style-check {
    opacity: 0.5;
    border-color: rgba(255, 105, 15, 0.3);
}

.ob-trip-style-selected .ob-trip-style-check {
    opacity: 1;
    background: var(--accent-start);
    border-color: var(--accent-start);
}

.ob-trip-style-selected .ob-trip-style-check svg {
    stroke: #fff;
}

/* Mode banner */
.ob-mode-banner {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 10px 28px;
    border-radius: 14px;
    margin-bottom: 16px;
}

.ob-mode-banner-city_break {
    background: linear-gradient(135deg, rgba(255,105,15,0.08) 0%, rgba(255,75,0,0.04) 100%);
    border: 1px solid rgba(255,105,15,0.2);
}

.ob-mode-banner-custom {
    background: linear-gradient(135deg, rgba(255,105,15,0.08) 0%, rgba(255,75,0,0.04) 100%);
    border: 1px solid rgba(255,105,15,0.2);
}

.ob-mode-banner-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ob-mode-banner-city_break .ob-mode-banner-icon {
    background: rgba(255,105,15,0.1);
    color: var(--accent-start);
}

.ob-mode-banner-custom .ob-mode-banner-icon {
    background: rgba(255,105,15,0.1);
    color: var(--accent-start);
}

.ob-mode-banner-text {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.ob-mode-banner-label {
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-tertiary);
}

.ob-mode-banner-value {
    font-size: 15px;
    font-weight: 700;
}

.ob-mode-banner-city_break .ob-mode-banner-value {
    color: var(--accent-start);
}

.ob-mode-banner-custom .ob-mode-banner-value {
    color: var(--accent-start);
}

@media (max-width: 480px) {
    .ob-mode-banner {
        padding: 6px 14px;
        gap: 8px;
    }
    .ob-mode-banner-icon {
        width: 28px;
        height: 28px;
    }
    .ob-mode-banner-icon svg {
        width: 14px;
        height: 14px;
    }
    .ob-mode-banner-label {
        font-size: 9px;
    }
    .ob-mode-banner-value {
        font-size: 13px;
    }
}

/* Trip style badge */
.ob-trip-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 16px;
}

.ob-trip-badge-city_break {
    background: linear-gradient(135deg, rgba(255,105,15,0.1) 0%, rgba(255,75,0,0.06) 100%);
    color: var(--accent-start);
    border: 1px solid rgba(255,105,15,0.2);
}

.ob-trip-badge-custom {
    background: linear-gradient(135deg, rgba(76,154,255,0.1) 0%, rgba(59,130,246,0.06) 100%);
    color: #3b82f6;
    border: 1px solid rgba(59,130,246,0.2);
}

.ob-trip-badge svg {
    width: 12px;
    height: 12px;
}

@media (max-width: 480px) {
    .ob-trip-style-grid {
        grid-template-columns: 1fr;
    }
}

/* Sections & toggle rows */
.ob-section {
    margin-bottom: 28px;
}

.ob-section-label {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-tertiary);
    margin-bottom: 12px;
    text-align: center;
}

.ob-toggle-row {
    display: flex;
    gap: 8px;
    background: #F2F2F7;
    border-radius: 12px;
    padding: 4px;
}
.ob-toggle-row + .ob-toggle-row {
    margin-top: 14px;
}

.ob-toggle-option {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 16px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-secondary);
    background: transparent;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.ob-toggle-option input { display: none; }

.ob-toggle-option.active {
    background: var(--accent-solid);
    color: #fff;
    box-shadow: 0 2px 6px rgba(0,0,0,0.12);
}

.ob-toggle-option svg {
    flex-shrink: 0;
    opacity: 0.5;
}

.ob-toggle-option.active svg {
    opacity: 1;
    color: #fff;
}

/* Month chips */
.ob-months-panel {
    margin-top: 16px;
    padding: 20px;
    background: #FAFAFA;
    border: 1px solid var(--border);
    border-radius: 14px;
}

.ob-months-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.ob-months-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
}

.ob-month-chip {
    position: relative;
    padding: 16px 8px;
    font-size: 13px;
    font-weight: 600;
    font-family: inherit;
    color: var(--text-secondary);
    background: var(--white);
    border: 2px solid var(--border);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.15s ease;
    text-align: center;
}

.ob-month-chip:hover {
    border-color: var(--text-tertiary);
}

.ob-month-chip.active {
    border-color: var(--accent-start);
    background: var(--accent-start);
    color: #fff;
    box-shadow: 0 2px 8px rgba(255, 105, 15, 0.25);
}

/* Month chip checkmark */
.ob-month-check {
    position: absolute;
    top: 4px;
    right: 4px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 1.5px solid var(--border);
    opacity: 0;
    transition: all 0.2s ease;
}
.ob-month-chip:hover .ob-month-check {
    opacity: 0.4;
}
.ob-month-chip.active .ob-month-check {
    opacity: 1;
    background: #fff;
    border-color: #fff;
}
.ob-month-chip.active .ob-month-check svg {
    stroke: var(--accent-start);
}

/* Stay duration */
.ob-stay-panel {
    margin-top: 12px;
    padding: 20px;
    background: #FAFAFA;
    border: 1px solid var(--border);
    border-radius: 14px;
}

.ob-stay-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.ob-select.ob-select-sm {
    padding: 10px 14px;
    font-size: 14px;
    font-family: inherit;
    font-weight: 600;
    color: var(--text-primary);
    background: var(--white);
    border: 2px solid var(--border);
    border-radius: 10px;
    cursor: pointer;
    outline: none;
    transition: border-color 0.2s ease;
    min-width: 72px;
    -webkit-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L5 5L9 1' stroke='%238E8E93' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 32px;
}

.ob-select.ob-select-sm:focus {
    border-color: var(--accent-start);
}

.ob-stay-sep {
    color: var(--text-tertiary);
    font-size: 16px;
    font-weight: 600;
}

.ob-stay-label {
    font-size: 14px;
    color: var(--text-secondary);
    font-weight: 500;
}

@media (max-width: 540px) {
    .ob-months-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 480px) {
    .ob-trip-cards {
        grid-template-columns: 1fr;
    }
    .ob-trip-card {
        padding: 24px 20px;
    }
}

/* Back link */
.ob-back-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-top: 20px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-tertiary);
    text-decoration: none;
    transition: color 0.15s;
}
.ob-back-link:hover {
    color: var(--text-primary);
}

/* Trip type cards */
.ob-trip-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 20px;
}
.ob-trip-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 32px 20px;
    border-radius: 20px;
    border: 2px solid var(--border);
    background: var(--bg-card);
    cursor: pointer;
    transition: border-color 0.15s, background 0.15s, box-shadow 0.15s;
    text-align: center;
}
.ob-trip-card:hover {
    border-color: var(--text-tertiary);
}
.ob-trip-selected {
    border-color: var(--accent-solid);
    background: #FFF5F3;
    box-shadow: 0 0 0 1px var(--accent-solid);
}
.ob-trip-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: var(--bg-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: background 0.15s, color 0.15s;
}
.ob-trip-selected .ob-trip-icon {
    background: #FFF0ED;
    color: var(--accent-solid);
}
.ob-trip-label {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
}
.ob-trip-desc {
    font-size: 13px;
    color: var(--text-tertiary);
}

/* Range slider (dual-handle) */
.ob-range-wrap {
    position: relative;
    height: 40px;
    margin: 16px 0 4px;
}
.ob-range-track {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 4px;
    border-radius: 2px;
    background: var(--border);
    transform: translateY(-50%);
}
.ob-range-fill {
    position: absolute;
    height: 100%;
    border-radius: 2px;
    background: linear-gradient(135deg, var(--accent-solid), #FF8A65);
}
.ob-range-input {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    -webkit-appearance: none;
    appearance: none;
    background: transparent;
    pointer-events: none;
    outline: none;
}
.ob-range-input::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid var(--accent-solid);
    box-shadow: 0 1px 4px rgba(0,0,0,0.12);
    cursor: pointer;
    pointer-events: all;
}
.ob-range-input::-moz-range-thumb {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid var(--accent-solid);
    box-shadow: 0 1px 4px rgba(0,0,0,0.12);
    cursor: pointer;
    pointer-events: all;
}
.ob-range-value {
    text-align: center;
    font-size: 15px;
    color: var(--text-secondary);
    margin-top: 4px;
}
.ob-range-value span {
    font-weight: 700;
    color: var(--text-primary);
}

/* Section panel (departure / return wrapper) */
.ob-section-panel {
    margin-top: 16px;
    padding: 20px;
    background: #FAFAFA;
    border: 1px solid var(--border);
    border-radius: 14px;
}
.ob-section-panel + .ob-section-panel {
    margin-top: 16px;
}
.ob-section-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

/* Sub-toggle (secondary pill switcher) */
.ob-sub-toggle-row {
    display: flex;
    gap: 4px;
    background: #EBEBF0;
    border-radius: 10px;
    padding: 3px;
    margin-bottom: 16px;
}
.ob-sub-toggle {
    flex: 1;
    padding: 8px 12px;
    font-size: 13px;
    font-weight: 600;
    font-family: inherit;
    color: var(--text-secondary);
    background: transparent;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
}
.ob-sub-toggle.active {
    background: var(--accent-solid);
    color: #fff;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}

/* Date field groups */
.ob-date-row {
    display: flex;
    gap: 10px;
    margin-bottom: 14px;
}
.ob-date-field-group {
    flex: 1;
    padding: 10px 12px;
    border: 1.5px solid var(--border);
    border-radius: 10px;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s;
}
.ob-date-field-group.dep-active {
    border-color: var(--accent-solid);
    background: #FFFBFA;
}
.ob-date-field-group.ret-active {
    border-color: #0EA5E9;
    background: #F8FCFF;
}
.ob-date-field-group.is-disabled {
    opacity: 0.55;
    cursor: not-allowed;
}
.ob-date-field-group.has-error {
    border-color: #EF4444;
    background: #FEF2F2;
}
.ob-date-field-label {
    font-size: 11px;
    font-weight: 600;
    color: var(--text-tertiary);
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}
.ob-date-field-value {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.ob-date-field-value.placeholder {
    color: var(--text-tertiary);
    font-weight: 500;
}
.ob-validation-msg {
    font-size: 12px;
    color: #EF4444;
    margin-top: 8px;
    margin-bottom: -4px;
    text-align: center;
}

/* Wide step card (for calendar steps) */
.ob-step-card-wide {
    max-width: 680px;
}

/* Calendar — 2 month Kiwi-style */
.ob-calendar {
    user-select: none;
    -webkit-user-select: none;
    touch-action: none;
}
.ob-cal-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}
.ob-cal-nav {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    color: var(--text-secondary);
    font-family: inherit;
    transition: background 0.15s;
}
.ob-cal-nav:hover {
    background: var(--bg-secondary);
}
.ob-cal-nav:disabled {
    opacity: 0.2;
    cursor: default;
}
.ob-cal-nav:disabled:hover {
    background: none;
}
.ob-cal-title {
    flex: 1;
    text-align: center;
    font-size: 15px;
    font-weight: 700;
    color: var(--text-primary);
}
.ob-cal-months {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.ob-cal-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    margin-bottom: 2px;
}
.ob-cal-weekday {
    text-align: center;
    font-size: 11px;
    font-weight: 600;
    color: var(--text-tertiary);
    padding: 4px 0;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}
.ob-cal-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 1px 0;
}
.ob-cal-cell {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-user-select: none;
    user-select: none;
    min-height: 40px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-primary);
    cursor: pointer;
    border-radius: 0;
    transition: background 0.1s;
}
.ob-cal-cell:hover:not(.disabled):not(.empty) {
    background: var(--bg-secondary);
}
.ob-cal-cell.empty {
    cursor: default;
}
.ob-cal-cell.disabled {
    color: var(--text-tertiary);
    opacity: 0.35;
    cursor: default;
}
.ob-cal-cell.today {
    font-weight: 800;
    color: var(--accent-solid);
}
/* Departure range (orange) */
.ob-cal-cell.dep-start,
.ob-cal-cell.dep-end,
.ob-cal-cell.dep-single {
    background: var(--accent-solid);
    color: #fff;
    font-weight: 700;
    z-index: 1;
}
.ob-cal-cell.dep-start { border-radius: 50% 0 0 50%; }
.ob-cal-cell.dep-end { border-radius: 0 50% 50% 0; }
.ob-cal-cell.dep-single { border-radius: 50%; }
.ob-cal-cell.dep-range {
    background: rgba(255, 105, 15, 0.18);
    color: var(--text-primary);
    font-weight: 600;
}
.ob-cal-cell.dep-preview { background: rgba(255, 105, 15, 0.08); }

/* Return range (blue) */
.ob-cal-cell.ret-start,
.ob-cal-cell.ret-end,
.ob-cal-cell.ret-single {
    background: #0EA5E9;
    color: #fff;
    font-weight: 700;
    z-index: 1;
}
.ob-cal-cell.ret-start { border-radius: 50% 0 0 50%; }
.ob-cal-cell.ret-end { border-radius: 0 50% 50% 0; }
.ob-cal-cell.ret-single { border-radius: 50%; }
.ob-cal-cell.ret-range {
    background: rgba(14, 165, 233, 0.18);
    color: var(--text-primary);
    font-weight: 600;
}
.ob-cal-cell.ret-preview { background: rgba(14, 165, 233, 0.08); }

/* Preserve selected cell backgrounds on hover */
.ob-cal-cell.dep-start:hover:not(.disabled),
.ob-cal-cell.dep-end:hover:not(.disabled),
.ob-cal-cell.dep-single:hover:not(.disabled) {
    background: var(--accent-solid);
}
.ob-cal-cell.dep-range:hover:not(.disabled) {
    background: rgba(255, 105, 15, 0.28);
}
.ob-cal-cell.ret-start:hover:not(.disabled),
.ob-cal-cell.ret-end:hover:not(.disabled),
.ob-cal-cell.ret-single:hover:not(.disabled) {
    background: #0EA5E9;
}
.ob-cal-cell.ret-range:hover:not(.disabled) {
    background: rgba(14, 165, 233, 0.28);
}

/* Resize drag handles */
.ob-cal-cell.dep-start,
.ob-cal-cell.dep-end,
.ob-cal-cell.dep-single,
.ob-cal-cell.ret-start,
.ob-cal-cell.ret-end,
.ob-cal-cell.ret-single {
    cursor: ew-resize;
}
.ob-cal-cell.dep-start:active,
.ob-cal-cell.dep-end:active,
.ob-cal-cell.dep-single:active,
.ob-cal-cell.ret-start:active,
.ob-cal-cell.ret-end:active,
.ob-cal-cell.ret-single:active {
    cursor: grabbing;
}
.ob-calendar.dragging,
.ob-calendar.dragging .ob-cal-cell {
    cursor: grabbing !important;
}
/* Resize handle arrows — CSS triangles, always visible */
.ob-cal-cell.dep-start::before,
.ob-cal-cell.dep-single::before,
.ob-cal-cell.ret-start::before,
.ob-cal-cell.ret-single::before {
    content: '';
    position: absolute;
    left: 2px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-right: 7px solid rgba(255, 255, 255, 0.96);
    pointer-events: none;
    opacity: 0.85;
    filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.18));
    z-index: 2;
    transition: opacity 0.15s;
}
.ob-cal-cell.dep-end::after,
.ob-cal-cell.dep-single::after,
.ob-cal-cell.ret-end::after,
.ob-cal-cell.ret-single::after {
    content: '';
    position: absolute;
    right: 2px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 7px solid rgba(255, 255, 255, 0.96);
    pointer-events: none;
    opacity: 0.85;
    filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.18));
    z-index: 2;
    transition: opacity 0.15s;
}
@media (hover: hover) {
    .ob-cal-cell.dep-start:hover::before,
    .ob-cal-cell.dep-end:hover::after,
    .ob-cal-cell.dep-single:hover::before,
    .ob-cal-cell.dep-single:hover::after,
    .ob-cal-cell.ret-start:hover::before,
    .ob-cal-cell.ret-end:hover::after,
    .ob-cal-cell.ret-single:hover::before,
    .ob-cal-cell.ret-single:hover::after {
        opacity: 1;
    }
}

@media (max-width: 640px) {
    .ob-step-card-wide {
        max-width: 480px;
    }
    .ob-cal-months {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .ob-cal-header .ob-cal-title:last-of-type {
        display: none;
    }
}
@media (max-width: 540px) {
    .ob-date-row {
        flex-direction: column;
    }
    .ob-cal-cell {
        min-height: 38px;
        font-size: 12px;
    }
    .ob-sub-toggle {
        font-size: 12px;
        padding: 7px 8px;
    }
}

/* Congrats page */
.ob-congrats-icon {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    background: linear-gradient(135deg, #36D399, #22B573);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    box-shadow: 0 8px 32px rgba(54, 211, 153, 0.3);
}
.ob-congrats-title {
    font-size: clamp(28px, 5vw, 38px);
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 12px;
}
.ob-congrats-desc {
    font-size: 17px;
    color: var(--text-secondary);
    max-width: 400px;
    margin: 0 auto 32px;
    line-height: 1.5;
}

/* Footer skip */
.ob-footer {
    padding: 16px 32px 24px;
    text-align: center;
}

.ob-skip-link {
    background: none;
    border: none;
    color: var(--text-tertiary);
    font-family: inherit;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: color 0.2s ease;
}

.ob-skip-link:hover {
    color: var(--text-secondary);
}

@media (max-width: 768px) {
    .ob-step-icon {
        display: none;
    }
}

/* ============================================
   LANGUAGE SWITCHER
   ============================================ */
.lang-switcher {
    position: relative;
}

.lang-current {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border: 1px solid var(--border);
    border-radius: var(--radius-full);
    background: transparent;
    font-family: inherit;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.lang-current:hover {
    border-color: var(--text-tertiary);
    color: var(--text-primary);
}

.lang-flag {
    font-size: 15px;
    line-height: 1;
}

.lang-chevron {
    flex-shrink: 0;
    opacity: 0.5;
    transition: transform 0.2s ease;
}

.lang-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 6px);
    right: 0;
    width: 240px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    z-index: 50;
    overflow: hidden;
}

.lang-dropdown.open {
    display: block;
}

.lang-search-wrap {
    padding: 8px 10px;
    border-bottom: 1px solid var(--border);
}

.lang-search {
    width: 100%;
    padding: 7px 12px;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    color: var(--text-primary);
    background: var(--bg-section);
    outline: none;
    transition: border-color 0.15s;
}

.lang-search:focus {
    border-color: var(--accent-start);
    background: var(--white);
}

.lang-search::placeholder {
    color: var(--text-tertiary);
}

.lang-list {
    max-height: 280px;
    overflow-y: auto;
    padding: 4px 0;
    scrollbar-width: thin;
    scrollbar-color: var(--border) transparent;
}

.lang-list::-webkit-scrollbar {
    width: 4px;
}

.lang-list::-webkit-scrollbar-track {
    background: transparent;
}

.lang-list::-webkit-scrollbar-thumb {
    background: var(--border);
    border-radius: 4px;
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    text-decoration: none;
    transition: background 0.12s ease;
}

.lang-option:hover {
    background: var(--bg-section);
    color: var(--text-primary);
}

.lang-option-flag {
    font-size: 16px;
    line-height: 1;
    flex-shrink: 0;
}

.lang-option-name {
    flex: 1;
    font-weight: 500;
}

.lang-option-code {
    font-size: 11px;
    font-weight: 700;
    color: var(--text-tertiary);
    letter-spacing: 0.5px;
}

.lang-option-hidden {
    display: none !important;
}

/* Mobile menu — locale switcher (compact pill at bottom of footer) */
.mobile-menu-switchers {
    display: flex;
    justify-content: center;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}

.mobile-menu-switchers .locale-switcher {
    font-size: 12px;
}

.mobile-menu-switchers .locale-switcher .curr-current,
.mobile-menu-switchers .locale-switcher .lang-current {
    padding: 5px 10px;
    gap: 5px;
}

.mobile-menu-switchers .locale-switcher .curr-symbol {
    font-size: 13px;
}

.mobile-menu-switchers .locale-switcher .lang-flag {
    font-size: 14px;
}

.mobile-menu-switchers .locale-switcher .curr-dropdown,
.mobile-menu-switchers .locale-switcher .lang-dropdown {
    bottom: 100%;
    top: auto;
    margin-bottom: 6px;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
}

.mobile-menu-switchers .locale-switcher .curr-dropdown {
    width: min(280px, calc(100vw - 48px));
}

.mobile-menu-switchers .locale-switcher .lang-dropdown {
    width: min(240px, calc(100vw - 48px));
}

.mobile-menu-switchers .locale-switcher .lang-list,
.mobile-menu-switchers .locale-switcher .curr-list {
    max-height: 200px;
}

/* ============================================
   COMBINED LOCALE SWITCHER (Currency + Language)
   ============================================ */
.locale-switcher {
    display: inline-flex;
    align-items: center;
    border: 1px solid var(--border);
    border-radius: var(--radius-full);
    background: var(--white);
    position: relative;
}
.locale-switcher .curr-switcher,
.locale-switcher .lang-switcher {
    position: static;
}
.locale-switcher .curr-current,
.locale-switcher .lang-current {
    border: none;
    border-radius: 0;
    padding: 6px 12px;
    background: none;
}
.locale-switcher .curr-current:hover,
.locale-switcher .lang-current:hover {
    border-color: transparent;
}
.locale-switcher .curr-chevron,
.locale-switcher .lang-chevron {
    display: none;
}
.locale-divider {
    width: 1px;
    height: 16px;
    background: var(--border);
    flex-shrink: 0;
}
.locale-switcher .curr-dropdown {
    left: 0;
    right: auto;
}
.locale-switcher .lang-dropdown {
    right: 0;
    left: auto;
}

/* ============================================
   CURRENCY SWITCHER
   ============================================ */
.curr-switcher {
    position: relative;
}

.curr-current {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border: 1px solid var(--border);
    border-radius: var(--radius-full);
    background: transparent;
    font-family: inherit;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.curr-current:hover {
    border-color: var(--text-tertiary);
    color: var(--text-primary);
}

.curr-symbol {
    font-size: 14px;
    line-height: 1;
}

.curr-chevron {
    flex-shrink: 0;
    opacity: 0.5;
    transition: transform 0.2s ease;
}

.curr-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 6px);
    right: 0;
    width: 280px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    z-index: 50;
    overflow: hidden;
}

.curr-dropdown.open {
    display: block;
}

.curr-search-wrap {
    padding: 8px 10px;
    border-bottom: 1px solid var(--border);
}

.curr-search {
    width: 100%;
    padding: 7px 12px;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    color: var(--text-primary);
    background: var(--bg-section);
    outline: none;
    transition: border-color 0.15s;
}

.curr-search:focus {
    border-color: var(--accent-start);
    background: var(--white);
}

.curr-search::placeholder {
    color: var(--text-tertiary);
}

.curr-list {
    max-height: 320px;
    overflow-y: auto;
    padding: 4px 0;
    scrollbar-width: thin;
    scrollbar-color: var(--border) transparent;
}

.curr-list::-webkit-scrollbar {
    width: 4px;
}

.curr-list::-webkit-scrollbar-track {
    background: transparent;
}

.curr-list::-webkit-scrollbar-thumb {
    background: var(--border);
    border-radius: 4px;
}

.curr-group-label {
    padding: 8px 14px 4px;
    font-size: 11px;
    font-weight: 700;
    color: var(--text-tertiary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.curr-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    text-decoration: none;
    transition: background 0.12s ease;
}

.curr-option:hover {
    background: var(--bg-section);
    color: var(--text-primary);
}

.curr-option-symbol {
    font-size: 15px;
    line-height: 1;
    flex-shrink: 0;
    width: 24px;
    text-align: center;
}

.curr-option-name {
    flex: 1;
    font-weight: 500;
}

.curr-option-code {
    font-size: 11px;
    font-weight: 700;
    color: var(--text-tertiary);
    letter-spacing: 0.5px;
}

.curr-option-hidden {
    display: none !important;
}


/* ============================================
   HOW IT WORKS - PLAN COMPARISON TABLE
   ============================================ */
.hiw-plan-compare {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--card-shadow);
}

.plan-unlimited-label {
    display: inline-flex;
    align-items: flex-start;
    gap: 2px;
    line-height: 1;
}

.plan-unlimited-star {
    font-size: 10px;
    line-height: 1;
    vertical-align: top;
}

.hiw-plan-footnote {
    margin: 12px 4px 0;
    font-size: 12px;
    line-height: 1.55;
    color: var(--text-tertiary);
}

.hiw-plan-footnote-mark {
    font-size: 11px;
    vertical-align: top;
}

.hiw-plan-row {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
    border-bottom: 1px solid var(--border);
}

.hiw-plan-row:last-child {
    border-bottom: none;
}

.hiw-plan-row-header {
    background: var(--bg-section);
}

.hiw-plan-row-footer {
    background: var(--bg-section);
}

.hiw-plan-row-footer .hiw-plan-val {
    white-space: nowrap;
}

.hiw-plan-row-footer .pricing-price-original {
    font-size: 13px;
    font-weight: 600;
    color: #c0c0c0;
    text-decoration: line-through;
    text-decoration-thickness: 1px;
    text-decoration-color: #c0c0c0;
    margin-right: 4px;
    letter-spacing: 0;
}

.hiw-plan-feature-name {
    padding: 14px 20px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    overflow-wrap: break-word;
    word-break: break-word;
    -webkit-hyphens: auto;
    hyphens: auto;
    min-width: 0;
}

.hiw-plan-tier {
    padding: 14px 12px;
    font-size: 13px;
    font-weight: 700;
    color: var(--text-secondary);
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hiw-plan-tier-basic {
    color: #64748B;
    background: rgba(148, 163, 184, 0.08);
}

.hiw-plan-tier-pro {
    color: var(--accent-start);
    background: rgba(255, 105, 15, 0.04);
}

.hiw-plan-tier-ultra {
    color: #1A1A1A;
    background: rgba(0, 0, 0, 0.03);
}

.hiw-plan-val {
    padding: 14px 12px;
    font-size: 14px;
    color: var(--text-tertiary);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow-wrap: break-word;
    word-break: break-word;
    min-width: 0;
}

.hiw-plan-val-basic {
    background: rgba(148, 163, 184, 0.04);
}

.hiw-plan-val-pro {
    background: rgba(255, 105, 15, 0.03);
}

.hiw-plan-yes {
    color: var(--green);
    font-weight: 600;
}

/* ============================================
   RESPONSIVE - FOOTER / AUTH / HIW TABLE
   ============================================ */
@media (max-width: 768px) {
    .hiw-plan-compare {
        font-size: 13px;
    }

    .hiw-plan-feature-name {
        padding: 12px 14px;
        font-size: 13px;
    }

    .hiw-plan-val, .hiw-plan-tier {
        padding: 12px 8px;
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .hiw-plan-compare {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        position: relative;
    }

    .hiw-plan-row {
        grid-template-columns: 1.2fr 0.8fr 0.8fr 0.8fr 0.8fr;
        min-width: 480px;
    }

    .hiw-plan-feature-name {
        padding: 10px 10px;
        font-size: 12px;
    }

    .hiw-plan-val, .hiw-plan-tier {
        padding: 10px 6px;
        font-size: 11px;
    }

    .hiw-plan-row-footer .hiw-plan-val {
        font-size: 10px;
    }

    .hiw-plan-row-footer .pricing-price-original {
        font-size: inherit;
    }
}

/* ============================================
   BILLING TOGGLE
   ============================================ */
.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 36px;
}

.pricing-toggle-pills {
    display: inline-flex;
    background: #EDEDF0;
    border-radius: var(--radius-full);
    padding: 4px;
}

.pricing-toggle-pill {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 32px;
    font-family: inherit;
    font-size: 15px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.25s;
    background: transparent;
    color: #8B8B8E;
    border-radius: var(--radius-full);
}

.pricing-toggle-pill:hover:not(.pricing-toggle-pill-active) {
    color: #555;
}

.pricing-toggle-pill-active {
    background: #fff;
    color: var(--text-primary);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08), 0 2px 8px rgba(0, 0, 0, 0.06);
}

.pricing-toggle-save {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, var(--accent-start), var(--accent-end));
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 3px 8px;
    border-radius: 20px;
    white-space: nowrap;
    line-height: 1;
}

/* ============================================
   CLOUDFLARE TURNSTILE
   ============================================ */
.cf-turnstile {
    margin-top: 8px;
}

/* ============================================
   AIRPORT BROWSE (.ab-) PAGES
   ============================================ */

/* Breadcrumb */
.ab-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.ab-breadcrumb a {
    color: var(--accent-start);
    text-decoration: none;
    transition: color 0.15s;
}

.ab-breadcrumb a:hover {
    color: #e55d0d;
    text-decoration: underline;
}

.ab-breadcrumb-sep {
    color: var(--text-tertiary);
    font-weight: 400;
}

.ab-breadcrumb-current {
    color: var(--text-secondary);
}

/* Page titles */
.ab-page-title {
    font-size: 28px;
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: -0.5px;
    margin-bottom: 6px;
    overflow-wrap: break-word;
    word-break: break-word;
}

.ab-page-subtitle {
    font-size: 15px;
    color: var(--text-tertiary);
    font-weight: 500;
    overflow-wrap: break-word;
}

.ab-page-header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

/* Continent Grid */
.ab-continent-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.ab-continent-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 28px 20px 24px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    text-decoration: none;
    transition: all 0.2s ease;
    box-shadow: var(--card-shadow);
    overflow: hidden;
    min-width: 0;
    -webkit-tap-highlight-color: transparent;
}

.ab-continent-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-start), var(--accent-end));
    opacity: 0;
    transition: opacity 0.2s ease;
}

@media (hover: hover) {
    .ab-continent-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
        border-color: var(--accent-start);
    }

    .ab-continent-card:hover::before {
        opacity: 1;
    }
}

.ab-continent-card:active {
    transform: scale(0.98);
}

.ab-continent-count {
    font-size: 28px;
    font-weight: 900;
    letter-spacing: -1px;
    background: linear-gradient(135deg, var(--accent-start), var(--accent-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 6px;
}

.ab-continent-name {
    font-size: 17px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 2px;
    line-height: 1.25;
}

.ab-continent-label {
    font-size: 13px;
    color: var(--text-tertiary);
    font-weight: 500;
}

.ab-continent-arrow {
    margin-top: 14px;
    color: var(--text-tertiary);
    transition: all 0.2s ease;
    opacity: 0;
    transform: translateX(-4px);
}

@media (hover: hover) {
    .ab-continent-card:hover .ab-continent-arrow {
        opacity: 1;
        transform: translateX(0);
        color: var(--accent-start);
    }
}

/* Country Grid */
.ab-country-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.ab-country-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    text-decoration: none;
    transition: all 0.15s ease;
}

@media (hover: hover) {
    .ab-country-card:hover {
        border-color: var(--accent-start);
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    }
}

.ab-country-card:active {
    transform: scale(0.98);
    box-shadow: none;
}

.ab-country-flag {
    border-radius: 3px;
    flex-shrink: 0;
    object-fit: cover;
}

.ab-country-flag-lg {
    border-radius: 4px;
    object-fit: cover;
    flex-shrink: 0;
}

.ab-country-info {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.ab-country-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ab-country-count {
    font-size: 12px;
    color: var(--text-tertiary);
    font-weight: 500;
}

/* Airport List */
.ab-airport-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ab-airport-row {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    text-decoration: none;
    transition: all 0.15s ease;
}

@media (hover: hover) {
    .ab-airport-row:hover {
        border-color: var(--accent-start);
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    }
}

.ab-airport-row:active {
    transform: scale(0.985);
    box-shadow: none;
}

.ab-iata-badge {
    width: 52px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--accent-start), var(--accent-end));
    color: #fff;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 1px;
    border-radius: 8px;
    flex-shrink: 0;
}

.ab-iata-lg {
    width: 64px;
    height: 44px;
    font-size: 18px;
    border-radius: 10px;
}

.ab-airport-info {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.ab-airport-name {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.ab-airport-city {
    font-size: 13px;
    color: var(--text-tertiary);
    font-weight: 500;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.ab-type-badge {
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: var(--radius-full);
    white-space: nowrap;
    flex-shrink: 0;
}

.ab-type-large {
    background: rgba(255, 105, 15, 0.08);
    color: var(--accent-start);
}

.ab-type-medium {
    background: var(--bg-section);
    color: var(--text-tertiary);
    border: 1px solid var(--border);
}

/* Detail Header */
.ab-detail-header {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Detail Card */
.ab-detail-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--card-shadow);
    overflow: hidden;
}

.ab-detail-section {
    padding: 24px;
    border-bottom: 1px solid var(--border);
}

.ab-detail-section:last-child {
    border-bottom: none;
}

.ab-detail-section-title {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-tertiary);
    margin-bottom: 16px;
}

.ab-detail-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ab-detail-row {
    display: flex;
    align-items: baseline;
    gap: 16px;
}

.ab-detail-label {
    width: 160px;
    flex-shrink: 0;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-tertiary);
    overflow-wrap: break-word;
}

.ab-detail-value {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
}

.ab-detail-value a {
    color: var(--accent-start);
    text-decoration: none;
}

.ab-detail-value a:hover {
    color: #e55d0d;
    text-decoration: underline;
}

/* CTA Banner — Inline (inside detail card) */
.ab-cta-inline {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 36px 32px;
    background: linear-gradient(135deg, #0F1729 0%, #1a2744 100%);
    border-radius: 14px;
    margin: 4px 0;
    position: relative;
    overflow: hidden;
}

.ab-cta-inline::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -10%;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(255, 105, 15, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

.ab-cta-inline-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    font-size: 11px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.ab-cta-inline-title {
    font-size: 22px;
    font-weight: 900;
    color: #fff;
    letter-spacing: -0.3px;
    margin-bottom: 6px;
    line-height: 1.25;
}

.ab-cta-inline-sub {
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.5;
    margin-bottom: 14px;
}

.ab-cta-inline-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    font-size: 12px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.4);
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.ab-cta-inline-trust .check {
    color: #36D399;
    font-weight: 700;
    margin-right: 3px;
}

.ab-cta-inline-form {
    display: flex;
    flex-direction: row;
    gap: 8px;
    width: 100%;
    max-width: 460px;
    margin-bottom: 0;
    position: relative;
}

.ab-cta-inline-form input[type="email"] {
    flex: 1;
    min-width: 0;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    color: #fff;
    font-size: 14px;
    font-family: inherit;
    font-weight: 500;
    outline: none;
    -webkit-appearance: none;
}

.ab-cta-inline-form input[type="email"]::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.ab-cta-inline-form input[type="email"]:focus {
    border-color: rgba(255, 105, 15, 0.4);
}

.ab-cta-inline-form button {
    padding: 12px 24px;
    background: linear-gradient(135deg, var(--accent-start), var(--accent-end));
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    transition: box-shadow 0.2s, transform 0.2s;
    white-space: nowrap;
    flex-shrink: 0;
    -webkit-appearance: none;
}

.ab-cta-inline-form button:hover {
    box-shadow: 0 4px 16px rgba(255, 105, 15, 0.4);
    transform: translateY(-1px);
}

.ab-cta-inline .cta-social-row {
    margin-top: 16px;
    flex-direction: row;
    align-items: center;
    gap: 10px;
}

.ab-cta-inline .cta-social-label {
    color: rgba(255, 255, 255, 0.35);
    font-size: 11px;
    margin-right: 2px;
}

.ab-cta-inline .cta-social-stack {
    flex-direction: row;
    gap: 8px;
    width: auto;
    max-width: none;
}

.ab-cta-inline .auth-social-btn {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
    padding: 8px 14px;
    font-size: 13px;
}

.ab-cta-inline .auth-social-btn:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.18);
    color: #fff;
}

.ab-cta-inline .auth-social-btn--apple {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.15);
    color: #fff;
}

.ab-cta-inline .auth-social-btn--apple:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.25);
}

@media (max-width: 640px) {
    .ab-cta-inline {
        padding: 28px 20px;
    }

    .ab-cta-inline-title {
        font-size: 19px;
    }

    .ab-cta-inline-form {
        flex-direction: column;
    }

    .ab-cta-inline .cta-social-stack {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* CTA Banner — Full (standalone) */
.ab-cta {
    margin-top: 32px;
    position: relative;
    background: linear-gradient(135deg, #0F1729 0%, #1a2744 100%);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(15, 23, 41, 0.3);
}

.ab-cta-glow {
    position: absolute;
    top: -60%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 105, 15, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.ab-cta-content {
    position: relative;
    padding: 48px 40px;
    text-align: center;
}

.ab-cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.ab-cta-badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #36D399;
    animation: ab-pulse 2s infinite;
}

@keyframes ab-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.ab-cta-headline {
    font-size: 32px;
    font-weight: 900;
    color: #fff;
    letter-spacing: -0.5px;
    margin-bottom: 8px;
    line-height: 1.2;
}

.ab-cta-subtitle {
    font-size: 16px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    margin-bottom: 28px;
}

.ab-cta-form {
    display: flex;
    max-width: 480px;
    margin: 0 auto 16px;
    gap: 0;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    padding: 5px;
}

.ab-cta-form input[type="email"] {
    flex: 1;
    padding: 14px 18px;
    background: transparent;
    border: none;
    border-radius: 0;
    -webkit-appearance: none;
    appearance: none;
    color: #fff;
    font-size: 16px;
    font-family: inherit;
    font-weight: 500;
    outline: none;
    min-width: 0;
}

.ab-cta-form input[type="email"]::placeholder {
    color: rgba(255, 255, 255, 0.35);
}

.ab-cta-form button {
    padding: 14px 28px;
    background: linear-gradient(135deg, var(--accent-start), var(--accent-end));
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    white-space: nowrap;
    transition: box-shadow 0.2s, transform 0.2s;
}

.ab-cta-form button:hover {
    box-shadow: 0 6px 20px rgba(255, 105, 15, 0.4);
    transform: translateY(-1px);
}

.ab-cta .cta-social-row {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

.ab-cta .cta-social-label {
    color: rgba(255, 255, 255, 0.4);
    margin-right: 2px;
}

.ab-cta .cta-social-stack {
    flex-direction: row;
    gap: 8px;
    width: auto;
    max-width: none;
}

.ab-cta .auth-social-btn {
    width: auto;
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.8);
    padding: 8px 16px;
}

.ab-cta .auth-social-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.ab-cta .auth-social-btn--apple {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.15);
    color: #fff;
}

.ab-cta .auth-social-btn--apple:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.25);
}

.ab-cta-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.ab-cta-trust .check {
    color: #36D399;
    font-weight: 700;
    margin-right: 4px;
}

.ab-cta-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    padding-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.ab-cta-stat {
    text-align: center;
}

.ab-cta-stat-num {
    font-size: 24px;
    font-weight: 900;
    color: #fff;
    letter-spacing: -0.5px;
}

.ab-cta-stat-label {
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 2px;
}

/* Map */
.ab-map-card {
    margin-top: 20px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--card-shadow);
    overflow: hidden;
}

.ab-map-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
    border-bottom: 1px solid var(--border);
}

.ab-map-coords {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-tertiary);
    font-family: 'Inter', monospace;
    letter-spacing: 0.3px;
}

.ab-map {
    width: 100%;
    height: 400px;
}

.ab-map-marker {
    background: none !important;
    border: none !important;
}

/* Deal Tags (country page — airport rows) */
.ab-deal-tags {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-left: auto;
    flex-shrink: 0;
}

.ab-deal-tag {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    font-weight: 500;
    color: var(--text-secondary);
    padding: 3px 10px;
    background: linear-gradient(135deg, rgba(255, 105, 15, 0.06), rgba(255, 140, 0, 0.06));
    border: 1px solid rgba(255, 105, 15, 0.12);
    border-radius: 20px;
    white-space: nowrap;
}

.ab-deal-tag-price {
    font-weight: 700;
    background: linear-gradient(135deg, var(--accent-start), var(--accent-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Deals Section (detail page) */
.ab-deals-section {
    border-bottom: 1px solid var(--border);
}

.ab-deals-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 24px 0;
}

.ab-deals-count {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-tertiary);
    background: var(--bg);
    padding: 3px 10px;
    border-radius: var(--radius-full);
}

.ab-deals-list {
    padding: 16px 24px 24px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.ab-deal-row {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px 16px;
    border-radius: 10px;
    transition: background 0.15s ease;
}

.ab-deal-row:hover {
    background: var(--bg);
}

.ab-deal-route-codes {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
    min-width: 110px;
}

.ab-deal-iata {
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.5px;
    color: var(--text-primary);
}

.ab-deal-arrow {
    font-size: 13px;
    color: var(--text-tertiary);
}

.ab-deal-info {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.ab-deal-city {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-primary);
}

.ab-deal-airline {
    font-size: 12px;
    color: var(--text-tertiary);
    display: flex;
    align-items: center;
    gap: 6px;
}

.ab-deal-direct {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    color: var(--green);
    background: rgba(54, 211, 153, 0.1);
    padding: 2px 6px;
    border-radius: var(--radius-full);
}

.ab-deal-price {
    font-size: 18px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--accent-start), var(--accent-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    flex-shrink: 0;
}

/* Text overflow protection for long translations */
.ab-page-title,
.ab-page-subtitle,
.ab-continent-name,
.ab-airport-name,
.ab-detail-value,
.ab-cta-inline-title,
.ab-cta-inline-sub,
.ab-cta-headline,
.ab-cta-subtitle,
.ab-deal-city,
.cf-modal-title,
.al-fact-value,
.al-fact-value-sm,
.ab-cta-badge,
.adc-cta-light-title,
.adc-cta-light-sub,
.adc-calc-btn {
    overflow-wrap: break-word;
    word-break: break-word;
}

.ab-cta-badge {
    max-width: 100%;
    text-align: center;
}

/* ─── Live Flights Board (arrivals & departures) ─────── */
/* Toolbar: tabs + live info */
.ab-flights-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 16px;
}

.ab-flights-tabs {
    display: flex;
    gap: 8px;
}

.ab-flights-tab {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border: 1.5px solid rgba(0,0,0,0.08);
    border-radius: 100px;
    background: #fff;
    color: #6B6B6B;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.ab-flights-tab:hover {
    border-color: #FF690F;
    color: #FF690F;
}

.ab-flights-tab-active {
    background: #FF690F;
    border-color: #FF690F;
    color: #fff;
}

.ab-flights-tab-active:hover {
    color: #fff;
}

.ab-flights-count {
    font-size: 0.75rem;
    font-weight: 700;
    background: rgba(0,0,0,0.08);
    padding: 2px 8px;
    border-radius: 100px;
    color: inherit;
}

.ab-flights-tab-active .ab-flights-count {
    background: rgba(255,255,255,0.25);
}

/* Live info: clock + updated */
.ab-flights-live-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.ab-flights-clock {
    font-size: 0.85rem;
    font-weight: 700;
    color: #1A1A1A;
    font-variant-numeric: tabular-nums;
    font-family: 'SF Mono', 'Fira Code', 'Consolas', monospace;
}

.ab-flights-updated {
    font-size: 0.72rem;
    color: #86868b;
    white-space: nowrap;
}

/* Auto-refresh progress bar */
.ab-flights-refresh-bar {
    height: 2px;
    background: rgba(0,0,0,0.06);
    border-radius: 2px;
    margin-bottom: 16px;
    overflow: hidden;
}

.ab-flights-refresh-progress {
    height: 100%;
    width: 0;
    background: #FF690F;
    border-radius: 2px;
    transition: width 1s linear;
}

/* Board layout (flex rows instead of table) */
.ab-flights-board {
    background: #fff;
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 16px;
    overflow: hidden;
}

.ab-flights-row {
    display: flex;
    align-items: center;
    padding: 0 20px;
    min-height: 56px;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    transition: background 0.15s, opacity 0.3s;
    position: relative;
    -webkit-tap-highlight-color: transparent;
}

.ab-flights-row:last-child {
    border-bottom: none;
}

.ab-flights-row:not(.ab-flights-row-header):hover {
    background: #fafafa;
}

/* Past flights (landed/departed) — faded */
.ab-flights-row-past {
    opacity: 0.5;
}

.ab-flights-row-past:hover {
    opacity: 0.75;
}

/* Status color bar on left edge (like RadarBox) */
.ab-flights-status-bar {
    position: absolute;
    left: 0;
    top: 4px;
    bottom: 4px;
    width: 3px;
    border-radius: 0 3px 3px 0;
}

.ab-flights-bar-landed { background: #0d9e6b; }
.ab-flights-bar-in_air { background: #2b7de9; }
.ab-flights-bar-departed { background: #d97706; }
.ab-flights-bar-scheduled { background: #94a3b8; }
.ab-flights-bar-cancelled { background: #dc2626; }
.ab-flights-bar-delayed { background: #f59e0b; }

.ab-flights-row-header {
    background: #f8f8f8;
    min-height: 44px;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 2;
}

.ab-flights-row-header .ab-flights-col {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #86868b;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Column widths — ordered: Time → Flight → Airline → Airport → Status */
.ab-flights-col { padding: 10px 0; }
.ab-flights-col-time { flex: 0 0 100px; padding-left: 8px; min-width: 0; }
.ab-flights-col-flight { flex: 0 0 100px; min-width: 0; }
.ab-flights-col-airline { flex: 0 0 200px; display: flex; align-items: center; gap: 10px; min-width: 0; }
.ab-flights-col-airport { flex: 1 1 auto; display: flex; align-items: center; gap: 8px; min-width: 0; }
.ab-flights-col-status { flex: 0 0 110px; text-align: right; min-width: 0; overflow: hidden; }

/* Airline logo */
.ab-flights-logo {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    object-fit: contain;
    background: #f5f5f5;
    border: 1px solid rgba(0,0,0,0.06);
    flex-shrink: 0;
}

.ab-flights-logo-fallback {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    background: linear-gradient(135deg, #e8e8e8, #d0d0d0);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    font-weight: 800;
    color: #666;
    flex-shrink: 0;
    letter-spacing: 0.5px;
}

.ab-flights-airline-name {
    font-weight: 500;
    font-size: 0.85rem;
    color: #1A1A1A;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.ab-flights-flight-num {
    font-weight: 700;
    font-size: 0.85rem;
    color: #FF690F;
    letter-spacing: 0.3px;
}

.ab-flights-aircraft {
    display: block;
    font-size: 0.7rem;
    color: #86868b;
    font-weight: 500;
}

.ab-flights-time {
    font-weight: 700;
    font-size: 1rem;
    color: #1A1A1A;
    font-variant-numeric: tabular-nums;
    display: block;
    line-height: 1.2;
}

/* Scheduled time (strikethrough) when estimated differs */
.ab-flights-time-scheduled {
    display: block;
    font-size: 0.72rem;
    font-weight: 500;
    color: #94a3b8;
    text-decoration: line-through;
    font-variant-numeric: tabular-nums;
    line-height: 1.2;
}

/* Estimated time — shown in orange when delayed */
.ab-flights-time-est {
    color: #d97706;
}

/* Timezone label in header */
.ab-flights-tz {
    opacity: 0.6;
    font-size: 0.6rem;
    text-transform: none;
    letter-spacing: 0;
}

.ab-flights-airport-iata {
    display: inline-block;
    font-weight: 700;
    font-size: 0.8rem;
    color: #1A1A1A;
    background: #f0f0f0;
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 6px;
    padding: 2px 8px;
    letter-spacing: 0.5px;
    flex-shrink: 0;
}

.ab-flights-airport-city {
    color: #6B6B6B;
    font-size: 0.85rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Status badges */
.ab-flights-status {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    white-space: nowrap;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    vertical-align: middle;
}

.ab-flights-status-landed {
    background: rgba(54, 211, 153, 0.12);
    color: #0d9e6b;
}

.ab-flights-status-in_air {
    background: rgba(76, 154, 255, 0.15);
    color: #2b7de9;
    animation: fids-pulse 2s ease-in-out infinite;
}

@keyframes fids-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

.ab-flights-status-departed {
    background: rgba(255, 159, 67, 0.12);
    color: #d97706;
}

.ab-flights-status-scheduled {
    background: rgba(148, 163, 184, 0.12);
    color: #64748b;
}

.ab-flights-status-cancelled {
    background: rgba(239, 68, 68, 0.12);
    color: #dc2626;
}

.ab-flights-status-delayed {
    background: rgba(245, 158, 11, 0.15);
    color: #b45309;
}

/* Pagination */
.ab-flights-pager {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    background: #fff;
    border: 1px solid rgba(0,0,0,0.08);
    border-top: none;
    border-radius: 0 0 16px 16px;
}

.ab-pager-info {
    font-size: 0.8rem;
    color: #86868b;
    font-variant-numeric: tabular-nums;
}

.ab-pager-controls {
    display: flex;
    align-items: center;
    gap: 4px;
}

.ab-pager-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 34px;
    height: 34px;
    padding: 0 4px;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 8px;
    background: #fff;
    color: #1A1A1A;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.15s;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.ab-pager-btn:hover:not(.ab-pager-btn-disabled):not(.ab-pager-num-active) {
    border-color: #FF690F;
    color: #FF690F;
}

.ab-pager-num-active {
    background: #FF690F;
    border-color: #FF690F;
    color: #fff;
}

.ab-pager-btn-disabled {
    opacity: 0.3;
    cursor: default;
}

.ab-pager-ellipsis {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 34px;
    color: #86868b;
    font-size: 0.8rem;
}

/* Board with active pager — flatten bottom radius */
.ab-flights-board.ab-flights-board-paged {
    border-radius: 16px 16px 0 0;
}

/* Empty state */
.ab-flights-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 60px 20px;
    text-align: center;
    background: #fff;
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 16px;
}

.ab-flights-empty p {
    font-size: 0.95rem;
    color: #86868b;
}

/* Link card on detail page */
.ab-flights-link-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: #fafafa;
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 12px;
    text-decoration: none;
    color: #1A1A1A;
    transition: all 0.2s;
}

.ab-flights-link-card:hover {
    border-color: #FF690F;
    box-shadow: 0 2px 8px rgba(255, 105, 15, 0.1);
}

.ab-flights-link-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #FF690F, #FF8C00);
    border-radius: 10px;
    color: #fff;
    flex-shrink: 0;
}

.ab-flights-link-text {
    flex: 1;
    min-width: 0;
}

.ab-flights-link-text strong {
    display: block;
    font-size: 0.9rem;
    color: #1A1A1A;
    margin-bottom: 2px;
    overflow-wrap: break-word;
    word-break: break-word;
}

.ab-flights-link-text span {
    font-size: 0.8rem;
    color: #86868b;
    overflow-wrap: break-word;
    word-break: break-word;
}

.ab-flights-link-arrow {
    color: #86868b;
    font-size: 1.2rem;
}

/* Responsive */
@media (max-width: 900px) {
    .ab-continent-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ab-country-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .ab-detail-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }

    .ab-detail-label {
        width: auto;
        font-size: 12px;
    }

    .ab-detail-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
}

@media (max-width: 640px) {
    .ab-continent-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .ab-continent-card {
        padding: 20px 14px 18px;
    }

    .ab-continent-count {
        font-size: 24px;
    }

    .ab-continent-name {
        font-size: 15px;
    }

    .ab-continent-label {
        font-size: 12px;
    }

    .ab-continent-arrow {
        display: none;
    }

    .ab-country-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .ab-country-card {
        padding: 12px;
    }

    .ab-page-title {
        font-size: 22px;
    }

    .ab-page-header-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .ab-country-flag-lg {
        display: none;
    }

    .ab-airport-row {
        padding: 12px 14px;
        gap: 12px;
        flex-wrap: wrap;
    }

    .ab-deal-tags {
        order: 4;
        width: 100%;
        margin-left: 0;
        flex-wrap: wrap;
    }

    .ab-deal-tag {
        font-size: 11px;
        padding: 2px 8px;
    }

    .ab-iata-badge {
        width: 44px;
        height: 32px;
        font-size: 12px;
    }

    .ab-deals-header {
        padding: 16px 16px 0;
    }

    .ab-deals-list {
        padding: 12px 12px 16px;
    }

    .ab-deal-row {
        padding: 10px 8px;
        gap: 10px;
    }

    .ab-deal-route-codes {
        min-width: auto;
    }

    .ab-deal-city {
        font-size: 13px;
    }

    .ab-deal-price {
        font-size: 16px;
    }


    .ab-map {
        height: 280px;
    }

    .ab-map-header {
        padding: 12px 16px;
    }

    .ab-cta-content {
        padding: 32px 20px;
    }

    .ab-cta-headline {
        font-size: 24px;
    }

    .ab-cta-subtitle {
        font-size: 14px;
    }

    .ab-cta-form {
        flex-direction: column;
        border-radius: 12px;
    }

    .ab-cta-form input[type="email"] {
        padding: 14px 16px;
        text-align: center;
    }

    .ab-cta-form button {
        border-radius: 8px;
        white-space: normal;
        padding: 14px 20px;
    }

    .ab-cta-trust {
        gap: 12px;
        font-size: 12px;
    }

    .ab-cta-stats {
        gap: 24px;
        flex-wrap: wrap;
    }

    .ab-cta-stat-num {
        font-size: 20px;
    }

    .ab-cta-stat-label {
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    .ab-breadcrumb {
        font-size: 13px;
        gap: 6px;
    }

    .ab-page-title {
        font-size: 20px;
    }

    .ab-page-subtitle {
        font-size: 13px;
    }

    .ab-continent-card {
        padding: 18px 12px 16px;
    }

    .ab-continent-count {
        font-size: 22px;
    }

    .ab-continent-name {
        font-size: 14px;
    }

    .ab-continent-label {
        font-size: 11px;
    }

    .ab-country-card {
        padding: 10px;
        gap: 10px;
    }

    .ab-airport-row {
        padding: 10px 12px;
        gap: 10px;
    }

    .ab-iata-badge {
        width: 40px;
        height: 28px;
        font-size: 11px;
        border-radius: 6px;
    }

    .ab-airport-name {
        font-size: 14px;
    }

    .ab-airport-city {
        font-size: 12px;
    }

    .ab-type-badge {
        font-size: 10px;
        padding: 3px 8px;
    }

    .ab-detail-section {
        padding: 16px;
    }

    .ab-detail-section-title {
        font-size: 12px;
        margin-bottom: 12px;
    }

    .ab-deals-header {
        padding: 12px 12px 0;
    }

    .ab-deals-list {
        padding: 8px 8px 12px;
    }

    .ab-deal-row {
        padding: 8px 6px;
        gap: 8px;
    }

    .ab-deal-price {
        font-size: 15px;
    }

    .ab-deal-city {
        font-size: 12px;
    }

    .ab-deal-airline {
        font-size: 11px;
    }

    .ab-map {
        height: 220px;
    }

    .ab-map-header {
        padding: 10px 12px;
        flex-direction: column;
        gap: 4px;
        align-items: flex-start;
    }

    .ab-cta-inline {
        padding: 20px 16px;
        gap: 16px;
    }

    .ab-cta-inline-title {
        font-size: 18px;
    }

    .ab-cta-inline-sub {
        font-size: 12px;
        margin-bottom: 8px;
    }

    .ab-cta-inline-trust {
        font-size: 11px;
        gap: 8px;
        margin-bottom: 16px;
    }

    .ab-flights-link-card {
        padding: 12px;
        gap: 10px;
    }

    .ab-flights-link-icon {
        width: 36px;
        height: 36px;
        border-radius: 8px;
    }

    .ab-flights-link-text strong {
        font-size: 0.85rem;
    }

    .ab-flights-link-text span {
        font-size: 0.75rem;
    }

    .ab-cta-content {
        padding: 28px 16px;
    }

    .ab-cta-headline {
        font-size: 22px;
    }

    .ab-cta-subtitle {
        font-size: 13px;
    }

    .ab-cta-stats {
        gap: 16px 24px;
        flex-wrap: wrap;
    }

    .ab-cta-stat {
        flex: 1 1 auto;
        min-width: 0;
    }

    .ab-cta-stat-num {
        font-size: 18px;
    }
}

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

    .ab-country-grid {
        grid-template-columns: 1fr;
    }

    .ab-page-title {
        font-size: 18px;
    }

    .ab-page-subtitle {
        font-size: 12px;
    }

    .ab-breadcrumb {
        font-size: 12px;
        gap: 5px;
    }

    .ab-airport-row {
        padding: 10px;
        gap: 8px;
    }

    .ab-iata-badge {
        width: 38px;
        height: 26px;
        font-size: 10px;
        border-radius: 5px;
        letter-spacing: 0.5px;
    }

    .ab-airport-name {
        font-size: 13px;
    }

    .ab-airport-city {
        font-size: 11px;
    }

    .ab-type-badge {
        font-size: 9px;
        padding: 2px 6px;
    }
}

/* ============================================
   AIRLINE BROWSE (.al-) PAGES
   ============================================ */

/* ---- Search ---- */
.al-search-wrap {
    position: relative;
    margin-bottom: 20px;
}

.al-search-icon {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-tertiary);
    pointer-events: none;
}

.al-search-input {
    width: 100%;
    padding: 15px 110px 15px 48px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 14px;
    font-size: 16px;
    font-family: inherit;
    font-weight: 500;
    color: var(--text-primary);
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}

.al-search-input:focus {
    border-color: var(--accent-start);
    box-shadow: 0 0 0 3px rgba(255, 105, 15, 0.08), 0 1px 3px rgba(0,0,0,0.04);
}

.al-search-input::placeholder {
    color: var(--text-tertiary);
    font-weight: 400;
}

.al-search-count {
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 12px;
    font-weight: 600;
    color: var(--accent-start);
    letter-spacing: 0.2px;
    white-space: nowrap;
    max-width: 90px;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ---- Alphabet Bar ---- */
.al-alpha-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    justify-content: center;
    padding: 18px 0 24px;
}

.al-alpha-pill {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    font-size: 13px;
    font-weight: 700;
    color: var(--text-secondary);
    text-decoration: none;
    border-radius: 10px;
    background: var(--bg-section);
    border: 1px solid transparent;
    transition: all 0.15s ease;
}

.al-alpha-pill:hover {
    background: linear-gradient(135deg, var(--accent-start), var(--accent-end));
    color: #fff;
    border-color: transparent;
    transform: translateY(-1px);
    box-shadow: 0 3px 10px rgba(255, 105, 15, 0.2);
}

/* ---- Directory ---- */
.al-directory {
    /* spacing handled by sections */
}

/* ---- Section (one letter) ---- */
.al-section {
    margin-bottom: 40px;
    scroll-margin-top: 96px;
}

.al-section:last-child {
    margin-bottom: 0;
}

.al-section-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 18px;
}

.al-section-letter {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--accent-start), var(--accent-end));
    color: #fff;
    font-size: 20px;
    font-weight: 800;
    border-radius: 12px;
    flex-shrink: 0;
    letter-spacing: 0.5px;
}

.al-section-line {
    flex: 1;
    height: 1px;
    background: var(--border);
}

.al-section-count {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-tertiary);
    background: var(--bg-section);
    border: 1px solid var(--border);
    padding: 3px 12px;
    border-radius: var(--radius-full);
    white-space: nowrap;
    flex-shrink: 0;
}

/* ---- Grid ---- */
.al-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

/* ---- Item (airline row) ---- */
.al-item {
    display: flex;
    flex-direction: column;
    gap: 3px;
    padding: 12px 16px;
    border-radius: 10px;
    text-decoration: none;
    transition: background 0.15s ease;
    border: 1px solid transparent;
}

.al-item:hover {
    background: var(--bg-section);
    border-color: var(--border);
}

.al-item-main {
    display: flex;
    align-items: center;
    gap: 8px;
}

.al-item-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    min-width: 0;
    line-height: 1.35;
}

.al-item-code {
    font-size: 11px;
    font-weight: 700;
    color: var(--accent-start);
    letter-spacing: 0.6px;
    flex-shrink: 0;
    background: rgba(255, 105, 15, 0.08);
    padding: 1px 7px;
    border-radius: 4px;
}

.al-item-country {
    font-size: 12px;
    color: var(--text-tertiary);
    font-weight: 400;
    padding-left: 1px;
    line-height: 1.3;
}

/* ---- No Results ---- */
.al-empty {
    text-align: center;
    padding: 64px 20px;
}

.al-empty-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-section);
    border-radius: 16px;
    color: var(--text-tertiary);
}

.al-empty-text {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 4px;
}

.al-empty-hint {
    font-size: 13px;
    color: var(--text-tertiary);
    font-weight: 400;
}

/* ---- Detail Page ---- */

/* Detail Hero */
.al-detail-hero {
    display: flex;
    align-items: center;
    gap: 20px;
}

.al-detail-hero-text {
    min-width: 0;
}

.al-iata-badge-lg {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 68px;
    height: 48px;
    background: linear-gradient(135deg, var(--accent-start), var(--accent-end));
    color: #fff;
    font-size: 20px;
    font-weight: 800;
    letter-spacing: 1.5px;
    border-radius: 12px;
    flex-shrink: 0;
    box-shadow: 0 4px 16px rgba(255, 105, 15, 0.25);
    -webkit-appearance: none;
    appearance: none;
}

/* Quick Facts Row */
.al-facts-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.al-fact-box {
    flex: 1;
    min-width: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 16px 12px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--card-shadow);
}

.al-fact-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-tertiary);
}

.al-fact-value {
    font-size: 22px;
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: 1px;
}

.al-fact-value-sm {
    font-size: 15px;
    letter-spacing: 0;
    font-weight: 700;
}

/* ---- Responsive — Airlines ---- */
@media (max-width: 900px) {
    .al-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .al-grid {
        grid-template-columns: 1fr;
        gap: 2px;
    }

    .al-alpha-pill {
        width: 30px;
        height: 30px;
        font-size: 12px;
        border-radius: 8px;
    }

    .al-alpha-bar {
        gap: 4px;
        padding: 14px 0 20px;
    }

    .al-section-letter {
        width: 38px;
        height: 38px;
        font-size: 17px;
        border-radius: 10px;
    }

    .al-section-header {
        gap: 12px;
        margin-bottom: 12px;
    }

    .al-section {
        margin-bottom: 32px;
    }

    .al-item {
        padding: 10px 12px;
        min-height: 44px;
        justify-content: center;
    }

    .al-item-name {
        font-size: 13px;
    }

    .al-search-input {
        padding: 13px 95px 13px 42px;
        font-size: 16px;
        border-radius: 12px;
    }

    .al-empty {
        padding: 40px 20px;
    }

    .al-section {
        scroll-margin-top: 80px;
    }

    .al-detail-hero {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .al-facts-row {
        gap: 8px;
    }

    .al-fact-box {
        min-width: 0;
        padding: 12px 8px;
    }

    .al-fact-value {
        font-size: 18px;
    }

    .al-fact-value-sm {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .al-fact-box {
        flex: 1 1 calc(50% - 4px);
    }

    .al-fact-value {
        font-size: 16px;
    }

    .al-fact-value-sm {
        font-size: 12px;
    }
}

/* ============================================
   REDUCED MOTION
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .ticker-track {
        animation: none;
    }

    .hero-orb {
        animation: none;
    }

    .hero-city {
        transition: none;
    }

    .cookie-bar {
        transition: none;
    }
}

/* ===================================================
   CHEAP FLIGHTS (.cf-) — hero, destination grid, route list, modal
   =================================================== */

/* Custom hero for cheap flights */
.cf-hero {
    position: relative;
    padding: 140px 24px 72px;
    text-align: center;
    overflow: hidden;
    background: linear-gradient(135deg, #0F1729 0%, #1a2744 50%, #1f1a30 100%);
}

.cf-hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 40%, rgba(255, 105, 15, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 60%, rgba(255, 140, 0, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 0%, rgba(76, 154, 255, 0.06) 0%, transparent 40%);
    pointer-events: none;
}

.cf-hero-flag {
    border-radius: 6px;
    margin-bottom: 20px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.cf-hero-title {
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: -2px;
    color: #fff;
    margin-bottom: 16px;
}

.cf-hero-sub {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
    margin-bottom: 8px;
}

.cf-hero-sub strong {
    color: #FF8C00;
    font-weight: 800;
}

.cf-hero-desc {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.4);
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Destination grid */
.cf-dest-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.cf-dest-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 22px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 14px;
    text-decoration: none;
    transition: all 0.25s ease;
    position: relative;
}

.cf-dest-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 12px;
    bottom: 12px;
    width: 3px;
    background: linear-gradient(180deg, var(--accent-start), var(--accent-end));
    border-radius: 2px;
    opacity: 0;
    transition: opacity 0.25s ease;
}

.cf-dest-card:hover {
    border-color: rgba(255, 105, 15, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
    transform: translateY(-2px);
}

.cf-dest-card:hover::before {
    opacity: 1;
}

.cf-dest-card .cf-dest-arrow {
    margin-left: auto;
    color: var(--text-tertiary);
    opacity: 0;
    transform: translateX(-4px);
    transition: all 0.25s ease;
    flex-shrink: 0;
}

.cf-dest-card:hover .cf-dest-arrow {
    opacity: 1;
    transform: translateX(0);
}

.cf-dest-flag {
    border-radius: 6px;
    flex-shrink: 0;
    object-fit: cover;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.cf-dest-info {
    display: flex;
    flex-direction: column;
    min-width: 0;
    gap: 4px;
}

.cf-dest-name {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -0.01em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.cf-price {
    font-size: 14px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--accent-start), var(--accent-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cf-dest-meta {
    font-size: 12px;
    font-weight: 500;
    color: var(--text-tertiary);
}

/* Stats bar */
.cf-stats-bar {
    display: flex;
    gap: 32px;
    padding: 16px 0;
    margin-top: 16px;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.cf-stat {
    display: flex;
    align-items: baseline;
    gap: 6px;
}

.cf-stat-value {
    font-size: 20px;
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: -0.5px;
}

.cf-stat-label {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-tertiary);
}

/* Empty state */
.cf-empty-state {
    text-align: center;
    padding: 64px 24px;
    max-width: 520px;
    margin: 0 auto;
}
.cf-empty-state svg {
    color: var(--text-tertiary);
    margin-bottom: 20px;
}
.cf-empty-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
    line-height: 1.3;
}
.cf-empty-desc {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 28px;
}

/* Country hero */
.cf-country-section {
    position: relative;
}

.cf-country-hero {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 28px;
    padding: 34px 38px;
    margin-top: 18px;
    border-radius: 30px;
    overflow: hidden;
    background:
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.55), transparent 32%),
        radial-gradient(circle at bottom left, rgba(255, 140, 0, 0.12), transparent 28%),
        linear-gradient(135deg, #ffffff 0%, #fbfcff 46%, #f5f8ff 100%);
    border: 1px solid rgba(255, 105, 15, 0.12);
    box-shadow: 0 28px 70px rgba(15, 23, 42, 0.08);
}

.cf-country-hero::before {
    content: '';
    position: absolute;
    inset: auto auto -90px -90px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 105, 15, 0.18) 0%, transparent 72%);
    pointer-events: none;
}

.cf-country-hero-copy {
    position: relative;
    z-index: 1;
}

.cf-country-hero-kicker {
    display: inline-flex;
    align-items: center;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 105, 15, 0.08);
    color: var(--primary-color);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.cf-country-title {
    font-size: clamp(34px, 5vw, 52px);
    line-height: 1.02;
    letter-spacing: -0.05em;
    margin: 0 0 10px;
    max-width: 11ch;
}

.cf-country-subtitle {
    margin: 0 0 12px;
    color: #4f5870;
    font-size: 17px;
}

.cf-country-summary {
    margin: 0;
    max-width: 680px;
    font-size: 16px;
    line-height: 1.75;
    color: #667085;
}

.cf-country-chips,
.cf-country-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.cf-country-chips {
    margin-top: 22px;
}

.cf-country-chip {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(148, 163, 184, 0.18);
    color: #435067;
    font-size: 14px;
    font-weight: 700;
    box-shadow: 0 10px 20px rgba(15, 23, 42, 0.04);
}

.cf-country-chip-accent {
    background: linear-gradient(135deg, rgba(255, 105, 15, 0.12), rgba(255, 140, 0, 0.12));
    border-color: rgba(255, 105, 15, 0.16);
    color: var(--primary-color);
}

.cf-country-trust {
    margin-top: 18px;
    color: #5e667b;
    font-size: 14px;
}

.cf-country-trust .check {
    color: var(--primary-color);
    font-weight: 800;
}

.cf-country-hero-flagwrap {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 200px;
    z-index: 1;
}

.cf-country-hero-flagwrap::before {
    content: '';
    position: absolute;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(51, 94, 229, 0.12) 0%, transparent 68%);
}

.cf-country-hero .ab-country-flag-lg {
    width: 140px;
    height: auto;
    border-radius: 18px;
    box-shadow: 0 28px 50px rgba(36, 46, 86, 0.12);
}

/* Route list */
.cf-route-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cf-route-row {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 24px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 14px;
    transition: all 0.2s ease;
}

@media (hover: hover) {
    .cf-route-row:hover {
        border-color: rgba(255, 105, 15, 0.3);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    }
}

.cf-route-codes {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
}

.cf-route-iata {
    font-size: 14px;
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: 0.5px;
}

.cf-route-arrow {
    color: var(--text-tertiary);
    flex-shrink: 0;
}

.cf-route-info {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.cf-route-cities {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.cf-route-airline {
    font-size: 12px;
    color: var(--text-tertiary);
    font-weight: 500;
}

.cf-route-details {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.cf-route-duration {
    font-size: 12px;
    color: var(--text-secondary);
    font-weight: 500;
}

.cf-route-badge {
    font-size: 11px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.cf-badge-direct {
    background: rgba(15, 23, 41, 0.08);
    color: var(--text-primary);
}

.cf-badge-stops {
    background: rgba(15, 23, 41, 0.05);
    color: var(--text-secondary);
}

.cf-route-price-wrap {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    flex-shrink: 0;
    min-width: 70px;
}

.cf-route-price-label {
    font-size: 11px;
    font-weight: 500;
    color: var(--text-tertiary);
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.cf-route-price {
    font-size: 20px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--accent-start), var(--accent-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    flex-shrink: 0;
    line-height: 1.2;
}

/* Signup modal */
.cf-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.cf-modal-card {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.55), transparent 30%),
        linear-gradient(180deg, rgba(255, 105, 15, 0.08) 0%, rgba(255, 255, 255, 0.98) 28%, #fff 100%);
    border: 1px solid rgba(255, 105, 15, 0.12);
    border-radius: 22px;
    padding: 32px;
    max-width: 420px;
    width: 100%;
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.15);
}

.cf-modal-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--accent-start), var(--accent-end));
}

.cf-modal-close {
    position: absolute;
    top: 6px;
    right: 10px;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--text-tertiary);
    cursor: pointer;
    line-height: 1;
    padding: 10px;
    -webkit-tap-highlight-color: transparent;
}

.cf-modal-close:hover {
    color: var(--text-primary);
}

.cf-modal-header {
    text-align: center;
    margin-bottom: 22px;
}

.cf-modal-title {
    font-size: 24px;
    font-weight: 900;
    color: var(--text-primary);
    margin: 0 auto 8px;
    letter-spacing: -0.04em;
    max-width: 11ch;
}

.cf-modal-route {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-secondary);
}

.cf-modal-price {
    font-size: 13px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--accent-start), var(--accent-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-top: 6px;
}

.cf-modal-form {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 16px;
}

.cf-modal-form input[type="email"] {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: 10px;
    font-size: 16px;
    font-family: inherit;
    font-weight: 500;
    color: var(--text-primary);
    outline: none;
    background: var(--white);
    -webkit-appearance: none;
}

.cf-modal-form input[type="email"]:focus {
    border-color: var(--accent-start);
}

.cf-modal-form button {
    width: 100%;
    padding: 12px 20px;
    background: linear-gradient(135deg, var(--accent-start), var(--accent-end));
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    transition: box-shadow 0.2s, transform 0.2s;
    -webkit-appearance: none;
}

.cf-modal-form button:hover {
    box-shadow: 0 4px 16px rgba(255, 105, 15, 0.4);
    transform: translateY(-1px);
}

.cf-modal-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 16px 0;
    color: var(--text-tertiary);
    font-size: 12px;
    font-weight: 600;
}

.cf-modal-divider::before,
.cf-modal-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border);
}

.cf-modal-socials {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.cf-modal-social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex: 1;
    height: 44px;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: var(--white);
    cursor: pointer;
    transition: border-color 0.2s, box-shadow 0.2s;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-primary);
}

.cf-modal-social-btn:hover {
    border-color: var(--accent-start);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.cf-modal-login {
    text-align: center;
    margin-top: 16px;
    font-size: 13px;
    color: var(--text-tertiary);
}

.cf-modal-login a {
    color: var(--accent-start);
    font-weight: 700;
    text-decoration: none;
}

.cf-modal-login a:hover {
    text-decoration: underline;
}

.cf-route-row--clickable {
    cursor: pointer;
    transition: background 0.15s, box-shadow 0.15s;
    -webkit-tap-highlight-color: transparent;
}

@media (hover: hover) {
    .cf-route-row--clickable:hover {
        background: var(--surface);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    }
}

.cf-route-row--clickable:active {
    background: var(--surface);
    transform: scale(0.99);
}

/* Responsive */
@media (max-width: 900px) {
    .cf-dest-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cf-hero {
        padding: 120px 20px 56px;
    }

    .cf-route-row {
        flex-wrap: wrap;
        gap: 12px;
        padding: 14px 16px;
    }

    .cf-country-hero {
        grid-template-columns: 1fr;
        padding: 28px;
    }

    .cf-country-hero-flagwrap {
        justify-content: flex-start;
        min-width: 0;
    }

    .cf-route-details {
        order: 5;
    }
}

@media (max-width: 640px) {
    .cf-dest-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .cf-dest-card {
        padding: 12px 14px;
        gap: 10px;
    }

    .cf-dest-card .cf-dest-arrow {
        display: none;
    }

    .cf-dest-flag {
        width: 36px;
        height: 27px;
    }

    .cf-dest-name {
        font-size: 14px;
    }

    .cf-hero {
        padding: 100px 20px 48px;
    }

    .cf-hero-title {
        letter-spacing: -1px;
    }

    .cf-hero-flag {
        width: 44px;
        height: 33px;
    }

    .cf-stats-bar {
        gap: 20px;
    }

    .cf-country-hero {
        padding: 24px 20px;
        gap: 20px;
        border-radius: 24px;
    }

    .cf-country-title {
        max-width: none;
    }

    .cf-country-chip,
    .cf-country-trust {
        font-size: 13px;
    }

    .cf-route-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .cf-route-codes {
        width: 100%;
    }

    .cf-route-info {
        width: 100%;
    }

    .cf-route-details {
        width: 100%;
        order: 0;
    }

    .cf-route-price-wrap {
        flex-direction: row;
        align-items: baseline;
        gap: 6px;
        width: 100%;
    }

    .cf-route-price-label {
        font-size: 12px;
    }

    .cf-route-price {
        font-size: 20px;
    }

    .cf-modal-overlay {
        padding: 0;
        align-items: stretch;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .cf-modal-card {
        max-width: 100%;
        border-radius: 0;
        padding: 24px 20px;
        padding-top: calc(24px + env(safe-area-inset-top, 0px));
        padding-bottom: calc(24px + env(safe-area-inset-bottom, 0px));
        min-height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .cf-modal-social-btn {
        height: 44px;
        font-size: 12px;
        gap: 6px;
        flex: 1;
        min-width: 0;
    }

    .cf-modal-social-btn span {
        white-space: nowrap;
    }
}

@media (max-width: 480px) {
    .cf-dest-card {
        padding: 10px 12px;
        gap: 8px;
    }

    .cf-price {
        font-size: 13px;
    }

    .cf-dest-meta {
        font-size: 11px;
    }


    .cf-route-row {
        padding: 14px;
        gap: 8px;
    }

    .cf-modal-title {
        font-size: 20px;
    }

    .cf-empty-state {
        padding: 48px 20px;
    }

    .cf-empty-title {
        font-size: 19px;
    }

    .cf-empty-desc {
        font-size: 14px;
    }
}

@media (max-width: 400px) {
    .cf-dest-grid {
        grid-template-columns: 1fr;
    }

    .cf-dest-card {
        padding: 14px 16px;
        gap: 14px;
    }

    .cf-dest-card .cf-dest-arrow {
        display: flex;
    }

    .cf-price {
        font-size: 14px;
    }
}

/* ===================================================
   FAQ PAGE
   =================================================== */

.faq-group {
    margin-bottom: 40px;
}

.faq-group:last-child {
    margin-bottom: 0;
}

.faq-group-title {
    font-size: 18px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 16px;
    letter-spacing: -0.3px;
}

.faq-item {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 8px;
    overflow: hidden;
    transition: border-color 0.15s ease;
}

.faq-item:hover {
    border-color: rgba(255, 105, 15, 0.3);
}

.faq-item.faq-open {
    border-color: var(--accent-start);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 20px;
    background: var(--white);
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
    text-align: left;
    line-height: 1.4;
}

.faq-chevron {
    flex-shrink: 0;
    color: var(--text-tertiary);
    transition: transform 0.2s ease;
}

.faq-item.faq-open .faq-chevron {
    transform: rotate(180deg);
    color: var(--accent-start);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease;
}

.faq-item.faq-open .faq-answer {
    max-height: 1000px;
}

.faq-answer p {
    padding: 0 20px 16px;
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-secondary);
}

.faq-answer a {
    color: var(--accent-start);
    font-weight: 600;
    text-decoration: none;
}

.faq-answer a:hover {
    text-decoration: underline;
}

/* ===================================================
   PAGINATION (public pages)
   =================================================== */

.fr-pagination {
    margin-top: 24px;
}

.pagination-nav {
    display: flex;
    justify-content: center;
}

.pagination-list {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.pagination-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 36px;
    padding: 0 10px;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-secondary);
    text-decoration: none;
    background: var(--white);
    transition: all 0.15s ease;
    cursor: pointer;
}

.pagination-link:hover {
    border-color: var(--accent-start);
    color: var(--accent-start);
}

.pagination-active .pagination-link {
    background: linear-gradient(135deg, var(--accent-start), var(--accent-end));
    color: #fff;
    border-color: transparent;
}

.pagination-disabled .pagination-link {
    opacity: 0.4;
    cursor: default;
    pointer-events: none;
}

.pagination-dots .pagination-link {
    border: none;
    background: none;
    cursor: default;
    min-width: 24px;
    padding: 0;
}

@media (max-width: 640px) {
    .pagination-list {
        flex-wrap: wrap;
        justify-content: center;
    }

    .pagination-link {
        min-width: 32px;
        height: 32px;
        font-size: 12px;
        padding: 0 8px;
    }
}

/* ===================================================
   ABOUT PAGE
   =================================================== */

.about-values {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.about-value-card {
    padding: 28px 24px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 14px;
    transition: border-color 0.15s ease;
}

.about-value-card:hover {
    border-color: rgba(255, 105, 15, 0.3);
}

.about-value-icon {
    margin-bottom: 16px;
}

.about-value-title {
    font-size: 17px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 8px;
    letter-spacing: -0.2px;
    line-height: 1.3;
}

.about-value-text {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-secondary);
}

.about-stats-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.about-stat-item {
    text-align: center;
    padding: 24px 16px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 14px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 110px;
}

.about-stat-number {
    font-size: clamp(18px, 2.5vw, 24px);
    font-weight: 900;
    letter-spacing: -0.5px;
    margin-bottom: 4px;
    line-height: 1.1;
    overflow-wrap: break-word;
    background: linear-gradient(135deg, var(--accent-start), var(--accent-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-stat-label {
    font-size: clamp(11px, 1.2vw, 12px);
    color: var(--text-secondary);
    font-weight: 500;
    line-height: 1.35;
    overflow-wrap: break-word;
    word-break: break-word;
}

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

    .about-stat-item {
        min-height: 100px;
    }
}

@media (max-width: 640px) {
    .about-values {
        grid-template-columns: 1fr;
    }

    .about-stats-bar {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .about-stat-item {
        padding: 20px 12px;
        min-height: 90px;
    }

    .about-stat-number {
        font-size: 20px;
    }

    .about-stat-label {
        font-size: 11px;
    }
}

@media (max-width: 400px) {
    .about-stats-bar {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .about-stat-item {
        flex-direction: row;
        gap: 12px;
        text-align: left;
        padding: 16px 20px;
        min-height: 0;
    }

    .about-stat-number {
        font-size: 24px;
        flex-shrink: 0;
        margin-bottom: 0;
    }

    .about-stat-label {
        font-size: 13px;
    }
}

/* ===================================================
   SITEMAP PAGE
   =================================================== */

.sm-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    column-gap: 64px;
}

.sm-group {
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--border);
    border-radius: 0;
    padding: 32px 0;
}

.sm-group:last-child {
    border-bottom: none;
}

.sm-group-wide {
    grid-column: 1 / -1;
}

.sm-group-title {
    font-size: 18px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
    padding-left: 12px;
    border-left: 3px solid var(--accent-start);
    overflow-wrap: break-word;
}

.sm-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sm-list li {
    margin-bottom: 10px;
}

.sm-list a {
    font-size: 15px;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.15s ease;
    display: inline-block;
    max-width: 100%;
    overflow-wrap: break-word;
    -webkit-tap-highlight-color: transparent;
}

@media (hover: hover) {
    .sm-list a:hover {
        color: var(--accent-start);
        transform: translateX(3px);
    }
}

.sm-list a:active {
    color: var(--accent-start);
}

.sm-list a strong {
    color: var(--text-primary);
}

.sm-list-cols {
    columns: 3;
    column-gap: 24px;
}

.sm-meta {
    font-size: 12px;
    color: var(--text-tertiary);
    margin-left: 4px;
}

.sm-group-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    font-family: inherit;
}

.sm-group-toggle .sm-group-title {
    margin-bottom: 0;
    flex: 1;
    text-align: left;
}

.sm-group-count {
    font-size: 12px;
    font-weight: 700;
    color: var(--text-tertiary);
    background: rgba(15, 23, 41, 0.05);
    padding: 2px 8px;
    border-radius: 10px;
}

.sm-chevron {
    color: var(--text-tertiary);
    transition: transform 0.2s ease;
    flex-shrink: 0;
}

.sm-open .sm-chevron {
    transform: rotate(180deg);
}

.sm-expand {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.sm-open .sm-expand {
    max-height: 2000px;
    margin-top: 16px;
}

.sm-browse-note {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
}

.sm-browse-note a {
    color: var(--accent-start);
    font-weight: 600;
    text-decoration: none;
}

@media (hover: hover) {
    .sm-browse-note a:hover {
        text-decoration: underline;
    }
}

@media (max-width: 900px) {
    .sm-grid {
        grid-template-columns: 1fr;
        column-gap: 0;
    }

    .sm-list-cols {
        columns: 2;
    }
}

@media (max-width: 640px) {
    .sm-list-cols {
        columns: 1;
    }

    .sm-group {
        padding: 24px 0;
    }
}

/* ===================================================
   FAQ PAGE — Dark Background
   =================================================== */

/* faq-hero-section removed — FAQ now uses standard page-hero */
.faq-hero-section {
    display: none;
    padding-bottom: 80px;
}

.faq-hero-section .page-hero {
    background: transparent;
}

.faq-hero-section .page-hero-title,
.faq-hero-section .section-label {
    color: #fff;
}

.faq-hero-section .page-hero-subtitle {
    color: rgba(255, 255, 255, 0.6);
}

.faq-content {
    position: relative;
    z-index: 1;
}

.faq-content .faq-group {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 28px 24px;
    margin-bottom: 16px;
    box-shadow: var(--card-shadow);
}

.faq-content .faq-group:last-child {
    margin-bottom: 0;
}

/* ═══════════════════════════════════════════════════
   Airport Distance Calculator (.adc-)
   ═══════════════════════════════════════════════════ */

/* Calculator */
.adc-calc-wrap {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px 24px;
    box-shadow: var(--card-shadow);
}

.adc-calc-row {
    display: flex;
    align-items: flex-end;
    gap: 12px;
    position: relative;
    z-index: 2;
}

.adc-input-wrap {
    flex: 1;
    position: relative;
}

.adc-input-label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-secondary);
    margin-bottom: 6px;
}

.adc-input {
    width: 100%;
    padding: 12px 14px;
    font-size: 16px;
    font-weight: 500;
    color: var(--text-primary);
    background: var(--bg-warm);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    outline: none;
    transition: border-color 0.2s;
    font-family: inherit;
}

.adc-input:focus {
    border-color: var(--accent-solid);
}

.adc-input::placeholder {
    color: var(--text-muted);
    opacity: 0.6;
}

.adc-swap-btn {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    color: var(--accent-start);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 20px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s;
}

.adc-swap-btn:hover {
    background: rgba(255, 105, 15, 0.06);
    border-color: var(--accent-start);
}

.adc-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 50;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    max-height: 260px;
    overflow-y: auto;
    margin-top: 4px;
}

.adc-dropdown-item {
    padding: 10px 14px;
    font-size: 14px;
    color: var(--text-primary);
    cursor: pointer;
    border-bottom: 1px solid var(--border);
    transition: background 0.15s;
}

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

.adc-dropdown-item:hover {
    background: rgba(255, 105, 15, 0.08);
}

.adc-dropdown-item strong {
    color: var(--accent-solid);
    font-weight: 800;
}

.adc-calc-btn {
    display: block;
    width: 100%;
    margin-top: 16px;
    padding: 14px;
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(135deg, var(--accent-start), var(--accent-end));
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: opacity 0.2s;
    font-family: inherit;
    position: relative;
    z-index: 1;
}

.adc-calc-btn:hover {
    opacity: 0.9;
}

/* Database list */
.adc-db-list {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--card-shadow);
}

.adc-db-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    border-bottom: 1px solid var(--border);
    text-decoration: none;
    color: var(--text-primary);
    transition: background 0.15s;
}

.adc-db-row:last-child {
    border-bottom: none;
}

.adc-db-row:hover {
    background: rgba(255, 105, 15, 0.04);
}

.adc-db-route {
    font-size: 15px;
    font-weight: 600;
    min-width: 0;
    overflow-wrap: break-word;
    word-break: break-word;
}

.adc-db-codes {
    margin-left: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--accent-start);
}

.adc-db-distance {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-primary);
    white-space: nowrap;
    flex-shrink: 0;
    margin-left: 12px;
}

/* Popular routes — clean inline list */
.adc-popular-list {
    columns: 2;
    column-gap: 32px;
}

.adc-popular-item {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
    padding: 8px 0;
    border-bottom: 1px solid var(--border);
    text-decoration: none;
    color: var(--text-primary);
    break-inside: avoid;
}

.adc-popular-item:hover .adc-popular-route {
    color: var(--accent-solid);
}

.adc-popular-route {
    font-size: 14px;
    font-weight: 600;
    transition: color 0.15s;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    min-width: 0;
}

.adc-popular-code {
    color: var(--accent-start);
    font-weight: 600;
}

.adc-popular-arrow {
    color: var(--text-muted);
    font-weight: 400;
}

.adc-popular-miles {
    color: #6B6B6B;
}

.adc-popular-detail {
    font-size: 12px;
    font-weight: 500;
    color: var(--text-secondary);
    white-space: nowrap;
}

/* Light CTA banner */
.adc-cta-light {
    text-align: center;
    padding: 40px 28px;
    border-radius: var(--radius);
    background: #0F1729;
    color: #fff;
}

.adc-cta-light-eyebrow {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--accent-start);
    margin-bottom: 8px;
}

.adc-cta-light-title {
    font-size: 20px;
    font-weight: 800;
    color: #fff;
    line-height: 1.3;
    margin-bottom: 8px;
}

.adc-cta-light-sub {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 20px;
}

.adc-cta-light-btn {
    display: inline-block;
    padding: 12px 32px;
    background: linear-gradient(135deg, var(--accent-start), var(--accent-end));
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    border-radius: var(--radius-sm);
    text-decoration: none;
    transition: box-shadow 0.2s, transform 0.2s;
}

.adc-cta-light-btn:hover {
    box-shadow: 0 4px 16px rgba(255, 105, 15, 0.3);
    transform: translateY(-1px);
}

.adc-cta-light .cta-social-row {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.adc-cta-light .cta-social-label {
    color: rgba(255, 255, 255, 0.35);
    font-size: 11px;
    margin-right: 2px;
}

.adc-cta-light .cta-social-stack {
    flex-direction: row;
    gap: 8px;
    width: auto;
}

.adc-cta-light .auth-social-btn {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.12);
    color: #fff;
}

.adc-cta-light .auth-social-btn:hover {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.2);
}

.adc-cta-light .auth-social-btn--apple {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.12);
    color: #fff;
}

.adc-cta-light .auth-social-btn--apple:hover {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.2);
    color: #fff;
}

/* Result extras */
.adc-direction-icon {
    display: inline-block;
    font-size: 18px;
    line-height: 1;
    margin-left: 4px;
    vertical-align: middle;
}

.adc-reverse-link {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: color 0.2s;
}

.adc-reverse-link:hover {
    color: var(--accent-solid);
}

.adc-airport-flag {
    vertical-align: middle;
    margin-right: 6px;
    border-radius: 2px;
}

/* Responsive */
@media (max-width: 640px) {
    .adc-calc-row {
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
    }

    .adc-swap-btn {
        width: 48px;
        height: 40px;
        align-self: center;
        font-size: 15px;
        border-radius: 20px;
    }

    .adc-input {
        font-size: 16px;
    }

    .adc-calc-wrap {
        padding: 16px 12px;
    }

    .adc-db-row {
        padding: 12px 14px;
    }

    .adc-db-route {
        font-size: 14px;
    }

    .adc-db-codes {
        display: block;
        margin-left: 0;
        margin-top: 2px;
    }

    .adc-db-distance {
        font-size: 13px;
    }

    .adc-popular-list {
        columns: 1;
        background: var(--white);
        border: 1px solid var(--border);
        border-radius: var(--radius);
        padding: 0 14px;
        box-shadow: var(--card-shadow);
    }

    .adc-popular-route {
        font-size: 13px;
        white-space: normal;
    }

    .adc-popular-detail {
        font-size: 11px;
    }

    .adc-cta-light {
        padding: 24px 20px;
    }

    .adc-cta-light-title {
        font-size: 18px;
    }

    .adc-dropdown-item {
        padding: 12px 14px;
    }
}

@media (max-width: 480px) {
    .adc-db-row {
        padding: 10px 12px;
        flex-wrap: wrap;
        gap: 2px 0;
    }

    .adc-db-route {
        font-size: 13px;
        flex: 1 1 0;
        min-width: 0;
    }

    .adc-db-distance {
        font-size: 12px;
        margin-left: 8px;
    }

    .adc-popular-miles {
        display: none;
    }

    .adc-calc-btn {
        font-size: 14px;
        padding: 12px;
    }

    .adc-cta-light-title {
        font-size: 16px;
    }

    .adc-cta-light-sub {
        font-size: 13px;
    }

    .adc-cta-light-eyebrow {
        font-size: 10px;
    }

    .adc-cta-light .cta-social-row {
        flex-direction: column;
    }

    .adc-cta-light .cta-social-stack {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* Flights board — mobile card layout */
@media (max-width: 768px) {
    .ab-flights-toolbar {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }

    .ab-flights-live-info {
        justify-content: space-between;
        padding: 0 4px;
    }

    .ab-flights-row-header {
        display: none;
    }

    .ab-flights-row:not(.ab-flights-row-header) {
        flex-wrap: wrap;
        padding: 14px 16px 14px 12px;
        gap: 4px 12px;
    }

    .ab-flights-status-bar {
        top: 8px;
        bottom: 8px;
    }

    .ab-flights-col-time {
        flex: 0 0 auto;
        order: 1;
        padding-left: 8px;
    }

    .ab-flights-col-flight {
        flex: 0 0 auto;
        order: 2;
    }

    .ab-flights-col-status {
        flex: 0 0 auto;
        text-align: right;
        order: 3;
        margin-left: auto;
    }

    .ab-flights-col-airline {
        flex: 1 1 100%;
        order: 4;
        padding-left: 8px;
    }

    .ab-flights-col-airport {
        flex: 1 1 auto;
        order: 5;
        padding-left: 8px;
    }

    .ab-flights-col-flight,
    .ab-flights-col-time,
    .ab-flights-col-airport,
    .ab-flights-col-status {
        flex-basis: auto;
    }

    .ab-flights-tabs {
        width: 100%;
    }

    .ab-flights-tab {
        flex: 1;
        justify-content: center;
        padding: 12px 12px;
        font-size: 0.85rem;
        min-height: 44px;
    }

    .ab-flights-pager {
        flex-wrap: wrap;
        gap: 10px;
        justify-content: center;
        padding: 12px 14px;
    }

    .ab-pager-info {
        width: 100%;
        text-align: center;
    }

    .ab-pager-btn {
        min-width: 30px;
        height: 30px;
        font-size: 0.75rem;
    }
}

/* Flights board — small phones */
@media (max-width: 480px) {
    .ab-flights-tab svg {
        display: none;
    }

    .ab-flights-tab {
        padding: 8px 10px;
        font-size: 0.78rem;
        gap: 6px;
    }

    .ab-flights-row:not(.ab-flights-row-header) {
        padding: 12px 12px 12px 10px;
        gap: 4px 10px;
    }

    .ab-flights-logo,
    .ab-flights-logo-fallback {
        width: 26px;
        height: 26px;
        border-radius: 5px;
    }

    .ab-flights-logo-fallback {
        font-size: 0.55rem;
    }

    .ab-flights-airline-name {
        font-size: 0.78rem;
    }

    .ab-flights-status {
        padding: 3px 8px;
        font-size: 0.65rem;
    }

    .ab-flights-time {
        font-size: 0.9rem;
    }

    .ab-flights-flight-num {
        font-size: 0.78rem;
    }

    .ab-flights-aircraft {
        font-size: 0.6rem;
    }

    .ab-flights-airport-iata {
        font-size: 0.72rem;
        padding: 2px 6px;
    }

    .ab-flights-airport-city {
        font-size: 0.78rem;
    }

    .ab-flights-col-airline {
        gap: 8px;
    }

    .ab-flights-pager {
        padding: 10px 12px;
    }

    .ab-pager-btn {
        min-width: 36px;
        height: 36px;
        font-size: 0.75rem;
    }

    .ab-pager-ellipsis {
        width: 24px;
        height: 36px;
    }
}

/* ============================================
   ONBOARDING: SEARCH NAME STEP
   ============================================ */
.ob-search-name-field {
    margin-bottom: 16px;
}

.ob-input-lg {
    width: 100%;
    padding: 14px 16px;
    font-size: 16px;
    border: 2px solid var(--border-color, #e2e8f0);
    border-radius: 10px;
    background: var(--white, #fff);
    color: var(--text-primary, #1a1a2e);
    transition: border-color 0.2s;
}

.ob-input-lg:focus {
    outline: none;
    border-color: var(--primary, #4F46E5);
}

.ob-search-name-suggestions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
    margin-bottom: 24px;
}

.ob-search-name-suggestions-label {
    font-size: 13px;
    color: var(--text-secondary, #64748b);
    font-weight: 500;
}

.ob-search-name-suggestion {
    display: inline-block;
    padding: 5px 12px;
    font-size: 12px;
    font-weight: 500;
    background: var(--bg-secondary, #f8fafc);
    color: var(--text-secondary, #475569);
    border: 1px solid var(--border-color, #e2e8f0);
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.15s;
}

.ob-search-name-suggestion:hover {
    background: var(--primary, #4F46E5);
    color: #fff;
    border-color: var(--primary, #4F46E5);
}

.ob-step-icon-blue {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4F46E5, #6366F1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}
