/* OneCall Flights — static stylesheet.
   Ported from the former Astro/Tailwind build into plain CSS. */

/* ---------- Base / reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
:target { scroll-margin-top: 24px; }
body {
  font-family: 'Manrope', ui-sans-serif, system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  color: #0b1220;
  background: #f4f7fb;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

/* Visible focus state for accessibility */
:focus-visible {
  outline: 2px solid #1f73ff;
  outline-offset: 2px;
  border-radius: 4px;
}
.glass-nav :focus-visible,
.hero :focus-visible,
.card :focus-visible {
  outline-color: #ffffff;
}

/* Liquid glass — nav */
.glass {
  background: rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(22px) saturate(140%);
  -webkit-backdrop-filter: blur(22px) saturate(140%);
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.35),
    inset 0 -1px 0 rgba(255, 255, 255, 0.08),
    0 10px 40px rgba(10, 24, 60, 0.18);
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 720px;
  height: calc(100vh - 0px);
  max-height: 900px;
  overflow: hidden;
  isolation: isolate;
  color: #fff;
  background: linear-gradient(180deg, #6fb1ff 0%, #f6b585 55%, #c66a4a 100%);
}
.hero__bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(100deg, rgba(8,14,30,0.55) 0%, rgba(8,14,30,0.30) 40%, rgba(8,14,30,0.10) 70%, rgba(8,14,30,0.30) 100%),
    url('/images/hero-airplane.webp');
  background-size: cover;
  background-position: center 50%;
  z-index: -1;
}
.hero__inner {
  position: relative;
  height: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero__copy {
  max-width: 760px;
  padding-top: 60px;
}
h1.hero__title {
  margin: 22px 0 18px;
  font-size: clamp(40px, 7vw, 84px);
  line-height: 1.02;
  letter-spacing: -0.035em;
  font-weight: 700;
  color: #fff;
  text-wrap: balance;
  text-shadow: 0 2px 30px rgba(0, 0, 0, 0.18);
}
.hero__sub {
  margin: 0 0 32px;
  font-size: clamp(16px, 1.6vw, 20px);
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.92);
  max-width: 600px;
  font-weight: 400;
  text-wrap: pretty;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.18);
}
.hero__ctarow {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

/* ---------- NAV ---------- */
.nav {
  position: absolute;
  top: 22px; left: 50%;
  transform: translateX(-50%);
  width: min(1200px, calc(100% - 40px));
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px 10px 22px;
  border-radius: 999px;
  z-index: 10;
}
.nav__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  letter-spacing: -0.01em;
  font-size: 18px;
}
.nav__brand-mark {
  width: 34px; height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.35);
}
.nav__links {
  display: flex;
  gap: 6px;
  padding: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
}
.nav__links a {
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.92);
  transition: background .2s ease, color .2s ease;
}
.nav__links a:hover { background: rgba(255, 255, 255, 0.18); }
.nav__cta {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 6px 6px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.95);
  color: #0b1220;
  font-weight: 600;
  font-size: 14px;
  transition: transform .15s ease, background .2s ease;
}
.nav__cta:hover { background: #fff; transform: translateY(-1px); }
.nav__cta .dot {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: #0b1220;
  color: #fff;
  display: grid;
  place-items: center;
}

/* Sticky mobile/tablet call bar — appears on scroll, hidden on desktop */
.sticky-call {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: calc(16px + env(safe-area-inset-bottom, 0px));
  z-index: 50;
  display: none;
  align-items: center;
  gap: 14px;
  padding: 12px 18px 12px 12px;
  border-radius: 999px;
  background: #1f73ff;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  box-shadow:
    0 14px 36px rgba(31, 115, 255, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: opacity .25s ease, transform .25s ease;
}
.sticky-call[data-visible="true"] {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.sticky-call:hover { background: #155de0; }
.sticky-call:active { background: #0f47b3; }
.sticky-call__icon {
  flex: 0 0 auto;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  display: grid;
  place-items: center;
}
.sticky-call__text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.sticky-call__label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  opacity: 0.85;
}
.sticky-call__number {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

/* Mobile hamburger toggle — hidden on desktop */
.nav__toggle {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.28);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  transition: background .2s ease;
}
.nav__toggle:hover { background: rgba(255, 255, 255, 0.18); }
.nav__toggle-bar {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: #fff;
  transition: transform .2s ease, opacity .2s ease;
}
.nav[data-mobile-open="true"] .nav__toggle-bar:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.nav[data-mobile-open="true"] .nav__toggle-bar:nth-child(2) { opacity: 0; }
.nav[data-mobile-open="true"] .nav__toggle-bar:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* ---------- Eyebrow ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.eyebrow .pulse {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #3dffb0;
  box-shadow: 0 0 0 0 rgba(61, 255, 176, 0.7);
}
@media (prefers-reduced-motion: no-preference) {
  .eyebrow .pulse { animation: pulse 1.8s ease-out infinite; }
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(61, 255, 176, 0.6); }
  70%  { box-shadow: 0 0 0 14px rgba(61, 255, 176, 0); }
  100% { box-shadow: 0 0 0 0 rgba(61, 255, 176, 0); }
}

/* ---------- Buttons ---------- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 26px 16px 28px;
  border-radius: 999px;
  background: linear-gradient(160deg, #2f7bff 0%, #1f73ff 60%, #155de0 100%);
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  box-shadow:
    0 10px 30px rgba(31, 115, 255, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
  transition: background .2s ease, transform .15s ease, box-shadow .2s ease;
}
.btn-primary:hover {
  background: linear-gradient(160deg, #2670ff 0%, #155de0 60%, #0f47b3 100%);
  transform: translateY(-2px);
  box-shadow:
    0 14px 36px rgba(21, 93, 224, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
}
.btn-primary:active {
  background: linear-gradient(160deg, #155de0 0%, #0f47b3 100%);
  transform: translateY(0);
}
.btn-primary .arrow {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  display: grid;
  place-items: center;
  transition: transform .2s ease;
}
.btn-primary:hover .arrow { transform: translateX(3px); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 22px;
  border-radius: 999px;
  color: #fff;
  font-weight: 500;
  font-size: 15px;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: background .2s ease;
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.20); }

/* ---------- CONNECT + HOW IT WORKS ---------- */
.connect-wrap {
  position: relative;
  margin: -90px auto 0;
  padding: 0 20px;
  width: 100%;
  max-width: 1240px;
  z-index: 4;
}
.connect {
  background: linear-gradient(180deg, #f3f7ff 0%, #ffffff 60%, #f7faff 100%);
  border: 1px solid #e6ebf3;
  border-radius: 24px;
  padding: 44px 48px 36px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
  box-shadow: 0 24px 60px rgba(8, 20, 48, 0.10);
}
.connect__left { display: flex; flex-direction: column; gap: 22px; }
.connect__right {
  border-left: 1px solid #e6ebf3;
  padding-left: 48px;
  min-height: 100%;
}
.connect__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  align-self: flex-start;
  padding: 9px 18px;
  border-radius: 999px;
  background: #e8f7ee;
  color: #0b1220;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
}
.connect__badge-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #18b26b;
  box-shadow: 0 0 0 0 rgba(24, 178, 107, 0.5);
}
@media (prefers-reduced-motion: no-preference) {
  .connect__badge-dot { animation: pulse-green 2s ease-out infinite; }
}
.connect__phonerow {
  display: flex;
  align-items: center;
  gap: 18px;
}
.connect__phoneicon {
  flex: 0 0 auto;
  width: 56px; height: 56px;
  border-radius: 14px;
  background: linear-gradient(160deg, #2f7bff 0%, #1f73ff 60%, #155de0 100%);
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 24px rgba(31, 115, 255, 0.32);
}
.connect__phonecol { display: flex; flex-direction: column; gap: 4px; }
.connect__phonelabel {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #5b6478;
}
.connect__phone {
  font-size: clamp(28px, 4.2vw, 44px);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #0b1220;
  line-height: 1.05;
  font-family: inherit;
}
.connect__phone:hover { color: #1f73ff; }
.connect__perks {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  font-size: 14.5px;
  font-weight: 500;
  color: #1a2336;
}
.connect__perks li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.connect__check {
  width: 18px; height: 18px;
  display: grid;
  place-items: center;
  color: #18b26b;
}
.connect__title {
  margin: 0 0 22px;
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #0b1220;
}
.steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 22px;
}
.steps__item {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 16px;
  align-items: start;
}
.steps__num {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: #e9f0ff;
  color: #1f73ff;
  font-weight: 700;
  font-size: 14px;
  display: grid;
  place-items: center;
  margin-top: 2px;
}
.steps__body { display: flex; flex-direction: column; gap: 4px; }
.steps__heading {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  color: #0b1220;
  letter-spacing: -0.01em;
}
.steps__desc {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.5;
  color: #5b6478;
}
.connect__disclosure {
  max-width: 1240px;
  margin: 18px 0 0;
  padding: 18px 4px 0;
  border-top: 1px solid #e6ebf3;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  line-height: 1.55;
  color: #5b6478;
}
.connect__disclosure-icon {
  flex: 0 0 auto;
  color: #8893a7;
  margin-top: 2px;
}

/* ---------- TRUST BAND (formerly airlines marquee) ---------- */
.airlines {
  position: relative;
  padding: 80px 0 60px;
  background: #f4f7fb;
}
.airlines__head {
  max-width: 1200px;
  margin: 0 auto 36px;
  padding: 0 28px;
  text-align: center;
}
.kicker {
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #5b6478;
  font-weight: 600;
}
.airlines__title {
  margin: 10px 0 0;
  font-size: clamp(22px, 2.6vw, 30px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #0b1220;
}
.trust-band {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 28px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.trust-stat {
  background: #fff;
  border: 1px solid #e6ebf3;
  border-radius: 20px;
  padding: 28px 22px;
  text-align: center;
  box-shadow: 0 4px 18px rgba(15, 28, 60, 0.04);
  transition: transform .2s ease, box-shadow .2s ease;
}
.trust-stat:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(15, 28, 60, 0.08);
}
.trust-stat__value {
  font-size: clamp(28px, 3.2vw, 38px);
  font-weight: 800;
  color: #1f73ff;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.trust-stat__label {
  margin-top: 6px;
  font-size: 14px;
  color: #4a5366;
  font-weight: 500;
  line-height: 1.4;
}
.airlines__disclosure {
  max-width: 720px;
  margin: 28px auto 0;
  padding: 0 28px;
  text-align: center;
  font-size: 13px;
  color: #5b6478;
  line-height: 1.55;
}

/* ---------- SERVICES ---------- */
.services {
  position: relative;
  padding: 30px 0 110px;
  background: #f4f7fb;
}
.services__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
}
.services__head {
  text-align: center;
  margin-bottom: 36px;
}
.services__head h2 {
  margin: 6px auto 0;
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
  max-width: 680px;
  text-wrap: balance;
}
.services__head p {
  margin: 16px auto 0;
  color: #5b6478;
  font-size: 16px;
  line-height: 1.5;
  max-width: 560px;
}
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.card {
  position: relative;
  padding: 28px;
  border-radius: 24px;
  overflow: hidden;
  color: #fff;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  isolation: isolate;
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow: 0 18px 50px rgba(15, 28, 60, 0.18);
}
.card__icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.30);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  margin-bottom: 22px;
}
.card__title {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 10px;
}
.card__desc {
  font-size: 15px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.86);
  margin: 0 0 22px;
  text-wrap: pretty;
}
.card__list {
  list-style: none;
  padding: 0;
  margin: 0 0 26px;
  display: grid;
  gap: 8px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.92);
}
.card__list li {
  display: flex;
  align-items: center;
  gap: 10px;
}
.card__list svg { flex: 0 0 auto; opacity: .9; }
.card__cta {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  justify-content: space-between;
  padding: 12px 14px 12px 20px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  color: #0b1220;
  font-weight: 600;
  font-size: 15px;
  transition: background .2s ease, transform .15s ease;
  width: fit-content;
}
.card__cta:hover { background: #fff; transform: translateY(-1px); }
.card__cta .dot {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: #1f73ff;
  color: #fff;
  display: grid;
  place-items: center;
  transition: background .2s ease;
}
.card__cta:hover .dot { background: #155de0; }
.card--cancel .card__cta .dot { background: #c83d6b; }
.card--cancel .card__cta:hover .dot { background: #a82a55; }
.card--change .card__cta .dot { background: #1a2336; }

/* ---------- ABOUT ---------- */
.about {
  background: #fff;
  padding: 100px 0 110px;
  border-top: 1px solid #eef2f7;
}
.about__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
}
.about__head {
  text-align: center;
  margin-bottom: 56px;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}
.about__head h2 {
  margin: 10px 0 0;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  text-wrap: balance;
  color: #0b1220;
}
.about__lead {
  margin: 20px auto 0;
  font-size: 17px;
  line-height: 1.6;
  color: #4a5366;
  max-width: 680px;
  text-wrap: pretty;
}
.about__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.pillar {
  padding: 32px 28px;
  border-radius: 22px;
  background: #f7f9fc;
  border: 1px solid #e9eef5;
  display: flex;
  flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease;
}
.pillar:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(15, 28, 60, 0.06);
}
.pillar__icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  background: #e9f0ff;
  color: #1f73ff;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
}
.pillar__title {
  margin: 0 0 10px;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #0b1220;
}
.pillar__desc {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: #4a5366;
  text-wrap: pretty;
}

/* ---------- FOOTER ---------- */
.foot {
  background: #0b1220;
  color: rgba(255, 255, 255, 0.7);
  padding: 60px 0 40px;
}
.foot__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
  display: block;
}
.foot__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.foot__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-weight: 700;
  font-size: 18px;
  text-decoration: none;
}
.foot__phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #fff;
  font-weight: 600;
}
.foot__disclosure {
  margin: 18px 0 16px;
  font-size: 12.5px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.55);
  max-width: 880px;
}
.foot__bottom {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
}
.foot__bottom a {
  color: inherit;
  text-decoration: underline;
}
.foot__sep { opacity: 0.5; }

