/* ==============================
   TRAVELVAULT — Premium Design
   ============================== */

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  /* Navy spectrum */
  --navy-950: #060E1F;
  --navy-900: #0B1D3A;
  --navy-800: #0F2647;
  --navy-700: #153560;
  --navy-600: #1C4A82;
  /* Gold spectrum */
  --gold: #C9A84C;
  --gold-light: #DFC06E;
  --gold-dim: rgba(201, 168, 76, 0.12);
  --gold-glow: rgba(201, 168, 76, 0.08);
  /* Neutrals */
  --white: #FFFFFF;
  --gray-50: #F8F9FA;
  --gray-100: #F1F3F5;
  --gray-200: #E9ECEF;
  --gray-300: #DEE2E6;
  --gray-400: #ADB5BD;
  --gray-500: #868E96;
  --gray-600: #6C757D;
  --gray-700: #495057;
  --gray-800: #343A40;
  --gray-900: #212529;
  /* Accent */
  --green: #2DD4A8;
  --green-dim: rgba(45, 212, 168, 0.12);
  /* Type */
  --font: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'DM Serif Display', Georgia, serif;
  /* Misc */
  --radius: 16px;
  --radius-sm: 10px;
  --radius-xs: 6px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.04), 0 1px 2px rgba(0,0,0,0.06);
  --shadow: 0 4px 16px rgba(0,0,0,0.06), 0 1px 4px rgba(0,0,0,0.04);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.08), 0 4px 12px rgba(0,0,0,0.04);
  --shadow-xl: 0 24px 64px rgba(0,0,0,0.12);
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

html { scroll-behavior: smooth; scroll-padding-top: 80px; }

body {
  font-family: var(--font);
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

h1, h2, h3, h4 { line-height: 1.15; }
h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--navy-900);
  letter-spacing: -0.01em;
}
h3 { font-size: 1.125rem; font-weight: 600; color: var(--navy-900); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: 8px; justify-content: center;
  padding: 13px 28px; border-radius: 50px; font-size: 0.9rem; font-weight: 600;
  cursor: pointer; transition: all 0.25s var(--ease); border: 1.5px solid transparent;
  font-family: var(--font); text-align: center; white-space: nowrap;
}
.btn svg { flex-shrink: 0; transition: transform 0.25s var(--ease); }
.btn:hover svg { transform: translateX(3px); }

.btn-primary {
  background: var(--gold); color: var(--navy-900); border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-light); border-color: var(--gold-light);
  box-shadow: 0 8px 24px rgba(201, 168, 76, 0.25); transform: translateY(-1px);
}

.btn-secondary {
  background: var(--white); color: var(--navy-900); border-color: var(--gray-300);
}
.btn-secondary:hover {
  border-color: var(--navy-900); box-shadow: var(--shadow-sm); transform: translateY(-1px);
}

.btn-ghost {
  background: rgba(255,255,255,0.08); color: var(--white); border-color: rgba(255,255,255,0.2);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.14); border-color: rgba(255,255,255,0.4);
}

.btn-nav {
  padding: 9px 22px; background: var(--gold); color: var(--navy-900); border-color: var(--gold);
  font-size: 0.85rem;
}
.btn-nav:hover { background: var(--gold-light); }

.btn-lg { padding: 16px 40px; font-size: 1rem; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(6, 14, 31, 0.85);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: all 0.3s var(--ease);
}
.navbar.scrolled { background: rgba(6, 14, 31, 0.95); box-shadow: 0 4px 20px rgba(0,0,0,0.3); }

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

.logo { display: flex; align-items: center; gap: 10px; }
.logo-mark { display: flex; align-items: center; }
.logo-text { font-size: 1.15rem; font-weight: 700; color: var(--white); letter-spacing: -0.02em; }

.nav-links { display: flex; align-items: center; gap: 8px; }
.nav-links > a {
  color: rgba(255,255,255,0.6); font-size: 0.875rem; font-weight: 500;
  padding: 8px 14px; border-radius: 8px; transition: all 0.2s var(--ease);
}
.nav-links > a:hover { color: var(--white); background: rgba(255,255,255,0.06); }
.nav-links .btn-nav { margin-left: 8px; }

