/* ============================================
   CSS VARIABLES
   ============================================ */
:root {
    --white: #ffffff;
    --bg-warm: #FFF8F4;
    --bg-section: #FAF7F4;
    --bg-dark: #0F1729;
    --bg-dark-card: #1A2340;
    --text-primary: #0F1729;
    --text-secondary: #5E6678;
    --text-tertiary: #9CA3B4;
    --accent-start: #FF6B6B;
    --accent-end: #FF8E53;
    --accent-solid: #FF6B6B;
    --accent-hover: #FF5252;
    --blue: #4C9AFF;
    --green: #36D399;
    --purple: #6C5CE7;
    --gold: #FFB800;
    --card-shadow: 0 2px 16px rgba(15, 23, 41, 0.06);
    --card-shadow-hover: 0 16px 48px rgba(15, 23, 41, 0.12);
    --border: rgba(15, 23, 41, 0.08);
    --radius: 20px;
    --radius-sm: 14px;
    --radius-full: 100px;
}

/* ============================================
   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%;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--white);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ============================================
   NAVIGATION
   ============================================ */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0 48px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0);
    border-bottom: 1px solid transparent;
    transition: all 0.35s ease;
}

nav.scrolled {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom-color: var(--border);
    box-shadow: 0 1px 12px rgba(15, 23, 41, 0.04);
}

.nav-logo {
    font-size: 42px;
    font-weight: 900;
    letter-spacing: -1px;
    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-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 {
    color: var(--text-primary);
}

.nav-login {
    font-weight: 600 !important;
    color: var(--text-primary) !important;
    border: 1.5px solid var(--border) !important;
    padding: 8px 20px !important;
    border-radius: var(--radius-full) !important;
    transition: border-color 0.2s ease, background 0.2s ease !important;
}
.nav-login:hover {
    border-color: var(--text-tertiary) !important;
    background: rgba(15, 23, 41, 0.03) !important;
}

.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, 107, 107, 0.3);
}

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

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

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 100px 24px 48px;
    overflow: hidden;
    background:
        radial-gradient(ellipse at 15% 50%, rgba(255, 107, 107, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 85% 20%, rgba(76, 154, 255, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 90%, rgba(255, 142, 83, 0.08) 0%, transparent 40%),
        radial-gradient(ellipse at 70% 60%, rgba(108, 92, 231, 0.05) 0%, transparent 40%),
        linear-gradient(180deg, var(--bg-warm) 0%, var(--white) 100%);
}

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

.hero-orb-1 {
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.4), rgba(255, 142, 83, 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;
    z-index: 2;
    max-width: 880px;
}

.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-subtitle {
    font-size: clamp(17px, 2.2vw, 21px);
    color: var(--text-secondary);
    max-width: 560px;
    margin: 20px auto 32px;
    line-height: 1.7;
    font-weight: 400;
}

.hero-form {
    display: flex;
    gap: 0;
    max-width: 480px;
    margin: 0 auto 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, 107, 107, 0.12), 0 0 0 4px rgba(255, 107, 107, 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;
    white-space: nowrap;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 16px rgba(255, 107, 107, 0.25);
}

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

.hero-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 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);
}

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

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

.section-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 540px;
    line-height: 1.7;
}

.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: 140px 24px 64px;
    text-align: center;
    background:
        radial-gradient(ellipse at 30% 50%, rgba(255, 107, 107, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 30%, rgba(76, 154, 255, 0.05) 0%, transparent 50%),
        linear-gradient(180deg, var(--bg-warm) 0%, var(--white) 100%);
}

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

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

/* ============================================
   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, 107, 107, 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, 107, 107, 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, 107, 107, 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;
}

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

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

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

.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, 107, 107, 0.12), rgba(255, 142, 83, 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;
}

/* ============================================
   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(340px, 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;
}

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

.deal-city-name {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 2px;
    font-weight: 500;
}

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

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

.deal-arrow-icon {
    margin: 0 8px;
    color: rgba(255, 255, 255, 0.25);
}

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

.pricing-card-max {
    border-color: var(--purple);
    box-shadow: 0 8px 40px rgba(108, 92, 231, 0.12);
    background: linear-gradient(180deg, #F5F3FF 0%, var(--white) 100%);
}

.pricing-card-max:hover {
    box-shadow: 0 16px 56px rgba(108, 92, 231, 0.18);
}

.pricing-btn-max {
    background: linear-gradient(135deg, var(--purple), #A855F7) !important;
    box-shadow: 0 4px 16px rgba(108, 92, 231, 0.3) !important;
}

.pricing-btn-max:hover {
    box-shadow: 0 8px 24px rgba(108, 92, 231, 0.4) !important;
}

.pricing-card-pro {
    border-color: var(--accent-start);
    box-shadow: 0 8px 40px rgba(255, 107, 107, 0.12);
    background: linear-gradient(180deg, #FFF5F3 0%, var(--white) 100%);
}

.pricing-card-pro:hover {
    box-shadow: 0 16px 56px rgba(255, 107, 107, 0.18);
}

.pricing-popular {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--accent-start), var(--accent-end));
    color: var(--white);
    padding: 6px 24px;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 0 4px 12px rgba(255, 107, 107, 0.3);
}

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

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

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

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

.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: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(54, 211, 153, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

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

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

.pricing-features li .pf-muted {
    color: var(--text-tertiary);
}

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

.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: linear-gradient(135deg, var(--accent-start), var(--accent-end));
    color: var(--white);
    box-shadow: 0 4px 16px rgba(255, 107, 107, 0.3);
}

.pricing-btn-fill:hover {
    box-shadow: 0 8px 24px rgba(255, 107, 107, 0.4);
}

.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: 300px;
}

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

/* ============================================
   FINAL CTA
   ============================================ */