/* ---------- LEGAL / RESULTS pages ---------- */
.legal-header,
.results-header {
  position: relative;
  height: 120px;
  background: linear-gradient(160deg, #0b1220 0%, #1a2336 100%);
}
.legal {
  background: #f4f7fb;
  padding: 64px 24px 96px;
}
.legal__inner {
  max-width: 820px;
  margin: 0 auto;
  background: #fff;
  border-radius: 24px;
  padding: 56px 56px 64px;
  box-shadow: 0 20px 60px rgba(11, 18, 32, 0.06), 0 2px 8px rgba(11, 18, 32, 0.04);
  color: #1a2336;
  line-height: 1.65;
}
.legal__inner .kicker {
  color: #1f73ff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.legal__inner h1 {
  font-size: 40px;
  font-weight: 800;
  color: #0b1220;
  margin: 0 0 8px;
  letter-spacing: -0.02em;
}
.legal__updated {
  color: #5b6478;
  font-size: 14px;
  margin: 0 0 32px;
}
.legal__inner h2 {
  font-size: 22px;
  font-weight: 700;
  color: #0b1220;
  margin: 36px 0 12px;
  letter-spacing: -0.01em;
}
.legal__inner h3 {
  font-size: 17px;
  font-weight: 700;
  color: #0b1220;
  margin: 24px 0 8px;
}
.legal__inner p {
  margin: 0 0 14px;
  font-size: 15.5px;
  color: #1a2336;
}
.legal__inner ul {
  margin: 0 0 16px;
  padding-left: 22px;
  font-size: 15.5px;
}
.legal__inner ul li {
  margin-bottom: 6px;
}
.legal__inner ul ul {
  margin-top: 6px;
  margin-bottom: 6px;
}
.legal__inner strong { color: #0b1220; }
.legal__inner a { color: #1f73ff; text-decoration: underline; }

/* ---------- RESULTS / QUOTE page ---------- */
.results {
  background: #f4f7fb;
  padding: 48px 24px 96px;
  min-height: 60vh;
}
.results__inner {
  max-width: 860px;
  margin: 0 auto;
}
.results__back {
  display: inline-block;
  color: #1f73ff;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 20px;
  text-decoration: none;
}
.results__back:hover { text-decoration: underline; }
.results__summary {
  background: #fff;
  border-radius: 20px;
  padding: 28px 32px;
  box-shadow: 0 10px 30px rgba(11, 18, 32, 0.04);
  margin-bottom: 20px;
}
.results__summary .kicker {
  color: #1f73ff;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 8px;
}
.results__route {
  margin: 0;
  font-size: clamp(24px, 3.4vw, 34px);
  font-weight: 800;
  color: #0b1220;
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.results__arrow { color: #1f73ff; font-weight: 600; }
.results__meta {
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  color: #4a5366;
  font-size: 14.5px;
  font-weight: 500;
}
.results__meta li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.quote-card {
  background: #fff;
  border-radius: 20px;
  padding: 36px 32px;
  box-shadow: 0 10px 30px rgba(11, 18, 32, 0.04);
  margin-bottom: 20px;
}
.quote-card .kicker {
  color: #1f73ff;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 8px;
}
.quote-card h2 {
  margin: 0 0 12px;
  font-size: clamp(20px, 2.4vw, 26px);
  font-weight: 700;
  color: #0b1220;
  letter-spacing: -0.015em;
  line-height: 1.25;
}
.quote-card p {
  margin: 0 0 24px;
  color: #4a5366;
  font-size: 15.5px;
  line-height: 1.6;
  max-width: 640px;
}
.quote-card__cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 24px;
  margin-bottom: 24px;
}
.btn-call {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #1f73ff;
  color: #fff;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 16px;
  box-shadow: 0 8px 22px rgba(31, 115, 255, 0.28);
  transition: transform .15s ease, box-shadow .15s ease;
}
.btn-call:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(31, 115, 255, 0.32);
}
.quote-card__meta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #4a5366;
  font-size: 14px;
}
.pulse-green {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #18b26b;
  box-shadow: 0 0 0 0 rgba(24, 178, 107, 0.6);
  animation: pulse-green 2s infinite;
}
@keyframes pulse-green {
  0%   { box-shadow: 0 0 0 0 rgba(24, 178, 107, 0.6); }
  70%  { box-shadow: 0 0 0 10px rgba(24, 178, 107, 0); }
  100% { box-shadow: 0 0 0 0 rgba(24, 178, 107, 0); }
}
.quote-card__bullets {
  list-style: none;
  margin: 0;
  padding: 20px 0 0;
  border-top: 1px solid #eef1f6;
  display: grid;
  gap: 8px;
  color: #4a5366;
  font-size: 14.5px;
}
.quote-card__bullets li::before {
  content: "✓ ";
  color: #18b26b;
  font-weight: 800;
  margin-right: 4px;
}
.disclosure {
  background: transparent;
  padding: 8px 4px 0;
  color: #5b6478;
}
.disclosure h3 {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #5b6478;
  margin: 0 0 8px;
}
.disclosure p {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.6;
}

/* ---------- Card pseudo-element gradients ---------- */
.card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
}
.card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.20) 0%, rgba(255,255,255,0) 35%),
    linear-gradient(0deg, rgba(0,0,0,0.18) 0%, rgba(0,0,0,0) 50%);
  z-index: -1;
  pointer-events: none;
}
.card--book::before {
  background:
    radial-gradient(120% 80% at 20% 0%, rgba(255,255,255,0.35) 0%, rgba(255,255,255,0) 60%),
    linear-gradient(160deg, #2f7bff 0%, #0f47b3 100%);
}
.card--change::before {
  background:
    radial-gradient(120% 80% at 80% 0%, rgba(255,255,255,0.30) 0%, rgba(255,255,255,0) 60%),
    linear-gradient(160deg, #1a2336 0%, #0b1220 100%);
}
.card--cancel::before {
  background:
    radial-gradient(120% 80% at 30% 0%, rgba(255,255,255,0.35) 0%, rgba(255,255,255,0) 60%),
    linear-gradient(160deg, #ff8a5b 0%, #c83d6b 100%);
}

/* ---------- responsive ---------- */
@media (max-width: 920px) {
  .services__grid { grid-template-columns: 1fr; }
  .about__grid { grid-template-columns: 1fr; }
  .nav__toggle { display: inline-flex; }
  .nav__cta { display: none; }
  .sticky-call { display: inline-flex; }
  .nav__links {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 4px;
    padding: 10px;
    border-radius: 20px;
    background: rgba(20, 30, 55, 0.85);
    backdrop-filter: blur(22px) saturate(140%);
    -webkit-backdrop-filter: blur(22px) saturate(140%);
    border: 1px solid rgba(255, 255, 255, 0.22);
    box-shadow: 0 18px 40px rgba(8, 20, 48, 0.35);
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
    transition: opacity .18s ease, transform .18s ease;
  }
  .nav__links a {
    padding: 12px 18px;
    text-align: left;
    font-size: 15px;
  }
  .nav[data-mobile-open="true"] .nav__links {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
  .hero { min-height: 760px; }
  h1.hero__title { font-size: clamp(38px, 10vw, 56px); }
  .connect-wrap { margin-top: -60px; }
  .connect {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 32px 28px 28px;
  }
  .connect__right {
    border-left: none;
    border-top: 1px solid #e6ebf3;
    padding-left: 0;
    padding-top: 28px;
  }
}
@media (max-width: 820px) {
  .trust-band { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  .legal { padding: 32px 16px 64px; }
  .legal__inner { padding: 32px 24px 40px; border-radius: 18px; }
  .legal__inner h1 { font-size: 30px; }
  .results { padding: 32px 14px 64px; }
  .results__summary, .quote-card { padding: 24px 20px; border-radius: 16px; }
  .btn-call { width: 100%; justify-content: center; }
}
@media (max-width: 560px) {
  .nav { padding: 8px 8px 8px 16px; }
  .nav__cta { padding: 4px 4px 4px 14px; font-size: 13px; }
  .nav__cta .dot { width: 28px; height: 28px; }
  .hero__copy { padding-top: 80px; }
  .btn-primary { padding: 14px 22px; }
  .connect-wrap { margin-top: -40px; padding: 0 14px; }
  .connect { padding: 26px 22px 22px; }
  .connect__phone { font-size: clamp(26px, 8vw, 36px); }
}
@media (max-width: 420px) {
  .trust-band { grid-template-columns: 1fr; }
}
