:root {
  color-scheme: dark;
  --bg: #050505;
  --deep-blue: #061826;
  --ink: #f5f7fa;
  --muted: #a6adbb;
  --soft: rgba(255, 255, 255, 0.68);
  --line: rgba(255, 255, 255, 0.16);
  --panel: rgba(8, 11, 17, 0.68);
  --panel-strong: rgba(6, 24, 38, 0.92);
  --orange: #ff7a00;
  --orange-soft: #ff9b3d;
  --red: #ff7a00;
  --gold: #ffb36a;
  --cyan: #f5f7fa;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 82% 18%, rgba(6, 24, 38, 0.88), transparent 32rem),
    radial-gradient(circle at 12% 20%, rgba(255, 122, 0, 0.18), transparent 32rem),
    var(--bg);
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
  min-width: 320px;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  overscroll-behavior-x: none;
}

main {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

main > section:not(.hero) {
  content-visibility: auto;
  contain-intrinsic-size: 720px;
}

body.is-loading {
  overflow: hidden;
}

body.motion-ready .reveal-item {
  opacity: 0;
  filter: blur(0.55rem);
  transform: translate3d(0, 2.6rem, 0) scale(0.985);
  clip-path: inset(8% 0 0 0 round 0.55rem);
  transition:
    opacity 780ms cubic-bezier(0.16, 1, 0.3, 1),
    filter 780ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 780ms cubic-bezier(0.16, 1, 0.3, 1),
    clip-path 780ms cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, filter, transform, clip-path;
}

body.motion-ready .reveal-item.is-visible {
  opacity: 1;
  filter: blur(0);
  transform: translate3d(0, 0, 0) scale(1);
  clip-path: inset(0 0 0 0 round 0);
}

body.motion-ready .parallax-layer {
  transform: translate3d(0, var(--parallax-y, 0px), 0) scale(var(--parallax-scale, 1));
  transition: filter 220ms ease-out;
  will-change: transform, filter;
}

body.is-scrolling .parallax-layer {
  filter: saturate(1.04) contrast(1.08) blur(0.45px);
}

a {
  color: inherit;
  text-decoration: none;
}

.noise {
  position: fixed;
  inset: 0;
  z-index: 50;
  pointer-events: none;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='.65'/%3E%3C/svg%3E");
}

.premium-loader {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 1.15rem;
  background:
    radial-gradient(circle at 50% 44%, rgba(255, 122, 0, 0.22), transparent 20rem),
    radial-gradient(circle at 68% 46%, rgba(245, 247, 250, 0.12), transparent 24rem),
    #030406;
  transition: opacity 520ms ease, visibility 520ms ease;
}

.premium-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-orbit {
  position: relative;
  width: 7.5rem;
  height: 7.5rem;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.02)),
    rgba(8, 11, 17, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 0 5rem rgba(255, 122, 0, 0.28);
}

.loader-orbit::before {
  content: "";
  position: absolute;
  inset: -0.4rem;
  border-radius: inherit;
  border: 1px solid transparent;
  border-top-color: var(--red);
  border-right-color: rgba(245, 247, 250, 0.55);
  filter: drop-shadow(0 0 1.5rem rgba(255, 122, 0, 0.5));
  animation: loaderSpin 950ms linear infinite;
}

.loader-orbit span {
  font-weight: 900;
  font-size: 1.05rem;
}

.loader-orbit img {
  width: 82%;
  height: 82%;
  object-fit: contain;
  border-radius: 999px;
  filter: drop-shadow(0 0 1.3rem rgba(255, 122, 0, 0.25));
}

.premium-loader p {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.lead-gate {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 220ms ease, visibility 220ms ease;
}

.lead-gate.is-open {
  opacity: 1;
  visibility: visible;
}

.lead-gate-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 5, 5, 0.72);
  backdrop-filter: blur(18px);
}

.lead-gate-card {
  position: relative;
  width: min(31rem, 100%);
  padding: clamp(1.1rem, 4vw, 1.65rem);
  border: 1px solid rgba(245, 247, 250, 0.16);
  border-radius: 0.95rem;
  background:
    linear-gradient(145deg, rgba(245, 247, 250, 0.13), rgba(245, 247, 250, 0.035)),
    rgba(6, 24, 38, 0.88);
  box-shadow: 0 2.5rem 8rem rgba(0, 0, 0, 0.55), 0 0 4rem rgba(255, 122, 0, 0.14);
  transform: translateY(1rem) scale(0.98);
  transition: transform 220ms ease;
}

.lead-gate.is-open .lead-gate-card {
  transform: translateY(0) scale(1);
}

.lead-gate-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.lead-gate-head span {
  color: var(--orange);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.lead-gate-head button {
  width: 2.25rem;
  height: 2.25rem;
  color: white;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  cursor: pointer;
  font-size: 1.25rem;
  line-height: 1;
}

.lead-gate-card h2 {
  font-size: clamp(1.65rem, 5vw, 2.6rem);
  line-height: 1;
}

.lead-gate-card p {
  margin-top: 0.85rem;
  margin-bottom: 1rem;
  color: var(--muted);
  line-height: 1.62;
}

.lead-consent {
  display: grid;
  grid-template-columns: 1rem 1fr;
  gap: 0.65rem;
  margin-top: 1rem;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.45;
}

.lead-consent input {
  width: 1rem;
  height: 1rem;
  accent-color: var(--orange);
}

.lead-gate-submit {
  width: 100%;
  min-height: 3.35rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  margin-top: 1rem;
  color: white;
  background: linear-gradient(135deg, #ff9b3d, var(--orange) 58%, #9a4700);
  border: 0;
  border-radius: 0.55rem;
  box-shadow: 0 1rem 3.2rem rgba(255, 122, 0, 0.3);
  cursor: pointer;
  font: inherit;
  font-size: 0.84rem;
  font-weight: 900;
  text-transform: uppercase;
}

.lead-gate-card small {
  display: block;
  margin-top: 0.8rem;
  color: var(--muted);
  line-height: 1.45;
}

.lead-gate-card small.error {
  color: #ffb0a3;
}

.subscription-lock {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: none;
  place-items: center;
  padding: 1rem;
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 122, 0, 0.22), transparent 24rem),
    rgba(3, 4, 6, 0.94);
  backdrop-filter: blur(18px);
}

.subscription-lock.is-visible {
  display: grid;
}

.subscription-lock-card {
  width: min(34rem, 100%);
  padding: clamp(1.2rem, 4vw, 2rem);
  border: 1px solid rgba(255, 122, 0, 0.28);
  border-radius: 1rem;
  background:
    linear-gradient(145deg, rgba(255, 122, 0, 0.13), rgba(245, 247, 250, 0.035)),
    rgba(6, 24, 38, 0.9);
  box-shadow: 0 2.5rem 8rem rgba(0, 0, 0, 0.62), 0 0 4rem rgba(255, 122, 0, 0.14);
}

.subscription-lock-card span {
  color: var(--orange);
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
}

.subscription-lock-card h2 {
  margin-top: 0.8rem;
  font-size: clamp(2rem, 7vw, 4rem);
}

.subscription-lock-card p {
  margin-top: 1rem;
  color: var(--muted);
  line-height: 1.7;
}

.subscription-lock-card a {
  min-height: 3rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 1.2rem;
  padding: 0 1rem;
  color: white;
  background: linear-gradient(135deg, #ff9b3d, var(--orange) 58%, #9a4700);
  border-radius: 0.55rem;
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.subscription-warning {
  position: fixed;
  left: 50%;
  bottom: calc(1rem + env(safe-area-inset-bottom));
  z-index: 95;
  display: none;
  width: min(36rem, calc(100% - 2rem));
  transform: translateX(-50%);
  padding: 0.85rem 1rem;
  color: rgba(245, 247, 250, 0.9);
  background: rgba(5, 5, 5, 0.82);
  border: 1px solid rgba(255, 122, 0, 0.28);
  border-radius: 0.8rem;
  box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.44), 0 0 2.5rem rgba(255, 122, 0, 0.12);
  backdrop-filter: blur(18px);
  font-size: 0.82rem;
  font-weight: 800;
  text-align: center;
}

.subscription-warning.is-visible {
  display: block;
}

.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 1rem clamp(1rem, 3vw, 2.5rem);
  background: linear-gradient(180deg, rgba(2, 3, 5, 0.88), rgba(2, 3, 5, 0.32));
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.72rem;
  font-size: 0.95rem;
  font-weight: 800;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 2.85rem;
  height: 2.85rem;
  background: linear-gradient(135deg, rgba(245, 247, 250, 0.12), rgba(6, 24, 38, 0.94));
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  box-shadow: 0 0 2rem rgba(255, 122, 0, 0.22);
  font-size: 0.78rem;
  overflow: hidden;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.16);
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2vw, 2rem);
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 600;
}

.nav a {
  transition: color 180ms ease;
}

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

.top-cta,
.secondary-action,
.primary-action {
  min-height: 2.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  border-radius: 0.42rem;
  font-size: 0.86rem;
  font-weight: 800;
  white-space: nowrap;
}

.top-cta {
  padding: 0 1rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
}

.mobile-action-dock {
  display: none;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  padding: 9rem clamp(1rem, 4vw, 4rem) 5.2rem;
  overflow: hidden;
}