.final-cta {
    text-align: center;
    padding: 120px 24px 140px;
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(ellipse at 30% 50%, rgba(255, 107, 107, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 50%, rgba(76, 154, 255, 0.06) 0%, transparent 50%),
        linear-gradient(180deg, var(--white) 0%, var(--bg-warm) 100%);
}

.final-cta-content {
    position: relative;
    z-index: 2;
}

.final-headline {
    font-size: clamp(34px, 4.5vw, 56px);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -2px;
    margin-bottom: 20px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    color: var(--text-primary);
}

.final-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.final-cta-form {
    max-width: 480px;
    margin: 0 auto 24px;
}

.final-cta-trust {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
    font-size: 13px;
    color: var(--text-tertiary);
}
.final-cta-trust .check {
    color: var(--green);
    font-weight: 700;
    margin-right: 4px;
}

/* ============================================
   AUTH PAGES
   ============================================ */
.auth-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 24px 80px;
    background:
        radial-gradient(ellipse at 30% 30%, rgba(255, 107, 107, 0.05) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 70%, rgba(76, 154, 255, 0.04) 0%, transparent 50%),
        linear-gradient(180deg, var(--bg-warm) 0%, var(--white) 100%);
}

.auth-card {
    width: 100%;
    max-width: 440px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: 0 4px 32px rgba(15, 23, 41, 0.06);
    padding: 48px 40px;
    text-align: center;
}

.auth-logo {
    font-size: 28px;
    font-weight: 900;
    letter-spacing: -0.5px;
    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: 26px;
    font-weight: 800;
    letter-spacing: -0.5px;
    margin-bottom: 8px;
    color: var(--text-primary);
}

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

.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: 15px;
    color: var(--text-primary);
    background: var(--white);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    outline: none;
}

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

.form-input:focus {
    border-color: var(--accent-start);
    box-shadow: 0 0 0 4px rgba(255, 107, 107, 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-start);
    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 {
    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;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 16px rgba(255, 107, 107, 0.25);
}

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

.auth-alt {
    margin-top: 28px;
    font-size: 14px;
    color: var(--text-secondary);
    text-align: center;
}

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

.auth-alt a:hover {
    text-decoration: underline;
}

/* ============================================
   LEGAL PAGES
   ============================================ */
.legal-page {
    padding: 140px 24px 100px;
    background: linear-gradient(180deg, var(--bg-warm) 0%, var(--white) 60px, var(--white) 100%);
}

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

.legal-header {
    margin-bottom: 48px;
}

.legal-title {
    font-size: clamp(32px, 4vw, 44px);
    font-weight: 800;
    letter-spacing: -1.5px;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.legal-updated {
    font-size: 14px;
    color: var(--text-tertiary);
}

.legal-content {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-secondary);
}

.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 a {
    color: var(--accent-start);
    text-decoration: none;
    font-weight: 500;
}

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

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

/* ============================================
   FOOTER
   ============================================ */
footer {
    background: var(--bg-dark);
    padding: 64px 24px 32px;
}

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

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand {
    max-width: 240px;
}

.footer-logo {
    font-size: 22px;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 12px;
}

.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-tagline {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.6;
}

.footer-col-title {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 16px;
}

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

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

.footer-col-links a {
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s ease;
}

.footer-col-links a:hover {
    color: rgba(255, 255, 255, 0.85);
}

.footer-bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 24px;
}

.footer-copy {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.3);
}

/* ============================================
   COOKIE BAR
   ============================================ */
.cookie-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    padding: 0 24px;
    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: 640px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 16px 24px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: 0 8px 32px rgba(15, 23, 41, 0.1);
}

.cookie-bar-content {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
}

.cookie-bar-icon {
    flex-shrink: 0;
    color: var(--text-tertiary);
}

.cookie-bar-text {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Hide cookie bar on mobile */
@media (max-width: 768px) {
    .cookie-bar {
        display: none !important;
    }
}

.cookie-bar-text a {
    color: var(--text-primary);
    text-decoration: underline;
    text-underline-offset: 2px;
    font-weight: 600;
}

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

.cookie-bar-btn {
    padding: 8px 20px;
    border-radius: var(--radius-full);
    font-family: inherit;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: transform 0.15s ease, opacity 0.15s ease;
}

.cookie-bar-btn:hover {
    transform: scale(1.03);
}

.cookie-bar-btn-manage {
    background: transparent;
    color: var(--text-secondary);
}

.cookie-bar-btn-manage:hover {
    background: var(--bg-section);
    color: var(--text-primary);
}

.cookie-bar-btn-accept {
    background: var(--text-primary);
    color: var(--white);
}

/* ============================================
   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: var(--accent-start);
    text-align: left;
    line-height: 1.5;
}

/* ============================================
   DASHBOARD HEADER & LAYOUT
   ============================================ */
.dash-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    height: 56px;
}

.dash-header-inner {
    display: flex;
    align-items: center;
    height: 56px;
    gap: 28px;
    padding: 0 24px;
    position: relative;
}

.dash-header-nav {
    display: flex;
    align-items: center;
    gap: 2px;
}

.dash-header-link {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 13.5px;
    font-weight: 500;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.15s ease;
    position: relative;
}

.dash-header-link::after {
    content: "";
    position: absolute;
    bottom: -11px;
    left: 8px;
    right: 8px;
    height: 2px;
    background: var(--accent-start);
    border-radius: 2px 2px 0 0;
    opacity: 0;
    transform: scaleX(0);
    transition: all 0.2s ease;
}

.dash-header-link:hover {
    color: var(--text-primary);
}

.dash-header-link.active {
    color: var(--accent-start);
    font-weight: 600;
}

.dash-header-link.active::after {
    opacity: 1;
    transform: scaleX(1);
}

.dash-header-right {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: auto;
}

/* User dropdown */
.dash-user-dropdown {
    position: relative;
}

