/* SkyBooker — Design System (mobile-first)
   Base styles target mobile (320–720px).
   Larger viewports scale up via min-width queries.
*/

:root {
  /* Brand palette */
  --navy-900: #0A2540;
  --navy-800: #102b4f;
  --navy-700: #1a3a63;
  --navy-600: #2a4d7a;
  --navy-50: #eef3fa;

  --coral-600: #E5552B;
  --coral-500: #FF6B35;
  --coral-400: #ff8556;
  --coral-50: #fff1ea;

  --green-600: #059669;
  --green-500: #10B981;
  --green-50: #ecfdf5;

  --amber-500: #F59E0B;
  --amber-50: #fef3c7;

  --slate-900: #0F172A;
  --slate-800: #1E293B;
  --slate-700: #334155;
  --slate-600: #475569;
  --slate-500: #64748B;
  --slate-400: #94A3B8;
  --slate-300: #CBD5E1;
  --slate-200: #E2E8F0;
  --slate-100: #F1F5F9;
  --slate-50: #F8FAFC;

  --white: #ffffff;

  /* Type scale */
  --fs-xs: 0.75rem;
  --fs-sm: 0.875rem;
  --fs-base: 1rem;
  --fs-lg: 1.125rem;
  --fs-xl: 1.25rem;
  --fs-2xl: 1.5rem;
  --fs-3xl: 1.875rem;
  --fs-4xl: 2.25rem;
  --fs-5xl: 3rem;
  --fs-6xl: 3.75rem;

  /* Spacing */
  --sp-1: 0.25rem;
  --sp-2: 0.5rem;
  --sp-3: 0.75rem;
  --sp-4: 1rem;
  --sp-5: 1.25rem;
  --sp-6: 1.5rem;
  --sp-8: 2rem;
  --sp-10: 2.5rem;
  --sp-12: 3rem;
  --sp-16: 4rem;
  --sp-20: 5rem;
  --sp-24: 6rem;

  /* Layout */
  --container: 1180px;
  --radius-sm: 6px;
  --radius: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  /* Shadow */
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.06);
  --shadow: 0 4px 12px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 12px 32px rgba(15, 23, 42, 0.12);
  --shadow-xl: 0 24px 64px rgba(15, 23, 42, 0.18);

  --transition: 200ms cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: var(--fs-base);
  line-height: 1.6;
  color: var(--slate-800);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0 0 var(--sp-4);
  color: var(--navy-900);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

h1 { font-size: clamp(1.875rem, 6vw, var(--fs-5xl)); }
h2 { font-size: clamp(1.5rem, 5vw, var(--fs-4xl)); }
h3 { font-size: var(--fs-xl); }
h4 { font-size: var(--fs-lg); }
h5 { font-size: var(--fs-base); }

p { margin: 0 0 var(--sp-4); }

a {
  color: var(--navy-700);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover { color: var(--coral-600); }

img {
  max-width: 100%;
  height: auto;
  display: block;
}

svg {
  display: block;
}

/* Icon SVGs scale with their parent's font-size */
.btn svg,
.header-cta svg,
.cta-phone svg,
.agent-cta svg,
.faq-toggle svg,
.menu-toggle svg,
.card-icon svg,
.airline-tile svg,
.logo-icon svg,
.callout-title svg,
.card svg,
.hero svg {
  width: 1.1em;
  height: 1.1em;
  flex-shrink: 0;
}

ul, ol { padding-left: 1.25rem; }
li { margin-bottom: var(--sp-2); }

code {
  background: var(--slate-100);
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 0.9em;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
}

hr {
  border: 0;
  border-top: 1px solid var(--slate-200);
  margin: var(--sp-8) 0;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--sp-4);
}

.container-narrow {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 var(--sp-4);
}

/* ========== Live dot (used in hero badge & agent card) ========== */
.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green-500);
  box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.6);
  animation: pulse 2s infinite;
  flex-shrink: 0;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
  70% { box-shadow: 0 0 0 8px rgba(16, 185, 129, 0); }
  100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

/* ========== HEADER ========== */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--slate-200);
  box-shadow: var(--shadow-sm);
  position: relative;
}

.header-inner {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  padding-top: var(--sp-3);
  padding-bottom: var(--sp-3);
}

