/* ============================================================
   bookingflight247.com — Landing page styles
   Mobile-first, design tokens per CLAUDE.md
   ============================================================ */

:root {
  /* Brand */
  --color-primary-navy: #0A1F44;
  --color-primary-blue: #1E40AF;
  --color-primary-blue-light: #3B82F6;

  --color-accent-yellow: #FCD34D;
  --color-accent-orange: #F5A623;
  --color-accent-red: #DC2626;

  --color-success-green: #22C55E;
  --color-success-deep: #15803D;
  --color-warning: #F59E0B;
  --color-danger: #DC2626;

  --gradient-hero: linear-gradient(180deg, #2D1B4E 0%, #5B2C6F 25%, #C44569 55%, #F5A623 80%, #FFD89B 100%);
  --gradient-cta: linear-gradient(135deg, #FCD34D 0%, #F5A623 100%);
  --gradient-blue: linear-gradient(135deg, #3B82F6 0%, #1E40AF 100%);
  --gradient-coral: linear-gradient(135deg, #F87171 0%, #DC2626 100%);
  --gradient-green: linear-gradient(135deg, #4ADE80 0%, #15803D 100%);

  /* Text & surfaces */
  --color-text-primary: #0A1F44;
  --color-text-secondary: #475569;
  --color-text-tertiary: #94A3B8;
  --color-bg-white: #FFFFFF;
  --color-bg-soft: #F1F5F9;
  --color-border: #E2E8F0;

  /* Type */
  --font-display: 'Arial Black', 'Inter', 'Helvetica Neue', sans-serif;
  --font-body: 'Inter', 'Arial', sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, monospace;

  --text-hero: clamp(48px, 9vw, 96px);
  --text-h1: clamp(36px, 6vw, 64px);
  --text-h2: clamp(28px, 4.5vw, 48px);
  --text-h3: clamp(22px, 3.5vw, 32px);
  --text-body-lg: 18px;
  --text-body: 16px;
  --text-small: 14px;

  /* Space */
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 40px;
  --space-2xl: 64px;
  --space-3xl: 96px;
  --space-section: 120px;

  /* Radius */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-pill: 9999px;

  /* Shadow */
  --shadow-sm: 0 2px 8px rgba(10, 31, 68, 0.08);
  --shadow-md: 0 4px 20px rgba(10, 31, 68, 0.12);
  --shadow-lg: 0 8px 32px rgba(10, 31, 68, 0.16);
  --shadow-cta: 0 6px 20px rgba(245, 166, 35, 0.4);
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  font-size: var(--text-body);
  line-height: 1.55;
  color: var(--color-text-primary);
  background: var(--color-bg-white);
  -webkit-font-smoothing: antialiased;
}

img, svg { max-width: 100%; display: block; }
a { color: var(--color-primary-blue); text-decoration: none; }
a:hover { text-decoration: underline; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
input, select { font: inherit; color: inherit; }
h1, h2, h3, h4 { margin: 0; line-height: 1.15; }
ul { margin: 0; padding: 0; list-style: none; }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.container-narrow { max-width: 820px; }

/* ============================================================
   1. TOP BAR
   ============================================================ */
.topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 31, 68, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 3px solid var(--color-accent-red);
  height: 60px;
  display: flex;
  align-items: center;
  animation: slideDown 0.5s ease-out;
}
@media (min-width: 768px) { .topbar { height: 70px; } }

@keyframes slideDown {
  from { transform: translateY(-100%); }
  to { transform: translateY(0); }
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-weight: 900;
  font-size: 17px;
  text-decoration: none;
}
.brand:hover { text-decoration: none; }
.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.brand-name { letter-spacing: -0.01em; }
.brand-tld { color: var(--color-accent-yellow); font-weight: 900; }

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

.live-badge {
  display: none;
  align-items: center;
  gap: 6px;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 10px;
  border-radius: var(--radius-pill);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(34,197,94,0.4);
  letter-spacing: 0.04em;
}
@media (min-width: 480px) { .live-badge { display: inline-flex; } }
.live-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--color-success-green);
  box-shadow: 0 0 0 0 rgba(34,197,94,0.7);
  animation: liveBlink 1.5s ease-in-out infinite;
}
@keyframes liveBlink {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(34,197,94,0.7); }
  50% { opacity: 0.5; box-shadow: 0 0 0 8px rgba(34,197,94,0); }
}

.btn-call-mini {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--gradient-cta);
  color: #0A1F44;
  font-weight: 900;
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  text-decoration: none;
  box-shadow: var(--shadow-cta);
  transition: transform 0.15s, filter 0.15s;
}
.btn-call-mini:hover { transform: scale(1.04); filter: brightness(1.05); text-decoration: none; }

/* ============================================================
   2. HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 90vh;
  background: var(--gradient-hero);
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: var(--space-2xl) 0 var(--space-3xl);
}
@media (min-width: 1024px) { .hero { min-height: 100vh; } }

.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.hero-mountains { position: absolute; bottom: 0; left: 0; right: 0; height: 40%; }
.hero-mountains svg { width: 100%; height: 100%; }

.hero-plane {
  position: absolute;
  top: 14%;
  right: -60px;
  width: 260px;
  filter: drop-shadow(0 10px 24px rgba(0,0,0,0.3));
  animation: planeDrift 6s ease-in-out infinite alternate;
}
.hero-plane svg { width: 100%; height: auto; }
@keyframes planeDrift {
  from { transform: translate(0, 0) rotate(-3deg); }
  to   { transform: translate(-26px, 16px) rotate(2deg); }
}
@media (min-width: 768px) {
  .hero-plane { top: 18%; right: 4%; width: 360px; }
}
@media (min-width: 1280px) {
  .hero-plane { width: 440px; right: 6%; }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  max-width: 880px;
  animation: heroFade 0.8s ease-out 0.2s both;
}
@keyframes heroFade {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.urgency-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--color-accent-red);
  color: #fff;
  font-weight: 900;
  font-size: 13px;
  letter-spacing: 0.06em;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 14px rgba(220,38,38,0.5);
  animation: urgencyBlink 1.6s ease-in-out infinite;
  margin-bottom: var(--space-lg);
}
@keyframes urgencyBlink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.75; }
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: var(--text-hero);
  line-height: 0.95;
  letter-spacing: -0.025em;
  margin: 0 0 var(--space-md);
  text-shadow: 0 4px 30px rgba(0,0,0,0.35);
}
.hero-title-highlight {
  color: var(--color-accent-yellow);
  text-shadow: 0 4px 24px rgba(252, 211, 77, 0.4);
}

.hero-sub {
  font-size: clamp(16px, 2.4vw, 22px);
  font-weight: 700;
  margin: 0 0 var(--space-xl);
  opacity: 0.95;
}

.btn-hotline {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--gradient-cta);
  color: var(--color-primary-navy);
  padding: 16px 28px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  box-shadow: var(--shadow-cta);
  font-weight: 900;
  font-size: 18px;
  min-height: 60px;
  animation: ctaPulse 2.2s ease-in-out infinite;
  transition: transform 0.15s, filter 0.15s;
}
.btn-hotline:hover { transform: scale(1.03); filter: brightness(1.05); text-decoration: none; }
.hotline-label { display: flex; flex-direction: column; align-items: flex-start; line-height: 1.1; }
.hotline-line1 { font-size: 11px; letter-spacing: 0.08em; font-weight: 700; opacity: 0.75; }
.hotline-line2 { font-family: var(--font-mono); font-size: 20px; font-weight: 900; letter-spacing: -0.01em; }
@media (min-width: 768px) {
  .btn-hotline { padding: 20px 36px; font-size: 20px; min-height: 72px; }
  .hotline-line2 { font-size: 24px; }
}

@keyframes ctaPulse {
  0%, 100% { box-shadow: 0 6px 20px rgba(245,166,35,0.4); }
  50% { box-shadow: 0 6px 36px rgba(252,211,77,0.7), 0 0 0 8px rgba(252,211,77,0.18); }
}

.callback-link {
  display: inline-block;
  margin-top: 14px;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  opacity: 0.85;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.callback-link:hover { opacity: 1; color: var(--color-accent-yellow); text-decoration: underline; }

.trust-row {
  margin-top: var(--space-xl);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
}
.stars {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--color-accent-yellow);
  font-size: 18px;
  letter-spacing: 2px;
}
.trust-text { color: #fff; font-size: 14px; letter-spacing: normal; }
.trust-text strong { font-weight: 900; }
.trust-text-small {
  margin: 0;
  color: rgba(255,255,255,0.85);
  font-size: 13px;
  font-weight: 700;
}
.airline-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  opacity: 0.85;
}
.airline-logo {
  font-weight: 900;
  font-style: italic;
  font-size: 13px;
  color: #fff;
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  backdrop-filter: blur(6px);
}

/* ============================================================
   3. BOOKING WIDGET
   ============================================================ */
.booking-section {
  position: relative;
  margin-top: -80px;
  z-index: 5;
  padding-bottom: var(--space-2xl);
}

.booking-card {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: var(--space-lg);
}
@media (min-width: 768px) { .booking-card { padding: var(--space-xl); } }

/* class dropdown matches the regular field styling */
.field select {
  width: 100%;
  height: 56px;
  border: 2px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 0 14px;
  font-size: 16px;
  font-weight: 700;
  color: var(--color-text-primary);
  background: #fff;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%230A1F44'><path d='M7 10l5 5 5-5z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 20px;
  padding-right: 40px;
  cursor: pointer;
}
.field select:focus {
  outline: none;
  border-color: var(--color-primary-blue);
  box-shadow: 0 0 0 3px rgba(30,64,175,0.15);
}

.booking-fallback {
  margin: var(--space-md) 0 0;
  text-align: center;
  font-size: 13px;
  color: var(--color-text-secondary);
}
.booking-fallback a {
  font-weight: 900;
  color: var(--color-primary-blue);
}

.booking-tabs {
  display: flex;
  gap: 4px;
  margin-bottom: var(--space-lg);
  background: var(--color-bg-soft);
  padding: 4px;
  border-radius: var(--radius-pill);
  width: fit-content;
  max-width: 100%;
  overflow-x: auto;
}
.tab {
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  color: var(--color-text-secondary);
  font-weight: 700;
  font-size: 14px;
  white-space: nowrap;
  transition: background 0.15s, color 0.15s;
}
.tab.is-active {
  background: var(--color-primary-navy);
  color: #fff;
}

.booking-form {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}
@media (min-width: 768px) {
  .booking-form { grid-template-columns: 1fr 1fr 1fr 1fr auto; align-items: end; }
  .booking-form .field-pax { grid-column: span 1; }
  .booking-submit { grid-column: span 1; }
}
@media (min-width: 1024px) {
  .booking-form { grid-template-columns: 1fr 1fr 1fr 1fr 1fr auto; }
}

.field { display: flex; flex-direction: column; gap: 6px; position: relative; }

/* ---- Airport / city autocomplete dropdown ---- */
.ac-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: auto;
  margin-top: 4px;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  /* Always at least as wide as the input, but grow up to ~360px so city + country names fit. */
  min-width: 100%;
  width: 340px;
  max-width: min(400px, calc(100vw - 32px));
  max-height: 340px;
  overflow-y: auto;
  z-index: 50;
  display: none;
}
.ac-dropdown.is-right-aligned { left: auto; right: 0; }
.ac-dropdown.is-open { display: block; }
.ac-item {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  cursor: pointer;
  border-bottom: 1px solid var(--color-bg-soft);
}
.ac-item:last-child { border-bottom: 0; }
.ac-item:hover,
.ac-item.is-active { background: var(--color-bg-soft); }
.ac-item-text { min-width: 0; flex: 1; }
.ac-item-name {
  font-weight: 700;
  font-size: 14px;
  color: var(--color-text-primary);
  line-height: 1.3;
  word-break: break-word;
}
.ac-item-meta {
  font-size: 12px;
  color: var(--color-text-tertiary);
  margin-top: 2px;
  line-height: 1.3;
  word-break: break-word;
}
.ac-item-iata {
  flex-shrink: 0;
  font-family: var(--font-mono);
  font-weight: 900;
  font-size: 13px;
  color: var(--color-primary-blue);
  background: var(--color-bg-soft);
  padding: 4px 10px;
  border-radius: 6px;
  letter-spacing: 0.04em;
  margin-top: 2px;
}
.ac-item.is-city .ac-item-iata { color: var(--color-text-secondary); }
.ac-empty {
  padding: 14px;
  text-align: center;
  font-size: 13px;
  color: var(--color-text-tertiary);
}
.field label {
  font-size: 12px;
  font-weight: 700;
  color: var(--color-text-secondary);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.field input {
  width: 100%;
  height: 56px;
  border: 2px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 0 14px;
  font-size: 16px;
  font-weight: 700;
  color: var(--color-text-primary);
  background: #fff;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.field input:focus {
  outline: none;
  border-color: var(--color-primary-blue);
  box-shadow: 0 0 0 3px rgba(30,64,175,0.15);
}

.stepper {
  display: flex;
  align-items: center;
  height: 56px;
  border: 2px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #fff;
}
.stepper input {
  flex: 1;
  height: 100%;
  border: 0;
  text-align: center;
  font-weight: 900;
  font-size: 18px;
  -moz-appearance: textfield;
}
.stepper input::-webkit-outer-spin-button,
.stepper input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.stepper-btn {
  width: 44px;
  height: 100%;
  font-size: 22px;
  font-weight: 900;
  color: var(--color-primary-blue);
  background: var(--color-bg-soft);
  transition: background 0.15s;
}
.stepper-btn:hover { background: #E0E7FF; }

.booking-submit {
  height: 56px;
  width: 100%;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: var(--radius-pill);
  font-weight: 900;
  font-size: 16px;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.15s, filter 0.15s, background 0.15s;
  min-height: 56px;
}
.btn:hover { transform: scale(1.02); filter: brightness(1.05); text-decoration: none; }

.btn-primary {
  background: var(--gradient-cta);
  color: var(--color-primary-navy);
  box-shadow: var(--shadow-cta);
}
.btn-secondary {
  background: var(--color-primary-navy);
  color: #fff;
}
.btn-sm { padding: 10px 18px; font-size: 14px; min-height: 40px; }

/* ============================================================
   4. SERVICE CARDS
   ============================================================ */
.services {
  padding: var(--space-2xl) 0;
}
@media (min-width: 768px) { .services { padding: var(--space-3xl) 0; } }

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto var(--space-2xl);
}
.kicker {
  display: inline-block;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.18em;
  color: var(--color-accent-orange);
  margin-bottom: var(--space-md);
}
.section-title {
  font-family: var(--font-display);
  font-size: var(--text-h2);
  font-weight: 900;
  letter-spacing: -0.02em;
  margin: 0 0 var(--space-md);
}
.section-sub {
  font-size: var(--text-body-lg);
  color: var(--color-text-secondary);
  margin: 0;
}

.service-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}
@media (min-width: 1024px) {
  .service-grid { grid-template-columns: 1fr 1fr 1fr; gap: var(--space-lg); }
}