.hero-media,
.hero-media img,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  filter: saturate(0.9) contrast(1.14) brightness(0.58);
  animation: drift 18s ease-in-out infinite alternate;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(3, 4, 6, 0.98) 0%, rgba(3, 4, 6, 0.76) 38%, rgba(3, 4, 6, 0.25) 74%),
    linear-gradient(0deg, #030406 0%, rgba(3, 4, 6, 0.12) 34%, rgba(3, 4, 6, 0.55) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(58rem, 100%);
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.eyebrow span {
  width: 0.55rem;
  height: 0.55rem;
  background: var(--red);
  border-radius: 999px;
  box-shadow: 0 0 1.6rem rgba(255, 122, 0, 0.9);
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1 {
  margin-top: 1.15rem;
  font-size: clamp(4rem, 13vw, 11.5rem);
  line-height: 0.82;
  font-weight: 900;
  text-transform: uppercase;
  text-wrap: balance;
}

.hero-content p {
  margin-top: 1.5rem;
  width: min(42rem, 100%);
  color: var(--soft);
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  line-height: 1.55;
}

.hero-logo-stage {
  position: absolute;
  top: clamp(6.5rem, 12vw, 9rem);
  right: clamp(1rem, 5vw, 6rem);
  z-index: 3;
  width: clamp(17rem, 28vw, 31rem);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  pointer-events: none;
  perspective: 900px;
}

.hero-logo-stage img {
  position: relative;
  z-index: 3;
  width: 82%;
  height: 82%;
  object-fit: contain;
  border-radius: 999px;
  filter:
    drop-shadow(0 2rem 4rem rgba(0, 0, 0, 0.52))
    drop-shadow(0 0 2.6rem rgba(255, 122, 0, 0.18));
  transform: rotateX(8deg) rotateZ(-4deg);
  animation: emblemFloat 6s ease-in-out infinite alternate;
}

.logo-glow {
  position: absolute;
  inset: 17%;
  border-radius: 999px;
  background:
    radial-gradient(circle, rgba(245, 247, 250, 0.24), rgba(255, 122, 0, 0.18) 36%, transparent 68%);
  filter: blur(2.2rem);
  animation: logoPulse 4.8s ease-in-out infinite alternate;
}

.logo-orbit {
  position: absolute;
  inset: 8%;
  border: 1px solid rgba(245, 247, 250, 0.2);
  border-radius: 999px;
  transform: rotateX(62deg) rotateZ(-18deg);
  box-shadow: 0 0 3rem rgba(255, 122, 0, 0.12);
}

.orbit-one {
  animation: orbitSweep 9s linear infinite;
}

.orbit-two {
  inset: 18%;
  border-color: rgba(255, 122, 0, 0.28);
  transform: rotateX(72deg) rotateZ(22deg);
  animation: orbitSweep 13s linear infinite reverse;
}

.logo-orbit::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -0.25rem;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 999px;
  background: var(--orange);
  box-shadow: 0 0 1.4rem rgba(255, 122, 0, 0.9);
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2.1rem;
}

.primary-action {
  padding: 0 1.35rem;
  color: white;
  background: linear-gradient(135deg, #ff9b3d, var(--red) 52%, #9a4700);
  box-shadow: 0 1rem 3.5rem rgba(255, 122, 0, 0.38);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.primary-action:hover {
  transform: translateY(-2px);
  box-shadow: 0 1.25rem 4.5rem rgba(255, 122, 0, 0.52);
}

.secondary-action {
  padding: 0 1.2rem;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--line);
}

.deal-row,
.final-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.savings small {
  color: var(--muted);
  font-size: 0.7rem;
  text-transform: uppercase;
  font-weight: 800;
}

.hero-bottom {
  position: absolute;
  left: clamp(1rem, 4vw, 4rem);
  right: clamp(1rem, 4vw, 4rem);
  bottom: 1.5rem;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.8rem;
}

.hero-bottom span {
  min-height: 3.2rem;
  display: grid;
  place-items: center;
  padding: 0.75rem;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0.38rem;
  font-size: 0.82rem;
  font-weight: 700;
  text-align: center;
}

.differentials,
.flight-search-section,
.airline-showcase,
.section,
.packages-section,
.miles-impact,
.cinema-strip,
.lead-capture,
.promo-section,
.urgency-banner,
.payment-section,
.social-proof-section,
.final-cta,
.premium-footer {
  padding-inline: clamp(1rem, 4vw, 4rem);
}

.differentials {
  position: relative;
  padding-top: clamp(4rem, 8vw, 7rem);
  padding-bottom: clamp(4rem, 8vw, 7rem);
  background:
    radial-gradient(circle at 14% 18%, rgba(255, 122, 0, 0.16), transparent 25rem),
    radial-gradient(circle at 86% 12%, rgba(245, 247, 250, 0.12), transparent 24rem),
    linear-gradient(180deg, #030406, #070a10 48%, #030406);
  border-block: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.differentials::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 5.5rem 5.5rem;
  mask-image: linear-gradient(180deg, transparent, #000 22%, #000 72%, transparent);
}

.differentials-head,
.differentials-grid {
  position: relative;
  z-index: 1;
}

.differentials-head {
  display: grid;
  grid-template-columns: minmax(0, 0.45fr) minmax(0, 1fr);
  gap: clamp(1.5rem, 5vw, 5rem);
  align-items: start;
}

.differentials-head span {
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
}

.differentials-head h2 {
  font-size: clamp(2rem, 5vw, 4.55rem);
}

.differentials-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 2.4rem;
}

.differential-card {
  position: relative;
  min-height: 22rem;
  padding: 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0.62rem;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.105), rgba(255, 255, 255, 0.025)),
    rgba(8, 11, 17, 0.82);
  box-shadow: 0 1.5rem 4.5rem rgba(0, 0, 0, 0.28);
  overflow: hidden;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.differential-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(255, 122, 0, 0.52), transparent 38%, rgba(245, 247, 250, 0.3));
  opacity: 0;
  transition: opacity 220ms ease;
}

.differential-card::after {
  content: "";
  position: absolute;
  inset: auto -25% -45% 16%;
  height: 8rem;
  pointer-events: none;
  background: radial-gradient(circle, rgba(245, 247, 250, 0.18), transparent 62%);
  opacity: 0;
  transition: opacity 220ms ease, transform 220ms ease;
}

.differential-card:hover {
  transform: translateY(-7px);
  border-color: rgba(255, 255, 255, 0.28);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.035)),
    rgba(8, 11, 17, 0.92);
  box-shadow: 0 2rem 6rem rgba(0, 0, 0, 0.42), 0 0 3rem rgba(255, 122, 0, 0.12);
}

.differential-card:hover::before,
.differential-card:hover::after {
  opacity: 1;
}

.differential-card:hover::after {
  transform: translateY(-1rem);
}

.differential-icon,
.differential-visual,
.differential-card h3,
.differential-card p {
  position: relative;
  z-index: 1;
}

.differential-visual {
  aspect-ratio: 16 / 9;
  margin: -0.55rem -0.55rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.46rem;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.06);
}

.differential-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, transparent 8%, rgba(3, 4, 6, 0.12) 50%, rgba(3, 4, 6, 0.74)),
    radial-gradient(circle at 18% 16%, rgba(255, 122, 0, 0.24), transparent 10rem);
}

.differential-visual img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: saturate(1.08) contrast(1.04);
  transform: scale(1.02);
  transition: transform 440ms ease, filter 440ms ease;
}

.differential-card:hover .differential-visual img {
  filter: saturate(1.18) contrast(1.08);
  transform: scale(1.08);
}

.differential-icon {
  width: 3.35rem;
  height: 3.35rem;
  display: grid;
  place-items: center;
  margin-top: -2.65rem;
  margin-bottom: 1.15rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 0.55rem;
  background:
    linear-gradient(145deg, rgba(245, 247, 250, 0.12), rgba(255, 122, 0, 0.13)),
    rgba(255, 255, 255, 0.06);
  box-shadow: 0 0 2.6rem rgba(245, 247, 250, 0.1);
}

.differential-icon svg {
  width: 1.55rem;
  height: 1.55rem;
  fill: none;
  stroke: var(--ink);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.differential-card h3 {
  font-size: clamp(1.25rem, 2vw, 1.65rem);
}

.differential-card p {
  margin-top: 0.75rem;
  color: var(--muted);
  line-height: 1.58;
}

.flight-search-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(24rem, 1fr);
  gap: clamp(1.5rem, 5vw, 5rem);
  align-items: center;
  padding-top: clamp(3.5rem, 7vw, 6rem);
  padding-bottom: clamp(3.5rem, 7vw, 6rem);
  background:
    radial-gradient(circle at 76% 18%, rgba(245, 247, 250, 0.14), transparent 25rem),
    linear-gradient(180deg, rgba(6, 9, 14, 0.98), rgba(3, 4, 6, 0.9));
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.flight-search-section::before {
  content: "";
  position: absolute;
  inset: 16% 4rem auto auto;
  width: 24rem;
  height: 24rem;
  border: 1px solid rgba(245, 247, 250, 0.18);
  border-radius: 999px;
  transform: rotate(-18deg) skewX(-8deg);
  opacity: 0.65;
}

.search-copy,
.flight-search-card {
  position: relative;
  z-index: 1;
}

.search-copy span {
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
}

.search-copy h2 {
  margin-top: 0.85rem;
  font-size: clamp(2.1rem, 5vw, 4.6rem);
}

.search-copy p {
  width: min(38rem, 100%);
  margin-top: 1.2rem;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.7;
}

.flight-search-card {
  padding: clamp(1rem, 3vw, 1.35rem);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 0.78rem;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.045)),
    rgba(7, 10, 16, 0.78);
  backdrop-filter: blur(26px);
  box-shadow: 0 2.2rem 7rem rgba(0, 0, 0, 0.42), inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.search-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.search-card-head span {
  display: block;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.search-card-head strong {
  display: block;
  margin-top: 0.2rem;
  font-size: 1.2rem;
}

.search-live {
  min-height: 2.2rem;
  display: inline-flex;
  align-items: center;
  padding: 0 0.8rem;
  color: #7df7b6;
  background: rgba(125, 247, 182, 0.08);
  border: 1px solid rgba(125, 247, 182, 0.18);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
  white-space: nowrap;
}

.flight-route-preview {
  display: grid;
  grid-template-columns: minmax(4rem, auto) 1fr minmax(5.5rem, auto);
  gap: 1rem;
  align-items: center;
  margin: 1rem 0;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.56rem;
}

.flight-route-preview small {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
}

.flight-route-preview strong {
  display: block;
  margin-top: 0.25rem;
  font-size: clamp(1rem, 2vw, 1.45rem);
}

.flight-route-line {
  position: relative;
  height: 1px;
  background: linear-gradient(90deg, var(--red), rgba(255, 255, 255, 0.72), var(--cyan));
}

.flight-route-line::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.78rem;
  height: 0.78rem;
  background: var(--ink);
  border-radius: 999px;
  box-shadow: 0 0 1.5rem rgba(245, 247, 250, 0.72);
  transform: translate(-50%, -50%);
}