.dash-user-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 4px 10px 4px 4px;
    border: 1px solid var(--border);
    border-radius: var(--radius-full);
    background: var(--white);
    font-family: inherit;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.15s ease;
    white-space: nowrap;
    max-width: 220px;
}

.dash-user-btn:hover {
    border-color: var(--text-tertiary);
    color: var(--text-primary);
}

.dash-user-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-start), var(--accent-end));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 12px;
    flex-shrink: 0;
}

.dash-user-email {
    overflow: hidden;
    text-overflow: ellipsis;
}

.dash-user-chevron {
    flex-shrink: 0;
    opacity: 0.4;
    transition: transform 0.2s ease;
}

.dash-user-menu {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    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;
}

.dash-user-menu.open {
    display: block;
}

.dash-user-menu-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 16px;
    border-bottom: 1px solid var(--border);
}

.dash-user-menu-email {
    font-size: 12px;
    color: var(--text-tertiary);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.dash-user-menu-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    text-decoration: none;
    transition: background 0.12s ease;
    border: none;
    background: none;
    width: 100%;
    cursor: pointer;
    font-family: inherit;
    text-align: left;
}

.dash-user-menu-item:hover {
    background: var(--bg-section);
    color: var(--text-primary);
}

.dash-user-menu-item svg {
    flex-shrink: 0;
    stroke: var(--text-tertiary);
}

.dash-user-menu-divider {
    height: 1px;
    background: var(--border);
    margin: 4px 0;
}

.dash-user-menu-logout {
    color: var(--text-tertiary);
}

.dash-user-menu-logout:hover {
    color: #ef4444;
    background: #fef2f2;
}

.dash-user-menu-logout:hover svg {
    stroke: #ef4444;
}

/* Mobile */
.dash-mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-primary);
    padding: 4px;
    margin-left: auto;
}

.dash-mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 200;
    background: var(--white);
    padding: 80px 24px 32px;
    flex-direction: column;
    gap: 4px;
    overflow-y: auto;
}

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

.dash-mobile-menu-close {
    position: absolute;
    top: 16px;
    right: 20px;
    background: none;
    border: none;
    font-size: 32px;
    cursor: pointer;
    color: var(--text-primary);
}

.dash-mobile-menu-user {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0 20px;
    margin-bottom: 8px;
    border-bottom: 1px solid var(--border);
}

.dash-mobile-menu a {
    display: block;
    padding: 14px 0;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    text-decoration: none;
}

.dash-mobile-menu-lang {
    padding: 12px 0;
    border-top: 1px solid var(--border);
    margin-top: 8px;
}

.dash-mobile-menu-logout {
    display: block;
    width: 100%;
    text-align: left;
    padding: 14px 0;
    margin-top: auto;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-tertiary);
    background: none;
    border: none;
    border-top: 1px solid var(--border);
    font-family: inherit;
    cursor: pointer;
}

/* Impersonation bar */
.dash-impersonation-bar {
    background: #FF6B6B;
    color: #fff;
    text-align: center;
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 600;
}

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

/* Main content wrap */
.dash-main-wrap {
    padding: 88px 0 60px;
    min-height: 100vh;
    background: var(--bg-section);
}

.dash-main-wrap .container {
    padding: 0 24px;
}

/* ============================================
   DASHBOARD CONTENT STYLES (consolidated)
   ============================================ */
.dash-page-header {
    margin-bottom: 28px;
}

.dash-page-title {
    font-size: 26px;
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.dash-page-desc {
    font-size: 14px;
    color: var(--text-secondary);
    margin-top: 4px;
}

/* Content card — the bordered container ("chenar") */
.dash-content-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--card-shadow);
    padding: 32px;
}

/* Dashboard forms */
.dash-form-group {
    margin-bottom: 20px;
}

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

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

.dash-form-input:focus {
    outline: none;
    border-color: var(--accent-start);
    box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.1);
}

.dash-form-input:disabled {
    background: var(--bg-section);
    color: var(--text-tertiary);
    cursor: not-allowed;
}

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

select.dash-form-input {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M6 8L1 3h10z' fill='%236b7280'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 36px;
    cursor: pointer;
}

textarea.dash-form-input {
    resize: vertical;
    min-height: 80px;
    line-height: 1.6;
}

.dash-form-error {
    color: #ef4444;
    font-size: 12px;
    margin-top: 4px;
}

.dash-form-hint {
    color: var(--text-tertiary);
    font-size: 12px;
    margin-top: 4px;
}

/* Dashboard buttons */
.dash-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 600;
    font-family: inherit;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
}

.dash-btn-primary {
    background: var(--accent-start);
    color: #fff;
}

.dash-btn-primary:hover {
    background: #e05a5a;
}

.dash-btn-secondary {
    background: var(--bg-section);
    color: var(--text-secondary);
}

.dash-btn-secondary:hover {
    background: #e5e7eb;
    color: var(--text-primary);
}

.dash-btn-danger {
    background: #ef4444;
    color: #fff;
}

.dash-btn-danger:hover {
    background: #dc2626;
}

.dash-btn-outline-danger {
    background: none;
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.dash-btn-outline-danger:hover {
    background: rgba(239, 68, 68, 0.06);
}

/* Toggle switch */
.dash-toggle {
    position: relative;
    display: inline-block;
    width: 44px;
    height: 24px;
    flex-shrink: 0;
}

.dash-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.dash-toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #e5e7eb;
    border-radius: 24px;
    transition: 0.3s;
}

.dash-toggle-slider::before {
    content: "";
    position: absolute;
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background: #fff;
    border-radius: 50%;
    transition: 0.3s;
}

.dash-toggle input:checked + .dash-toggle-slider {
    background: var(--accent-start);
}

.dash-toggle input:checked + .dash-toggle-slider::before {
    transform: translateX(20px);
}

.dash-toggle input:disabled + .dash-toggle-slider {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Setting rows */
.dash-setting-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
}

