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

:root {
  --primary: #0057FF;
  --primary-dark: #0040CC;
  --primary-light: #4D8FFF;
  --accent: #FF6B00;
  --accent-light: #FF8C33;
  --bg: #F0F4FF;
  --bg-dark: #0D1B2A;
  --surface: #FFFFFF;
  --foreground: #0D1B2A;
  --muted: #6B7A8D;
  --border: #D6E0F5;
  --success: #00C48C;
  --warning: #FFB800;
  --error: #FF4D4D;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 4px 24px rgba(0,87,255,0.10);
  --shadow-lg: 0 12px 48px rgba(0,87,255,0.16);
  --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--foreground);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

/* ── Nav ──────────────────────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(240,244,255,0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.2s;
}
.nav.scrolled { box-shadow: var(--shadow); }
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo-img { width: 36px; height: 36px; border-radius: 8px; }
.nav-logo-text { font-size: 1.25rem; font-weight: 800; color: var(--primary); letter-spacing: -0.5px; }
.nav-links { display: flex; align-items: center; gap: 8px; }
.nav-link {
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--muted);
  transition: color 0.2s, background 0.2s;
}
.nav-link:hover { color: var(--primary); background: rgba(0,87,255,0.06); }
.nav-cta-btn {
  padding: 9px 20px;
  background: var(--primary);
  color: white;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  transition: background 0.2s, transform 0.15s;
}
.nav-cta-btn:hover { background: var(--primary-dark); transform: translateY(-1px); }
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--foreground);
  border-radius: 2px;
  transition: 0.2s;
}
.nav-mobile-menu {
  display: none;
  flex-direction: column;
  padding: 12px 24px 20px;
  border-top: 1px solid var(--border);
  background: rgba(240,244,255,0.97);
}
.nav-mobile-menu.open { display: flex; }
.nav-mobile-link {
  padding: 12px 0;
  font-size: 1rem;
  font-weight: 500;
  color: var(--muted);
  border-bottom: 1px solid var(--border);
}
.nav-mobile-link:last-child { border-bottom: none; }
.nav-mobile-cta {
  margin-top: 8px;
  padding: 12px 20px;
  background: var(--primary);
  color: white;
  border-radius: 10px;
  text-align: center;
  font-weight: 600;
}

/* ── Hero ─────────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 100px 0 60px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0D1B2A 0%, #0D2A5C 40%, #0057FF 80%, #1A3A8A 100%);
}
.hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.particle {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  animation: float linear infinite;
}
@keyframes float {
  0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateY(-100px) rotate(360deg); opacity: 0; }
}
.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 100px;
  color: white;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.3px;
}
.hero-badge-dot {
  width: 8px; height: 8px;
  background: var(--success);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.8); }
}
.hero-title {
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 900;
  line-height: 1.05;
  color: white;
  letter-spacing: -2px;
}
.hero-title-accent {
  background: linear-gradient(90deg, #FF6B00, #FFB800);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-subtitle {
  max-width: 600px;
  font-size: 1.15rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
}

/* Search Card */
.search-card {
  width: 100%;
  max-width: 860px;
  background: white;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  padding: 24px;
  text-align: left;
}
.search-tabs {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
  background: var(--bg);
  border-radius: 10px;
  padding: 4px;
  width: fit-content;
}
.search-tab {
  padding: 8px 20px;
  border: none;
  border-radius: 8px;
  background: transparent;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--muted);
  cursor: pointer;
  transition: all 0.2s;
}
.search-tab.active {
  background: white;
  color: var(--primary);
  box-shadow: 0 2px 8px rgba(0,87,255,0.12);
}
.search-fields { display: flex; flex-direction: column; gap: 12px; }
.search-field-group {
  display: flex;
  gap: 12px;
  align-items: flex-end;
  position: relative;
}
.search-field {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
  position: relative;
}
.search-field-narrow { flex: 0 0 140px; }
.search-label {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: 0.8px;
}
.search-input {
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-family: var(--font);
  color: var(--foreground);
  background: white;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
}
.search-input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0,87,255,0.1);
}
.swap-btn {
  flex: 0 0 40px;
  height: 44px;
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.15s;
  align-self: flex-end;
}
.swap-btn:hover { background: var(--border); transform: rotate(180deg); }
.search-btn {
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, var(--primary), #0040CC);
  color: white;
  border: none;
  border-radius: var(--radius-sm);
  font-size: 1.05rem;
  font-weight: 700;
  cursor: pointer;
  margin-top: 8px;
  transition: opacity 0.2s, transform 0.15s;
  font-family: var(--font);
}
.search-btn:hover { opacity: 0.92; transform: translateY(-1px); }
.search-btn:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