.service-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 20px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s, box-shadow 0.2s;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.service-icon {
  flex-shrink: 0;
  width: 56px; height: 56px;
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
}
.service-icon svg { width: 28px; height: 28px; }
.icon-blue { background: var(--gradient-blue); box-shadow: 0 6px 16px rgba(30,64,175,0.3); }
.icon-coral { background: var(--gradient-coral); box-shadow: 0 6px 16px rgba(220,38,38,0.3); }
.icon-green { background: var(--gradient-green); box-shadow: 0 6px 16px rgba(21,128,61,0.3); }

.service-body { flex: 1; min-width: 0; }
.service-body h3 {
  font-family: var(--font-display);
  font-size: clamp(20px, 2vw, 24px);
  font-weight: 900;
  margin: 0 0 4px;
  letter-spacing: -0.02em;
  line-height: 1.05;
  white-space: nowrap;
}
.service-body p {
  margin: 0 0 8px;
  font-size: 14px;
  line-height: 1.4;
  color: var(--color-text-secondary);
}
.guarantee {
  display: inline-block;
  font-size: 11px;
  font-weight: 900;
  color: var(--color-success-deep);
  background: #DCFCE7;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.service-arrow {
  flex-shrink: 0;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--color-accent-yellow);
  color: var(--color-primary-navy);
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.15s, background 0.15s;
}
.service-arrow:hover {
  background: var(--color-accent-orange);
  transform: translateX(4px);
  text-decoration: none;
}