.logo { flex-shrink: 0; }
.menu-toggle { margin-left: auto; }
.header-cta { margin-left: auto; }

.logo {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--fs-lg);
  font-weight: 800;
  color: var(--navy-900);
  letter-spacing: -0.02em;
}

.logo:hover { color: var(--navy-900); }

.logo-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--navy-700), var(--navy-900));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--coral-500);
  flex-shrink: 0;
}

.logo-icon svg { width: 20px; height: 20px; }

.nav {
  display: none;
  align-items: center;
  gap: var(--sp-5);
}

.nav a {
  color: var(--slate-700);
  font-weight: 500;
  font-size: var(--fs-sm);
}

.nav a:hover { color: var(--navy-900); }

.nav.open {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--white);
  padding: var(--sp-4);
  gap: var(--sp-3);
  border-bottom: 1px solid var(--slate-200);
  box-shadow: var(--shadow-lg);
}

.header-cta {
  display: none;
  align-items: center;
  gap: var(--sp-2);
  background: var(--coral-500);
  color: var(--white);
  padding: 10px 16px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: var(--fs-sm);
  transition: all var(--transition);
  white-space: nowrap;
  flex-shrink: 0;
}

.header-cta > * { flex-shrink: 0; }

.header-cta:hover {
  background: var(--coral-600);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}

.menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: 0;
  cursor: pointer;
  width: 40px;
  height: 40px;
  color: var(--navy-900);
}

/* ========== HERO ========== */
.hero {
  background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-700) 60%, var(--navy-600) 100%);
  color: var(--white);
  padding: var(--sp-10) 0 var(--sp-12);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 107, 53, 0.15) 0%, transparent 60%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -300px;
  left: -300px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-8);
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: #6ee7b7;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: var(--fs-xs);
  font-weight: 600;
  margin-bottom: var(--sp-4);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero h1 {
  color: var(--white);
  font-size: clamp(1.875rem, 7vw, 3.5rem);
  margin-bottom: var(--sp-4);
}

.hero h1 .accent { color: var(--coral-500); }

.hero-sub {
  color: rgba(255,255,255,0.85);
  font-size: var(--fs-base);
  margin-bottom: var(--sp-6);
}

.hero-ctas {
  display: flex;
  gap: var(--sp-3);
  flex-wrap: wrap;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  padding: 14px 22px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: var(--fs-base);
  border: 0;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  line-height: 1;
  white-space: nowrap;
  flex-shrink: 0;
}

.btn > * { flex-shrink: 0; }

.btn-block { width: 100%; }

.btn-primary {
  background: var(--coral-500);
  color: var(--white);
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.btn-primary:hover {
  background: var(--coral-600);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(255, 107, 53, 0.5);
}

.btn-secondary {
  background: rgba(255,255,255,0.1);
  color: var(--white);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.25);
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.18);
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}

.btn-outline {
  background: var(--white);
  color: var(--navy-900);
  border: 2px solid var(--navy-900);
}

.btn-outline:hover {
  background: var(--navy-900);
  color: var(--white);
}

.btn-large { padding: 16px 30px; font-size: var(--fs-base); }
.btn-small { padding: 10px 18px; font-size: var(--fs-sm); }

.hero-meta {
  margin-top: var(--sp-5);
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  color: rgba(255,255,255,0.75);
  font-size: var(--fs-sm);
}

/* ========== AGENT WIDGET ========== */
.agent-card {
  background: var(--white);
  color: var(--slate-800);
  border-radius: var(--radius-lg);
  padding: var(--sp-5);
  box-shadow: var(--shadow-xl);
  position: relative;
}

.agent-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--sp-4);
  padding-bottom: var(--sp-3);
  border-bottom: 1px solid var(--slate-200);
  gap: var(--sp-2);
}

.agent-card-title {
  font-size: var(--fs-base);
  font-weight: 700;
  color: var(--navy-900);
}

.agent-status {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  background: var(--green-50);
  color: var(--green-600);
  padding: 4px 10px;
  border-radius: 999px;
  font-size: var(--fs-xs);
  font-weight: 600;
  white-space: nowrap;
}

.agents-list {
  display: grid;
  gap: var(--sp-2);
  margin-bottom: var(--sp-4);
}

.agent-row {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  padding: var(--sp-3);
  background: var(--slate-50);
  border-radius: var(--radius);
}