.dash-setting-row:last-child {
    border-bottom: none;
}

.dash-setting-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
}

.dash-setting-desc {
    font-size: 13px;
    color: var(--text-secondary);
    margin-top: 2px;
}

.dash-coming-soon {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-tertiary);
    background: var(--bg-section);
    padding: 4px 12px;
    border-radius: 20px;
    white-space: nowrap;
}

.dash-upgrade-hint {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    padding: 14px 16px;
    background: rgba(255, 107, 107, 0.06);
    border-radius: var(--radius-sm);
    font-size: 13px;
    color: var(--text-secondary);
    margin-top: 16px;
}

/* Dashboard table */
.dash-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.dash-table th {
    text-align: left;
    padding: 12px 20px;
    font-weight: 600;
    font-size: 12px;
    color: var(--text-tertiary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 1px solid var(--border);
    background: var(--bg-section);
}

.dash-table td {
    padding: 14px 20px;
    border-bottom: 1px solid #f3f4f6;
    vertical-align: middle;
}

.dash-table tbody tr:last-child td {
    border-bottom: none;
}

.dash-text-muted {
    color: var(--text-tertiary);
}

.dash-status {
    display: inline-flex;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.dash-status-open {
    background: #eff6ff;
    color: #3b82f6;
}

.dash-status-closed {
    background: #f3f4f6;
    color: #9ca3af;
}

/* Form static value */
.dash-form-static {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-size: 14px;
    color: var(--text-primary);
}

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

.dash-text-link:hover {
    text-decoration: underline;
}

.dash-form-actions {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}

/* Alert */
.dash-alert {
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    margin-bottom: 20px;
    font-weight: 500;
}

.dash-alert-success {
    background: rgba(52, 199, 89, 0.1);
    color: #22c55e;
    border: 1px solid rgba(52, 199, 89, 0.2);
}

.dash-alert-error {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.2);
}

/* Phone field with country code */
.dash-phone-group {
    display: flex;
    gap: 8px;
}

.dash-phone-prefix {
    width: 90px;
    flex-shrink: 0;
}

.dash-phone-number {
    flex: 1;
}

/* Billing type toggle (Apple-style segmented control) */
.dash-segment-control {
    display: inline-flex;
    background: var(--bg-section);
    border-radius: var(--radius-sm);
    padding: 3px;
    gap: 2px;
}

.dash-segment-option {
    padding: 10px 24px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
    background: none;
    font-family: inherit;
}

.dash-segment-option.active {
    background: var(--white);
    color: var(--text-primary);
    font-weight: 600;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

/* Preference chips (for destinations) */
.dash-chip-group {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.dash-chip {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 8px 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 500;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.15s ease;
    background: var(--white);
}

.dash-chip:hover {
    border-color: var(--accent-start);
    color: var(--accent-start);
}

.dash-chip.selected {
    background: rgba(255, 107, 107, 0.08);
    border-color: var(--accent-start);
    color: var(--accent-start);
    font-weight: 600;
}

.dash-chip-label {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-tertiary);
    margin-bottom: 8px;
}

/* Budget selector cards */
.dash-budget-group {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.dash-budget-card {
    padding: 12px 20px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 600;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.15s ease;
    background: var(--white);
    text-align: center;
}

.dash-budget-card:hover {
    border-color: var(--accent-start);
    color: var(--accent-start);
}

.dash-budget-card.selected {
    background: rgba(255, 107, 107, 0.08);
    border-color: var(--accent-start);
    color: var(--accent-start);
}

/* Trip type toggle */
.dash-trip-toggle {
    display: inline-flex;
    background: var(--bg-section);
    border-radius: var(--radius-sm);
    padding: 3px;
}

.dash-trip-option {
    padding: 8px 20px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
    background: none;
    font-family: inherit;
}

.dash-trip-option.active {
    background: var(--white);
    color: var(--text-primary);
    font-weight: 600;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

/* Flight alert cards */
.dash-alert-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    border-bottom: 1px solid var(--border);
    transition: background 0.15s ease;
}

.dash-alert-card:last-child {
    border-bottom: none;
}

.dash-alert-card:hover {
    background: var(--bg-section);
}

.dash-alert-route {
    flex: 1;
    min-width: 0;
}

.dash-alert-route-text {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-primary);
}

.dash-alert-route-detail {
    font-size: 13px;
    color: var(--text-secondary);
    margin-top: 2px;
}

.dash-alert-price {
    text-align: right;
    flex-shrink: 0;
}

.dash-alert-price-current {
    font-size: 18px;
    font-weight: 800;
    color: var(--accent-start);
}

.dash-alert-price-original {
    font-size: 12px;
    color: var(--text-tertiary);
    text-decoration: line-through;
    margin-right: 6px;
}

.dash-alert-badge {
    display: inline-flex;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.dash-alert-badge-deal {
    background: rgba(52, 199, 89, 0.1);
    color: #22c55e;
}

.dash-alert-badge-flash {
    background: rgba(255, 107, 107, 0.1);
    color: var(--accent-start);
}

.dash-alert-badge-weekend {
    background: rgba(76, 154, 255, 0.1);
    color: #3b82f6;
}

.dash-empty-state {
    text-align: center;
    padding: 40px 20px;
    color: var(--text-tertiary);
}

.dash-empty-state p {
    font-size: 14px;
    margin-top: 8px;
}

/* Preferences section divider */
.dash-section-divider {
    margin: 28px 0;
    border: none;
    border-top: 1px solid var(--border);
}

/* Card subtitle (used in settings cards) */
.dash-card-subtitle {
    font-size: 14px;
    color: var(--text-secondary);
    margin-top: 4px;
    margin-bottom: 20px;
}

/* Billing company fields container */
.dash-billing-fields {
    margin-top: 20px;
}

/* Delete account link at bottom of profile */
.dash-delete-link {
    display: inline-block;
    margin-top: 32px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
    font-size: 12px;
    color: var(--text-tertiary);
    text-decoration: none;
    transition: color 0.15s ease;
    width: 100%;
}

.dash-delete-link:hover {
    color: #ef4444;
}

/* ============================================
   DASHBOARD CARDS
   ============================================ */
.dash-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--card-shadow);
    overflow: hidden;
}

.dash-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 28px;
    border-bottom: 1px solid var(--border);
}