/* ============================================================
   5. ROUTES
   ============================================================ */
.routes {
  padding: var(--space-2xl) 0;
  background: var(--color-bg-soft);
}
@media (min-width: 768px) { .routes { padding: var(--space-3xl) 0; } }

.route-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}
@media (min-width: 640px) { .route-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .route-grid { grid-template-columns: 1fr 1fr 1fr; } }

.route-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  border: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  transition: transform 0.2s, box-shadow 0.2s;
}
.route-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.route-airline {
  font-size: 12px;
  font-weight: 900;
  color: var(--color-primary-blue);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.route-cities {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: var(--space-md);
}
.route-cities > div { display: flex; flex-direction: column; }
.iata {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 900;
  color: var(--color-primary-navy);
  letter-spacing: -0.01em;
}
.city {
  font-size: 13px;
  color: var(--color-text-secondary);
}
.route-arrow {
  font-size: 20px;
  color: var(--color-accent-orange);
  font-weight: 900;
}

.route-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--space-md);
  border-top: 1px solid var(--color-border);
}
.route-price { display: flex; flex-direction: column; line-height: 1; }
.route-price span { font-size: 12px; color: var(--color-text-secondary); }
.route-price strong {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 900;
  color: var(--color-primary-navy);
  margin-top: 2px;
}