/* Autocomplete */
.autocomplete-dropdown {
  position: absolute;
  top: calc(100% + 4px);
  left: 0; right: 0;
  background: white;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  z-index: 200;
  max-height: 220px;
  overflow-y: auto;
  display: none;
}
.autocomplete-dropdown.open { display: block; }
.autocomplete-item {
  padding: 10px 14px;
  cursor: pointer;
  font-size: 0.9rem;
  transition: background 0.15s;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.autocomplete-item:hover { background: var(--bg); }
.autocomplete-item-code { font-weight: 700; color: var(--primary); font-size: 0.8rem; }
.autocomplete-item-name { color: var(--foreground); }
.autocomplete-item-country { color: var(--muted); font-size: 0.8rem; }

/* Results */
.results-area {
  width: 100%;
  max-width: 860px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.results-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: white;
  font-weight: 600;
}
.results-count { font-size: 0.9rem; opacity: 0.8; }
.result-card {
  background: white;
  border-radius: var(--radius);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: var(--shadow);
  transition: transform 0.15s, box-shadow 0.15s;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}
.result-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.result-card.best { border: 2px solid var(--accent); }
.result-best-badge {
  position: absolute;
  top: -10px; left: 16px;
  background: var(--accent);
  color: white;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 100px;
}
.result-card-wrap { position: relative; }
.result-airline-logo {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--primary);
  flex-shrink: 0;
  overflow: hidden;
}
.result-airline-logo img { width: 100%; height: 100%; object-fit: contain; }
.result-info { flex: 1; }
.result-airline-name { font-weight: 700; font-size: 0.95rem; }
.result-route { font-size: 0.85rem; color: var(--muted); }
.result-times { display: flex; align-items: center; gap: 8px; font-size: 0.9rem; }
.result-time { font-weight: 700; }
.result-duration { color: var(--muted); font-size: 0.8rem; }
.result-stops { font-size: 0.8rem; color: var(--muted); }
.result-price-wrap { text-align: right; }
.result-price { font-size: 1.5rem; font-weight: 800; color: var(--primary); }
.result-price-label { font-size: 0.75rem; color: var(--muted); }
.result-book-btn {
  padding: 8px 16px;
  background: var(--primary);
  color: white;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  white-space: nowrap;
}
.results-loading {
  color: white;
  text-align: center;
  padding: 24px;
  font-size: 1rem;
}
.results-error {
  background: rgba(255,77,77,0.15);
  border: 1px solid rgba(255,77,77,0.3);
  color: white;
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  text-align: center;
}
.results-app-cta {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  color: white;
  padding: 14px 20px;
  border-radius: var(--radius-sm);
  text-align: center;
  font-size: 0.9rem;
}
.results-app-cta a { color: var(--warning); font-weight: 600; }

/* Hero Stats */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  color: white;
}
.hero-stat { text-align: center; }
.hero-stat-num { display: block; font-size: 1.8rem; font-weight: 900; line-height: 1; }
.hero-stat-label { font-size: 0.78rem; color: rgba(255,255,255,0.6); font-weight: 500; }
.hero-stat-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.2); }

/* ── Trust Bar ────────────────────────────────────────────────────────────── */
.trust-bar {
  background: white;
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
}
.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.trust-item { font-size: 0.88rem; font-weight: 500; color: var(--muted); }
.trust-divider { color: var(--border); }

/* ── Section Shared ───────────────────────────────────────────────────────── */
.section-header { text-align: center; margin-bottom: 56px; }
.section-badge {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(0,87,255,0.08);
  color: var(--primary);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}
.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.15;
  color: var(--foreground);
  margin-bottom: 12px;
}
.section-subtitle { font-size: 1rem; color: var(--muted); max-width: 520px; margin: 0 auto; }