.agent-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy-600), var(--navy-800));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: var(--fs-sm);
  flex-shrink: 0;
  position: relative;
}

.agent-avatar::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green-500);
  border: 2px solid var(--white);
}

.agent-name {
  font-weight: 600;
  font-size: var(--fs-sm);
  color: var(--navy-900);
}

.agent-role {
  font-size: var(--fs-xs);
  color: var(--slate-500);
}

.agent-stat {
  margin-left: auto;
  font-size: var(--fs-xs);
  color: var(--slate-500);
  text-align: right;
  white-space: nowrap;
}

.agent-stat strong {
  display: block;
  color: var(--green-600);
  font-size: var(--fs-sm);
}

.agent-cta {
  display: block;
  background: var(--coral-500);
  color: var(--white);
  text-align: center;
  padding: 16px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: var(--fs-lg);
  transition: all var(--transition);
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.3);
}

.agent-cta:hover {
  background: var(--coral-600);
  color: var(--white);
  transform: translateY(-1px);
}

.agent-cta-meta {
  text-align: center;
  font-size: var(--fs-xs);
  color: var(--slate-500);
  margin-top: var(--sp-3);
}

/* ========== TRUST BAR ========== */
.trust-bar {
  background: var(--slate-50);
  padding: var(--sp-6) 0;
  border-bottom: 1px solid var(--slate-200);
}

.trust-bar-inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-4);
  text-align: center;
}

.trust-item strong {
  display: block;
  font-size: var(--fs-xl);
  color: var(--navy-900);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.trust-item span {
  font-size: var(--fs-xs);
  color: var(--slate-600);
}

/* ========== SECTIONS ========== */
.section { padding: var(--sp-10) 0; }
.section-tight { padding: var(--sp-8) 0; }

.section-light { background: var(--slate-50); }

.section-navy {
  background: var(--navy-900);
  color: var(--white);
}

.section-navy h1, .section-navy h2, .section-navy h3 { color: var(--white); }

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto var(--sp-8);
}

.section-eyebrow {
  display: inline-block;
  background: var(--coral-50);
  color: var(--coral-600);
  font-size: var(--fs-xs);
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: var(--sp-3);
}

.section-sub {
  font-size: var(--fs-base);
  color: var(--slate-600);
  margin-top: var(--sp-3);
}

/* ========== CARDS ========== */
.card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-4);
}

.card {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: var(--sp-5);
  transition: all var(--transition);
}

.card:hover {
  border-color: var(--navy-700);
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.card-icon {
  width: 44px;
  height: 44px;
  background: var(--coral-50);
  color: var(--coral-600);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--sp-3);
}

.card-icon svg { width: 22px; height: 22px; }

.card h3 {
  font-size: var(--fs-lg);
  margin-bottom: var(--sp-2);
}

.card p {
  color: var(--slate-600);
  font-size: var(--fs-sm);
  margin: 0;
}

/* ========== STEPS ========== */
.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-6);
  counter-reset: step;
}

.step {
  position: relative;
  padding: var(--sp-6) var(--sp-5);
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--slate-200);
  counter-increment: step;
}

.step::before {
  content: counter(step, decimal-leading-zero);
  position: absolute;
  top: -16px;
  left: var(--sp-5);
  width: 44px;
  height: 44px;
  background: var(--coral-500);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: var(--fs-base);
  box-shadow: 0 6px 16px rgba(255, 107, 53, 0.3);
}

.step h3 {
  margin-top: var(--sp-3);
  font-size: var(--fs-lg);
}

.step p {
  color: var(--slate-600);
  margin: 0;
}

/* ========== TABLE ========== */
.table-wrapper {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  box-shadow: var(--shadow-sm);
}

.fee-table {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--fs-xs);
  min-width: 540px;
}

.fee-table thead {
  background: var(--navy-900);
  color: var(--white);
}

.fee-table th {
  text-align: left;
  padding: 12px;
  font-weight: 700;
  font-size: var(--fs-xs);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.fee-table td {
  padding: 12px;
  border-top: 1px solid var(--slate-200);
  color: var(--slate-700);
}

.fee-table tr:hover td { background: var(--slate-50); }

.fee-table .airline-cell {
  font-weight: 600;
  color: var(--navy-900);
}

.fee-table .airline-cell a {
  color: var(--navy-900);
  border-bottom: 1px dotted var(--slate-400);
}

.fee-table .airline-cell a:hover {
  color: var(--coral-600);
  border-color: var(--coral-500);
}

.fee-table .highlighted { background: var(--amber-50); }

/* ========== CALCULATOR ========== */
.calculator {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: var(--sp-5);
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-5);
}