.routes-disclaimer {
  margin: var(--space-lg) 0 0;
  text-align: center;
  font-size: 12px;
  color: var(--color-text-tertiary);
  line-height: 1.5;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================================
   6. WHY CHOOSE US
   ============================================================ */
.why { padding: var(--space-2xl) 0; }
@media (min-width: 768px) { .why { padding: var(--space-3xl) 0; } }

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
}
@media (min-width: 768px) { .why-grid { grid-template-columns: repeat(4, 1fr); } }

.why-item { text-align: center; }
.why-icon {
  width: 64px; height: 64px;
  margin: 0 auto var(--space-md);
  border-radius: var(--radius-md);
  background: var(--gradient-cta);
  color: var(--color-primary-navy);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-md);
}
.why-item h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 900;
  margin: 0 0 6px;
}
.why-item p { font-size: 14px; color: var(--color-text-secondary); margin: 0; }

/* ============================================================
   7. TESTIMONIALS
   ============================================================ */
.testimonials {
  padding: var(--space-2xl) 0;
  background: var(--color-bg-soft);
}
@media (min-width: 768px) { .testimonials { padding: var(--space-3xl) 0; } }

.testi-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}
@media (min-width: 768px) { .testi-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .testi-grid { grid-template-columns: 1fr 1fr 1fr; } }

