/* ===== Lock Screen ===== */
.lock-screen {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: linear-gradient(135deg, #f5f2eb 0%, #ede9df 40%, #f0ece4 70%, #e8e4d8 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.lock-screen.unlocked {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

body.locked {
    overflow: hidden;
}


.lock-container {
    text-align: center;
    padding: 2rem;
    position: relative;
    z-index: 2;
    max-width: 700px;
}

.lock-title {
    font-family: 'DM Sans', sans-serif;
    font-size: clamp(2.2rem, 6vw, 3.8rem);
    font-weight: 300;
    color: #2c2c2c;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
}

.lock-highlight {
    color: #3a5a3a;
    font-weight: 700;
}

.lock-subtitle {
    font-family: 'DM Sans', sans-serif;
    color: #6b6b6b;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1.75rem;
    letter-spacing: 0.01em;
}

.lock-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    margin: 0 auto;
}

.lock-input-group {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 100px;
    padding: 5px 5px 5px 20px;
    width: 100%;
    max-width: 420px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.2s;
}

.lock-input-group:focus-within {
    box-shadow: 0 4px 32px rgba(58, 90, 58, 0.15);
}

.lock-input {
    flex: 1;
    padding: 0.75rem 0.5rem;
    border: none;
    background: transparent;
    color: #2c2c2c;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    outline: none;
    min-width: 0;
}

.lock-input::placeholder {
    color: #9ca3af;
}

.lock-input.shake {
    animation: shake 0.4s ease;
}

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

.lock-btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 100px;
    background: #3a5a3a;
    color: #fff;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.2s, transform 0.1s;
}

.lock-btn:hover {
    background: #2e4a2e;
}

.lock-btn:active {
    transform: scale(0.97);
}

.lock-error {
    color: #c45a5a;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.85rem;
    margin-top: 0.75rem;
    opacity: 0;
    transition: opacity 0.2s;
}

.lock-error.visible {
    opacity: 1;
}

@media (max-width: 480px) {
    .lock-blob { transform: scale(0.6); }
    .lock-container { padding: 1.5rem; }
    .lock-input-group { padding: 4px 4px 4px 16px; }
    .lock-btn { padding: 0.7rem 1.2rem; font-size: 0.8rem; }
}

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

:root {
    --teal: #2A9D8F;
    --teal-light: #e6f5f3;
    --teal-50: #f0faf8;
    --teal-100: #d1f0eb;
    --teal-200: #a3e1d7;
    --teal-600: #228B7E;
    --teal-700: #1a7268;
    --teal-800: #145a52;
    --sage: #C4CEB0;
    --sage-light: #e8ecdf;
    --sage-50: #f4f6f0;
    --sage-dark: #a3b08c;
    --cream: #fafaf7;
    --white: #ffffff;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    --gold: #C9A84C;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 24px;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 30px rgba(0,0,0,0.1);
    --shadow-xl: 0 20px 60px rgba(0,0,0,0.12);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--gray-800);
    background: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3, h4 {
    font-family: 'Playfair Display', Georgia, serif;
    line-height: 1.2;
}

/* ===== Navbar ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--sage-light);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 4px;
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900);
    text-decoration: none;
}

.logo-img {
    width: 64px;
    height: 64px;
    object-fit: contain;
    margin: -12px 0;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 36px;
}

.nav-links a {
    text-decoration: none;
    color: var(--gray-600);
    font-size: 0.938rem;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--teal);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--gray-700);
    border-radius: 2px;
    transition: 0.3s;
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: 50px;
    font-size: 0.938rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--teal);
    color: white;
}

.btn-primary:hover {
    background: var(--teal-600);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background: transparent;
    color: var(--teal);
    border: 2px solid var(--teal);
}

.btn-outline:hover {
    background: var(--teal-50);
}

.btn-light {
    background: white;
    color: var(--teal-700);
}

.btn-light:hover {
    background: var(--teal-50);
    transform: translateY(-1px);
}

.btn-outline-light {
    background: transparent;
    color: white;
    border: 2px solid rgba(255,255,255,0.6);
}

.btn-outline-light:hover {
    background: rgba(255,255,255,0.1);
    border-color: white;
}

.nav-cta {
    padding: 10px 24px;
    font-size: 0.875rem;
}

/* ===== Hero ===== */
.hero {
    padding: 140px 0 80px;
    background: linear-gradient(180deg, var(--sage-50) 0%, var(--white) 100%);
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero h1 {
    font-size: 3.5rem;
    color: var(--gray-900);
    margin-bottom: 20px;
}

.hero h1 em {
    font-style: italic;
    color: var(--teal);
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--gray-500);
    margin-bottom: 20px;
    max-width: 480px;
    line-height: 1.7;
}