.flight-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.search-field {
  display: grid;
  gap: 0.48rem;
}

.search-field span {
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.78rem;
  font-weight: 800;
}

.search-field svg {
  width: 1rem;
  height: 1rem;
  fill: none;
  stroke: var(--cyan);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.search-field input,
.search-field select {
  width: 100%;
  min-height: 3.35rem;
  padding: 0 0.95rem;
  color: var(--ink);
  background: rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 0.46rem;
  outline: none;
  font: inherit;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.search-field select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--muted) 50%),
    linear-gradient(135deg, var(--muted) 50%, transparent 50%);
  background-position:
    calc(100% - 1rem) 50%,
    calc(100% - 0.65rem) 50%;
  background-size: 0.35rem 0.35rem, 0.35rem 0.35rem;
  background-repeat: no-repeat;
}

.search-field input::placeholder {
  color: rgba(166, 173, 187, 0.64);
}

.search-field input:focus,
.search-field select:focus {
  background-color: rgba(0, 0, 0, 0.38);
  border-color: rgba(245, 247, 250, 0.7);
  box-shadow: 0 0 0 0.2rem rgba(245, 247, 250, 0.12);
}

.passengers-field {
  grid-column: 1 / -1;
}

.flight-search-submit {
  width: 100%;
  min-height: 3.45rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  margin-top: 1rem;
  color: white;
  background: linear-gradient(135deg, #ff9b3d, var(--red) 52%, #9a4700);
  border: 0;
  border-radius: 0.46rem;
  box-shadow: 0 1rem 3.5rem rgba(255, 122, 0, 0.3);
  cursor: pointer;
  font: inherit;
  font-size: 0.86rem;
  font-weight: 900;
  text-transform: uppercase;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.flight-search-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 1.25rem 4.5rem rgba(255, 122, 0, 0.45);
}

.flight-search-status {
  min-height: 1.4rem;
  margin-top: 0.85rem;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.5;
}

.flight-search-status.error {
  color: #ff9a9f;
}

.airline-showcase {
  position: relative;
  display: grid;
  gap: clamp(1.5rem, 4vw, 3rem);
  padding-top: clamp(3rem, 6vw, 5rem);
  padding-bottom: clamp(3rem, 6vw, 5rem);
  background:
    radial-gradient(circle at 25% 20%, rgba(255, 122, 0, 0.12), transparent 22rem),
    radial-gradient(circle at 78% 56%, rgba(245, 247, 250, 0.08), transparent 26rem),
    linear-gradient(180deg, rgba(5, 5, 5, 0.98), rgba(6, 24, 38, 0.84));
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.airline-showcase::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(110deg, transparent 0 48%, rgba(255, 255, 255, 0.06) 48% 48.15%, transparent 48.15%);
}

.airline-copy,
.airline-grid {
  position: relative;
  z-index: 1;
}

.airline-copy span {
  color: var(--orange);
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
}

.airline-copy h2 {
  margin-top: 0.7rem;
  width: min(56rem, 100%);
  font-size: clamp(2rem, 4.6vw, 4rem);
}

.airline-copy p {
  width: min(46rem, 100%);
  margin-top: 1rem;
  color: var(--muted);
  line-height: 1.7;
}

.airline-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
  align-items: stretch;
}

.airline-card {
  position: relative;
  min-height: 16rem;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 0.85rem;
  background:
    linear-gradient(145deg, rgba(245, 247, 250, 0.12), rgba(245, 247, 250, 0.035)),
    rgba(0, 0, 0, 0.24);
  box-shadow: 0 1.6rem 5rem rgba(0, 0, 0, 0.32);
  overflow: hidden;
  animation: airlineFloat 5.6s ease-in-out infinite alternate;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.airline-card:nth-child(2) {
  animation-delay: 0.35s;
}

.airline-card:nth-child(3) {
  animation-delay: 0.7s;
}

.airline-card:hover {
  transform: translateY(-7px) scale(1.012);
  border-color: rgba(255, 255, 255, 0.28);
  box-shadow: 0 2rem 6rem rgba(0, 0, 0, 0.42), 0 0 3rem rgba(255, 122, 0, 0.12);
}

.airline-card img {
  width: min(15.5rem, 88%);
  height: auto;
  filter: saturate(1.05) contrast(1.08) brightness(0.98);
  transform: scale(1);
  transition: transform 260ms ease, filter 260ms ease;
}

.airline-card:hover img {
  filter: saturate(1.14) contrast(1.12) brightness(1.06);
  transform: scale(1.055);
}

.airline-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(5, 5, 5, 0.36));
  pointer-events: none;
}

.airline-card::before {
  content: "";
  position: absolute;
  inset: -30%;
  pointer-events: none;
  background: radial-gradient(circle, rgba(255, 122, 0, 0.18), transparent 58%);
  opacity: 0;
  transform: translateY(1rem);
  transition: opacity 220ms ease, transform 220ms ease;
}

.airline-card:hover::before {
  opacity: 1;
  transform: translateY(0);
}

.airline-card span {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  z-index: 1;
  color: rgba(245, 247, 250, 0.86);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.section {
  padding-top: clamp(4rem, 8vw, 7rem);
  padding-bottom: clamp(4rem, 8vw, 7rem);
}

.section-title {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(18rem, 0.55fr);
  gap: clamp(1.5rem, 5vw, 5rem);
  align-items: end;
  margin-top: 0.9rem;
}

h2 {
  font-size: clamp(2.2rem, 5.8vw, 5rem);
  line-height: 0.98;
  font-weight: 900;
  text-wrap: balance;
}

.section-title p,
.cinema-copy p,
.step p {
  color: var(--muted);
  line-height: 1.7;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 2.4rem;
}

.service-card {
  min-height: 22rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 0.55rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.025)),
    #080b11;
  overflow: hidden;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.28);
  box-shadow: 0 1.8rem 4.5rem rgba(0, 0, 0, 0.32), 0 0 2.5rem rgba(255, 122, 0, 0.08);
}

.service-card.featured {
  background:
    linear-gradient(145deg, rgba(255, 122, 0, 0.58), rgba(8, 11, 17, 0.92) 58%),
    #080b11;
}

.service-visual {
  position: relative;
  aspect-ratio: 16 / 9;
  margin: -0.55rem -0.55rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.42rem;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.06);
}

.service-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, transparent 10%, rgba(5, 5, 5, 0.16) 58%, rgba(5, 5, 5, 0.72)),
    radial-gradient(circle at 16% 12%, rgba(255, 122, 0, 0.22), transparent 11rem);
}

.service-visual img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: saturate(1.06) contrast(1.04);
  transform: scale(1.02);
  transition: transform 420ms ease, filter 420ms ease;
}

.service-card:hover .service-visual img {
  filter: saturate(1.16) contrast(1.08);
  transform: scale(1.08);
}

.service-card span {
  color: var(--gold);
  font-weight: 900;
}

.service-card h3 {
  margin-top: auto;
  font-size: clamp(1.4rem, 2.2vw, 2rem);
}

.service-card p {
  margin-top: 0.8rem;
  color: var(--muted);
  line-height: 1.58;
}

.packages-section {
  position: relative;
  padding-top: clamp(4rem, 8vw, 7rem);
  padding-bottom: clamp(4rem, 8vw, 7rem);
  background:
    linear-gradient(180deg, rgba(3, 4, 6, 0.98), rgba(7, 10, 16, 0.92)),
    radial-gradient(circle at 18% 18%, rgba(215, 180, 106, 0.12), transparent 25rem),
    radial-gradient(circle at 84% 38%, rgba(255, 122, 0, 0.16), transparent 30rem);
  border-block: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.packages-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(115deg, transparent 0 38%, rgba(255, 255, 255, 0.045) 38% 38.15%, transparent 38.15% 100%);
  opacity: 0.85;
}

.packages-head,
.packages-grid {
  position: relative;
  z-index: 1;
}

.packages-head {
  display: grid;
  grid-template-columns: minmax(0, 0.42fr) minmax(0, 1fr) minmax(18rem, 0.52fr);
  gap: clamp(1rem, 4vw, 3.5rem);
  align-items: end;
}

.packages-head span {
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
}

.packages-head h2 {
  font-size: clamp(2rem, 5.2vw, 4.7rem);
}

.packages-head p {
  color: var(--muted);
  line-height: 1.7;
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 20rem;
  gap: 0.95rem;
  margin-top: 2.4rem;
}

.package-card {
  position: relative;
  min-height: 20rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 0.76rem;
  background: rgba(8, 11, 17, 0.82);
  box-shadow: 0 1.8rem 5rem rgba(0, 0, 0, 0.36);
  overflow: hidden;
  transition: transform 240ms ease, border-color 240ms ease, box-shadow 240ms ease;
}

.package-card-large {
  grid-column: span 2;
  grid-row: span 2;
}