.calc-form { display: grid; gap: var(--sp-4); }

.field-group label {
  display: block;
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--slate-700);
  margin-bottom: var(--sp-2);
}

.field-group input,
.field-group select {
  width: 100%;
  padding: 14px;
  border: 1px solid var(--slate-300);
  border-radius: var(--radius);
  font-size: var(--fs-base);
  font-family: inherit;
  background: var(--white);
  color: var(--slate-800);
  transition: all var(--transition);
}

.field-group input:focus,
.field-group select:focus {
  outline: 0;
  border-color: var(--navy-700);
  box-shadow: 0 0 0 3px rgba(26, 58, 99, 0.1);
}

.radio-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-3);
}

.radio-pill {
  cursor: pointer;
  position: relative;
}

.radio-pill input {
  position: absolute;
  opacity: 0;
}

.radio-pill span {
  display: block;
  text-align: center;
  padding: 14px;
  border: 1px solid var(--slate-300);
  border-radius: var(--radius);
  font-weight: 600;
  font-size: var(--fs-sm);
  color: var(--slate-700);
  transition: all var(--transition);
}

.radio-pill input:checked + span {
  background: var(--navy-900);
  color: var(--white);
  border-color: var(--navy-900);
}

.calc-result {
  background: linear-gradient(135deg, var(--navy-900), var(--navy-700));
  color: var(--white);
  border-radius: var(--radius);
  padding: var(--sp-5);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.calc-result-label {
  font-size: var(--fs-sm);
  color: rgba(255,255,255,0.7);
  margin-bottom: var(--sp-2);
}

.calc-result-amount {
  font-size: var(--fs-4xl);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: var(--sp-3);
}

.calc-result-amount small {
  font-size: var(--fs-base);
  opacity: 0.6;
  font-weight: 600;
}

.calc-result-note {
  font-size: var(--fs-sm);
  color: rgba(255,255,255,0.75);
  line-height: 1.5;
  margin-bottom: var(--sp-4);
}

.calc-result .btn { width: 100%; }

/* ========== FAQ ========== */
.faq {
  max-width: 820px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius);
  margin-bottom: var(--sp-3);
  overflow: hidden;
  transition: border-color var(--transition);
}

.faq-item.open { border-color: var(--navy-700); }

.faq-question {
  width: 100%;
  background: none;
  border: 0;
  text-align: left;
  padding: var(--sp-4) var(--sp-5);
  font-size: var(--fs-base);
  font-weight: 600;
  color: var(--navy-900);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-3);
  font-family: inherit;
}

.faq-question:hover { background: var(--slate-50); }

.faq-toggle {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--slate-100);
  color: var(--navy-900);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--transition);
}

.faq-toggle svg { width: 14px; height: 14px; }

.faq-item.open .faq-toggle {
  background: var(--coral-500);
  color: var(--white);
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 300ms ease;
}

.faq-answer-inner {
  padding: 0 var(--sp-5) var(--sp-5);
  color: var(--slate-600);
  font-size: var(--fs-base);
  line-height: 1.7;
}

.faq-answer-inner p:last-child { margin-bottom: 0; }

/* ========== TESTIMONIALS ========== */
.testimonials {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-4);
}

.testimonial {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: var(--sp-5);
}

.stars {
  color: var(--amber-500);
  font-size: var(--fs-lg);
  margin-bottom: var(--sp-2);
  letter-spacing: 0.1em;
}

.testimonial p {
  color: var(--slate-700);
  font-style: italic;
  font-size: var(--fs-sm);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  margin-top: var(--sp-4);
  padding-top: var(--sp-4);
  border-top: 1px solid var(--slate-200);
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--coral-400), var(--coral-600));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
}

.testimonial-name {
  font-weight: 600;
  color: var(--navy-900);
  font-size: var(--fs-sm);
}

.testimonial-meta {
  font-size: var(--fs-xs);
  color: var(--slate-500);
}