.hero-tags {
    display: flex;
    gap: 12px;
    margin-bottom: 32px;
}

.hero-tag {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--teal-700);
    background: var(--sage-light);
    padding: 4px 14px;
    border-radius: 50px;
}

.hero-note {
    margin-top: 16px;
    font-size: 0.813rem;
    color: var(--gray-500);
    font-style: italic;
}

.store-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.store-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 22px;
    border-radius: 12px;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
}

.store-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.app-store {
    background: var(--gray-900);
    color: white;
}

.google-play {
    background: var(--gray-900);
    color: white;
}

.store-btn small {
    display: block;
    font-size: 0.65rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.store-btn span {
    display: block;
    font-size: 1rem;
    font-weight: 600;
}

/* Globe Mockup */
.hero-image {
    display: flex;
    justify-content: center;
}

.globe-mockup {
    display: flex;
    align-items: center;
    justify-content: center;
}

.globe {
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 35%, #1e3a4a, #0f1f2a 70%);
    position: relative;
    box-shadow: 0 0 80px rgba(42, 157, 143, 0.2), inset 0 0 60px rgba(0,0,0,0.3);
    overflow: hidden;
}

.globe-grid {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background:
        repeating-linear-gradient(0deg, transparent, transparent 38px, rgba(42, 157, 143, 0.12) 38px, rgba(42, 157, 143, 0.12) 40px),
        repeating-linear-gradient(90deg, transparent, transparent 38px, rgba(42, 157, 143, 0.12) 38px, rgba(42, 157, 143, 0.12) 40px);
}

.globe-pin {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--teal);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--teal), 0 0 20px rgba(42, 157, 143, 0.4);
}

.globe-pin.pin-1 { top: 30%; left: 55%; }
.globe-pin.pin-2 { top: 45%; left: 35%; }
.globe-pin.pin-3 { top: 55%; left: 65%; }
.globe-pin.pin-4 { top: 38%; left: 48%; }

.globe-glow {
    position: absolute;
    top: 15%;
    left: 20%;
    width: 40%;
    height: 30%;
    background: radial-gradient(ellipse, rgba(42, 157, 143, 0.25), transparent);
    border-radius: 50%;
}

.globe-large {
    width: 360px;
    height: 360px;
}

.globe-feature-visual {
    display: flex;
    justify-content: center;
}

/* ===== How It Works ===== */
.how-it-works {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    font-size: 2.25rem;
    color: var(--gray-900);
    margin-bottom: 12px;
}