.package-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(215, 180, 106, 0.18), transparent 42%, rgba(255, 122, 0, 0.18));
  opacity: 0;
  transition: opacity 240ms ease;
}

.package-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 255, 255, 0.32);
  box-shadow: 0 2.4rem 7rem rgba(0, 0, 0, 0.5), 0 0 3.5rem rgba(215, 180, 106, 0.14);
}

.package-card:hover::after {
  opacity: 1;
}

.package-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.12) brightness(0.72);
  transform: scale(1.01);
  transition: transform 480ms ease, filter 480ms ease;
}

.package-card:hover img {
  filter: saturate(1.05) contrast(1.18) brightness(0.82);
  transform: scale(1.08);
}

.package-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1rem;
  background:
    linear-gradient(180deg, rgba(3, 4, 6, 0.08), rgba(3, 4, 6, 0.2) 36%, rgba(3, 4, 6, 0.92)),
    linear-gradient(90deg, rgba(3, 4, 6, 0.65), transparent);
}

.package-overlay > span {
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.package-overlay h3 {
  width: min(31rem, 100%);
  margin-top: 0.48rem;
  font-size: clamp(1.35rem, 2.6vw, 2.35rem);
  line-height: 1.02;
}

.package-meta {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.package-meta strong {
  color: white;
  font-size: clamp(1.25rem, 2.2vw, 1.9rem);
  line-height: 1;
}

.package-meta small {
  color: #7df7b6;
  font-size: 0.82rem;
  font-weight: 900;
  text-align: right;
}

.package-button {
  min-height: 3rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 1rem;
  padding: 0 1rem;
  color: white;
  background: linear-gradient(135deg, #ff9b3d, var(--red) 54%, #9a4700);
  border: 0;
  border-radius: 0.46rem;
  box-shadow: 0 1rem 3rem rgba(255, 122, 0, 0.3);
  cursor: pointer;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.package-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 1.2rem 4rem rgba(255, 122, 0, 0.44);
}

.miles-impact {
  position: relative;
  padding-top: clamp(4.5rem, 9vw, 8rem);
  padding-bottom: clamp(4.5rem, 9vw, 8rem);
  background:
    radial-gradient(circle at 74% 18%, rgba(255, 132, 45, 0.2), transparent 28rem),
    radial-gradient(circle at 12% 78%, rgba(255, 122, 0, 0.14), transparent 26rem),
    linear-gradient(180deg, #030406 0%, #090908 46%, #030406 100%);
  border-block: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.miles-impact::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 132, 45, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 132, 45, 0.04) 1px, transparent 1px);
  background-size: 4.5rem 4.5rem;
  mask-image: radial-gradient(circle at 70% 38%, #000, transparent 72%);
}

.miles-impact::after {
  content: "";
  position: absolute;
  right: -12rem;
  top: 12%;
  width: 42rem;
  height: 42rem;
  pointer-events: none;
  border: 1px solid rgba(255, 132, 45, 0.2);
  border-radius: 999px;
  box-shadow: inset 0 0 5rem rgba(255, 132, 45, 0.08), 0 0 6rem rgba(255, 132, 45, 0.12);
}

.miles-hero,
.miles-dashboard {
  position: relative;
  z-index: 1;
}

.miles-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(15rem, 22rem);
  gap: clamp(2rem, 6vw, 6rem);
  align-items: end;
}

.miles-hero span,
.chart-head span,
.comparison-card > span {
  color: #ff7a00;
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
}

.miles-hero h2 {
  width: min(62rem, 100%);
  margin-top: 0.8rem;
  font-size: clamp(2.7rem, 7vw, 6.8rem);
  line-height: 0.9;
}

.miles-hero p {
  width: min(43rem, 100%);
  margin-top: 1.25rem;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.72;
}

.miles-badge {
  position: relative;
  min-height: 17rem;
  display: grid;
  align-content: center;
  justify-items: center;
  padding: 1.2rem;
  border: 1px solid rgba(255, 132, 45, 0.26);
  border-radius: 0.8rem;
  background:
    linear-gradient(145deg, rgba(255, 132, 45, 0.18), rgba(255, 255, 255, 0.035)),
    rgba(8, 11, 17, 0.78);
  box-shadow: 0 2rem 7rem rgba(0, 0, 0, 0.46), 0 0 4rem rgba(255, 132, 45, 0.12);
  overflow: hidden;
}

.miles-badge::before {
  content: "";
  position: absolute;
  inset: -30%;
  background: conic-gradient(from 170deg, transparent, rgba(255, 132, 45, 0.28), transparent 42%);
  animation: orbitGlow 8s linear infinite;
}

.miles-badge strong,
.miles-badge span,
.miles-badge small {
  position: relative;
  z-index: 1;
}

.miles-badge strong {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.miles-badge span {
  color: #ff7a00;
  font-size: clamp(4.8rem, 10vw, 8rem);
  font-weight: 900;
  line-height: 0.9;
  text-shadow: 0 0 2.5rem rgba(255, 132, 45, 0.42);
}

.miles-badge small {
  color: white;
  font-size: 2rem;
  font-weight: 900;
}

.miles-dashboard {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(19rem, 0.45fr);
  gap: 0.95rem;
  margin-top: 2.4rem;
}

.miles-comparison {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.95rem;
}

.comparison-card,
.miles-chart-card {
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 0.72rem;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.03)),
    rgba(8, 11, 17, 0.84);
  box-shadow: 0 1.7rem 5rem rgba(0, 0, 0, 0.34);
}

.comparison-card {
  min-height: 28rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.2rem;
  overflow: hidden;
}

.comparison-card.before {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.025)),
    rgba(8, 11, 17, 0.86);
}

.comparison-card.after {
  border-color: rgba(255, 132, 45, 0.34);
  background:
    linear-gradient(145deg, rgba(255, 132, 45, 0.2), rgba(255, 255, 255, 0.035)),
    rgba(8, 11, 17, 0.9);
  box-shadow: 0 1.7rem 5rem rgba(0, 0, 0, 0.36), 0 0 3.6rem rgba(255, 132, 45, 0.13);
}

.comparison-visual {
  position: relative;
  min-height: 11rem;
  margin: -0.45rem -0.45rem 1.15rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.55rem;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.06);
}

.comparison-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, transparent 0%, rgba(3, 4, 6, 0.16) 48%, rgba(3, 4, 6, 0.82)),
    radial-gradient(circle at 18% 12%, rgba(255, 122, 0, 0.2), transparent 12rem);
}

.comparison-card.after .comparison-visual::after {
  background:
    linear-gradient(180deg, transparent 0%, rgba(3, 4, 6, 0.12) 46%, rgba(3, 4, 6, 0.78)),
    radial-gradient(circle at 18% 12%, rgba(255, 122, 0, 0.34), transparent 13rem);
}

.comparison-visual img {
  width: 100%;
  height: 100%;
  min-height: 11rem;
  display: block;
  object-fit: cover;
  filter: saturate(1.06) contrast(1.05);
  transform: scale(1.02);
  transition: transform 460ms ease, filter 460ms ease;
}

.comparison-card:hover .comparison-visual img {
  filter: saturate(1.18) contrast(1.1);
  transform: scale(1.08);
}

.comparison-card h3 {
  margin-top: 0.55rem;
  color: white;
  font-size: clamp(1.35rem, 2.5vw, 2.35rem);
}

.comparison-card strong {
  display: block;
  margin-top: 1.1rem;
  color: white;
  font-size: clamp(2.6rem, 6vw, 5.6rem);
  line-height: 0.9;
}

.comparison-card.after strong {
  color: #ff7a00;
  text-shadow: 0 0 2.5rem rgba(255, 132, 45, 0.3);
}

.comparison-card small {
  margin-top: 0.8rem;
  color: var(--muted);
  line-height: 1.5;
}

.bar-track {
  height: 0.8rem;
  margin-top: 1.25rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 999px;
  overflow: hidden;
}

.bar-fill {
  width: var(--bar);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #ff7a00, #ff7a00);
  box-shadow: 0 0 2rem rgba(255, 132, 45, 0.34);
  transform-origin: left;
  animation: growBar 1.2s ease both;
}

.comparison-card.after .bar-fill {
  background: linear-gradient(90deg, #7df7b6, #ff7a00);
}

.miles-chart-card {
  min-height: 22rem;
  display: flex;
  flex-direction: column;
  padding: 1.2rem;
}

.chart-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.chart-head strong {
  color: #7df7b6;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  line-height: 1;
  text-align: right;
}

.chart-bars {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  align-items: end;
  min-height: 13rem;
  margin-top: 1rem;
}

.chart-column {
  display: grid;
  gap: 0.7rem;
  align-items: end;
  height: 100%;
}

.chart-column span {
  display: block;
  align-self: end;
  border-radius: 0.45rem 0.45rem 0.15rem 0.15rem;
  background: linear-gradient(180deg, rgba(255, 122, 0, 0.88), rgba(255, 122, 0, 0.24));
  box-shadow: 0 0 2.5rem rgba(255, 122, 0, 0.25);
  animation: chartRise 1.1s ease both;
}

.chart-column.high span {
  height: 100%;
}

.chart-column.low span {
  height: 40%;
  background: linear-gradient(180deg, rgba(255, 157, 69, 0.96), rgba(255, 157, 69, 0.24));
  box-shadow: 0 0 2.5rem rgba(255, 132, 45, 0.32);
}

.chart-column small {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  text-align: center;
}

.miles-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1rem;
}

.miles-tags span {
  min-height: 2rem;
  display: inline-flex;
  align-items: center;
  padding: 0 0.72rem;
  color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 132, 45, 0.08);
  border: 1px solid rgba(255, 132, 45, 0.17);
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
}