.testi-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  border: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}
.testi-card .stars {
  font-size: 18px;
  letter-spacing: 2px;
}
.testi-card p {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: var(--color-text-primary);
}
.testi-card footer {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: var(--space-md);
  border-top: 1px solid var(--color-border);
}
.avatar {
  position: relative;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--gradient-blue);
  color: #fff;
  font-weight: 900;
  font-size: 14px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(10,31,68,0.15);
}
.avatar-initials {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 0;
}
.avatar img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.testi-card footer div { display: flex; flex-direction: column; line-height: 1.3; }
.testi-card footer strong { font-weight: 900; font-size: 14px; }
.testi-card footer span { font-size: 13px; color: var(--color-text-tertiary); }

.aggregate {
  text-align: center;
  margin-top: var(--space-xl);
  font-size: 16px;
  color: var(--color-text-secondary);
}
.aggregate strong { font-weight: 900; color: var(--color-text-primary); }
.stars-big {
  display: block;
  font-size: 28px;
  letter-spacing: 4px;
  color: var(--color-accent-yellow);
  margin-bottom: 6px;
}

/* ============================================================
   8. HOW IT WORKS
   ============================================================ */
.how { padding: var(--space-2xl) 0; }
@media (min-width: 768px) { .how { padding: var(--space-3xl) 0; } }