.section-subtitle {
    text-align: center;
    color: var(--gray-500);
    font-size: 1.06rem;
    margin-bottom: 60px;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.step {
    text-align: center;
    padding: 32px 24px;
}

.step-icon {
    width: 64px;
    height: 64px;
    background: var(--sage-50);
    border: 1px solid var(--sage-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.step h3 {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--gray-900);
}

.step p {
    color: var(--gray-500);
    font-size: 0.938rem;
    line-height: 1.7;
}

/* ===== Features ===== */
.feature {
    padding: 80px 0;
}

.feature-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.feature-container.reverse {
    direction: rtl;
}

.feature-container.reverse > * {
    direction: ltr;
}

.feature-badge {
    display: inline-block;
    background: var(--sage-50);
    color: var(--sage-dark);
    border: 1px solid var(--sage-light);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.813rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.feature-text h2 {
    font-size: 2rem;
    color: var(--gray-900);
    margin-bottom: 16px;
}

.feature-text p {
    color: var(--gray-500);
    line-height: 1.8;
    margin-bottom: 24px;
}

.feature-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--gray-700);
    font-size: 0.938rem;
    font-weight: 500;
}

.feature-link {
    color: var(--teal);
    font-weight: 600;
    text-decoration: none;
    font-size: 0.938rem;
    transition: gap 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

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

/* Feature Visuals */
.feature-visual {
    display: flex;
    justify-content: center;
}

/* Phone Mockup */
.phone-mockup {
    width: 280px;
    height: 560px;
    background: var(--gray-900);
    border-radius: 40px;
    padding: 12px;
    box-shadow: var(--shadow-xl), 0 0 0 1px rgba(0,0,0,0.05);
    position: relative;
}

.phone-mockup::before {
    content: '';
    position: absolute;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 24px;
    background: var(--gray-900);
    border-radius: 20px;
    z-index: 2;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: var(--cream);
    border-radius: 30px;
    overflow: hidden;
}

.feature-visual .phone-mockup {
    width: 260px;
    height: 520px;
}

/* Flight Preview */
.flight-card-preview {
    background: var(--sage-50);
    border: 1px solid var(--sage-light);
    border-radius: var(--radius-md);
    padding: 20px;
    margin-top: 8px;
}

.flight-route {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.airport {
    text-align: center;
}

.airport-code {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--gray-900);
    display: block;
}

.airport small {
    font-size: 0.75rem;
    color: var(--gray-500);
}

.flight-line {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.flight-line::before {
    content: '';
    position: absolute;
    width: 80%;
    height: 1px;
    background: var(--gray-300);
    border-style: dashed;
}

.flight-details {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.75rem;
    color: var(--gray-500);
    text-align: center;
}

/* Flight app preview */
.flight-preview {
    padding: 50px 16px 16px;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

.app-screen-header {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 20px;
    text-align: center;
}

.flight-list-preview {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}

.flight-item-preview {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 16px;
    background: white;
    border-radius: var(--radius-sm);
    border: 1px solid var(--sage-light);
}

.fi-route {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--gray-900);
}

.fi-date {
    font-size: 0.75rem;
    color: var(--gray-500);
}

.app-fab {
    position: absolute;
    bottom: 24px;
    right: 24px;
    width: 48px;
    height: 48px;
    background: var(--teal);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 300;
    box-shadow: var(--shadow-lg);
}

/* Passport page preview */
.passport-page-preview {
    height: 100%;
    padding: 50px 20px 20px;
    background: linear-gradient(180deg, #e0f2f1 0%, #b2dfdb 50%, #80cbc4 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    position: relative;
    overflow: hidden;
}

.watercolor-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(42, 157, 143, 0.15) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 30%, rgba(128, 203, 196, 0.3) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 80%, rgba(178, 223, 219, 0.4) 0%, transparent 60%);
}

.passport-stamp-large {
    position: relative;
    z-index: 1;
    width: 140px;
    height: 140px;
    border: 3px solid var(--teal-700);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.3);
    backdrop-filter: blur(4px);
}

.passport-stamp-large span {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--teal-700);
    letter-spacing: 2px;
}

.passport-stamp-large small {
    font-size: 0.7rem;
    color: var(--teal-600);
    margin-top: 4px;
}

.passport-details {
    position: relative;
    z-index: 1;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
}

.detail-line {
    height: 8px;
    width: 80%;
    background: rgba(255,255,255,0.5);
    border-radius: 4px;
}

.detail-line.short {
    width: 50%;
}

/* Photo grid preview */
.photo-grid-preview {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    max-width: 320px;
}

.photo-thumb {
    aspect-ratio: 1;
    border-radius: var(--radius-sm);
    transition: transform 0.2s;
}

.photo-thumb:hover {
    transform: scale(1.05);
}