/* ========== CTA BANNER ========== */
.cta-banner {
  background: linear-gradient(135deg, var(--navy-900), var(--navy-700));
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--sp-8) var(--sp-5);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 107, 53, 0.18), transparent 60%);
  pointer-events: none;
}

.cta-banner h2 {
  color: var(--white);
  margin-bottom: var(--sp-3);
  font-size: clamp(1.5rem, 5vw, 2.5rem);
}

.cta-banner p {
  color: rgba(255,255,255,0.85);
  font-size: var(--fs-base);
  max-width: 580px;
  margin: 0 auto var(--sp-5);
}

.cta-phone {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--fs-2xl);
  font-weight: 800;
  color: var(--coral-400);
  margin-bottom: var(--sp-2);
}

.cta-phone:hover { color: var(--coral-500); }

.cta-phone svg { width: 22px; height: 22px; }

.cta-banner-meta {
  font-size: var(--fs-xs);
  color: rgba(255,255,255,0.7);
  margin-top: var(--sp-3);
}

/* ========== AIRLINES GRID ========== */
.airlines-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-2);
}

.airline-tile {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius);
  padding: var(--sp-4);
  font-weight: 600;
  color: var(--navy-900);
  font-size: var(--fs-sm);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all var(--transition);
}

.airline-tile:hover {
  border-color: var(--coral-500);
  color: var(--coral-600);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.airline-tile svg {
  width: 16px;
  height: 16px;
  color: var(--slate-400);
  transition: color var(--transition);
  flex-shrink: 0;
}

.airline-tile:hover svg {
  color: var(--coral-500);
}

/* ========== FOOTER ========== */
.site-footer {
  background: var(--navy-900);
  color: rgba(255,255,255,0.75);
  padding: var(--sp-12) 0 var(--sp-6);
  margin-top: var(--sp-12);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-6);
  margin-bottom: var(--sp-8);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  color: var(--white);
  font-size: var(--fs-lg);
  font-weight: 800;
  margin-bottom: var(--sp-3);
}

.footer-brand .logo-icon { background: rgba(255,255,255,0.08); }

.footer-tagline {
  font-size: var(--fs-sm);
  margin-bottom: var(--sp-3);
}