.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  counter-reset: step;
  margin: 0; padding: 0;
}
@media (min-width: 768px) {
  .steps { grid-template-columns: 1fr 1fr 1fr; gap: var(--space-xl); position: relative; }
  .steps::before {
    content: "";
    position: absolute;
    top: 32px; left: 12%; right: 12%;
    height: 2px;
    background: linear-gradient(to right, var(--color-accent-yellow) 0%, var(--color-accent-orange) 100%);
    opacity: 0.4;
    z-index: 0;
  }
}

.step {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  position: relative;
  z-index: 1;
}
@media (min-width: 768px) {
  .step { flex-direction: column; align-items: center; text-align: center; gap: var(--space-md); }
}

.step-num {
  flex-shrink: 0;
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--gradient-cta);
  color: var(--color-primary-navy);
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 28px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-cta);
}
.step h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 900;
  margin: 0 0 4px;
}
.step-time {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  color: var(--color-success-deep);
  background: #DCFCE7;
  padding: 2px 10px;
  border-radius: var(--radius-pill);
  margin: 0 0 8px;
}
.step p:last-child {
  margin: 0;
  color: var(--color-text-secondary);
}

/* ============================================================
   9. FAQ
   ============================================================ */
.faq {
  padding: var(--space-2xl) 0;
  background: var(--color-bg-soft);
}
@media (min-width: 768px) { .faq { padding: var(--space-3xl) 0; } }

.faq-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}
.faq-item {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 0;
  overflow: hidden;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: var(--space-md) var(--space-lg);
  font-weight: 700;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  user-select: none;
  position: relative;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--color-bg-soft);
  color: var(--color-primary-navy);
  display: flex; align-items: center; justify-content: center;
  font-weight: 900;
  font-size: 20px;
  transition: transform 0.2s, background 0.2s;
}
.faq-item[open] summary::after {
  content: "−";
  background: var(--color-accent-yellow);
}
.faq-item p {
  padding: 0 var(--space-lg) var(--space-md);
  margin: 0;
  color: var(--color-text-secondary);
  font-size: 15px;
  line-height: 1.65;
}

/* ============================================================
   10. FINAL CTA
   ============================================================ */