.photo-thumb.t1 { background: linear-gradient(135deg, #4a7c94, #7ab8d4); }
.photo-thumb.t2 { background: linear-gradient(135deg, #8a9e6e, #b8cc94); }
.photo-thumb.t3 { background: linear-gradient(135deg, #c4956a, #e8c49a); }
.photo-thumb.t4 { background: linear-gradient(135deg, #6e9ab8, #94cce0); }
.photo-thumb.t5 { background: linear-gradient(135deg, #9a7bb5, #c4aad6); }
.photo-thumb.t6 { background: linear-gradient(135deg, #7ab894, #a8dbb8); }

/* Itinerary preview */
.itinerary-preview {
    background: white;
    border: 1px solid var(--sage-light);
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: var(--shadow-md);
    max-width: 380px;
}

.itin-header {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 16px;
}

.itin-tabs {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--sage-light);
    padding-bottom: 12px;
}

.itin-tab {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gray-500);
    padding: 4px 12px;
    border-radius: 50px;
    cursor: default;
}

.itin-tab.active {
    background: var(--teal);
    color: white;
}

.itin-days {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.itin-day {
    display: flex;
    gap: 16px;
}

.day-label {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--teal);
    white-space: nowrap;
    padding-top: 4px;
    min-width: 44px;
}

.day-stops {
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1;
}

.day-stop {
    font-size: 0.813rem;
    color: var(--gray-700);
    padding: 8px 12px;
    background: var(--sage-50);
    border-radius: var(--radius-sm);
    border-left: 3px solid var(--sage);
}

/* AI Suggestions */
.ai-suggestions-preview {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 8px;
}

.ai-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: var(--sage-50);
    border: 1px solid var(--sage-light);
    border-radius: 50px;
    font-size: 0.813rem;
    color: var(--teal-700);
    font-weight: 500;
}

.ai-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.ai-bubble {
    background: white;
    border: 1px solid var(--sage-light);
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: var(--shadow-md);
    max-width: 360px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.ai-icon {
    width: 44px;
    height: 44px;
    background: var(--sage-50);
    border: 1px solid var(--sage-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ai-text small {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--teal);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.ai-text p {
    font-size: 0.875rem;
    color: var(--gray-700);
    line-height: 1.6;
    margin-top: 4px;
    font-style: italic;
}

/* ===== PWA Banner ===== */
.pwa-banner {
    padding: 48px 0;
    background: var(--sage-50);
    border-top: 1px solid var(--sage-light);
    border-bottom: 1px solid var(--sage-light);
}

.pwa-container {
    display: flex;
    align-items: center;
    gap: 24px;
    max-width: 680px;
}

.pwa-icon {
    width: 64px;
    height: 64px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: var(--shadow-sm);
}

.pwa-text h3 {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 4px;
}

.pwa-text p {
    font-size: 0.875rem;
    color: var(--gray-500);
    line-height: 1.6;
}

/* ===== Boarding Passes (Pricing) ===== */
.boarding-passes {
    padding: 100px 0;
    background: var(--sage-50);
}

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

.passes-grid.three-col {
    grid-template-columns: repeat(3, 1fr);
    max-width: 1000px;
}

.boarding-pass {
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--sage-light);
    display: flex;
    position: relative;
    overflow: hidden;
}

.boarding-pass.elite {
    background: #1a2332;
    border: 1px solid #2a3a4e;
    color: #e8dcc8;
}

.boarding-pass.adventurer {
    border: 2px solid var(--teal);
}

.elite-star {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 2;
}

.pass-main {
    flex: 1;
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
}

.pass-label {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 8px;
}

.elite .pass-label {
    color: #C9A84C;
}

.pass-name {
    font-size: 1.4rem;
    color: var(--gray-900);
    margin-bottom: 20px;
}

.elite .pass-name {
    color: #f0e8d8;
}

.pass-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 28px;
    flex: 1;
}

.pass-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.875rem;
    color: var(--gray-600);
}

.elite .pass-features li {
    color: #b0a890;
}

.pass-price {
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.pass-amount {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--gray-900);
}

.elite .pass-amount {
    color: #C9A84C;
}

.pass-period {
    font-size: 0.875rem;
    color: var(--gray-500);
}

.elite .pass-period {
    color: #8a806e;
}

/* Tear/perforation edge */
.pass-tear {
    width: 2px;
    background-image: repeating-linear-gradient(
        to bottom,
        var(--sage) 0px,
        var(--sage) 6px,
        transparent 6px,
        transparent 12px
    );
    position: relative;
    flex-shrink: 0;
}

.elite .pass-tear {
    background-image: repeating-linear-gradient(
        to bottom,
        #2a3a4e 0px,
        #2a3a4e 6px,
        transparent 6px,
        transparent 12px
    );
}

.pass-tear::before,
.pass-tear::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 10px;
    border-radius: 0 0 50% 50%;
}

.pass-tear::before {
    top: -1px;
    background: var(--sage-50);
}

.pass-tear::after {
    bottom: -1px;
    background: var(--cream);
    border-radius: 50% 50% 0 0;
}

/* Stub (right side of boarding pass) */
.pass-stub {
    width: 60px;
    padding: 24px 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.stub-lines {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
}

.stub-line {
    height: 3px;
    background: var(--sage-light);
    border-radius: 2px;
}

.stub-line.short {
    width: 60%;
}

.pass-stub-text {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 4px;
    color: #3a4a5e;
    writing-mode: vertical-lr;
    text-orientation: mixed;
    transform: rotate(180deg);
}

/* ===== Social Proof Bar ===== */
.social-proof {
    padding: 40px 0;
    border-top: 1px solid var(--sage-light);
    border-bottom: 1px solid var(--sage-light);
}

.social-proof-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.proof-number {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--gray-900);
    line-height: 1;
}

.proof-label {
    display: block;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--gray-500);
    margin-top: 4px;
}

.proof-photos {
    display: flex;
    gap: 12px;
}

.proof-photo {
    width: 80px;
    height: 60px;
    border-radius: var(--radius-sm);
    object-fit: cover;
}

.proof-photo.photo-1 {
    background: linear-gradient(135deg, #4a7c94, #7ab8d4);
}

.proof-photo.photo-2 {
    background: linear-gradient(135deg, #8a9e6e, #b8cc94);
}

.proof-photo.photo-3 {
    background: linear-gradient(135deg, #6e9ab8, #94cce0);
}

/* ===== FAQ ===== */
.faq {
    padding: 100px 0;
}

.faq-title {
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 8px;
    text-decoration-color: var(--gray-900);
    margin-bottom: 48px;
}

.faq-list {
    max-width: 640px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.faq-item {
    border: 1px solid var(--sage-light);
    border-radius: var(--radius-sm);
    margin-bottom: 12px;
    overflow: hidden;
}

.faq-item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 24px;
    cursor: pointer;
    font-size: 0.938rem;
    font-weight: 500;
    color: var(--gray-800);
    list-style: none;
    transition: background 0.2s;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary:hover {
    background: var(--sage-50);
}

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

.faq-item[open] .faq-chevron {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 24px 20px;
}

.faq-answer p {
    font-size: 0.875rem;
    color: var(--gray-500);
    line-height: 1.8;
}

/* ===== Waitlist CTA ===== */
.waitlist-cta {
    padding: 80px 0;
}

.waitlist-card {
    background: linear-gradient(135deg, #1a2a2e 0%, #2a3a3e 40%, #1e2e32 100%);
    border-radius: var(--radius-xl);
    overflow: hidden;
    position: relative;
}

.waitlist-content {
    padding: 80px 60px 60px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.waitlist-card h2 {
    font-size: 2.5rem;
    color: #C9A84C;
    margin-bottom: 16px;
}

.waitlist-card p {
    color: rgba(255,255,255,0.7);
    font-size: 0.938rem;
    max-width: 440px;
    margin: 0 auto 36px;
    line-height: 1.7;
}

.waitlist-form {
    display: flex;
    max-width: 460px;
    margin: 0 auto;
    gap: 0;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 50px;
    padding: 5px 5px 5px 24px;
    align-items: center;
}

.waitlist-input {
    flex: 1;
    background: none;
    border: none;
    outline: none;
    color: white;
    font-size: 0.875rem;
    font-family: 'DM Sans', sans-serif;
    padding: 12px 0;
}

.waitlist-input::placeholder {
    color: rgba(255,255,255,0.4);
}

.waitlist-btn {
    background: var(--teal);
    color: white;
    border: none;
    padding: 12px 28px;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    font-family: 'DM Sans', sans-serif;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
}

.waitlist-btn:hover {
    background: var(--teal-600);
    transform: translateY(-1px);
}

.waitlist-visual {
    display: flex;
    justify-content: center;
    padding: 40px 60px 60px;
    position: relative;
}

/* CSS Passport book illustration */
.passport-book {
    position: relative;
    width: 220px;
    height: 300px;
}

.passport-front,
.passport-back {
    position: absolute;
    width: 160px;
    height: 220px;
    border-radius: 6px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.passport-back {
    background: linear-gradient(145deg, #1a2744, #0f1a2e);
    left: 10%;
    bottom: 10%;
    z-index: 1;
    box-shadow: -8px 8px 24px rgba(0,0,0,0.4);
}

.passport-front {
    background: linear-gradient(145deg, #1e2d4a, #152238);
    right: 10%;
    bottom: 15%;
    z-index: 2;
    box-shadow: 8px 8px 24px rgba(0,0,0,0.3);
}

.passport-title {
    font-family: 'Playfair Display', serif;
    font-size: 0.9rem;
    letter-spacing: 4px;
    color: #C9A84C;
    font-weight: 600;
}

.passport-sub {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.55rem;
    letter-spacing: 2px;
    color: rgba(201, 168, 76, 0.6);
    margin-top: 6px;
}

.passport-front::before {
    content: '';
    width: 60px;
    height: 60px;
    border: 2px solid rgba(201, 168, 76, 0.4);
    border-radius: 50%;
    margin-bottom: 16px;
}

/* ===== Footer ===== */
.footer {
    background: var(--sage-50);
    color: var(--gray-600);
    padding: 60px 0 40px;
    border-top: 1px solid var(--sage-light);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
}

.footer-brand .logo {
    color: var(--gray-900);
    margin-bottom: 16px;
}

.footer-brand p {
    font-size: 0.813rem;
    line-height: 1.7;
    color: var(--gray-500);
    max-width: 260px;
    margin-bottom: 16px;
}

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

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    color: var(--gray-500);
    font-weight: 500;
}

.footer-links h4 {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--gray-800);
    margin-bottom: 20px;
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

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

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

.footer-socials {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.social-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid var(--sage-light);
    color: var(--gray-500);
    text-decoration: none;
    transition: all 0.2s;
}

.social-icon:hover {
    color: var(--gray-900);
    border-color: var(--gray-400);
    background: white;
}

.footer-socials-bar {
    text-align: center;
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid var(--sage-light);
}

.footer-socials-bar h4 {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--gray-800);
    margin-bottom: 16px;
}

.footer-socials-bar .footer-socials {
    justify-content: center;
}

/* ===== Responsive ===== */
@media (max-width: 968px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

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

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

    .store-buttons {
        justify-content: center;
    }

    .feature-container,
    .feature-container.reverse {
        grid-template-columns: 1fr;
        gap: 40px;
        direction: ltr;
    }

    .feature-container.reverse > * {
        direction: ltr;
    }

    .feature-text {
        text-align: center;
    }

    .feature-list {
        align-items: center;
    }

    .passes-grid,
    .passes-grid.three-col {
        grid-template-columns: 1fr;
        max-width: 440px;
    }

    .social-proof-container {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }

    .pwa-container {
        flex-direction: column;
        text-align: center;
    }

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

@media (max-width: 640px) {
    .nav-links, .nav-cta {
        display: none;
    }

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

    .hero {
        padding: 120px 0 60px;
    }

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

    .steps-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .globe {
        width: 260px;
        height: 260px;
    }

    .globe-large {
        width: 280px;
        height: 280px;
    }

    .phone-mockup {
        width: 240px;
        height: 480px;
    }

    .feature-visual .phone-mockup {
        width: 220px;
        height: 440px;
    }

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

    .waitlist-card h2 {
        font-size: 1.75rem;
    }

    .waitlist-content {
        padding: 48px 24px 40px;
    }

    .waitlist-form {
        flex-direction: column;
        border-radius: var(--radius-md);
        padding: 16px;
        gap: 12px;
    }

    .waitlist-input {
        width: 100%;
        text-align: center;
    }

    .waitlist-btn {
        width: 100%;
    }

    .passport-book {
        width: 180px;
        height: 240px;
    }

    .passport-front,
    .passport-back {
        width: 130px;
        height: 180px;
    }

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

    .store-buttons {
        flex-direction: column;
        align-items: center;
    }

    .store-btn {
        width: 100%;
        max-width: 220px;
        justify-content: center;
    }

    .flight-card-preview {
        margin-top: 16px;
    }

    .ai-suggestions-preview {
        justify-content: center;
    }

    .photo-grid-preview {
        max-width: 260px;
        margin: 0 auto;
    }

    .itinerary-preview {
        max-width: 100%;
    }
}

/* ===== Animations ===== */
@media (prefers-reduced-motion: no-preference) {
    .step, .feature-text, .feature-visual,
    .boarding-pass, .faq-item, .waitlist-card {
        opacity: 0;
        transform: translateY(24px);
        transition: opacity 0.6s ease, transform 0.6s ease;
    }

    .step.visible, .feature-text.visible, .feature-visual.visible,
    .boarding-pass.visible, .faq-item.visible, .waitlist-card.visible {
        opacity: 1;
        transform: translateY(0);
    }

    .globe-pin {
        animation: pulse 2s ease-in-out infinite;
    }

    .globe-pin.pin-2 { animation-delay: 0.5s; }
    .globe-pin.pin-3 { animation-delay: 1s; }
    .globe-pin.pin-4 { animation-delay: 1.5s; }

    @keyframes pulse {
        0%, 100% { box-shadow: 0 0 10px var(--teal), 0 0 20px rgba(42, 157, 143, 0.4); }
        50% { box-shadow: 0 0 16px var(--teal), 0 0 32px rgba(42, 157, 143, 0.6); }
    }
}