.miles-button {
  width: 100%;
  min-height: 3.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  margin-top: 1rem;
  color: white;
  background: linear-gradient(135deg, #ff9b3d, var(--orange) 56%, #9a4700);
  border: 0;
  border-radius: 0.48rem;
  box-shadow: 0 1rem 3.5rem rgba(255, 122, 0, 0.26);
  cursor: pointer;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.miles-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 1.25rem 4.2rem rgba(255, 122, 0, 0.4);
}

.cinema-strip {
  min-height: 36rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 29rem);
  align-items: center;
  gap: clamp(2rem, 6vw, 6rem);
  background:
    linear-gradient(90deg, rgba(3, 4, 6, 0.98), rgba(3, 4, 6, 0.32)),
    url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=1400&q=74") center/cover;
  border-block: 1px solid rgba(255, 255, 255, 0.1);
}

.cinema-copy span,
.final-cta span {
  color: var(--cyan);
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
}

.cinema-copy p {
  width: min(42rem, 100%);
  margin-top: 1.25rem;
  font-size: 1.05rem;
}

.deal-board {
  padding: 1.1rem;
  border-radius: 0.65rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(5, 7, 10, 0.72);
  backdrop-filter: blur(22px);
}

.deal-row {
  padding: 1rem;
  border-radius: 0.42rem;
  color: var(--muted);
}

.deal-row.active {
  color: white;
  background: linear-gradient(135deg, rgba(255, 122, 0, 0.82), rgba(255, 122, 0, 0.18));
}

.deal-row strong {
  font-size: 1.35rem;
}

.savings {
  margin-top: 0.9rem;
  padding: 1.1rem;
  border: 1px solid rgba(215, 180, 106, 0.32);
  border-radius: 0.45rem;
}

.savings strong {
  display: block;
  margin-top: 0.25rem;
  color: var(--gold);
  font-size: clamp(2rem, 4vw, 3.7rem);
}

.lead-capture {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(20rem, 34rem);
  gap: clamp(2rem, 6vw, 6rem);
  align-items: center;
  padding-top: clamp(4rem, 8vw, 7rem);
  padding-bottom: clamp(4rem, 8vw, 7rem);
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(3, 4, 6, 0.96), rgba(3, 4, 6, 0.78)),
    radial-gradient(circle at 78% 50%, rgba(245, 247, 250, 0.18), transparent 24rem),
    radial-gradient(circle at 18% 26%, rgba(255, 122, 0, 0.24), transparent 28rem);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.lead-capture::before {
  content: "";
  position: absolute;
  inset: 8% -10% auto auto;
  width: min(42rem, 70vw);
  height: min(42rem, 70vw);
  pointer-events: none;
  background: conic-gradient(from 160deg, rgba(255, 122, 0, 0.42), rgba(245, 247, 250, 0.18), transparent, rgba(215, 180, 106, 0.22));
  filter: blur(5rem);
  opacity: 0.56;
}

.lead-copy,
.lead-card {
  position: relative;
  z-index: 1;
}

.lead-copy span {
  color: var(--cyan);
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
}

.lead-copy h2 {
  margin-top: 0.8rem;
}

.lead-copy p {
  width: min(42rem, 100%);
  margin-top: 1.25rem;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.lead-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.6rem;
}

.lead-badges span {
  min-height: 2.35rem;
  display: inline-flex;
  align-items: center;
  padding: 0 0.85rem;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  font-size: 0.72rem;
}

.lead-card {
  padding: clamp(1rem, 3vw, 1.45rem);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 0.75rem;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.04)),
    rgba(6, 9, 14, 0.72);
  backdrop-filter: blur(26px);
  box-shadow: 0 2.5rem 8rem rgba(0, 0, 0, 0.48);
}

.lead-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
}

.lead-card-head span {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.lead-card-head strong {
  color: #7df7b6;
  font-size: 0.82rem;
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.field {
  display: grid;
  gap: 0.48rem;
}

.field span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.78rem;
  font-weight: 800;
}

.field input {
  width: 100%;
  min-height: 3.35rem;
  padding: 0 0.95rem;
  color: var(--ink);
  background: rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 0.46rem;
  outline: none;
  font: inherit;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.field input::placeholder {
  color: rgba(166, 173, 187, 0.64);
}

.field input:focus {
  background: rgba(0, 0, 0, 0.38);
  border-color: rgba(245, 247, 250, 0.7);
  box-shadow: 0 0 0 0.2rem rgba(245, 247, 250, 0.12);
}

.lead-submit {
  width: 100%;
  min-height: 3.45rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  margin-top: 1rem;
  color: white;
  background: linear-gradient(135deg, #ff9b3d, var(--red) 54%, #9a4700);
  border: 0;
  border-radius: 0.46rem;
  box-shadow: 0 1rem 3.5rem rgba(255, 122, 0, 0.32);
  cursor: pointer;
  font: inherit;
  font-size: 0.86rem;
  font-weight: 900;
  text-transform: uppercase;
  transition: transform 180ms ease, box-shadow 180ms ease, opacity 180ms ease;
}

.lead-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 1.25rem 4.5rem rgba(255, 122, 0, 0.46);
}

.lead-submit:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.lead-status {
  min-height: 1.4rem;
  margin-top: 0.85rem;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.5;
}

.lead-status.success {
  color: #7df7b6;
}

.lead-status.error {
  color: #ff9a9f;
}

.promo-section {
  position: relative;
  padding-top: clamp(4rem, 8vw, 7rem);
  padding-bottom: clamp(4rem, 8vw, 7rem);
  background:
    radial-gradient(circle at 12% 18%, rgba(245, 247, 250, 0.12), transparent 25rem),
    radial-gradient(circle at 90% 12%, rgba(255, 122, 0, 0.18), transparent 30rem),
    linear-gradient(180deg, rgba(3, 4, 6, 0.94), rgba(8, 11, 17, 0.98));
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.promo-section::before {
  content: "";
  position: absolute;
  inset: auto 8% -12rem auto;
  width: 34rem;
  height: 34rem;
  pointer-events: none;
  background: conic-gradient(from 210deg, rgba(255, 122, 0, 0.26), rgba(245, 247, 250, 0.18), transparent, rgba(215, 180, 106, 0.18));
  filter: blur(5rem);
  opacity: 0.55;
}

.promo-head,
.promo-grid {
  position: relative;
  z-index: 1;
}

.promo-head {
  display: grid;
  grid-template-columns: minmax(0, 0.42fr) minmax(0, 0.92fr) minmax(18rem, 0.48fr);
  gap: clamp(1rem, 4vw, 3.5rem);
  align-items: end;
}

.promo-head span {
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
}

.promo-head h2 {
  font-size: clamp(2rem, 5vw, 4.45rem);
}

.promo-head p {
  color: var(--muted);
  line-height: 1.7;
}

.promo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.95rem;
  margin-top: 2.4rem;
}

.promo-card {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 0.72rem;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.03)),
    rgba(8, 11, 17, 0.86);
  box-shadow: 0 1.8rem 5rem rgba(0, 0, 0, 0.36);
  overflow: hidden;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.promo-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(255, 122, 0, 0.28), transparent 44%, rgba(245, 247, 250, 0.18));
  opacity: 0;
  transition: opacity 220ms ease;
}

.promo-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 2.4rem 7rem rgba(0, 0, 0, 0.48), 0 0 3.5rem rgba(255, 122, 0, 0.16);
}

.promo-card:hover::after {
  opacity: 1;
}

.promo-media {
  position: relative;
  height: 17rem;
  overflow: hidden;
}

.promo-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.94) contrast(1.12) brightness(0.76);
  transform: scale(1.01);
  transition: transform 420ms ease, filter 420ms ease;
}

.promo-card:hover .promo-media img {
  filter: saturate(1.05) contrast(1.16) brightness(0.84);
  transform: scale(1.08);
}

.promo-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(3, 4, 6, 0.05), rgba(3, 4, 6, 0.86)),
    linear-gradient(90deg, rgba(3, 4, 6, 0.64), transparent);
}

.promo-route {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 1;
}

.promo-route span {
  display: block;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.promo-route strong {
  display: block;
  margin-top: 0.25rem;
  color: white;
  font-size: clamp(1.65rem, 3vw, 2.55rem);
  line-height: 0.95;
}

.promo-body {
  position: relative;
  z-index: 1;
  padding: 1rem;
}

.promo-price {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
}

.promo-price span {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.promo-price strong {
  color: var(--gold);
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 0.9;
  white-space: nowrap;
}

.promo-details {
  display: grid;
  gap: 0.55rem;
  margin-top: 1rem;
}

.promo-details span {
  min-height: 2.55rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 0.85rem;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 0.42rem;
  font-size: 0.84rem;
  font-weight: 800;
}

.promo-details span:last-child {
  color: #7df7b6;
  border-color: rgba(125, 247, 182, 0.18);
  background: rgba(125, 247, 182, 0.07);
}

.promo-button {
  width: 100%;
  min-height: 3.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  margin-top: 1rem;
  color: white;
  background: linear-gradient(135deg, #ff9b3d, var(--red) 54%, #9a4700);
  border: 0;
  border-radius: 0.46rem;
  box-shadow: 0 1rem 3rem rgba(255, 122, 0, 0.28);
  cursor: pointer;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.promo-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 1.2rem 4rem rgba(255, 122, 0, 0.44);
}

.urgency-banner {
  position: relative;
  min-height: 26rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: center;
  padding-top: clamp(3rem, 7vw, 5.6rem);
  padding-bottom: clamp(3rem, 7vw, 5.6rem);
  background:
    linear-gradient(90deg, rgba(3, 4, 6, 0.98), rgba(3, 4, 6, 0.72) 54%, rgba(3, 4, 6, 0.94)),
    radial-gradient(circle at 70% 42%, rgba(255, 132, 45, 0.26), transparent 24rem),
    #030406;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.urgency-media {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.urgency-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 68% center;
  filter: saturate(0.9) contrast(1.1) brightness(0.7);
  transform: scale(1.05);
  animation: urgencyDrift 10s ease-in-out infinite alternate;
}

.urgency-media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(3, 4, 6, 0.98), rgba(3, 4, 6, 0.84) 40%, rgba(3, 4, 6, 0.38) 72%, rgba(3, 4, 6, 0.78)),
    linear-gradient(0deg, rgba(3, 4, 6, 0.96), transparent 42%, rgba(3, 4, 6, 0.42));
}

.urgency-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(112deg, transparent 0 48%, rgba(255, 255, 255, 0.12) 48% 48.2%, transparent 48.2% 100%),
    linear-gradient(90deg, rgba(255, 122, 0, 0.2), transparent 36%, rgba(255, 132, 45, 0.16));
  opacity: 0.8;
}