.dash-card-title {
    font-size: 17px;
    font-weight: 700;
    color: var(--text-primary);
}

.dash-card-body {
    padding: 28px;
}

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

.dash-role-user {
    background: rgba(76, 154, 255, 0.1);
    color: var(--blue);
}

.dash-role-admin {
    background: rgba(255, 107, 107, 0.1);
    color: var(--accent-start);
}

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

.dash-info-label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-tertiary);
    margin-bottom: 4px;
}

.dash-info-value {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
}

.dash-admin-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.dash-admin-link {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: var(--bg-section);
    border-radius: var(--radius-sm);
    text-decoration: none;
    transition: background 0.2s ease, transform 0.2s ease;
}

.dash-admin-link:hover {
    background: var(--bg-warm);
    transform: translateX(4px);
}

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

.dash-admin-link-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-primary);
}

.dash-admin-link-desc {
    font-size: 13px;
    color: var(--text-secondary);
    margin-top: 2px;
}

.dash-admin-link-arrow {
    margin-left: auto;
    font-size: 18px;
    color: var(--text-tertiary);
}

/* ============================================
   SETTINGS SUB-NAVIGATION
   ============================================ */
.dash-settings-layout {
    display: flex;
    gap: 32px;
    align-items: flex-start;
}

.dash-settings-nav {
    width: 220px;
    flex-shrink: 0;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--card-shadow);
    overflow: hidden;
    position: sticky;
    top: 88px;
}

.dash-settings-nav-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 20px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.15s ease;
    border-bottom: 1px solid var(--border);
}

.dash-settings-nav-link:last-child {
    border-bottom: none;
}

.dash-settings-nav-link:hover {
    background: var(--bg-section);
    color: var(--text-primary);
}

.dash-settings-nav-link.active {
    background: rgba(255, 107, 107, 0.06);
    color: var(--accent-start);
    font-weight: 600;
}

.dash-settings-nav-link svg {
    flex-shrink: 0;
}

.dash-settings-nav-danger {
    color: var(--text-tertiary);
}

.dash-settings-nav-danger:hover {
    color: #ef4444;
    background: #fef2f2;
}

.dash-settings-nav-danger.active {
    color: #ef4444;
    background: rgba(239, 68, 68, 0.06);
}

.dash-settings-content {
    flex: 1;
    min-width: 0;
}

/* Card danger variant */
.dash-card-danger {
    border-color: #fecaca;
}

.dash-danger-info {
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: var(--radius-sm);
    padding: 16px 20px;
    margin-bottom: 20px;
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.dash-danger-info ul {
    margin: 8px 0 0;
    padding-left: 20px;
}

.dash-danger-info li {
    margin-bottom: 4px;
}

/* ============================================
   DASHBOARD RESPONSIVE (consolidated)
   ============================================ */
@media (max-width: 768px) {
    .dash-header-nav {
        display: none;
    }

    .dash-header-right {
        display: none;
    }

    .dash-mobile-menu-btn {
        display: block;
    }

    .dash-main-wrap {
        padding: 72px 0 40px;
    }

    .dash-main-wrap .container {
        padding: 0 12px;
    }

    .dash-content-card {
        padding: 20px 16px;
        border-radius: 12px;
    }

    .dash-page-title {
        font-size: 22px;
    }

    .dash-settings-layout {
        flex-direction: column;
        gap: 20px;
    }

    .dash-settings-nav {
        width: 100%;
        position: static;
        display: flex;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .dash-settings-nav-link {
        white-space: nowrap;
        border-bottom: none;
        border-right: 1px solid var(--border);
        padding: 12px 16px;
        font-size: 13px;
    }

    .dash-settings-nav-link:last-child {
        border-right: none;
    }

    .dash-info-grid {
        grid-template-columns: 1fr;
    }

    .dash-chip-group {
        gap: 6px;
    }

    .dash-chip {
        padding: 6px 12px;
        font-size: 12px;
    }

    .dash-budget-group {
        gap: 6px;
    }

    .dash-budget-card {
        padding: 10px 16px;
        font-size: 13px;
    }

    .dash-alert-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .dash-alert-price {
        text-align: left;
    }

    .dash-phone-group {
        flex-direction: column;
        gap: 8px;
    }

    .dash-phone-prefix {
        width: 100%;
    }

    .dash-segment-control {
        width: 100%;
    }

    .dash-segment-option {
        flex: 1;
        text-align: center;
        padding: 10px 16px;
    }

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

/* ============================================
   VISITORS (admin)
   ============================================ */
.visitors-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.visitors-stat-card {
    text-align: center;
    padding: 28px 16px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--card-shadow);
}

.visitors-stat-number {
    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;
}

.visitors-stat-label {
    font-size: 13px;
    color: var(--text-tertiary);
    font-weight: 500;
    margin-top: 4px;
}

.visitors-table-wrap {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--card-shadow);
    overflow-x: auto;
}

.visitors-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.visitors-table thead {
    background: var(--bg-section);
}

.visitors-table th {
    padding: 14px 20px;
    text-align: left;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-tertiary);
    border-bottom: 1px solid var(--border);
    white-space: nowrap;
}

.visitors-table td {
    padding: 14px 20px;
    border-bottom: 1px solid var(--border);
    color: var(--text-secondary);
    vertical-align: middle;
}

.visitors-table tbody tr:last-child td {
    border-bottom: none;
}