.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.nav-toggle span { width: 22px; height: 2px; background: var(--white); border-radius: 2px; transition: all 0.3s var(--ease); }
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== HERO ===== */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  background: var(--navy-950); overflow: hidden; padding-top: 72px;
}
.hero-glow {
  position: absolute; top: -20%; right: -10%; width: 70%; height: 100%;
  background: radial-gradient(ellipse at center, rgba(201, 168, 76, 0.07) 0%, transparent 65%);
  pointer-events: none;
}
.hero-grid-bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 30%, transparent 70%);
}

.hero-inner {
  position: relative; z-index: 2; display: grid;
  grid-template-columns: 1fr 1.1fr; gap: 64px; align-items: center;
  padding-top: 80px; padding-bottom: 100px;
}

.hero-badge {
  display: inline-flex; padding: 6px 16px; border-radius: 50px;
  background: var(--gold-dim); color: var(--gold); font-size: 0.8rem;
  font-weight: 600; letter-spacing: 0.03em; margin-bottom: 24px;
  border: 1px solid rgba(201, 168, 76, 0.15);
}

h1 {
  font-family: var(--font-display); font-size: clamp(2.5rem, 4.5vw, 3.5rem);
  color: var(--white); margin-bottom: 24px; line-height: 1.1;
}
.gold { color: var(--gold); }

.hero-sub { font-size: 1.1rem; color: rgba(255,255,255,0.55); max-width: 480px; margin-bottom: 36px; line-height: 1.7; }
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }

/* Dashboard Mockup */
.hero-visual { position: relative; }

.dashboard-mock {
  background: var(--navy-800); border-radius: var(--radius); overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 32px 80px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,255,255,0.05);
}
.mock-topbar {
  display: flex; align-items: center; gap: 16px; padding: 14px 20px;
  background: rgba(255,255,255,0.03); border-bottom: 1px solid rgba(255,255,255,0.06);
}
.mock-dots { display: flex; gap: 6px; }
.mock-dots span { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,0.1); }
.mock-dots span:first-child { background: #FF6058; }
.mock-dots span:nth-child(2) { background: #FFBD2E; }
.mock-dots span:last-child { background: #27CA40; }
.mock-tabs { display: flex; gap: 4px; margin-left: 12px; }
.mock-tab {
  padding: 5px 14px; border-radius: 6px; font-size: 0.75rem; font-weight: 500;
  color: rgba(255,255,255,0.4); transition: all 0.2s;
}
.mock-tab.active { background: rgba(255,255,255,0.08); color: var(--white); }

.mock-body { display: flex; min-height: 280px; }
.mock-sidebar {
  width: 56px; padding: 16px 0; display: flex; flex-direction: column;
  align-items: center; gap: 8px; border-right: 1px solid rgba(255,255,255,0.06);
}
.mock-nav-item {
  width: 32px; height: 32px; border-radius: 8px; background: rgba(255,255,255,0.04);
}
.mock-nav-item.active { background: var(--gold-dim); border: 1px solid rgba(201,168,76,0.2); }

.mock-main { flex: 1; padding: 20px; }
.mock-search-bar {
  height: 36px; border-radius: 8px; background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08); margin-bottom: 16px;
}
.mock-results { display: flex; flex-direction: column; gap: 10px; }
.mock-result-row {
  display: flex; align-items: center; gap: 12px; padding: 12px 14px;
  border-radius: 10px; background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.04);
}
.mock-avatar {
  width: 36px; height: 36px; border-radius: 8px; background: rgba(255,255,255,0.06); flex-shrink: 0;
}
.mock-result-info { flex: 1; display: flex; flex-direction: column; gap: 6px; }
.mock-line { height: 8px; border-radius: 4px; background: rgba(255,255,255,0.1); }
.mock-line.light { background: rgba(255,255,255,0.05); }
.mock-line.w80 { width: 80%; } .mock-line.w70 { width: 70%; } .mock-line.w90 { width: 90%; }
.mock-line.w65 { width: 65%; } .mock-line.w50 { width: 50%; } .mock-line.w40 { width: 40%; }
.mock-line.w60 { width: 60%; } .mock-line.w45 { width: 45%; }
.mock-price { width: 52px; height: 24px; border-radius: 6px; background: var(--gold-dim); }

/* Floating cards */
.floating-card {
  position: absolute; background: var(--navy-800); border-radius: var(--radius-sm);
  padding: 14px 18px; border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 16px 40px rgba(0,0,0,0.3);
  animation: float 6s ease-in-out infinite;
}
.fc-1 { bottom: -20px; left: -24px; display: flex; align-items: center; gap: 12px; }
.fc-2 { top: 40px; right: -20px; text-align: center; }

.fc-icon { width: 10px; height: 10px; border-radius: 50%; }
.fc-icon.green { background: var(--green); box-shadow: 0 0 10px rgba(45,212,168,0.4); }
.fc-text .fc-line { width: 80px; height: 7px; border-radius: 4px; background: rgba(255,255,255,0.12); margin-bottom: 4px; }
.fc-sub { font-size: 0.7rem; color: rgba(255,255,255,0.4); white-space: nowrap; }
.fc-stat { font-size: 1.2rem; font-weight: 700; color: var(--gold); margin-bottom: 2px; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.fc-2 { animation-delay: -3s; }

/* ===== TRUST BAR ===== */
.trust-bar { padding: 40px 0; background: var(--navy-900); border-bottom: 1px solid rgba(255,255,255,0.06); }

.trust-stats {
  display: flex; align-items: center; justify-content: center; gap: 0;
}
.stat { text-align: center; flex: 1; }
.stat-number { display: block; font-size: 1.35rem; font-weight: 700; color: var(--white); }
.stat-label { font-size: 0.78rem; color: rgba(255,255,255,0.45); text-transform: uppercase; letter-spacing: 0.06em; margin-top: 2px; }
.stat-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.1); flex-shrink: 0; }

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