.urgency-light {
  position: absolute;
  inset: 9% -8% auto auto;
  width: min(42rem, 72vw);
  height: 16rem;
  pointer-events: none;
  background: linear-gradient(92deg, transparent, rgba(255, 132, 45, 0.22), rgba(245, 247, 250, 0.08), transparent);
  filter: blur(1.3rem);
  transform: rotate(-12deg);
  animation: sweepLight 4.8s ease-in-out infinite alternate;
}

.urgency-content,
.urgency-button {
  position: relative;
  z-index: 1;
}

.urgency-content span {
  color: #ff7a00;
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
}

.urgency-content h2 {
  margin-top: 0.75rem;
  font-size: clamp(2.4rem, 6.4vw, 6rem);
  line-height: 0.9;
}

.urgency-content p {
  width: min(43rem, 100%);
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  line-height: 1.6;
}

.urgency-button {
  min-height: 3.45rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0 1.35rem;
  color: white;
  background: linear-gradient(135deg, #ff7a00, #ff7a00 58%, #9a4700);
  border: 0;
  border-radius: 0.46rem;
  box-shadow: 0 1.2rem 4rem rgba(255, 132, 45, 0.24);
  cursor: pointer;
  font: inherit;
  font-size: 0.84rem;
  font-weight: 900;
  text-transform: uppercase;
  white-space: nowrap;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.urgency-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 1.4rem 4.8rem rgba(255, 132, 45, 0.38);
}

.payment-section {
  position: relative;
  padding-top: clamp(4rem, 8vw, 6.5rem);
  padding-bottom: clamp(4rem, 8vw, 6.5rem);
  background:
    radial-gradient(circle at 18% 22%, rgba(125, 247, 182, 0.1), transparent 25rem),
    radial-gradient(circle at 86% 16%, rgba(245, 247, 250, 0.1), transparent 24rem),
    linear-gradient(180deg, #030406, #080b11 52%, #030406);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.payment-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(115deg, transparent 0 52%, rgba(255, 255, 255, 0.04) 52% 52.12%, transparent 52.12% 100%);
}

.payment-head,
.payment-grid {
  position: relative;
  z-index: 1;
}

.payment-head {
  display: grid;
  grid-template-columns: minmax(0, 0.38fr) minmax(0, 0.9fr) minmax(18rem, 0.5fr);
  gap: clamp(1rem, 4vw, 3.5rem);
  align-items: end;
}

.payment-head > span {
  color: #7df7b6;
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
}

.payment-head h2 {
  font-size: clamp(2rem, 4.8vw, 4.25rem);
}

.security-seals {
  display: grid;
  gap: 0.7rem;
}

.security-seals span {
  min-height: 2.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0 0.9rem;
  color: rgba(255, 255, 255, 0.84);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(125, 247, 182, 0.16);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 900;
}

.security-seals svg,
.payment-icon svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.security-seals svg {
  width: 1rem;
  height: 1rem;
  color: #7df7b6;
  stroke-width: 2;
}

.payment-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 2.4rem;
}

.payment-card {
  position: relative;
  min-height: 18.5rem;
  padding: 1rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0.62rem;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.105), rgba(255, 255, 255, 0.025)),
    rgba(8, 11, 17, 0.84);
  box-shadow: 0 1.4rem 4rem rgba(0, 0, 0, 0.26);
  transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}

.payment-card:hover {
  transform: translateY(-5px);
  border-color: rgba(125, 247, 182, 0.32);
  box-shadow: 0 2rem 5.5rem rgba(0, 0, 0, 0.38), 0 0 2.5rem rgba(125, 247, 182, 0.1);
}

.payment-visual {
  position: relative;
  height: 8.4rem;
  margin-bottom: 1rem;
  overflow: hidden;
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.payment-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 5, 5, 0.06), rgba(5, 5, 5, 0.56)),
    radial-gradient(circle at 12% 18%, rgba(125, 247, 182, 0.22), transparent 42%);
  pointer-events: none;
}

.payment-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 420ms ease, filter 420ms ease;
}

.payment-card:hover .payment-visual img {
  transform: scale(1.08);
  filter: saturate(1.12) contrast(1.06);
}

.payment-icon {
  width: 3.1rem;
  height: 3.1rem;
  display: grid;
  place-items: center;
  margin-bottom: 1.25rem;
  color: #7df7b6;
  background: linear-gradient(145deg, rgba(125, 247, 182, 0.18), rgba(125, 247, 182, 0.06));
  border: 1px solid rgba(125, 247, 182, 0.18);
  border-radius: 0.55rem;
  box-shadow: 0 0.9rem 2.4rem rgba(0, 0, 0, 0.28), 0 0 1.5rem rgba(125, 247, 182, 0.08);
}

.payment-icon svg {
  width: 1.55rem;
  height: 1.55rem;
  stroke-width: 1.9;
}

.payment-card h3 {
  font-size: clamp(1.25rem, 2vw, 1.65rem);
}

.payment-card p {
  margin-top: 0.7rem;
  color: var(--muted);
  line-height: 1.58;
}

.trust-stack {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 0.9rem;
  margin-top: 1rem;
}

.trust-seal-card,
.confidence-meter-card {
  position: relative;
  display: grid;
  min-height: 11rem;
  border-radius: 0.85rem;
  box-shadow: 0 1.4rem 4rem rgba(0, 0, 0, 0.28);
}

.trust-seal-card {
  grid-template-columns: 7.5rem 1fr;
  gap: 1rem;
  align-items: center;
  padding: 1rem;
  border: 1px solid rgba(255, 122, 0, 0.18);
  background:
    linear-gradient(145deg, rgba(255, 122, 0, 0.1), rgba(245, 247, 250, 0.035)),
    rgba(0, 0, 0, 0.22);
}

.trust-seal-card img {
  width: 7.5rem;
  height: 7.5rem;
  object-fit: contain;
  filter: drop-shadow(0 0 1.6rem rgba(255, 122, 0, 0.18));
}

.trust-seal-card span {
  color: var(--orange);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.trust-seal-card h3 {
  margin-top: 0.35rem;
  font-size: clamp(1.35rem, 2vw, 1.9rem);
}

.trust-seal-card p {
  margin-top: 0.55rem;
  color: var(--muted);
  line-height: 1.6;
}

.confidence-meter-card {
  grid-template-columns: 4.8rem 1fr;
  gap: 1rem;
  align-items: center;
  padding: 1rem;
  overflow: hidden;
  border: 1px solid rgba(125, 247, 182, 0.18);
  background:
    radial-gradient(circle at 90% 0%, rgba(125, 247, 182, 0.15), transparent 14rem),
    linear-gradient(145deg, rgba(125, 247, 182, 0.095), rgba(245, 247, 250, 0.035)),
    rgba(0, 0, 0, 0.24);
}

.confidence-meter-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  pointer-events: none;
  background: linear-gradient(115deg, transparent 0 38%, rgba(125, 247, 182, 0.08) 45%, transparent 54%);
  transform: translateX(-35%);
  animation: meterSweep 6s ease-in-out infinite;
}

.confidence-orb {
  position: relative;
  z-index: 1;
  width: 4.8rem;
  height: 4.8rem;
  display: grid;
  place-items: center;
  color: #7df7b6;
  border: 1px solid rgba(125, 247, 182, 0.32);
  border-radius: 999px;
  background:
    radial-gradient(circle at 34% 24%, rgba(255, 255, 255, 0.38), transparent 1.4rem),
    rgba(125, 247, 182, 0.1);
  box-shadow: 0 0 2.2rem rgba(125, 247, 182, 0.16);
}

.confidence-orb svg {
  width: 2.25rem;
  height: 2.25rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.confidence-copy {
  position: relative;
  z-index: 1;
}

.confidence-copy > span {
  color: #7df7b6;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.confidence-copy h3 {
  margin-top: 0.35rem;
  font-size: clamp(1.25rem, 1.7vw, 1.7rem);
}

.confidence-copy p {
  margin-top: 0.5rem;
  color: var(--muted);
  line-height: 1.55;
}

.meter-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.35rem;
  margin-top: 0.85rem;
}

.meter-track i {
  height: 0.38rem;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(125, 247, 182, 0.46), rgba(255, 122, 0, 0.92));
  box-shadow: 0 0 1rem rgba(125, 247, 182, 0.14);
  animation: trustPulse 2.8s ease-in-out infinite;
}

.meter-track i:nth-child(2) {
  animation-delay: 120ms;
}

.meter-track i:nth-child(3) {
  animation-delay: 240ms;
}

.meter-track i:nth-child(4) {
  animation-delay: 360ms;
}

.confidence-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.75rem;
}

.confidence-tags span {
  padding: 0.38rem 0.55rem;
  color: rgba(245, 247, 250, 0.74);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 900;
}