.visitors-table tbody tr:hover {
    background: var(--bg-section);
}

.visitors-table code {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-primary);
    background: var(--bg-section);
    padding: 2px 8px;
    border-radius: 6px;
}

.visitors-country {
    display: flex;
    align-items: center;
    gap: 8px;
}

.visitors-cc {
    display: inline-block;
    padding: 2px 8px;
    background: rgba(76, 154, 255, 0.1);
    color: var(--blue);
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.visitors-agent {
    font-size: 12px;
    color: var(--text-tertiary);
    max-width: 200px;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    max-width: 960px;
    margin: 0 auto;
    align-items: start;
}

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

.contact-info p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 32px;
}

.contact-detail {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
}

.contact-detail:first-of-type {
    border-top: 1px solid var(--border);
}

.contact-detail-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: var(--bg-section);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-detail-text {
    font-size: 15px;
    color: var(--text-primary);
    font-weight: 500;
}

.contact-detail-label {
    font-size: 12px;
    color: var(--text-tertiary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2px;
}

.contact-form-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--card-shadow);
    padding: 40px;
}

.contact-form-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 24px;
}

.form-textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1.5px solid var(--border);
    border-radius: 12px;
    font-family: inherit;
    font-size: 15px;
    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, 107, 107, 0.08);
}

.contact-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: var(--green);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-phone-reveal {
    background: none;
    border: none;
    color: var(--accent-start);
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    text-decoration: underline;
    text-underline-offset: 2px;
    font-family: inherit;
    padding: 0;
}

.contact-trust {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text-secondary);
}

/* ============================================
   ADMIN TABS
   ============================================ */
.admin-tabs {
    display: flex;
    gap: 4px;
    padding: 4px;
    background: var(--bg-section);
    border-radius: var(--radius-full);
    margin-bottom: 32px;
    max-width: 400px;
}

.admin-tab {
    flex: 1;
    padding: 10px 20px;
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 600;
    color: var(--text-secondary);
    text-decoration: none;
    text-align: center;
    transition: all 0.2s ease;
}

.admin-tab:hover {
    color: var(--text-primary);
}

.admin-tab.active {
    background: var(--white);
    color: var(--text-primary);
    box-shadow: 0 1px 4px rgba(15, 23, 41, 0.08);
}

.admin-empty {
    text-align: center;
    padding: 48px 24px;
    color: var(--text-tertiary);
    font-size: 15px;
}

.ticket-status {
    display: inline-block;
    padding: 3px 12px;
    border-radius: var(--radius-full);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ticket-status-open {
    background: rgba(255, 184, 0, 0.12);
    color: var(--gold);
}

.ticket-status-closed {
    background: rgba(54, 211, 153, 0.12);
    color: var(--green);
}

/* ============================================
   MOBILE MENU
   ============================================ */
.mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 999;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
}

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

.mobile-menu a {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 22px;
    font-weight: 700;
}

.mobile-menu-cta {
    margin-top: 8px;
    background: linear-gradient(135deg, var(--accent-start), var(--accent-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.mobile-menu-close {
    position: absolute;
    top: 22px;
    right: 24px;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 32px;
    cursor: pointer;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .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;
    }

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

@media (max-width: 768px) {
    nav {
        padding: 0 20px;
        height: 64px;
    }

    .nav-links {
        display: none;
    }

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

    .hero {
        padding: 84px 20px 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: 110px 20px 48px;
    }

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

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

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

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

    /* 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 {
        padding: 100px 16px 60px;
    }

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

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

    /* Footer */
    .footer-top {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .footer-brand {
        max-width: none;
    }

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

    /* Cookie bar */
    .cookie-bar-inner {
        flex-direction: column;
        text-align: center;
        border-radius: var(--radius);
        max-width: calc(100% - 32px);
        padding: 14px 16px;
    }

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

    /* Contact */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    /* Legal */
    .legal-page {
        padding: 110px 20px 60px;
    }

    /* Dashboard */
    .dash-info-grid {
        grid-template-columns: 1fr;
    }

    .dash-card-body {
        padding: 20px;
    }

    /* Visitors */
    .visitors-stats {
        grid-template-columns: 1fr;
    }

    /* Plans */
    .plan-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin-left: auto;
        margin-right: auto;
    }

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

    .plan-status-left {
        flex-direction: column;
    }

    .plan-status-actions {
        width: 100%;
        justify-content: center;
    }

    /* Onboarding */
    .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(2, 1fr);
    }

    .ob-code-input {
        width: 200px;
        font-size: 24px;
        letter-spacing: 8px;
    }

    .ob-budget-card {
        min-width: 60px;
        padding: 16px;
    }

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

@media (max-width: 480px) {
    .deal-city-code {
        font-size: 22px;
    }

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

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

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

    .auth-title {
        font-size: 22px;
    }
}

/* ============================================
   PLANS / SUBSCRIPTION PAGE
   ============================================ */
.plan-alert {
    padding: 14px 20px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 24px;
}

.plan-alert-success {
    background: rgba(54, 211, 153, 0.08);
    border: 1px solid rgba(54, 211, 153, 0.2);
    color: var(--green);
}

.plan-alert-error {
    background: rgba(255, 71, 87, 0.08);
    border: 1px solid rgba(255, 71, 87, 0.2);
    color: var(--accent-start);
}

.plan-alert-warning {
    background: rgba(255, 184, 0, 0.08);
    border: 1px solid rgba(255, 184, 0, 0.2);
    color: var(--gold);
}

.plan-status-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 28px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--card-shadow);
    margin-bottom: 32px;
    flex-wrap: wrap;
    gap: 16px;
}

.plan-status-left {
    display: flex;
    align-items: center;
    gap: 16px;
}

.plan-status-badge {
    padding: 6px 16px;
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.plan-badge-pro {
    background: linear-gradient(135deg, var(--accent-start), var(--accent-end));
    color: var(--white);
}

.plan-badge-max {
    background: linear-gradient(135deg, var(--purple), #A855F7);
    color: var(--white);
}

.plan-badge-free {
    background: var(--bg-section);
    color: var(--text-secondary);
}

.plan-status-text {
    font-size: 14px;
    color: var(--text-secondary);
}

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

.plan-status-actions {
    display: flex;
    gap: 8px;
    align-items: center;
}

.plan-action-btn {
    padding: 8px 20px;
    border-radius: var(--radius-full);
    font-family: inherit;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    text-decoration: none;
    transition: all 0.2s ease;
}

.plan-action-manage {
    background: var(--text-primary);
    color: var(--white);
}

.plan-action-manage:hover {
    opacity: 0.9;
    transform: scale(1.02);
}

.plan-action-cancel {
    background: transparent;
    color: var(--text-tertiary);
    border: 1px solid var(--border);
}

.plan-action-cancel:hover {
    border-color: var(--accent-start);
    color: var(--accent-start);
}

.plan-action-resume {
    background: linear-gradient(135deg, var(--accent-start), var(--accent-end));
    color: var(--white);
    box-shadow: 0 4px 12px rgba(255, 107, 107, 0.25);
}

.plan-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 24px;
}

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

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

.plan-card-featured {
    border-color: var(--accent-start);
    box-shadow: 0 8px 40px rgba(255, 107, 107, 0.12);
    background: linear-gradient(180deg, #FFF5F3 0%, var(--white) 100%);
}

.plan-card-featured:hover {
    box-shadow: 0 16px 56px rgba(255, 107, 107, 0.18);
}

.plan-card-current {
    border-color: var(--green);
}

.plan-current-tag {
    display: inline-block;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    background: rgba(54, 211, 153, 0.1);
    color: var(--green);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
    width: fit-content;
}

.plan-popular-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--accent-start), var(--accent-end));
    color: var(--white);
    padding: 6px 24px;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 0 4px 12px rgba(255, 107, 107, 0.3);
}

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