.section-header { margin-bottom: 64px; }
.section-header.center { text-align: center; }
.section-header.center .section-desc { margin-left: auto; margin-right: auto; }

.section-tag {
  display: inline-block; font-size: 0.78rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--gold); margin-bottom: 12px;
}
.section-tag.light { color: var(--gold-light); }

.section-desc { font-size: 1.05rem; color: var(--gray-500); max-width: 500px; margin-top: 8px; }

/* ===== WHY SECTION ===== */
.why { background: var(--navy-950); }
.why h2 { color: var(--white); }

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

.why-card {
  padding: 36px 32px; border-radius: var(--radius);
  background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06);
  transition: all 0.3s var(--ease);
}
.why-card:hover { border-color: rgba(201,168,76,0.25); box-shadow: 0 8px 24px rgba(0,0,0,0.2); transform: translateY(-2px); }

.why-icon {
  width: 44px; height: 44px; display: flex; align-items: center; justify-content: center;
  color: var(--gold); margin-bottom: 20px;
}
.why-icon svg { width: 28px; height: 28px; }

.why-card h3 { color: var(--white); }
.why-card p { color: rgba(255,255,255,0.5); font-size: 0.95rem; margin-top: 8px; line-height: 1.6; }

/* ===== INVENTORY ===== */
.inventory { background: var(--navy-900); }
.inventory h2 { color: var(--white); }
.inventory .section-desc { color: rgba(255,255,255,0.5); }

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

.inv-card {
  padding: 32px 28px; border-radius: var(--radius);
  background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06);
  transition: all 0.3s var(--ease); position: relative; overflow: hidden;
}
.inv-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--gold); transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.inv-card:hover::before { transform: scaleX(1); }
.inv-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.3); transform: translateY(-3px); }

.inv-icon-wrap {
  width: 48px; height: 48px; border-radius: 12px; background: var(--gold-dim);
  display: flex; align-items: center; justify-content: center; margin-bottom: 20px;
  color: var(--gold);
}
.inv-icon-wrap svg { width: 24px; height: 24px; }

.inv-card h3 { color: var(--white); }
.inv-card p { color: rgba(255,255,255,0.5); font-size: 0.9rem; margin-top: 8px; line-height: 1.6; }

/* Large inventory cards (hotels + flights) */
.inv-two-col { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }

.inv-card-large {
  padding: 40px 36px; border-radius: var(--radius);
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  transition: all 0.3s var(--ease); position: relative; overflow: hidden;
}
.inv-card-large::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--gold); transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.inv-card-large:hover::before { transform: scaleX(1); }
.inv-card-large:hover { box-shadow: 0 12px 40px rgba(0,0,0,0.3); transform: translateY(-3px); }

.inv-card-large .inv-icon-wrap { margin-bottom: 16px; }
.inv-card-large h3 { font-size: 1.3rem; margin-bottom: 8px; color: var(--white); }
.inv-card-large > p { color: rgba(255,255,255,0.55); font-size: 0.95rem; line-height: 1.7; margin-bottom: 20px; }