.footer h5 {
  color: var(--white);
  font-size: var(--fs-sm);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: var(--sp-3);
  font-weight: 700;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li { margin-bottom: var(--sp-2); }

.footer-links a {
  color: rgba(255,255,255,0.7);
  font-size: var(--fs-sm);
}

.footer-links a:hover { color: var(--coral-500); }

.footer-bottom {
  padding-top: var(--sp-5);
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  font-size: var(--fs-xs);
  color: rgba(255,255,255,0.5);
  text-align: center;
}

.disclaimer {
  background: rgba(255,255,255,0.05);
  border-left: 3px solid var(--coral-500);
  padding: var(--sp-4);
  border-radius: var(--radius);
  margin-bottom: var(--sp-5);
  font-size: var(--fs-xs);
  line-height: 1.6;
}

/* ========== MINI CTA (inline between long content sections) ========== */
.mini-cta {
  background: linear-gradient(135deg, var(--coral-50), #fff5ef);
  border: 1px solid #ffd6c2;
  border-left: 4px solid var(--coral-500);
  border-radius: var(--radius);
  padding: var(--sp-4) var(--sp-5);
  margin: var(--sp-6) 0;
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  align-items: flex-start;
}

.mini-cta-text {
  display: flex;
  gap: var(--sp-3);
  align-items: flex-start;
  color: var(--slate-800);
  font-size: var(--fs-sm);
  line-height: 1.5;
}

.mini-cta-icon {
  font-size: var(--fs-xl);
  line-height: 1;
  flex-shrink: 0;
}

.mini-cta-link {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  background: var(--white);
  color: var(--coral-600);
  border: 1.5px solid var(--coral-500);
  padding: 10px 18px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: var(--fs-sm);
  transition: all var(--transition);
  white-space: nowrap;
  flex-shrink: 0;
}

.mini-cta-link:hover {
  background: var(--coral-500);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}

@media (min-width: 721px) {
  .mini-cta {
    flex-direction: row;
    align-items: center;
    gap: var(--sp-5);
    padding: var(--sp-5) var(--sp-6);
  }

  .mini-cta-text {
    flex: 1;
    font-size: var(--fs-base);
  }
}

/* ========== AIRLINE HERO (compact, mobile-first, CTA above the fold) ========== */
.airline-hero {
  background: linear-gradient(180deg, var(--navy-50) 0%, var(--white) 100%);
  border-bottom: 1px solid var(--slate-200);
  padding: var(--sp-6) 0 var(--sp-8);
  text-align: center;
}

.airline-hero .breadcrumbs {
  font-size: var(--fs-sm);
  color: var(--slate-500);
  margin-bottom: var(--sp-3);
}

.airline-hero .breadcrumbs a {
  color: var(--slate-500);
}

.airline-hero .breadcrumbs a:hover {
  color: var(--navy-900);
}

.airline-hero .updated {
  display: inline-flex;
  align-items: center;
  background: var(--green-50);
  color: var(--green-600);
  padding: 4px 12px;
  border-radius: 999px;
  font-size: var(--fs-xs);
  font-weight: 600;
  margin-bottom: var(--sp-4);
}

.airline-hero h1 {
  font-size: clamp(1.625rem, 6vw, 2.5rem);
  margin-bottom: var(--sp-4);
  line-height: 1.15;
}

.airline-hero-sub {
  font-size: var(--fs-base);
  color: var(--slate-600);
  margin: 0 auto var(--sp-5);
  max-width: 640px;
}

.airline-hero-cta {
  display: flex;
  justify-content: center;
}

@media (min-width: 721px) {
  .airline-hero {
    padding: var(--sp-8) 0 var(--sp-10);
  }

  .airline-hero-sub {
    font-size: var(--fs-lg);
  }
}

/* ========== ARTICLE PAGE ========== */
.article {
  max-width: 760px;
  margin: 0 auto;
  padding: var(--sp-8) var(--sp-4);
}

.article h2 { margin-top: var(--sp-8); }
.article h3 { margin-top: var(--sp-6); }

.article .breadcrumbs {
  font-size: var(--fs-sm);
  color: var(--slate-500);
  margin-bottom: var(--sp-5);
}

.article .breadcrumbs a { color: var(--slate-500); }
.article .breadcrumbs a:hover { color: var(--navy-900); }

.article .updated {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  background: var(--green-50);
  color: var(--green-600);
  padding: 4px 12px;
  border-radius: 999px;
  font-size: var(--fs-xs);
  font-weight: 600;
  margin-bottom: var(--sp-5);
}

.callout {
  background: var(--coral-50);
  border-left: 4px solid var(--coral-500);
  padding: var(--sp-4);
  border-radius: var(--radius);
  margin: var(--sp-5) 0;
}

.callout-title {
  font-weight: 700;
  color: var(--navy-900);
  margin-bottom: var(--sp-2);
  display: flex;
  align-items: center;
  gap: var(--sp-2);
}

.callout p:last-child { margin: 0; }

.inline-cta {
  background: var(--navy-50);
  border-radius: var(--radius-lg);
  padding: var(--sp-5);
  margin: var(--sp-6) 0;
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}

.inline-cta-text strong {
  display: block;
  color: var(--navy-900);
  font-size: var(--fs-base);
  margin-bottom: 4px;
}

.inline-cta-text span {
  color: var(--slate-600);
  font-size: var(--fs-sm);
}

/* ========== UTILITIES ========== */
.text-center { text-align: center; }
.mt-4 { margin-top: var(--sp-4); }
.mt-6 { margin-top: var(--sp-6); }
.mt-8 { margin-top: var(--sp-8); }
.mb-4 { margin-bottom: var(--sp-4); }
.mb-6 { margin-bottom: var(--sp-6); }
.mb-8 { margin-bottom: var(--sp-8); }

.hide-mobile { display: none; }
.show-mobile { display: block; }

/* ============================================================ */
/* SMALL TABLET — 481px+ (large phones, small tablets portrait) */
/* ============================================================ */
@media (min-width: 481px) {
  .container { padding: 0 var(--sp-5); }
  .container-narrow { padding: 0 var(--sp-5); }

  .trust-bar-inner { gap: var(--sp-5); }
  .trust-item strong { font-size: var(--fs-2xl); }
  .trust-item span { font-size: var(--fs-sm); }

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

  .calc-result-amount { font-size: var(--fs-5xl); }
  .calc-result-amount small { font-size: var(--fs-xl); }

  .inline-cta {
    flex-direction: row;
    align-items: center;
    gap: var(--sp-5);
  }

  .inline-cta-text { flex: 1 1 240px; }
  .inline-cta-text strong { font-size: var(--fs-lg); }
}

/* ============================================================ */
/* TABLET — 721px+ (tablets, small laptops)                     */
/* ============================================================ */
@media (min-width: 721px) {
  .section { padding: var(--sp-16) 0; }
  .section-tight { padding: var(--sp-12) 0; }

  h1 { font-size: clamp(2rem, 4vw + 0.5rem, var(--fs-5xl)); }
  h2 { font-size: clamp(1.625rem, 2.5vw + 0.5rem, var(--fs-4xl)); }
  h3 { font-size: var(--fs-2xl); }
  h4 { font-size: var(--fs-xl); }
  h5 { font-size: var(--fs-lg); }

  .hero {
    padding: var(--sp-16) 0 var(--sp-20);
  }

  .hero-sub { font-size: var(--fs-lg); }

  .hero-badge {
    margin-bottom: var(--sp-5);
  }

  .card-grid {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: var(--sp-6);
  }

  .steps {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--sp-8);
  }

  .step {
    padding: var(--sp-8) var(--sp-6);
  }

  .testimonials {
    gap: var(--sp-6);
  }

  .testimonial { padding: var(--sp-6); }
  .testimonial p { font-size: var(--fs-base); }
  .testimonial-name { font-size: var(--fs-base); }

  .airlines-grid {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: var(--sp-3);
  }

  .airline-tile {
    padding: var(--sp-4) var(--sp-5);
  }

  .fee-table {
    font-size: var(--fs-sm);
    min-width: 0;
  }

  .fee-table th, .fee-table td {
    padding: 16px 20px;
  }

  .calculator {
    grid-template-columns: 1fr 1fr;
    padding: var(--sp-8);
  }

  .cta-banner {
    padding: var(--sp-12) var(--sp-8);
    border-radius: var(--radius-xl);
  }

  .cta-banner p { font-size: var(--fs-lg); }

  .cta-phone {
    font-size: var(--fs-3xl);
    gap: var(--sp-3);
  }

  .cta-phone svg { width: 30px; height: 30px; }

  .cta-banner-meta { font-size: var(--fs-sm); }

  .trust-bar-inner {
    grid-template-columns: repeat(4, 1fr);
    gap: var(--sp-6);
  }

  .agent-card {
    padding: var(--sp-6);
  }

  .agent-card-title { font-size: var(--fs-lg); }

  .agents-list { gap: var(--sp-3); }

  .article {
    padding: var(--sp-12) var(--sp-5);
  }

  .article h2 { margin-top: var(--sp-10); }
  .article h3 { margin-top: var(--sp-8); }

  .callout { padding: var(--sp-5); margin: var(--sp-6) 0; }

  .disclaimer {
    padding: var(--sp-4) var(--sp-5);
    font-size: var(--fs-sm);
  }

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    text-align: left;
  }

  .hide-mobile { display: inherit; }
  .show-mobile { display: none; }
}

/* ============================================================ */
/* LARGE TABLET / SMALL DESKTOP — 881px+                        */
/* ============================================================ */
@media (min-width: 881px) {
  .nav {
    display: flex;
  }

  .menu-toggle { display: none; }

  .header-cta { display: inline-flex; }

  .header-inner {
    padding-top: var(--sp-4);
    padding-bottom: var(--sp-4);
    gap: var(--sp-6);
  }

  .logo {
    font-size: var(--fs-xl);
  }

  .logo-icon {
    width: 38px;
    height: 38px;
  }

  .logo-icon svg { width: 22px; height: 22px; }

  .nav { gap: var(--sp-6); }

  .header-cta {
    padding: 10px 18px;
  }

  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; }

  .testimonials {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ============================================================ */
/* DESKTOP — 981px+                                             */
/* ============================================================ */
@media (min-width: 981px) {
  .hero {
    padding: var(--sp-20) 0 var(--sp-24);
  }

  .hero-inner {
    grid-template-columns: 1.1fr 1fr;
    gap: var(--sp-16);
  }

  .section { padding: var(--sp-20) 0; }

  .btn-large {
    padding: 18px 36px;
    font-size: var(--fs-lg);
  }
}