/* ── Features ─────────────────────────────────────────────────────────────── */
.features { padding: 100px 0; background: var(--bg); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feature-card-large { grid-column: span 2; }
.feature-card {
  background: white;
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.feature-icon-wrap {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.feature-icon-blue { background: rgba(0,87,255,0.1); }
.feature-icon-orange { background: rgba(255,107,0,0.1); }
.feature-icon-green { background: rgba(0,196,140,0.1); }
.feature-icon-purple { background: rgba(139,92,246,0.1); }
.feature-icon-teal { background: rgba(20,184,166,0.1); }
.feature-icon-red { background: rgba(255,77,77,0.1); }
.feature-icon { font-size: 1.5rem; }
.feature-title { font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; }
.feature-desc { font-size: 0.9rem; color: var(--muted); line-height: 1.65; }

/* Chat demo */
.feature-demo { margin-top: 20px; display: flex; flex-direction: column; gap: 10px; }
.chat-bubble {
  padding: 12px 16px;
  border-radius: 14px;
  font-size: 0.88rem;
  line-height: 1.5;
  max-width: 90%;
}
.chat-user {
  background: var(--primary);
  color: white;
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}
.chat-ai {
  background: var(--bg);
  color: var(--foreground);
  align-self: flex-start;
  border-bottom-left-radius: 4px;
  display: flex;
  gap: 8px;
  align-items: flex-start;
}
.chat-ai-icon { font-size: 1rem; flex-shrink: 0; margin-top: 1px; }

/* Feature tags */
.feature-tag-list { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.feature-tag {
  padding: 6px 12px;
  background: var(--bg);
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--foreground);
}

/* Alert demo */
.alert-demo { margin-top: 16px; background: var(--bg); border-radius: 10px; padding: 14px; }
.alert-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; }
.alert-route { font-weight: 700; font-size: 0.9rem; }
.alert-price-drop { color: var(--success); font-weight: 800; font-size: 1rem; }
.alert-msg { font-size: 0.82rem; color: var(--muted); }

/* Deal score demo */
.deal-score-demo { margin-top: 16px; }
.deal-score-bar {
  height: 8px;
  background: var(--border);
  border-radius: 100px;
  overflow: hidden;
  margin-bottom: 8px;
}
.deal-score-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--success), #00E5A5);
  border-radius: 100px;
  animation: growBar 1.5s ease-out;
}
@keyframes growBar {
  from { width: 0; }
}
.deal-score-label { font-size: 0.85rem; font-weight: 700; color: var(--success); }

/* App badges mini */
.app-badges-mini { display: flex; flex-direction: column; gap: 8px; margin-top: 16px; }
.app-badge-mini img { height: 36px; width: auto; }

/* ── How It Works ─────────────────────────────────────────────────────────── */
.how-it-works {
  padding: 100px 0;
  background: white;
}
.steps-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}
.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 240px;
}
.step-number {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--primary), #0040CC);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 16px;
  box-shadow: 0 4px 16px rgba(0,87,255,0.3);
}
.step-title { font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; }
.step-desc { font-size: 0.88rem; color: var(--muted); line-height: 1.6; }
.step-arrow { font-size: 1.8rem; color: var(--border); font-weight: 300; }

/* ── Deals ────────────────────────────────────────────────────────────────── */
.deals { padding: 100px 0; background: var(--bg); }
.deals-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.deal-card {
  background: white;
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.deal-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.deal-card.skeleton {
  height: 140px;
  background: linear-gradient(90deg, #f0f4ff 25%, #e8eef8 50%, #f0f4ff 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}
@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}
.deal-card-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 12px; }
.deal-route { font-size: 1rem; font-weight: 800; color: var(--foreground); }
.deal-badge {
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 100px;
  background: rgba(0,196,140,0.12);
  color: var(--success);
}
.deal-badge.hot { background: rgba(255,107,0,0.12); color: var(--accent); }
.deal-airline { font-size: 0.82rem; color: var(--muted); margin-bottom: 8px; }
.deal-details { display: flex; align-items: center; justify-content: space-between; }
.deal-price { font-size: 1.5rem; font-weight: 800; color: var(--primary); }
.deal-meta { font-size: 0.78rem; color: var(--muted); text-align: right; }
.deal-savings { font-size: 0.78rem; color: var(--success); font-weight: 600; margin-top: 4px; }

/* ── Alert CTA ────────────────────────────────────────────────────────────── */
.alert-cta {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--primary) 0%, #0040CC 100%);
}
.alert-cta-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  text-align: center;
}
.alert-cta-title { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 800; color: white; letter-spacing: -0.5px; }
.alert-cta-subtitle { font-size: 1rem; color: rgba(255,255,255,0.75); margin-top: 8px; }
.alert-form {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
  max-width: 760px;
}
.alert-input {
  flex: 1;
  min-width: 180px;
  padding: 14px 16px;
  border: none;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-family: var(--font);
  outline: none;
  background: rgba(255,255,255,0.15);
  color: white;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.25);
}
.alert-input::placeholder { color: rgba(255,255,255,0.55); }
.alert-input:focus { background: rgba(255,255,255,0.22); border-color: rgba(255,255,255,0.5); }
.alert-input-narrow { flex: 0 0 130px; min-width: 130px; }
.alert-submit-btn {
  padding: 14px 28px;
  background: var(--accent);
  color: white;
  border: none;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  font-family: var(--font);
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
}
.alert-submit-btn:hover { background: var(--accent-light); transform: translateY(-1px); }
.alert-success-msg {
  color: white;
  font-weight: 600;
  font-size: 1rem;
  background: rgba(0,196,140,0.2);
  border: 1px solid rgba(0,196,140,0.4);
  padding: 12px 24px;
  border-radius: var(--radius-sm);
}