.confidence-link {
  width: fit-content;
  min-height: 2.75rem;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-top: 0.9rem;
  padding: 0 0.95rem;
  color: #071018;
  background: linear-gradient(135deg, #7df7b6, #ff7a00);
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 950;
  text-decoration: none;
  box-shadow: 0 1rem 2.6rem rgba(125, 247, 182, 0.13);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.confidence-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 1.2rem 3rem rgba(255, 122, 0, 0.18), 0 0 2rem rgba(125, 247, 182, 0.12);
}

.social-proof-section {
  position: relative;
  padding-top: clamp(4rem, 8vw, 7rem);
  padding-bottom: clamp(4rem, 8vw, 7rem);
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 122, 0, 0.14), transparent 24rem),
    radial-gradient(circle at 82% 16%, rgba(255, 132, 45, 0.12), transparent 26rem),
    linear-gradient(180deg, #030406, #090a0d 56%, #030406);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.social-proof-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.032) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px);
  background-size: 5rem 5rem;
  mask-image: linear-gradient(180deg, transparent, #000 18%, #000 76%, transparent);
}

.proof-head,
.proof-carousel {
  position: relative;
  z-index: 1;
}

.proof-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1.5rem;
}

.proof-head span {
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
}

.proof-head h2 {
  width: min(68rem, 100%);
  margin-top: 0.8rem;
  font-size: clamp(2.1rem, 5vw, 4.65rem);
}

.carousel-controls {
  display: inline-flex;
  gap: 0.65rem;
  flex: 0 0 auto;
}

.carousel-controls button {
  width: 3rem;
  height: 3rem;
  display: grid;
  place-items: center;
  color: white;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.carousel-controls button:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.28);
}

.carousel-controls svg {
  width: 1.25rem;
  height: 1.25rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.proof-carousel {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(19rem, 26rem);
  gap: 0.95rem;
  margin-top: 2.4rem;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  padding-bottom: 0.8rem;
  scroll-snap-type: inline mandatory;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.24) transparent;
}

.proof-carousel::-webkit-scrollbar {
  height: 0.5rem;
}

.proof-carousel::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.22);
  border-radius: 999px;
}

.proof-card {
  position: relative;
  min-height: 31rem;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 0.78rem;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.035)),
    rgba(8, 11, 17, 0.78);
  backdrop-filter: blur(24px);
  box-shadow: 0 1.8rem 5.5rem rgba(0, 0, 0, 0.36);
  scroll-snap-align: start;
  overflow: hidden;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.proof-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 2.3rem 7rem rgba(0, 0, 0, 0.48), 0 0 3rem rgba(255, 122, 0, 0.12);
}

.proof-card::after {
  content: "";
  position: absolute;
  inset: auto -30% -40% 10%;
  height: 9rem;
  pointer-events: none;
  background: radial-gradient(circle, rgba(255, 132, 45, 0.18), transparent 64%);
  opacity: 0;
  transition: opacity 220ms ease, transform 220ms ease;
}

.proof-card:hover::after {
  opacity: 1;
  transform: translateY(-1rem);
}

.story-top {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.95rem;
}

.avatar {
  width: 2.75rem;
  height: 2.75rem;
  display: grid;
  place-items: center;
  color: white;
  background: linear-gradient(135deg, var(--red), #ff7a00);
  border-radius: 999px;
  font-weight: 900;
  box-shadow: 0 0 2rem rgba(255, 122, 0, 0.28);
}

.story-top strong,
.client-city {
  display: block;
}

.story-top strong {
  font-size: 0.95rem;
}

.story-top span,
.client-city {
  margin-top: 0.2rem;
  color: var(--muted);
  font-size: 0.78rem;
}

.story-frame {
  position: relative;
  height: 20rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0.65rem;
  overflow: hidden;
}

.story-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.95) contrast(1.12) brightness(0.78);
  transition: transform 360ms ease;
}

.proof-card:hover .story-frame img {
  transform: scale(1.06);
}

.story-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(3, 4, 6, 0.05), rgba(3, 4, 6, 0.76));
}

.story-pill,
.proof-label {
  min-height: 2rem;
  display: inline-flex;
  align-items: center;
  padding: 0 0.72rem;
  color: white;
  background: rgba(0, 0, 0, 0.38);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
}

.story-pill {
  position: absolute;
  left: 0.75rem;
  bottom: 0.75rem;
  z-index: 1;
}

.stars {
  margin-top: 1rem;
  color: var(--gold);
  font-size: 0.96rem;
  letter-spacing: 0.08rem;
}

.proof-card p {
  position: relative;
  z-index: 1;
  margin-top: 0.75rem;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.62;
}

.proof-card h3 {
  margin-top: 0.85rem;
  font-size: 1.35rem;
}

.chat-window {
  display: grid;
  gap: 0.65rem;
  margin-top: 1rem;
  padding: 1rem;
  min-height: 15rem;
  align-content: center;
  background:
    radial-gradient(circle at 20% 20%, rgba(245, 247, 250, 0.12), transparent 12rem),
    rgba(0, 0, 0, 0.24);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.65rem;
}

.chat-window.compact {
  min-height: 13.5rem;
}

.chat-bubble {
  width: fit-content;
  max-width: 86%;
  padding: 0.72rem 0.82rem;
  border-radius: 0.8rem;
  color: white;
  font-size: 0.86rem;
  line-height: 1.4;
}

.chat-bubble.client {
  justify-self: start;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.chat-bubble.agency {
  justify-self: end;
  background: linear-gradient(135deg, rgba(255, 122, 0, 0.76), rgba(255, 132, 45, 0.42));
  box-shadow: 0 0 2rem rgba(255, 122, 0, 0.18);
}

.ticket-proof {
  display: grid;
  grid-template-columns: minmax(4rem, auto) 1fr minmax(4rem, auto);
  gap: 1rem;
  align-items: center;
  margin-top: 1rem;
  padding: 1.15rem;
  background: rgba(0, 0, 0, 0.24);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.65rem;
}

.ticket-proof small {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
}

.ticket-proof strong {
  display: block;
  margin-top: 0.25rem;
  font-size: 2rem;
}

.ticket-line {
  height: 1px;
  background: linear-gradient(90deg, var(--red), rgba(255, 255, 255, 0.8), #ff7a00);
}

.ticket-status {
  display: grid;
  gap: 0.45rem;
  margin-top: 1rem;
  padding: 1rem;
  background: rgba(125, 247, 182, 0.07);
  border: 1px solid rgba(125, 247, 182, 0.16);
  border-radius: 0.55rem;
}

.ticket-status span {
  color: #7df7b6;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.ticket-status strong {
  color: white;
  font-size: 1.35rem;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(20rem, 0.72fr);
  gap: clamp(2rem, 6vw, 6rem);
}

.steps {
  display: grid;
  gap: 0.8rem;
}

.step {
  display: grid;
  grid-template-columns: 2.6rem 1fr;
  gap: 1rem;
  padding: 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0.52rem;
  background: rgba(255, 255, 255, 0.055);
}

.step span {
  width: 2.6rem;
  height: 2.6rem;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--gold);
  font-weight: 900;
}

.step h3 {
  font-size: 1.1rem;
}

.step p {
  margin-top: 0.35rem;
}

.final-cta {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(18rem, 0.55fr);
  align-items: center;
  gap: clamp(1.2rem, 4vw, 3rem);
  margin: 0 clamp(1rem, 4vw, 4rem) 4rem;
  padding: clamp(1rem, 3vw, 1.35rem);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 0.7rem;
  background:
    linear-gradient(135deg, rgba(255, 122, 0, 0.2), rgba(245, 247, 250, 0.1)),
    rgba(255, 255, 255, 0.055);
  box-shadow: 0 2rem 7rem rgba(0, 0, 0, 0.28);
}

.final-cta-copy {
  padding: clamp(0.6rem, 2vw, 1.6rem);
}

.final-cta h2 {
  max-width: 58rem;
  margin-top: 0.65rem;
  margin-bottom: 1.25rem;
  font-size: clamp(2rem, 4.6vw, 4rem);
}

.final-cta-media {
  position: relative;
  min-height: clamp(15rem, 26vw, 22rem);
  overflow: hidden;
  border-radius: 0.58rem;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04), 0 1.5rem 4.5rem rgba(0, 0, 0, 0.34);
}

.final-cta-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 5, 5, 0.02), rgba(5, 5, 5, 0.58)),
    radial-gradient(circle at 18% 22%, rgba(255, 122, 0, 0.28), transparent 34%);
  pointer-events: none;
}

.final-cta-media img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transform: scale(1.04);
  transition: transform 520ms ease, filter 520ms ease;
}

.final-cta:hover .final-cta-media img {
  transform: scale(1.09);
  filter: saturate(1.12) contrast(1.05);
}

.final-route-card {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 1;
  padding: 0.95rem;
  border: 1px solid rgba(245, 247, 250, 0.16);
  border-radius: 0.55rem;
  background:
    linear-gradient(145deg, rgba(245, 247, 250, 0.17), rgba(245, 247, 250, 0.045)),
    rgba(5, 5, 5, 0.52);
  backdrop-filter: blur(16px);
}

.final-route-card span,
.final-route-card small {
  color: rgba(245, 247, 250, 0.72);
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
}

.final-route-card strong {
  display: block;
  margin: 0.32rem 0;
  color: white;
  font-size: clamp(1.1rem, 2vw, 1.45rem);
}

.premium-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: start;
  padding-top: 2rem;
  padding-bottom: 2rem;
  background:
    linear-gradient(180deg, rgba(3, 4, 6, 0.92), rgba(3, 4, 6, 1)),
    radial-gradient(circle at 14% 0%, rgba(255, 122, 0, 0.1), transparent 20rem);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-signature {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.2rem;
  margin-top: 0.4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(245, 247, 250, 0.46);
  font-size: 0.76rem;
  line-height: 1.5;
}