.final-cta {
  background: var(--gradient-hero);
  color: #fff;
  padding: var(--space-3xl) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-inner {
  position: relative;
  max-width: 720px;
}
.final-title {
  font-family: var(--font-display);
  font-size: var(--text-h1);
  font-weight: 900;
  letter-spacing: -0.02em;
  margin: 0 0 var(--space-md);
  text-shadow: 0 4px 30px rgba(0,0,0,0.3);
}
.final-sub {
  font-size: var(--text-body-lg);
  margin: 0 0 var(--space-xl);
  opacity: 0.95;
}
.final-or {
  margin: var(--space-lg) 0 0;
  font-size: 15px;
  opacity: 0.95;
}
.final-or a { color: var(--color-accent-yellow); font-weight: 900; }

/* ============================================================
   11. FOOTER
   ============================================================ */
.footer {
  background: var(--color-primary-navy);
  color: rgba(255,255,255,0.85);
  padding: var(--space-2xl) 0 var(--space-lg);
  font-size: 14px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}
@media (min-width: 768px) {
  .footer-top { grid-template-columns: 1fr 2fr; gap: var(--space-2xl); }
}

.footer-brand .brand { color: #fff; font-size: 18px; }
.footer-tagline {
  margin: var(--space-md) 0;
  color: rgba(255,255,255,0.7);
  max-width: 320px;
}
.footer-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--color-accent-yellow);
  font-family: var(--font-mono);
  font-weight: 900;
  font-size: 18px;
}

.footer-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
}
@media (min-width: 640px) { .footer-cols { grid-template-columns: repeat(4, 1fr); } }

.footer-col h4 {
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 var(--space-md);
}
.footer-col ul li { margin-bottom: 8px; }
.footer-col a {
  color: rgba(255,255,255,0.75);
  font-size: 14px;
}
.footer-col a:hover { color: var(--color-accent-yellow); text-decoration: none; }

.newsletter {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  align-items: center;
  padding: var(--space-lg);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.03);
  margin-bottom: var(--space-lg);
}
@media (min-width: 768px) { .newsletter { grid-template-columns: 1.2fr 1fr; gap: var(--space-xl); } }

.newsletter h4 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 900;
  color: #fff;
  margin: 0 0 4px;
}
.newsletter p { margin: 0; color: rgba(255,255,255,0.7); font-size: 14px; }

.newsletter-form {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
}
.newsletter-form input {
  flex: 1;
  min-width: 180px;
  height: 48px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.08);
  color: #fff;
  padding: 0 18px;
  font-size: 15px;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.5); }
.newsletter-form input:focus {
  outline: none;
  border-color: var(--color-accent-yellow);
  background: rgba(255,255,255,0.12);
}
.newsletter-form .btn { height: 48px; min-height: 48px; padding: 0 20px; }

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
  padding-top: var(--space-lg);
  border-top: 1px solid rgba(255,255,255,0.1);
}
.badge-pill {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-pill);
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 700;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.02em;
}

.footer-bottom {
  padding-top: var(--space-lg);
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 13px;
  color: rgba(255,255,255,0.6);
}
.footer-bottom p { margin: 0 0 6px; }
.footer-disclaimer { font-size: 12px; color: rgba(255,255,255,0.5); }

/* ============================================================
   STICKY MOBILE BOTTOM CTA
   ============================================================ */
.mobile-cta {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 90;
  display: flex;
  gap: 8px;
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid var(--color-border);
  box-shadow: 0 -4px 16px rgba(10,31,68,0.1);
  transform: translateY(110%);
  transition: transform 0.3s ease-out;
}
.mobile-cta.is-visible {
  transform: translateY(0);
}
@media (min-width: 1024px) { .mobile-cta { display: none !important; } }

.mobile-cta-btn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 52px;
  border-radius: var(--radius-pill);
  font-weight: 900;
  font-size: 15px;
  text-decoration: none;
}
.mobile-cta-call {
  background: var(--gradient-cta);
  color: var(--color-primary-navy);
  box-shadow: var(--shadow-cta);
}
.mobile-cta-book {
  background: var(--color-primary-navy);
  color: #fff;
}

/* ============================================================
   CALLBACK MODAL
   ============================================================ */