.inv-large-badge {
  display: inline-block; padding: 4px 14px; border-radius: 50px;
  background: var(--gold-dim); color: var(--gold); font-size: 0.75rem;
  font-weight: 600; letter-spacing: 0.03em; margin-bottom: 16px;
}

.inv-features { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 8px 16px; }
.inv-features li {
  font-size: 0.875rem; color: rgba(255,255,255,0.5); padding-left: 20px; position: relative;
}
.inv-features li::before {
  content: ''; position: absolute; left: 0; top: 6px;
  width: 12px; height: 12px; border-radius: 50%; background: var(--gold-dim);
  background-image: url("data:image/svg+xml,%3Csvg width='8' height='8' viewBox='0 0 8 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1.5 4l2 2L6.5 2' stroke='%23C9A84C' stroke-width='1.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center;
}

/* ===== BNPL SECTION ===== */
.bnpl {
  background: linear-gradient(165deg, var(--navy-950) 0%, #0D2240 100%);
  position: relative; overflow: hidden;
}
.bnpl::before {
  content: ''; position: absolute; top: -30%; right: -20%; width: 60%; height: 100%;
  background: radial-gradient(ellipse, rgba(201,168,76,0.05) 0%, transparent 65%);
  pointer-events: none;
}

.bnpl-layout {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
  position: relative; z-index: 1;
}

.bnpl-content h2 { color: var(--white); font-size: clamp(2rem, 4.5vw, 3.2rem); margin-bottom: 20px; }
.bnpl-lead { color: rgba(255,255,255,0.6); font-size: 1.1rem; line-height: 1.7; margin-bottom: 40px; }

.bnpl-steps { display: flex; flex-direction: column; gap: 20px; margin-bottom: 36px; }

.bnpl-step {
  display: flex; gap: 18px; align-items: flex-start;
}

.bnpl-step-num {
  width: 36px; height: 36px; border-radius: 10px; flex-shrink: 0;
  background: var(--gold-dim); border: 1px solid rgba(201,168,76,0.2);
  color: var(--gold); font-size: 0.85rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center; margin-top: 2px;
}

.bnpl-step h3 { color: var(--white); font-size: 1rem; margin-bottom: 4px; }
.bnpl-step p { color: rgba(255,255,255,0.5); font-size: 0.88rem; line-height: 1.6; margin: 0; }

/* BNPL Visual */
.bnpl-visual { position: relative; }

.bnpl-card-stack { position: relative; }

.bnpl-hero-card {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius); padding: 32px; backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.bnpl-card-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 28px; }
.bnpl-card-label { font-size: 0.8rem; font-weight: 600; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.06em; }
.bnpl-card-status {
  font-size: 0.7rem; font-weight: 600; padding: 4px 12px; border-radius: 50px;
  background: var(--gold-dim); color: var(--gold);
}

.bnpl-card-booking { margin-bottom: 4px; }
.bnpl-booking-name { font-size: 1.15rem; font-weight: 700; color: var(--white); margin-bottom: 4px; }
.bnpl-booking-dates { font-size: 0.82rem; color: rgba(255,255,255,0.4); }

.bnpl-card-timer {
  display: flex; align-items: center; gap: 8px; padding: 12px 16px;
  border-radius: 10px; background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.15); margin-bottom: 20px;
  color: var(--gold); font-size: 0.8rem; font-weight: 500;
}
.bnpl-card-timer svg { flex-shrink: 0; }

.bnpl-card-divider { height: 1px; background: rgba(255,255,255,0.08); margin: 24px 0; }

.bnpl-card-rows { display: flex; flex-direction: column; gap: 14px; margin-bottom: 28px; }
.bnpl-card-row {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.9rem; color: rgba(255,255,255,0.5);
}
.bnpl-card-row span:last-child { font-weight: 600; color: rgba(255,255,255,0.8); }
.bnpl-green { color: var(--green) !important; }
.bnpl-gold { color: var(--gold) !important; }

.bnpl-card-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.bnpl-action-btn {
  padding: 12px 16px; border-radius: 10px; text-align: center;
  font-size: 0.8rem; font-weight: 600; color: rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
}
.bnpl-action-btn.primary { background: var(--gold); color: var(--navy-950); border-color: var(--gold); }