.plan-card-price {
    font-size: 42px;
    font-weight: 900;
    letter-spacing: -2px;
    color: var(--text-primary);
    margin-bottom: 4px;
}

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

.plan-card-desc {
    font-size: 14px;
    color: var(--text-tertiary);
    margin-bottom: 24px;
}

.plan-card-features {
    list-style: none;
    margin-bottom: 28px;
    flex: 1;
}

.plan-card-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 14px;
    color: var(--text-secondary);
}

.plan-check {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

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

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

.plan-card-btn-fill {
    background: linear-gradient(135deg, var(--accent-start), var(--accent-end));
    color: var(--white);
    box-shadow: 0 4px 16px rgba(255, 107, 107, 0.3);
}

.plan-card-btn-fill:hover {
    box-shadow: 0 8px 24px rgba(255, 107, 107, 0.4);
}

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

.plan-card-btn-outline:hover {
    border-color: var(--text-secondary);
}

.plan-card-btn-current {
    background: var(--bg-section);
    color: var(--text-tertiary);
    cursor: default;
}

.plan-card-btn-current:hover {
    transform: none;
}

.plan-card-btn-disabled {
    background: var(--bg-section);
    color: var(--text-tertiary);
    cursor: default;
}

.plan-note {
    text-align: center;
    font-size: 14px;
    color: var(--text-tertiary);
}

/* ============================================
   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-pro {
    background: linear-gradient(135deg, var(--accent-start), var(--accent-end));
    color: var(--white);
}

.nav-plan-max {
    background: linear-gradient(135deg, var(--purple), #A855F7);
    color: var(--white);
}

/* ============================================
   ONBOARDING
   ============================================ */
.ob-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(255, 107, 107, 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%);
}

.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: 28px;
    font-weight: 900;
    letter-spacing: -0.5px;
    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;
    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, 107, 107, 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-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-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-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-form {
    text-align: left;
}

/* Verify email code input */
.ob-code-input-wrap {
    text-align: center;
    margin-bottom: 24px;
}

.ob-code-input {
    width: 240px;
    padding: 16px;
    font-size: 32px;
    font-weight: 800;
    letter-spacing: 12px;
    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;
}

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

.ob-code-input::placeholder {
    color: var(--border);
    letter-spacing: 12px;
}

/* Buttons */
.ob-btn {
    display: block;
    width: 100%;
    padding: 16px;
    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, 107, 107, 0.3);
}

.ob-btn-primary:hover:not(:disabled) {
    transform: scale(1.02);
    box-shadow: 0 6px 24px rgba(255, 107, 107, 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: 15px;
    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);
}

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