/* ── Download ─────────────────────────────────────────────────────────────── */
.download { padding: 100px 0; background: white; }
.download-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.download-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  letter-spacing: -1.5px;
  line-height: 1.1;
  margin-bottom: 16px;
}
.download-subtitle { font-size: 1rem; color: var(--muted); line-height: 1.7; margin-bottom: 32px; }
.download-badges { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 16px; }
.download-badge img { height: 48px; width: auto; }
.download-note { font-size: 0.82rem; color: var(--muted); }

/* Phone mockup */
.download-mockup { display: flex; justify-content: center; }
.phone-mockup {
  width: 260px;
  background: #0D1B2A;
  border-radius: 40px;
  padding: 16px;
  box-shadow: 0 32px 80px rgba(0,87,255,0.25), 0 0 0 1px rgba(255,255,255,0.08);
  position: relative;
}
.phone-screen {
  background: #F0F4FF;
  border-radius: 28px;
  overflow: hidden;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.phone-status-bar {
  height: 20px;
  background: #0D1B2A;
  border-radius: 10px;
  margin: -16px -16px 0;
}
.phone-app-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-top: 8px;
}
.phone-app-icon { width: 28px; height: 28px; border-radius: 6px; }
.phone-app-name { font-size: 0.9rem; font-weight: 800; color: var(--primary); }
.phone-search-mini {
  background: white;
  border-radius: 10px;
  padding: 10px 12px;
  font-size: 0.78rem;
}
.phone-route { font-weight: 700; color: var(--foreground); margin-bottom: 2px; }
.phone-date { color: var(--muted); }
.phone-result {
  background: white;
  border-radius: 10px;
  padding: 10px 12px;
  position: relative;
}
.phone-result-2 { opacity: 0.7; }
.phone-result-3 { opacity: 0.45; }
.phone-result-badge {
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 4px;
}
.phone-result-airline { font-size: 0.78rem; font-weight: 700; color: var(--foreground); }
.phone-result-price { font-size: 1.1rem; font-weight: 900; color: var(--primary); }
.phone-result-detail { font-size: 0.7rem; color: var(--muted); }

/* ── Footer ───────────────────────────────────────────────────────────────── */
.footer { background: var(--foreground); padding: 64px 0 0; }
.footer-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 64px;
  padding-bottom: 48px;
}
.footer-brand { display: flex; flex-direction: column; gap: 8px; }
.footer-logo { width: 40px; height: 40px; border-radius: 10px; }
.footer-brand-name { font-size: 1.2rem; font-weight: 800; color: white; }
.footer-tagline { font-size: 0.85rem; color: rgba(255,255,255,0.45); }
.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col-title { font-size: 0.82rem; font-weight: 700; color: rgba(255,255,255,0.5); letter-spacing: 0.8px; margin-bottom: 4px; }
.footer-link { font-size: 0.88rem; color: rgba(255,255,255,0.65); transition: color 0.2s; }
.footer-link:hover { color: white; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
}
.footer-copy { font-size: 0.78rem; color: rgba(255,255,255,0.35); line-height: 1.6; }

/* ── Responsive ───────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .features-grid { grid-template-columns: 1fr; }
  .feature-card-large { grid-column: span 1; }
  .deals-grid { grid-template-columns: repeat(2, 1fr); }
  .download-inner { grid-template-columns: 1fr; gap: 40px; }
  .download-mockup { order: -1; }
  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-links { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .search-field-group { flex-direction: column; }
  .search-field-narrow { flex: 1; }
  .swap-btn { align-self: center; transform: rotate(90deg); }
  .swap-btn:hover { transform: rotate(270deg); }
  .hero-stats { gap: 16px; }
  .hero-stat-num { font-size: 1.4rem; }
  .steps-grid { flex-direction: column; gap: 16px; }
  .step-arrow { transform: rotate(90deg); }
  .deals-grid { grid-template-columns: 1fr; }
  .alert-form { flex-direction: column; }
  .alert-input, .alert-input-narrow { flex: 1; min-width: 0; }
  .footer-links { grid-template-columns: 1fr; }
  .search-card { padding: 16px; }
  .trust-bar-inner { gap: 8px; }
  .trust-divider { display: none; }
}