.bnpl-floating-tag {
  position: absolute; display: flex; align-items: center; gap: 8px;
  padding: 10px 16px; border-radius: 50px;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  font-size: 0.75rem; font-weight: 500; color: var(--green);
  animation: float 6s ease-in-out infinite; white-space: nowrap;
}
.bnpl-floating-tag svg { flex-shrink: 0; }
.bnpl-floating-tag.tag-1 { top: -16px; right: 20px; }
.bnpl-floating-tag.tag-2 { bottom: -16px; left: 0; animation-delay: -3s; }

/* ===== PLATFORM ===== */
.platform { background: var(--navy-950); }
.platform h2, .platform h3 { color: var(--white); }
.platform .section-desc { color: rgba(255,255,255,0.5); }

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

.feature-card {
  padding: 32px 28px; border-radius: var(--radius);
  background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06);
  transition: all 0.3s var(--ease);
}
.feature-card:hover {
  background: rgba(255,255,255,0.06); border-color: rgba(201,168,76,0.2);
  transform: translateY(-2px);
}

.feature-num {
  display: inline-block; font-size: 0.75rem; font-weight: 700; color: var(--gold);
  margin-bottom: 16px; font-family: var(--font);
}

.feature-card p { color: rgba(255,255,255,0.5); font-size: 0.9rem; margin-top: 8px; line-height: 1.6; }

/* ===== SPLIT SECTIONS ===== */
.split-layout {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.split-layout.reverse { direction: rtl; }
.split-layout.reverse > * { direction: ltr; }

.split-content p { color: var(--gray-600); font-size: 1rem; margin-bottom: 16px; line-height: 1.7; }
.split-content .section-tag { margin-bottom: 16px; }
.split-content h2 { margin-bottom: 20px; }
.accent-text { color: var(--navy-900) !important; font-weight: 600; }
.split-content .btn { margin-top: 8px; }

.agencies { background: var(--white); }
.independents { background: var(--gray-50); border-top: 1px solid var(--gray-200); }

/* App Preview Mockup */
.app-preview {
  border-radius: var(--radius); overflow: hidden; background: var(--navy-900);
  border: 1px solid rgba(255,255,255,0.06); box-shadow: var(--shadow-xl);
}
.app-bar {
  display: flex; align-items: center; gap: 14px; padding: 12px 18px;
  background: rgba(255,255,255,0.03); border-bottom: 1px solid rgba(255,255,255,0.06);
}
.app-dots { display: flex; gap: 5px; }
.app-dots span { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.12); }
.app-title { font-size: 0.75rem; color: rgba(255,255,255,0.4); font-weight: 500; }

.app-content { padding: 24px; }

.app-stat-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 24px; }
.app-stat {
  background: rgba(255,255,255,0.04); border-radius: var(--radius-sm); padding: 16px;
  border: 1px solid rgba(255,255,255,0.06);
}
.app-stat-val { display: block; font-size: 1.3rem; font-weight: 700; color: var(--white); }
.app-stat-lbl { font-size: 0.7rem; color: rgba(255,255,255,0.35); text-transform: uppercase; letter-spacing: 0.05em; margin-top: 2px; }

.app-chart { display: flex; align-items: flex-end; gap: 8px; height: 100px; }
.chart-bar {
  flex: 1; border-radius: 4px 4px 0 0; background: rgba(255,255,255,0.06);
  transition: background 0.3s;
}
.chart-bar.highlight { background: var(--gold); opacity: 0.8; }

/* Itinerary mockup */
.app-itinerary { display: flex; flex-direction: column; gap: 12px; }
.itin-item {
  display: flex; align-items: center; gap: 12px; padding: 14px;
  border-radius: var(--radius-sm); background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.05);
}
.itin-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--green); flex-shrink: 0; }
.itin-dot.pending { background: var(--gold); }
.itin-info { flex: 1; }
.itin-line { height: 8px; width: 70%; border-radius: 4px; background: rgba(255,255,255,0.1); margin-bottom: 6px; }
.itin-sub { height: 6px; width: 45%; border-radius: 3px; background: rgba(255,255,255,0.05); }
.itin-badge {
  font-size: 0.65rem; font-weight: 600; padding: 4px 10px; border-radius: 50px;
  background: var(--green-dim); color: var(--green); white-space: nowrap;
}
.itin-badge.pending { background: var(--gold-dim); color: var(--gold); }

/* ===== PRICING ===== */
.pricing { background: var(--white); }

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