.ob-airport-card {
    padding: 20px 16px;
    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-airport-card:hover {
    border-color: var(--text-tertiary);
    transform: translateY(-2px);
    box-shadow: var(--card-shadow);
}

.ob-airport-selected {
    border-color: var(--accent-start) !important;
    background: #FFF5F3;
    box-shadow: 0 4px 16px rgba(255, 107, 107, 0.12);
}

.ob-airport-code {
    font-size: 24px;
    font-weight: 900;
    letter-spacing: -0.5px;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.ob-airport-city {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
}

.ob-airport-name {
    font-size: 11px;
    color: var(--text-tertiary);
    margin-top: 2px;
    line-height: 1.3;
}

/* Destination chips */
.ob-dest-anywhere {
    margin-bottom: 24px;
}

.ob-dest-option {
    display: block;
    padding: 20px 24px;
    background: var(--white);
    border: 2px solid var(--border);
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.ob-dest-option:hover {
    border-color: var(--text-tertiary);
}

.ob-dest-selected {
    border-color: var(--accent-start) !important;
    background: #FFF5F3;
}

.ob-dest-option input { display: none; }

.ob-dest-option-inner {
    display: flex;
    align-items: center;
    gap: 16px;
}

.ob-dest-option-inner svg {
    flex-shrink: 0;
    color: var(--accent-start);
}

.ob-dest-option-inner strong {
    display: block;
    font-size: 16px;
    color: var(--text-primary);
}

.ob-dest-option-inner span {
    font-size: 14px;
    color: var(--text-secondary);
}

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

/* 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: flex;
    gap: 10px;
    margin-bottom: 32px;
    justify-content: center;
    flex-wrap: wrap;
}

.ob-budget-card {
    padding: 20px 24px;
    background: var(--white);
    border: 2px solid var(--border);
    border-radius: 16px;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: inherit;
    min-width: 80px;
}

.ob-budget-card:hover {
    border-color: var(--text-tertiary);
    transform: translateY(-2px);
}

.ob-budget-selected {
    border-color: var(--accent-start) !important;
    background: #FFF5F3;
    box-shadow: 0 4px 16px rgba(255, 107, 107, 0.12);
}

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

/* Trip type */
.ob-trip-section {
    margin-bottom: 28px;
}

.ob-trip-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.ob-trip-option {
    display: block;
    padding: 20px;
    background: var(--white);
    border: 2px solid var(--border);
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.ob-trip-option input { display: none; }

.ob-trip-option:hover {
    border-color: var(--text-tertiary);
}

.ob-trip-selected {
    border-color: var(--accent-start) !important;
    background: #FFF5F3;
}

.ob-trip-inner {
    display: flex;
    align-items: center;
    gap: 14px;
}

.ob-trip-inner svg {
    flex-shrink: 0;
    color: var(--accent-start);
}

.ob-trip-inner strong {
    display: block;
    font-size: 15px;
    color: var(--text-primary);
}

.ob-trip-inner span {
    font-size: 13px;
    color: var(--text-secondary);
}

/* 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);
}

/* ============================================
   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: 13px;
    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: 8px 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 language switch */
.mobile-lang-switch {
    display: flex;
    gap: 8px;
    padding: 8px 0;
}

.mobile-lang-switch a {
    padding: 8px 20px;
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    color: var(--text-tertiary);
    border: 1.5px solid var(--border);
    transition: all 0.2s ease;
}

.mobile-lang-switch a:hover {
    border-color: var(--text-secondary);
    color: var(--text-primary);
}

.mobile-lang-active {
    background: var(--text-primary) !important;
    color: var(--white) !important;
    border-color: var(--text-primary) !important;
}

/* ============================================
   FOOTER ENHANCEMENTS
   ============================================ */
.footer-cta-band {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 32px 36px;
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.06), rgba(255, 142, 83, 0.04));
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    margin-bottom: 48px;
    gap: 24px;
    flex-wrap: wrap;
}

.footer-cta-headline {
    font-size: 20px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 4px;
}

.footer-cta-sub {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.45);
    font-weight: 500;
}

.footer-cta-btn {
    padding: 14px 32px;
    background: linear-gradient(135deg, var(--accent-start), var(--accent-end));
    color: var(--white);
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    white-space: nowrap;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 16px rgba(255, 107, 107, 0.3);
}

.footer-cta-btn:hover {
    transform: scale(1.03);
    box-shadow: 0 6px 24px rgba(255, 107, 107, 0.4);
}

.footer-airports {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 16px;
}

.footer-airports span {
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.35);
    background: rgba(255, 255, 255, 0.05);
}

/* ============================================
   AUTH PAGE DISTINCTION
   ============================================ */
.auth-card-register {
    border-top: 3px solid transparent;
    border-image: linear-gradient(135deg, var(--accent-start), var(--accent-end)) 1;
}

.auth-value-props {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 24px;
    padding: 16px 20px;
    background: rgba(54, 211, 153, 0.04);
    border: 1px solid rgba(54, 211, 153, 0.12);
    border-radius: 12px;
}

.auth-vp {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
}

.auth-btn-register {
    background: linear-gradient(135deg, var(--accent-start), var(--accent-end));
    box-shadow: 0 4px 16px rgba(255, 107, 107, 0.3);
}

.auth-btn-register:hover {
    box-shadow: 0 8px 24px rgba(255, 107, 107, 0.4);
}

/* ============================================
   HOW IT WORKS - STEP ICON VARIANTS
   ============================================ */
.hiw-step-icon-green,
.hiw-step-icon-purple,
.hiw-step-icon-gold {
    background: linear-gradient(135deg, var(--accent-start), var(--accent-end));
}

/* ============================================
   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);
}

.hiw-plan-row {
    display: grid;
    grid-template-columns: 1.5fr 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-feature-name {
    padding: 14px 20px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    display: flex;
    align-items: center;
}

.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-pro {
    color: var(--accent-start);
    background: rgba(255, 107, 107, 0.04);
}

.hiw-plan-val {
    padding: 14px 12px;
    font-size: 14px;
    color: var(--text-tertiary);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hiw-plan-val-pro {
    background: rgba(255, 107, 107, 0.03);
}

.hiw-plan-yes {
    color: var(--green);
    font-weight: 600;
}

/* ============================================
   RESPONSIVE - FOOTER / AUTH / HIW TABLE
   ============================================ */
@media (max-width: 768px) {
    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    .footer-brand {
        grid-column: 1 / -1;
        max-width: 100%;
    }

    .footer-cta-band {
        flex-direction: column;
        text-align: center;
        padding: 24px;
    }

    .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) {
    .footer-top {
        grid-template-columns: 1fr;
    }

    .hiw-plan-row {
        grid-template-columns: 1.2fr 0.8fr 0.8fr 0.8fr;
    }

    .hiw-plan-feature-name {
        padding: 10px 10px;
        font-size: 12px;
    }

    .hiw-plan-val, .hiw-plan-tier {
        padding: 10px 4px;
        font-size: 11px;
    }
}

/* ============================================
   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;
    }
}