.footer-signature a {
  color: rgba(245, 247, 250, 0.7);
  font-weight: 800;
  text-decoration: none;
  transition: color 180ms ease;
}

.footer-signature a:hover {
  color: var(--orange);
}

.footer-brand p {
  width: min(30rem, 100%);
  margin-top: 1rem;
  color: var(--muted);
  line-height: 1.65;
}

.footer-links,
.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.footer-links {
  justify-content: flex-end;
}

.footer-legal {
  flex-direction: column;
  align-items: flex-end;
}

.footer-links a,
.footer-legal a {
  min-height: 2.65rem;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 999px;
  padding: 0 0.9rem;
  font-size: 0.82rem;
  font-weight: 800;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.footer-links a:hover,
.footer-legal a:hover {
  color: white;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.24);
  transform: translateY(-2px);
}

.footer-links svg {
  width: 1rem;
  height: 1rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

@keyframes drift {
  from {
    transform: scale(1.05) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.11) translate3d(-1.5rem, 0.7rem, 0);
  }
}

@keyframes emblemFloat {
  from {
    transform: translate3d(0, 0, 0) rotateX(8deg) rotateZ(-4deg) scale(1);
  }
  to {
    transform: translate3d(-0.8rem, -1rem, 0) rotateX(12deg) rotateZ(-1deg) scale(1.035);
  }
}

@keyframes logoPulse {
  from {
    opacity: 0.62;
    transform: scale(0.94);
  }
  to {
    opacity: 1;
    transform: scale(1.08);
  }
}

@keyframes orbitSweep {
  to {
    transform: rotateX(62deg) rotateZ(342deg);
  }
}

@keyframes airlineFloat {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(0, -0.55rem, 0);
  }
}

@keyframes loaderSpin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes orbitGlow {
  to {
    transform: rotate(360deg);
  }
}

@keyframes growBar {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}

@keyframes chartRise {
  from {
    transform: scaleY(0);
  }
  to {
    transform: scaleY(1);
  }
}

@keyframes urgencyDrift {
  from {
    transform: scale(1.05) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.11) translate3d(-1.4rem, -0.55rem, 0);
  }
}

@keyframes sweepLight {
  from {
    opacity: 0.45;
    transform: translateX(0) rotate(-12deg);
  }
  to {
    opacity: 0.95;
    transform: translateX(-4rem) rotate(-12deg);
  }
}

@keyframes meterSweep {
  0%,
  100% {
    transform: translateX(-42%);
    opacity: 0.2;
  }
  48% {
    transform: translateX(42%);
    opacity: 1;
  }
}

@keyframes trustPulse {
  0%,
  100% {
    transform: scaleX(0.82);
    opacity: 0.58;
  }
  50% {
    transform: scaleX(1);
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }

  .premium-loader {
    display: none;
  }

  body.motion-ready .reveal-item,
  body.motion-ready .reveal-item.is-visible,
  body.motion-ready .parallax-layer {
    opacity: 1;
    filter: none;
    transform: none;
    clip-path: none;
  }
}

@media (max-width: 980px) {
  .nav {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-top: 8.2rem;
    padding-bottom: 10rem;
  }

  .hero-logo-stage {
    top: 5.8rem;
    right: -4.5rem;
    width: 20rem;
    opacity: 0.42;
    z-index: 1;
  }

  .hero-bottom {
    grid-template-columns: repeat(2, 1fr);
  }

  .differentials-head,
  .differentials-grid,
  .flight-search-section,
  .airline-showcase,
  .section-title,
  .service-grid,
  .packages-head,
  .packages-grid,
  .miles-hero,
  .miles-dashboard,
  .miles-comparison,
  .cinema-strip,
  .lead-capture,
  .promo-head,
  .promo-grid,
  .urgency-banner,
  .payment-head,
  .payment-grid,
  .trust-stack,
  .proof-head,
  .premium-footer,
  .split,
  .final-cta {
    grid-template-columns: 1fr;
  }

  .differentials-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .packages-grid {
    grid-auto-rows: 22rem;
  }

  .miles-badge {
    min-height: 14rem;
  }

  .package-card-large {
    grid-column: auto;
    grid-row: auto;
  }

  .flight-search-section::before {
    inset: auto -7rem 8% auto;
  }

  .airline-card {
    min-height: 13rem;
  }

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

@media (max-width: 620px) {
  body {
    padding-bottom: calc(5.8rem + env(safe-area-inset-bottom));
  }

  main > section:not(.hero) {
    contain-intrinsic-size: 620px;
  }

  body.motion-ready .reveal-item {
    filter: none;
    transform: translate3d(0, 1.15rem, 0);
    clip-path: none;
    transition:
      opacity 420ms ease,
      transform 420ms ease;
    will-change: opacity, transform;
  }

  body.motion-ready .reveal-item.is-visible {
    filter: none;
    transform: none;
    clip-path: none;
  }

  .topbar {
    padding: 0.82rem 1rem;
  }

  .brand span:last-child {
    display: none;
  }

  .top-cta {
    min-height: 2.45rem;
    font-size: 0.78rem;
  }

  .mobile-action-dock {
    position: fixed;
    left: 0.85rem;
    right: 0.85rem;
    bottom: calc(0.75rem + env(safe-area-inset-bottom));
    z-index: 40;
    min-height: 4rem;
    display: grid;
    grid-template-columns: 1fr minmax(8.2rem, 1.35fr) 1fr;
    gap: 0.45rem;
    align-items: center;
    padding: 0.45rem;
    border: 1px solid rgba(245, 247, 250, 0.16);
    border-radius: 1rem;
    background:
      linear-gradient(145deg, rgba(245, 247, 250, 0.12), rgba(245, 247, 250, 0.035)),
      rgba(5, 5, 5, 0.82);
    box-shadow: 0 1.4rem 4rem rgba(0, 0, 0, 0.48), 0 0 2.5rem rgba(255, 122, 0, 0.12);
    backdrop-filter: blur(18px);
  }

  .mobile-action-dock a {
    min-height: 3.05rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 0.55rem;
    color: rgba(245, 247, 250, 0.78);
    border-radius: 0.72rem;
    font-size: 0.72rem;
    font-weight: 900;
    text-align: center;
  }

  .mobile-action-dock .mobile-whatsapp-action {
    color: white;
    background: linear-gradient(135deg, #ff9b3d, var(--orange) 58%, #9a4700);
    box-shadow: 0 0.9rem 2.2rem rgba(255, 122, 0, 0.32);
    text-transform: uppercase;
  }

  h1 {
    font-size: clamp(3.4rem, 20vw, 6rem);
  }

  .hero {
    padding-bottom: 19rem;
  }

  .hero-logo-stage {
    top: 6.7rem;
    right: -3.8rem;
    width: min(17rem, 78vw);
    opacity: 0.34;
  }

  .hero-actions,
  .primary-action,
  .secondary-action {
    width: 100%;
  }

  .hero-bottom {
    grid-template-columns: 1fr;
  }

  .flight-fields {
    grid-template-columns: 1fr;
  }

  .flight-route-preview {
    grid-template-columns: 1fr;
  }

  .flight-route-line {
    min-height: 3rem;
    width: 1px;
    justify-self: start;
    margin-left: 1rem;
    background: linear-gradient(180deg, var(--red), rgba(255, 255, 255, 0.72), var(--cyan));
  }

  .search-card-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .airline-card img {
    width: min(12rem, 88%);
  }

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

  .airline-card img {
    width: min(15rem, 90%);
  }

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

  .differential-card {
    min-height: 22rem;
  }

  .differential-icon {
    margin-bottom: 1rem;
  }

  .service-card {
    min-height: 21rem;
  }

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

  .packages-grid {
    grid-auto-rows: auto;
  }

  .package-card {
    min-height: 24rem;
  }

  .package-meta {
    align-items: flex-start;
    flex-direction: column;
  }

  .package-meta small {
    text-align: left;
  }

  .comparison-card,
  .miles-chart-card {
    min-height: 18rem;
  }

  .chart-head {
    flex-direction: column;
  }

  .chart-head strong {
    text-align: left;
  }

  .promo-media {
    height: 15rem;
  }

  .promo-price {
    align-items: flex-start;
    flex-direction: column;
  }

  .payment-card {
    min-height: 17rem;
  }

  .payment-visual {
    height: 7.2rem;
  }

  .payment-icon {
    margin-bottom: 1rem;
  }

  .final-cta {
    padding: 0.85rem;
  }

  .final-cta-copy {
    padding: 0.65rem;
  }

  .final-cta-media {
    min-height: 14rem;
  }

  .final-route-card {
    left: 0.75rem;
    right: 0.75rem;
    bottom: 0.75rem;
  }

  .trust-seal-card {
    grid-template-columns: 1fr;
  }

  .confidence-meter-card {
    grid-template-columns: 1fr;
  }

  .confidence-orb {
    width: 4.1rem;
    height: 4.1rem;
  }

  .proof-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .urgency-banner {
    min-height: 30rem;
    align-items: end;
  }

  .urgency-button {
    width: 100%;
  }

  .footer-links,
  .footer-legal,
  .footer-signature {
    justify-content: flex-start;
    align-items: flex-start;
  }

  .footer-signature {
    flex-direction: column;
  }

  .proof-carousel {
    grid-auto-columns: minmax(16rem, 84vw);
    max-width: 100%;
    overscroll-behavior-x: contain;
  }

  .story-frame {
    height: 18rem;
  }

  .cinema-strip {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .premium-footer {
    padding-bottom: 7rem;
  }
}