.price-card {
  padding: 40px 32px; border-radius: var(--radius); background: var(--gray-50);
  border: 1.5px solid var(--gray-200); text-align: center;
  transition: all 0.3s var(--ease); position: relative;
}
.price-card.featured {
  border-color: var(--gold); background: var(--white); box-shadow: var(--shadow-lg);
  transform: scale(1.03);
}

.price-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  padding: 4px 18px; border-radius: 50px; font-size: 0.7rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.06em;
  background: var(--gold); color: var(--navy-900);
}

.price-card h3 { font-size: 1.3rem; margin-bottom: 4px; }
.price-for { color: var(--gray-500); font-size: 0.85rem; margin-bottom: 20px; }
.price-amount { font-size: 1.6rem; font-weight: 700; color: var(--navy-900); margin-bottom: 28px; }

.price-features { list-style: none; text-align: left; margin-bottom: 32px; }
.price-features li {
  padding: 10px 0; padding-left: 28px; position: relative; color: var(--gray-600); font-size: 0.9rem;
  border-bottom: 1px solid var(--gray-100);
}
.price-features li:last-child { border: none; }
.price-features li::before {
  content: ''; position: absolute; left: 0; top: 16px;
  width: 16px; height: 16px; border-radius: 50%; background: var(--gold-dim);
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='10' viewBox='0 0 10 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 5l2.5 2.5L8 3' stroke='%23C9A84C' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center;
}

.price-card .btn { width: 100%; }

.pricing-note { text-align: center; color: var(--gray-400); font-size: 0.85rem; }

/* ===== HOW IT WORKS ===== */
.how-it-works { background: var(--white); }

.steps-row { display: flex; align-items: flex-start; justify-content: center; gap: 0; margin-top: 16px; }

.step-card { text-align: center; flex: 1; max-width: 300px; padding: 0 24px; }

.step-num {
  width: 52px; height: 52px; border-radius: 14px; background: var(--navy-900);
  color: var(--gold); font-size: 1.15rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center; margin: 0 auto 20px;
}

.step-card p { color: var(--gray-600); font-size: 0.9rem; margin-top: 8px; line-height: 1.6; }

.step-arrow {
  color: var(--gray-300); margin-top: 16px; flex-shrink: 0; padding-top: 2px;
}

/* ===== TESTIMONIALS ===== */
.testimonials { background: var(--gray-50); }

.testimonial-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }

.testimonial-card {
  padding: 40px 36px; border-radius: var(--radius); background: var(--gray-50);
  border: 1px solid var(--gray-200); position: relative;
}

.quote-mark {
  font-family: var(--font-display); font-size: 4rem; color: var(--gold); line-height: 1;
  position: absolute; top: 20px; left: 32px; opacity: 0.3;
}

.testimonial-card p {
  color: var(--gray-700); font-size: 1.05rem; line-height: 1.7; margin-bottom: 24px;
  position: relative; z-index: 1;
}

.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 40px; height: 40px; border-radius: 10px; background: var(--navy-900);
  color: var(--gold); font-size: 0.75rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.testimonial-author strong { display: block; font-size: 0.9rem; color: var(--navy-900); }
.testimonial-author span { font-size: 0.8rem; color: var(--gray-500); }

/* ===== FAQ ===== */
.faq { background: var(--white); }

.faq-list { max-width: 720px; margin: 0 auto; }

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

.faq-item summary {
  padding: 24px 0; font-size: 1rem; font-weight: 600; color: var(--navy-900);
  cursor: pointer; list-style: none; display: flex;
  justify-content: space-between; align-items: center; transition: all 0.2s var(--ease);
}
.faq-item summary:hover { color: var(--gold); }

.faq-item summary::after {
  content: '+'; font-size: 1.4rem; font-weight: 300; color: var(--gold);
  transition: all 0.3s var(--ease); flex-shrink: 0; margin-left: 16px;
  width: 28px; height: 28px; display: flex; align-items: center; justify-content: center;
  border-radius: 50%; background: var(--gold-dim);
}
.faq-item[open] summary::after { content: '\2212'; }
.faq-item summary::-webkit-details-marker { display: none; }

.faq-answer { padding-bottom: 24px; }
.faq-answer p { color: var(--gray-600); font-size: 0.95rem; line-height: 1.7; }