.callback-modal {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(10, 31, 68, 0.65);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  z-index: 200;
  padding: 16px;
  animation: cbFade 0.2s ease-out;
}
.callback-modal[hidden] { display: none; }
@keyframes cbFade { from { opacity: 0; } to { opacity: 1; } }

.callback-card {
  position: relative;
  background: #fff;
  border-radius: var(--radius-lg);
  max-width: 460px;
  width: 100%;
  padding: 32px 28px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
  animation: cbScale 0.25s ease-out;
  max-height: 90vh;
  overflow-y: auto;
}
@keyframes cbScale {
  from { transform: scale(0.94); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}

.callback-close {
  position: absolute;
  top: 12px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--color-bg-soft);
  font-size: 22px;
  color: var(--color-text-secondary);
  line-height: 1;
  cursor: pointer;
  border: 0;
  font-family: inherit;
}
.callback-close:hover { background: var(--color-border); }

.callback-card h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 900;
  margin: 0 0 8px;
  letter-spacing: -0.01em;
}
.callback-lead {
  font-size: 14px;
  color: var(--color-text-secondary);
  margin: 0 0 20px;
}

#callback-form label {
  display: block;
  margin-bottom: 14px;
  font-size: 12px;
  font-weight: 700;
  color: var(--color-text-secondary);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
#callback-form input,
#callback-form select {
  width: 100%;
  height: 48px;
  border: 2px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 0 14px;
  font-size: 15px;
  font-weight: 700;
  color: var(--color-text-primary);
  background: #fff;
  margin-top: 6px;
  font-family: inherit;
  text-transform: none;
  letter-spacing: normal;
}
#callback-form input:focus,
#callback-form select:focus {
  outline: none;
  border-color: var(--color-primary-blue);
  box-shadow: 0 0 0 3px rgba(30, 64, 175, 0.15);
}

.callback-submit {
  width: 100%;
  margin-top: 6px;
  background: var(--gradient-cta);
  color: var(--color-primary-navy);
  height: 52px;
  border-radius: var(--radius-pill);
  font-weight: 900;
  font-size: 16px;
  cursor: pointer;
  box-shadow: var(--shadow-cta);
  border: 0;
  font-family: inherit;
  transition: transform 0.15s, filter 0.15s;
}
.callback-submit:hover:not(:disabled) { transform: scale(1.02); filter: brightness(1.05); }
.callback-submit:disabled { opacity: 0.7; cursor: not-allowed; }

.callback-fineprint {
  font-size: 11px;
  color: var(--color-text-tertiary);
  margin: 12px 0 0;
  line-height: 1.5;
  text-transform: none;
  letter-spacing: normal;
}
.callback-fineprint a { color: var(--color-primary-blue); }

.callback-success {
  text-align: center;
  padding: 16px 0 8px;
}
.callback-success-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: var(--color-success-green);
  color: #fff;
  font-size: 36px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(34, 197, 94, 0.4);
}
.callback-success h4 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 900;
  margin: 0 0 8px;
}
.callback-success p {
  font-size: 14px;
  color: var(--color-text-secondary);
  margin: 0;
}
.callback-close-btn {
  margin-top: 16px;
  background: var(--color-primary-navy);
  color: #fff;
  padding: 12px 24px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  cursor: pointer;
  border: 0;
  font-family: inherit;
  font-size: 14px;
}
.callback-close-btn:hover { background: var(--color-primary-blue); }

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

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .hero-plane { animation: none; }
  .reveal { opacity: 1; transform: none; }
}

/* ============================================================
   FOCUS STATES (accessibility)
   ============================================================ */
:focus-visible {
  outline: 3px solid var(--color-primary-blue-light);
  outline-offset: 2px;
  border-radius: 4px;
}
.btn:focus-visible,
.btn-hotline:focus-visible,
.btn-call-mini:focus-visible {
  outline-offset: 4px;
}