/* ===== CTA SECTION ===== */
.cta-section {
  background: var(--navy-950); position: relative; overflow: hidden;
}
.cta-glow {
  position: absolute; top: -50%; left: 50%; transform: translateX(-50%);
  width: 100%; height: 100%;
  background: radial-gradient(ellipse at center, rgba(201,168,76,0.06) 0%, transparent 60%);
}

.cta-box { position: relative; z-index: 1; text-align: center; max-width: 640px; margin: 0 auto; }
.cta-box h2 { color: var(--white); }
.cta-box > p { color: rgba(255,255,255,0.5); font-size: 1.05rem; margin: 12px 0 40px; }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 20px; }

.access-form input,
.access-form select {
  width: 100%; padding: 15px 18px; border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,0.1); background: rgba(255,255,255,0.05);
  color: var(--white); font-family: var(--font); font-size: 0.9rem;
  transition: all 0.2s var(--ease); outline: none;
}
.access-form input::placeholder { color: rgba(255,255,255,0.3); }
.access-form select {
  color: rgba(255,255,255,0.3); appearance: none; -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='rgba(255,255,255,0.3)' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 16px center;
}
.access-form select option { background: var(--navy-900); color: var(--white); }
.access-form input:focus, .access-form select:focus {
  border-color: var(--gold); background: rgba(255,255,255,0.08);
}

/* ===== FOOTER ===== */
.footer { background: var(--gray-900); color: rgba(255,255,255,0.5); }

.footer-top {
  display: grid; grid-template-columns: 1.2fr 2fr; gap: 64px;
  padding: 64px 0 48px;
}

.footer-brand .logo { margin-bottom: 14px; }
.footer-brand p { font-size: 0.85rem; color: rgba(255,255,255,0.35); max-width: 260px; line-height: 1.5; }

.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.footer-col h4 {
  color: var(--white); font-size: 0.8rem; text-transform: uppercase;
  letter-spacing: 0.08em; margin-bottom: 16px; font-weight: 600;
}
.footer-col a {
  display: block; font-size: 0.875rem; color: rgba(255,255,255,0.4);
  padding: 5px 0; transition: color 0.2s;
}
.footer-col a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06); padding: 20px 0;
}
.footer-bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.25); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { max-width: 560px; }
  .split-layout { grid-template-columns: 1fr; gap: 48px; }
  .split-layout.reverse { direction: ltr; }
  .split-visual { max-width: 480px; }
  .card-grid, .feature-grid, .pricing-grid, .why-grid { grid-template-columns: repeat(2, 1fr); }
  .price-card.featured { transform: none; }
}

@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .section { padding: 80px 0; }

  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed; top: 72px; left: 0;
    width: 100%; height: calc(100vh - 72px); height: calc(100dvh - 72px);
    z-index: 999; background: var(--navy-950); flex-direction: column;
    align-items: center; justify-content: center; gap: 20px;
    transform: translateX(100%); transition: transform 0.35s var(--ease);
  }
  .nav-links.active { transform: translateX(0); }
  .nav-links > a { font-size: 1.1rem; padding: 12px 20px; }
  .nav-links .btn-nav { margin-left: 0; margin-top: 8px; }

  .hero { min-height: auto; padding: 80px 0 48px; }
  h1 { font-size: 2rem; }
  .hero-inner { padding-top: 24px; padding-bottom: 48px; }

  .card-grid, .feature-grid, .why-grid, .inv-two-col, .bnpl-layout { grid-template-columns: 1fr; }
  .bnpl-layout { gap: 48px; }
  .bnpl-card-actions { grid-template-columns: 1fr; }
  .inv-features { grid-template-columns: 1fr; }
  .pricing-grid {
    grid-template-columns: 1fr; max-width: 380px;
    margin-left: auto; margin-right: auto;
  }

  .trust-stats { flex-direction: column; gap: 20px; }
  .stat-divider { width: 40px; height: 1px; }

  .steps-row { flex-direction: column; align-items: center; gap: 0; }
  .step-arrow { transform: rotate(90deg); margin: 8px 0; }

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

  .footer-top { grid-template-columns: 1fr; gap: 40px; }
  .footer-links { grid-template-columns: repeat(2, 1fr); }

  .floating-card { display: none; }

  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
}

@media (max-width: 480px) {
  h1 { font-size: 1.7rem; }
  h2 { font-size: 1.5rem; }
  .footer-links { grid-template-columns: 1fr; }
  .section { padding: 64px 0; }
}

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
