:root {
  --red: #d71920;
  --red-deep: #a80f16;
  --yellow: #ffd23f;
  --ink: #111827;
  --muted: #667085;
  --line: #e6e9ef;
  --soft: #f6f8fb;
  --soft-red: #fff5f5;
  --soft-yellow: #fff8db;
  --green: #13895f;
  --blue: #1f6feb;
  --shadow: 0 20px 54px rgba(17, 24, 39, 0.10);
}

/* 2026 international redesign layer: clean booking UI for EU/US/AU travelers. */
:root {
  --ui-bg: #f7f8fb;
  --ui-panel: #ffffff;
  --ui-ink: #172033;
  --ui-muted: #617085;
  --ui-line: #dfe5ee;
  --ui-line-strong: #cdd6e3;
  --ui-primary: #d71920;
  --ui-primary-deep: #a80f16;
  --ui-blue: #2563eb;
  --ui-green: #078060;
  --ui-yellow: #f6c343;
  --ui-shadow: 0 18px 50px rgba(23, 32, 51, 0.11);
  --ui-radius: 8px;
}

body {
  background: var(--ui-bg);
  color: var(--ui-ink);
}

.page {
  background:
    linear-gradient(180deg, #ffffff 0, var(--ui-bg) 620px),
    var(--ui-bg);
}

.container {
  width: min(1160px, calc(100% - 40px));
}

.topbar {
  border-bottom: 1px solid rgba(205, 214, 227, 0.72);
  background: #ffffff;
  color: var(--ui-muted);
  font-weight: 700;
}

.topbar .container {
  min-height: 34px;
}

.nav {
  border-bottom: 1px solid rgba(205, 214, 227, 0.84);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
}

.nav .container {
  min-height: 72px;
}

.logo-mark {
  width: 40px;
  height: 40px;
  border-radius: var(--ui-radius);
  background: var(--ui-primary);
  box-shadow: 0 12px 24px rgba(215, 25, 32, 0.18);
}

.logo-text strong {
  color: var(--ui-ink);
  font-size: 15px;
  font-weight: 800;
}

.logo-text span {
  color: var(--ui-muted);
  font-size: 12px;
  font-weight: 650;
}

.nav-links {
  gap: 18px;
  color: #475569;
  font-size: 14px;
  font-weight: 750;
}

.nav-links a::after {
  bottom: -11px;
  background: var(--ui-blue);
}

.btn {
  min-height: 42px;
  border-radius: var(--ui-radius);
  padding: 10px 16px;
  font-weight: 800;
  transition: transform 0.16s ease, box-shadow 0.16s ease, background 0.16s ease, border-color 0.16s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-red {
  background: var(--ui-primary);
  box-shadow: 0 12px 28px rgba(215, 25, 32, 0.18);
}

.btn-red:hover,
.flight-booking-button:hover {
  background: var(--ui-primary-deep);
}

.btn-light {
  border-color: var(--ui-line);
  background: #fff;
}

.hero {
  border-bottom: 1px solid var(--ui-line);
  background:
    radial-gradient(circle at 84% 18%, rgba(37, 99, 235, 0.09), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 64%, #f3f6fb 100%);
}

.hero-redesign .hero-grid {
  grid-template-columns: minmax(0, 1fr) minmax(360px, 470px);
  justify-content: space-between;
  gap: 48px;
  align-items: center;
  padding: 76px 0 64px;
}

.hero-redesign .hero-grid > * {
  min-width: 0;
}

.hero-redesign .hero-grid > * {
  min-width: 0;
}

.hero-copy {
  min-width: 0;
}

.eyebrow {
  margin-bottom: 16px;
  color: var(--ui-primary);
  font-size: 13px;
  font-weight: 800;
  text-transform: none;
}

.eyebrow::before {
  width: 24px;
  background: var(--ui-yellow);
}

h1,
h2,
h3 {
  color: var(--ui-ink);
  font-weight: 760;
}

h1 {
  max-width: 820px;
  font-size: 58px;
  line-height: 1.01;
}

h2 {
  font-size: 36px;
  line-height: 1.08;
}

h3 {
  font-size: 20px;
  line-height: 1.18;
}

.lead {
  max-width: 720px;
  margin-top: 22px;
  color: var(--ui-muted);
  font-size: 19px;
  line-height: 1.72;
  font-weight: 520;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.hero-badges span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  border: 1px solid var(--ui-line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  color: #314158;
  padding: 8px 12px;
  font-size: 13px;
  font-weight: 780;
}

.hero-badges span::before {
  content: "";
  width: 7px;
  height: 7px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--ui-green);
}

.hero-proof-grid {
  max-width: 720px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  margin-top: 32px;
  border: 1px solid var(--ui-line);
  border-radius: var(--ui-radius);
  background: var(--ui-line);
}

.hero-proof-grid div {
  min-height: 94px;
  display: grid;
  align-content: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.88);
  padding: 18px;
}

.hero-proof-grid strong {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #eef4ff;
  color: var(--ui-blue);
  font-size: 14px;
  font-weight: 900;
}

.hero-proof-grid span {
  color: #475569;
  font-size: 14px;
  font-weight: 740;
  line-height: 1.35;
}

.hero-booking-panel,
.inner-hero-booking,
.content-panel,
.side-panel,
.price,
.card,
.form-card,
.order-summary,
.live-flight-board,
.google-rating-summary {
  border: 1px solid var(--ui-line);
  border-radius: var(--ui-radius);
  background: var(--ui-panel);
  box-shadow: 0 16px 44px rgba(23, 32, 51, 0.08);
}

.hero-booking-panel {
  width: 100%;
  max-width: 470px;
  min-width: 0;
  align-self: stretch;
  display: grid;
  align-content: start;
  overflow: hidden;
}

.hero-panel-photo {
  height: 220px;
  margin: 0;
  overflow: hidden;
  background: #eef2f7;
}

.hero-panel-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: 50% 28%;
}

.booking-panel-head {
  padding: 22px 22px 0;
}

.booking-panel-head p {
  margin: 0 0 6px;
  color: var(--ui-primary);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.booking-panel-head h2 {
  margin: 0;
  font-size: 25px;
  line-height: 1.12;
}

.hero-booking-panel .flight-booking {
  width: auto;
  margin: 0;
  padding: 18px 22px 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.flight-booking {
  width: min(430px, 100%);
  gap: 14px;
  padding: 18px;
  border-color: var(--ui-line);
  border-radius: var(--ui-radius);
  box-shadow: var(--ui-shadow);
}

.flight-booking-field label {
  margin-bottom: 8px;
  color: #46566f;
  font-size: 13px;
  font-weight: 820;
}

.flight-input-shell,
.flight-date-native {
  min-height: 54px;
  display: flex;
  align-items: center;
  border: 1px solid var(--ui-line-strong);
  border-radius: var(--ui-radius);
  background: #fff;
  padding: 0 14px;
  transition: border-color 0.16s ease, box-shadow 0.16s ease;
}

.flight-input-shell:focus-within,
.flight-date-native:focus-within,
.flight-date-native.is-calendar-open {
  border-color: rgba(37, 99, 235, 0.62);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12);
}

.flight-input-shell input {
  min-height: 52px;
  padding-right: 34px;
  font-size: 18px;
  font-weight: 800;
}

.flight-input-shell input::placeholder {
  color: #94a3b8;
  opacity: 1;
}

.flight-date-trigger {
  min-height: 52px;
  padding-right: 34px;
}

.flight-date-display {
  min-height: 52px;
  font-size: 18px;
  font-weight: 800;
}

.flight-field-icon {
  right: 14px;
  width: 22px;
  height: 22px;
  color: var(--ui-blue);
}

.flight-booking-divider {
  display: none;
}

.flight-booking-button {
  min-height: 52px;
  border-radius: var(--ui-radius);
  background: var(--ui-primary);
  box-shadow: 0 12px 24px rgba(215, 25, 32, 0.18);
  font-size: 16px;
  font-weight: 900;
}

.flight-booking-button:disabled {
  background: #cbd5e1;
}

.flight-date-status,
.booking-hint {
  color: var(--ui-muted);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.45;
}

.hero-booking-panel .booking-hint {
  max-width: none;
  margin: 12px 22px 0;
}

.booking-panel-note {
  margin: 18px 22px 22px;
  border-top: 1px solid var(--ui-line);
  padding-top: 16px;
}

.booking-panel-note strong,
.booking-panel-note span {
  display: block;
}

.booking-panel-note strong {
  color: var(--ui-ink);
  font-size: 14px;
  font-weight: 850;
}

.booking-panel-note span {
  margin-top: 4px;
  color: var(--ui-muted);
  font-size: 13px;
  line-height: 1.45;
  font-weight: 650;
}

.flight-suggestions {
  border-color: var(--ui-line);
  border-radius: var(--ui-radius);
  box-shadow: 0 20px 48px rgba(23, 32, 51, 0.16);
}

.flight-suggestion {
  grid-template-columns: 72px 1fr;
  padding: 11px 12px;
}

.flight-suggestion:hover {
  background: #f8fafc;
}

.flight-suggestion strong {
  color: var(--ui-blue);
}

.flight-suggestion > span {
  color: #334155;
}

.flight-calendar {
  border-color: var(--ui-line-strong);
  border-radius: var(--ui-radius);
  box-shadow: 0 22px 50px rgba(23, 32, 51, 0.18);
}

.flight-calendar-day.is-available:hover {
  background: #eef4ff;
  color: var(--ui-blue);
}

.flight-calendar-day.is-selected {
  background: var(--ui-blue);
  box-shadow: inset 0 0 0 2px #1d4ed8;
}

.section,
.airport-showcase {
  padding: 78px 0;
  background: transparent;
}

.section-soft {
  background: #f3f6fb;
}

.section-head {
  align-items: end;
  gap: 32px;
  margin-bottom: 28px;
}

.section-head p {
  color: var(--ui-muted);
  font-size: 16px;
  line-height: 1.65;
  font-weight: 520;
}

.card {
  padding: 22px;
  box-shadow: none;
  transition: transform 0.16s ease, border-color 0.16s ease, box-shadow 0.16s ease;
}

.card:hover {
  border-color: var(--ui-line-strong);
  box-shadow: 0 14px 34px rgba(23, 32, 51, 0.08);
  transform: translateY(-2px);
}

.card-highlight {
  border-color: rgba(37, 99, 235, 0.28);
  background: linear-gradient(180deg, #ffffff, #f7fbff);
}

.card p,
.content-panel p,
.side-panel p,
.price li,
.price-note {
  color: var(--ui-muted);
  font-weight: 520;
}

.card-link {
  color: var(--ui-blue);
  font-weight: 850;
}

.airport-code {
  color: var(--ui-muted);
}

.airport-code strong {
  color: var(--ui-ink);
}

.service-icon {
  border-radius: 999px;
  background: #eef4ff;
  color: var(--ui-blue);
}

.price {
  box-shadow: none;
}

.price-featured {
  border-color: rgba(215, 25, 32, 0.26);
  background: #fffafa;
}

.price-value {
  color: var(--ui-ink);
}

.inner-hero {
  padding: 68px 0 52px;
  border-bottom: 1px solid var(--ui-line);
  background:
    radial-gradient(circle at 86% 18%, rgba(37, 99, 235, 0.08), transparent 32%),
    linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%);
}

.inner-hero-grid {
  gap: 38px;
  align-items: center;
}

.inner-hero-booking {
  padding: 20px;
}

.inner-hero-booking .flight-booking {
  width: 100%;
  margin: 0;
  box-shadow: none;
}

.breadcrumbs {
  color: var(--ui-muted);
  font-size: 13px;
  font-weight: 760;
}

.page-photo-section {
  background: var(--ui-bg);
}

.page-photo,
.airport-showcase-photo,
.hero-photo {
  border-radius: var(--ui-radius);
}

.airport-showcase-grid {
  gap: 42px;
}

.airport-showcase-copy p {
  color: var(--ui-muted);
  font-weight: 520;
}

.live-flight-board {
  padding: 18px;
  box-shadow: none;
}

.live-flight-tabs button,
.pricing-tab,
.flight-time-option {
  border-radius: var(--ui-radius);
}

.footer {
  border-top: 1px solid var(--ui-line);
  background: #ffffff;
}

@media (max-width: 980px) {
  .hero-redesign .hero-grid,
  .international-fit-grid,
  .inner-hero-grid,
  .airport-showcase-grid,
  .section-grid {
    grid-template-columns: 1fr;
  }

  .international-fit-copy {
    max-width: none;
  }

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

  .hero-redesign .hero-grid {
    gap: 28px;
    padding: 54px 0 48px;
  }

  .hero-booking-panel {
    max-width: none;
  }

  h1 {
    font-size: 44px;
  }

  h2 {
    font-size: 32px;
  }

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

  .hero-panel-photo {
    height: 190px;
  }

  .section,
  .airport-showcase {
    padding: 58px 0;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(100% - 28px, 1160px);
  }

  .topbar {
    display: none;
  }

  .nav .container {
    min-height: auto;
    padding: 14px 0;
    align-items: start;
  }

  .nav-links {
    width: 100%;
    order: 3;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .nav-links a {
    min-height: 36px;
    display: grid;
    place-items: center;
    border: 1px solid var(--ui-line);
    border-radius: var(--ui-radius);
    background: #fff;
  }

  .nav-links a::after,
  .nav-actions {
    display: none;
  }

  .hero-redesign .hero-grid {
    padding: 36px 0 36px;
  }

  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 28px;
  }

  .lead {
    font-size: 17px;
    line-height: 1.6;
  }

  .hero-badges span {
    width: auto;
  }

  .hero-proof-grid {
    display: none;
  }

  .hero-panel-photo {
    height: 138px;
  }

  .booking-panel-head,
  .hero-booking-panel .flight-booking {
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero-booking-panel .booking-hint,
  .booking-panel-note {
    margin-left: 16px;
    margin-right: 16px;
  }

  .flight-input-shell input,
  .flight-date-display {
    font-size: 17px;
  }

  .section-head {
    display: grid;
    gap: 14px;
  }

  .section,
  .airport-showcase {
    padding: 44px 0;
  }

  .grid-4,
  .grid-3,
  .price-table {
    grid-template-columns: 1fr;
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

[id] {
  scroll-margin-top: 92px;
}

body {
  margin: 0;
  background: #ffffff;
  color: var(--ink);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  font-variant-numeric: lining-nums;
  text-rendering: optimizeLegibility;
}

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

.page {
  overflow-x: clip;
}

@supports (content-visibility: auto) {
  main > section {
    content-visibility: auto;
    contain-intrinsic-size: 720px;
  }

  main > section:first-child {
    content-visibility: visible;
    contain-intrinsic-size: none;
  }
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.topbar {
  background: linear-gradient(90deg, var(--red-deep), var(--red));
  color: #fff;
  font-size: 13px;
  font-weight: 800;
}

.topbar .container {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.topbar-links {
  display: flex;
  align-items: center;
  gap: 16px;
  color: rgba(255, 255, 255, 0.88);
}

.language-menu {
  position: relative;
  flex: 0 0 auto;
}

.language-menu summary {
  min-width: 62px;
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 8px;
  padding: 6px 10px;
  color: #fff;
  background: rgba(255, 255, 255, 0.11);
  cursor: pointer;
  list-style: none;
}

.language-menu summary::-webkit-details-marker {
  display: none;
}

.language-menu summary::after {
  content: "";
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
}

.language-menu[open] summary::after {
  transform: translateY(2px) rotate(225deg);
}

.language-options {
  position: absolute;
  top: calc(100% + 7px);
  right: 0;
  z-index: 40;
  min-width: 112px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 38px rgba(17, 24, 39, 0.16);
}

.language-options a {
  display: block;
  padding: 10px 12px;
  color: var(--ink);
  font-weight: 900;
}

.language-options a:hover,
.language-options a[aria-current="page"] {
  color: var(--red-deep);
  background: var(--soft-red);
}

.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(16px);
}

.nav .container {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-weight: 600;
  letter-spacing: 0;
}

.logo-mark {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: var(--red);
  transform: rotate(-4deg);
  box-shadow: 0 12px 26px rgba(215, 25, 32, 0.23);
}

.logo-mark svg {
  transform: rotate(4deg);
}

.logo-text {
  display: grid;
  gap: 2px;
  line-height: 1;
}

.logo-text strong {
  font-size: 16px;
}

.logo-text span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 500;
}

.star {
  fill: var(--yellow);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  color: #475467;
  font-size: 14px;
  font-weight: 800;
}

.nav-links a {
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  background: var(--red);
  border-radius: 999px;
  opacity: 0;
  transform: scaleX(0.5);
  transition: opacity 0.2s, transform 0.2s;
}

.nav-links a:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.pill {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 999px;
  padding: 9px 13px;
  font-size: 14px;
  font-weight: 900;
  color: #344054;
}

.btn {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 8px;
  padding: 12px 18px;
  border: 1px solid transparent;
  font-weight: 800;
  font-size: 14px;
  white-space: nowrap;
}

.btn-red {
  color: #fff;
  background: var(--red);
  box-shadow: 0 12px 28px rgba(215, 25, 32, 0.22);
}

.btn-messenger {
  gap: 9px;
}

.btn-messenger img {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  object-fit: contain;
}

.btn-messenger span {
  color: #fff;
}

.btn-dark {
  color: #fff;
  background: var(--ink);
}

.btn-light {
  color: var(--ink);
  background: #fff;
  border-color: var(--line);
}

.hero {
  background:
    linear-gradient(90deg, rgba(215, 25, 32, 0.035) 0 1px, transparent 1px 84px),
    linear-gradient(180deg, #ffffff 0%, #f7fbff 62%, #fff8f8 100%);
  background-size: 84px 84px, auto;
  border-bottom: 1px solid var(--line);
}

.hero-fullbleed {
  position: relative;
  min-height: calc(100vh - 114px);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.99) 0%, rgba(255, 255, 255, 0.96) 35%, rgba(255, 255, 255, 0.54) 58%, rgba(255, 255, 255, 0.08) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0) 72%, #ffffff 100%),
    url("vietnam-fast-track-hero.webp") center center / cover no-repeat;
}

.hero-fullbleed::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(215, 25, 32, 0.018) 0 1px, transparent 1px 84px),
    linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 248, 248, 0.38) 100%);
  background-size: 84px 84px, auto;
  pointer-events: none;
}

.hero-fullbleed > .container {
  position: relative;
  z-index: 1;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 470px) minmax(600px, 710px);
  justify-content: center;
  gap: 24px;
  align-items: center;
  padding: 60px 0 44px;
}

.hero-fullbleed .hero-grid {
  min-height: 640px;
}

.hero-fullbleed .hero-grid > div:first-child {
  max-width: 690px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--red);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 18px;
}

.eyebrow::before {
  content: "";
  width: 30px;
  height: 2px;
  background: var(--yellow);
  border-radius: 99px;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
  letter-spacing: 0;
  font-weight: 500;
}

h1 {
  max-width: 760px;
  font-size: 46px;
  letter-spacing: 0;
  line-height: 1.03;
}

h2 {
  font-size: 44px;
}

h3 {
  font-size: 22px;
}

.lead {
  max-width: 660px;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.72;
  margin: 22px 0 0;
  font-weight: 500;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.flight-booking {
  position: relative;
  z-index: 4;
  width: min(360px, 100%);
  display: grid;
  gap: 15px;
  margin-top: 24px;
  padding: 20px;
  border: 1px solid #e2e6ee;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 24px 58px rgba(17, 24, 39, 0.13);
}

.flight-booking-field {
  position: relative;
  min-width: 0;
}

.flight-booking-field label {
  display: block;
  margin-bottom: 6px;
  color: #6b7280;
  font-size: 15px;
  font-weight: 900;
}

.flight-input-shell,
.flight-date-native {
  position: relative;
}

.flight-date-native.is-calendar-open {
  z-index: 120;
}

.flight-input-shell input {
  width: 100%;
  min-height: 38px;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font-size: 20px;
  font-weight: 900;
  line-height: 1.08;
  text-align: left;
  letter-spacing: 0;
}

.flight-input-shell input::placeholder {
  color: var(--ink);
  opacity: 0.92;
}

.flight-date-trigger {
  width: 100%;
  min-height: 44px;
  display: flex;
  align-items: center;
  border: 0;
  padding: 0 46px 0 0;
  background: transparent;
  color: inherit;
  text-align: left;
  cursor: pointer;
}

.flight-date-trigger:disabled {
  cursor: not-allowed;
}

.flight-date-display {
  min-height: 44px;
  display: flex;
  align-items: center;
  color: var(--ink);
  font-size: 24px;
  font-weight: 900;
  line-height: 1.08;
}

.flight-date-display.is-muted {
  color: #a4a9b4;
}

.flight-field-icon {
  position: absolute;
  right: 0;
  top: 50%;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  color: var(--red);
  transform: translateY(-50%);
  pointer-events: none;
}

.flight-field-icon svg {
  width: 100%;
  height: 100%;
  display: block;
  fill: currentColor;
}

.flight-calendar {
  position: absolute;
  left: 0;
  top: calc(100% + 6px);
  z-index: 140;
  width: min(300px, calc(100vw - 32px));
  border: 1px solid #d2d8e3;
  border-radius: 8px;
  padding: 13px 14px 14px;
  background: #fff;
  box-shadow: 13px 13px 0 rgba(17, 24, 39, 0.14), 0 14px 32px rgba(17, 24, 39, 0.14);
}

.flight-calendar[hidden] {
  display: none;
}

.flight-calendar-head {
  display: grid;
  grid-template-columns: 24px 1fr 24px;
  align-items: center;
  gap: 6px;
  margin-bottom: 12px;
}

.flight-calendar-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: var(--ink);
  font-size: 16px;
  font-weight: 900;
  line-height: 1;
}

.flight-calendar-nav {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border: 1px solid transparent;
  border-radius: 6px;
  background: transparent;
  color: var(--ink);
  font-size: 24px;
  font-weight: 900;
  line-height: 1;
  cursor: pointer;
}

.flight-calendar-nav:hover {
  border-color: transparent;
  background: transparent;
  color: var(--red);
}

.flight-calendar-nav:disabled {
  color: #c4c9d2;
  cursor: not-allowed;
}

.flight-calendar-week,
.flight-calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
}

.flight-calendar-week {
  border-top: 1px solid #d7dce5;
  border-left: 1px solid #d7dce5;
  background: #f4f5f8;
}

.flight-calendar-week span,
.flight-calendar-day {
  min-height: 30px;
  display: grid;
  place-items: center;
  border-right: 1px solid #d7dce5;
  border-bottom: 1px solid #d7dce5;
  font-size: 13px;
  font-weight: 900;
}

.flight-calendar-week span {
  color: #6b7280;
  font-size: 12px;
}

.flight-calendar-grid {
  border-left: 1px solid #d7dce5;
}

.flight-calendar-day {
  border-top: 0;
  border-left: 0;
  background: #fff;
  color: #a9aebb;
}

.flight-calendar-day.is-other-month {
  color: #c8ccd5;
}

.flight-calendar-day.is-available {
  color: var(--ink);
  cursor: pointer;
}

.flight-calendar-day.is-available:hover {
  background: #fff1f1;
  color: var(--red-deep);
}

.flight-calendar-day.is-selected {
  background: var(--red);
  color: #fff;
  box-shadow: inset 0 0 0 2px var(--red-deep);
}

.flight-booking-divider {
  height: 1px;
  background: #cfd4de;
}

.flight-booking-button {
  min-height: 54px;
  border: 0;
  border-radius: 8px;
  color: #fff;
  background: var(--red);
  box-shadow: 0 14px 30px rgba(215, 25, 32, 0.22);
  font-size: 19px;
  font-weight: 900;
  cursor: pointer;
}

.flight-booking-button:disabled {
  background: #cfd2da;
  box-shadow: none;
  cursor: not-allowed;
}

.flight-suggestions {
  position: absolute;
  left: 0;
  right: 0;
  z-index: 30;
  display: none;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 20px 46px rgba(17, 24, 39, 0.16);
}

.flight-suggestions {
  top: calc(100% + 10px);
}

.flight-suggestions.is-open {
  display: block;
}

.flight-suggestions.is-loading {
  display: block;
  pointer-events: none;
}

.flight-suggestion {
  width: 100%;
  border: 0;
  background: #fff;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
}

.flight-suggestion {
  display: grid;
  grid-template-columns: 64px 1fr;
  align-items: center;
  gap: 7px;
  border-bottom: 1px solid var(--line);
  padding: 8px 10px;
}

.flight-suggestion:hover {
  background: var(--soft);
}

.flight-suggestion strong {
  color: var(--red-deep);
  font-size: 14px;
  font-weight: 900;
}

.flight-suggestion mark {
  border-radius: 4px;
  background: rgba(222, 31, 37, 0.14);
  color: inherit;
  padding: 0 2px;
}

.flight-suggestion > span {
  color: #344054;
  font-size: 12.5px;
  font-weight: 800;
}

.flight-suggestion-route {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.flight-suggestion-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 3px;
}

.flight-suggestion-meta small {
  display: inline-flex;
  align-items: center;
  min-height: 17px;
  max-width: 100%;
  border: 1px solid #edf0f5;
  border-radius: 999px;
  background: #f8fafc;
  color: #667085;
  padding: 1px 6px;
  font-size: 9.5px;
  font-weight: 900;
  line-height: 1.05;
  white-space: nowrap;
}

.flight-suggestion em {
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
  white-space: nowrap;
}

.flight-suggestion-skeleton {
  display: grid;
  grid-template-columns: 64px 1fr;
  align-items: center;
  gap: 7px;
  border-bottom: 1px solid var(--line);
  padding: 9px 10px;
}

.flight-suggestion-skeleton:last-child {
  border-bottom: 0;
}

.skeleton-line {
  height: 14px;
  border-radius: 999px;
  background: linear-gradient(90deg, #eef1f6 0%, #f8fafc 45%, #eef1f6 90%);
  background-size: 220% 100%;
  animation: skeleton-shimmer 1.05s ease-in-out infinite;
}

.skeleton-line.is-short {
  width: 64px;
}

.skeleton-line.is-route {
  width: min(100%, 180px);
}

.skeleton-line.is-mini {
  width: 42px;
}

@keyframes skeleton-shimmer {
  from {
    background-position: 100% 0;
  }

  to {
    background-position: -100% 0;
  }
}

.flight-date-status {
  min-height: 18px;
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
}

.booking-hint {
  max-width: 360px;
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.compact-head {
  grid-template-columns: minmax(0, 0.85fr) minmax(260px, 0.75fr);
  align-items: start;
  margin-bottom: 18px;
}

.time-flight-panel {
  margin-top: 14px;
}

.time-flight-panel + .content-panel {
  margin-top: 14px;
}

.time-flight-panel .flight-booking {
  width: 100%;
  max-width: none;
  margin-top: 0;
  box-shadow: 0 18px 44px rgba(17, 24, 39, 0.10);
}

.time-flight-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.time-flight-widget .flight-date-native {
  border: 1px solid #dfe4ec;
  border-radius: 8px;
  padding: 14px 18px;
  background: #fff;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.time-flight-widget .flight-date-native.is-calendar-open {
  z-index: 180;
}

.time-flight-widget .flight-date-native:focus-within {
  border-color: var(--red);
  box-shadow: 0 0 0 4px var(--soft-red);
}

.time-flight-widget .flight-date-trigger {
  min-height: 46px;
  padding-right: 44px;
}

.time-flight-widget .flight-date-display {
  min-height: 46px;
  font-size: 24px;
}

.flight-time-menu {
  position: absolute;
  left: 0;
  top: calc(100% + 10px);
  z-index: 40;
  width: min(390px, calc(100vw - 40px));
  max-height: 292px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  overflow-y: auto;
  border: 1px solid #d7dce5;
  border-radius: 8px;
  padding: 12px;
  background: #fff;
  box-shadow: 0 22px 52px rgba(17, 24, 39, 0.18);
}

.flight-time-menu[hidden] {
  display: none;
}

.flight-time-option {
  min-height: 42px;
  border: 1px solid #dfe4ec;
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font-size: 15px;
  font-weight: 900;
  cursor: pointer;
}

.flight-time-option:hover {
  border-color: var(--red);
  background: var(--soft-red);
  color: var(--red-deep);
}

.flight-time-option.is-selected {
  border-color: var(--red);
  background: var(--red);
  color: #fff;
}

.transfer-widget {
  width: 100%;
  margin-top: 0;
}

.transfer-widget .flight-input-shell input {
  padding-right: 42px;
  font-size: 22px;
}

.time-flight-results {
  display: none;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.time-flight-results.is-open {
  display: block;
}

.time-flight-results .flight-suggestion:last-child,
.time-flight-results .flight-suggestion-skeleton:last-child {
  border-bottom: 0;
}

.time-flight-card {
  grid-template-columns: 84px minmax(0, 1fr) minmax(74px, auto);
}

.time-flight-card span,
.time-flight-card em {
  display: grid;
  gap: 2px;
}

.time-flight-card small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  line-height: 1.35;
}

.time-flight-card em {
  justify-items: end;
  color: var(--ink);
  font-size: 15px;
}

.meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.meta-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 12px;
  color: #344054;
  background: #fff;
  font-size: 13px;
  font-weight: 800;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
}

.hero-media {
  position: relative;
  width: 100%;
  max-width: 710px;
  align-self: start;
  margin-top: -22px;
  margin-left: auto;
  margin-right: auto;
}

.hero-photo {
  position: relative;
  min-height: 720px;
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--soft);
  isolation: isolate;
}

.hero-photo img {
  width: 100%;
  height: 100%;
  min-height: 720px;
  display: block;
  object-fit: cover;
  object-position: center;
}

.hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 45%, rgba(255, 255, 255, 0.24) 100%);
  pointer-events: none;
}

.laptop-logo-board {
  position: absolute;
  right: 8%;
  top: 46%;
  z-index: 2;
  width: min(360px, 58%);
  min-width: 132px;
  aspect-ratio: 1.9;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border-radius: 5px;
  padding: 14px 16px;
  background:
    radial-gradient(circle at 18% 62%, rgba(215, 25, 32, 0.08), transparent 34%),
    rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(215, 25, 32, 0.20);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.72), 0 8px 20px rgba(17, 24, 39, 0.10);
  transform: perspective(520px) rotateX(1deg);
  pointer-events: none;
}

.laptop-logo-mark {
  width: 56px;
  height: 56px;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: var(--red);
  transform: rotate(-4deg);
  box-shadow: 0 12px 22px rgba(215, 25, 32, 0.16);
}

.laptop-logo-mark svg {
  width: 52%;
  height: 52%;
  transform: rotate(4deg);
}

.laptop-logo-text {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.laptop-logo-text strong {
  color: var(--ink);
  font-size: 26px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}

.laptop-logo-text em {
  color: #697386;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.05;
  white-space: nowrap;
}

.ticket {
  position: absolute;
  left: -24px;
  top: 142px;
  bottom: auto;
  width: min(390px, calc(100% - 20px));
  border: 1px solid #f1c6c8;
  background: rgba(255, 247, 247, 0.96);
  border-radius: 8px;
  box-shadow: var(--shadow);
  padding: 18px;
  backdrop-filter: blur(14px);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
  box-shadow: 0 16px 46px rgba(17, 24, 39, 0.06);
  margin-bottom: 56px;
  overflow: hidden;
}

.trust-strip div {
  min-height: 92px;
  display: grid;
  align-content: center;
  gap: 5px;
  background: rgba(255, 255, 255, 0.92);
  padding: 18px;
}

.trust-strip strong {
  font-size: 17px;
  font-weight: 600;
}

.trust-strip span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}

.ticket-top {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 16px;
}

.flight-board {
  background: rgba(255, 255, 255, 0.96);
  border-color: rgba(215, 25, 32, 0.22);
}

.flight-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 64px 120px;
  align-items: center;
  column-gap: 14px;
  min-height: 52px;
  border-top: 1px solid var(--line);
}

.flight-row:first-of-type {
  border-top: 0;
}

.flight-row strong {
  display: block;
  color: var(--ink);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.1;
}

.flight-row span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
  margin-top: 4px;
}

.flight-row time {
  color: var(--ink);
  font-size: 15px;
  font-weight: 600;
  text-align: right;
}

.flight-row mark {
  justify-self: end;
  min-width: 112px;
  text-align: center;
  border-radius: 999px;
  background: var(--soft-yellow);
  color: #7a5100;
  padding: 6px 9px;
  font-size: 11px;
  font-weight: 700;
}

.flight-row mark.is-unavailable {
  background: #f2f4f7;
  color: #667085;
}

.flight-row mark.is-order {
  background: #fff1f2;
  color: var(--red);
}

.board-note {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.4;
}

.route {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.code {
  font-size: 38px;
  font-weight: 500;
  line-height: 1;
}

.city {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  margin-top: 4px;
}

.route-line {
  flex: 1;
  height: 2px;
  background: linear-gradient(90deg, var(--red), var(--yellow), var(--green));
  border-radius: 999px;
  position: relative;
}

.route-line::before,
.route-line::after {
  content: "";
  position: absolute;
  top: -5px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--red);
}

.route-line::before {
  left: 0;
}

.route-line::after {
  right: 0;
  border-color: var(--green);
}

.section {
  padding: 82px 0;
}

.airport-showcase {
  padding: 58px 0 18px;
  background: #fff;
}

.live-flight-board-section {
  padding-top: 72px;
  padding-bottom: 78px;
}

.live-flight-board {
  border: 1px solid rgba(215, 25, 32, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 252, 245, 0.98)),
    #fff;
  box-shadow: 0 24px 64px rgba(17, 24, 39, 0.10);
  overflow: hidden;
}

.live-flight-tabs {
  display: flex;
  gap: 6px;
  padding: 12px;
  border-bottom: 1px solid var(--line);
  background: #fff;
  overflow-x: auto;
}

.live-flight-tab {
  min-height: 38px;
  flex: 0 0 auto;
  border: 1px solid #dfe4ec;
  border-radius: 8px;
  background: #fff;
  color: #344054;
  padding: 8px 13px;
  font-size: 13px;
  font-weight: 900;
  cursor: pointer;
  transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.live-flight-tab:hover {
  border-color: #f2a5a8;
  color: var(--red-deep);
}

.live-flight-tab.is-active {
  border-color: var(--red);
  background: var(--red);
  color: #fff;
}

.live-flight-status {
  min-height: 0;
  color: var(--muted);
  padding: 0 18px;
  font-size: 13px;
  font-weight: 800;
}

.live-flight-status:not(:empty) {
  padding-top: 18px;
  padding-bottom: 18px;
}

.live-flight-rows {
  display: grid;
}

.live-flight-row {
  width: 100%;
  display: grid;
  grid-template-columns: 94px minmax(220px, 1fr) minmax(260px, 0.9fr) 92px;
  align-items: center;
  gap: 16px;
  border: 0;
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.86);
  color: var(--ink);
  padding: 13px 18px;
  text-align: left;
  cursor: pointer;
  transition: background 0.18s ease, transform 0.18s ease;
}

.live-flight-row:first-child {
  border-top: 0;
}

.live-flight-row:hover {
  background: #fff7f7;
}

.live-flight-time {
  display: grid;
  gap: 3px;
}

.live-flight-time strong {
  color: var(--red-deep);
  font-size: 22px;
  font-weight: 900;
  line-height: 1;
}

.live-flight-time small,
.live-flight-details small {
  color: #667085;
  font-size: 11px;
  font-weight: 900;
  line-height: 1.2;
}

.live-flight-main {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.live-flight-main strong {
  color: var(--ink);
  font-size: 17px;
  font-weight: 900;
  line-height: 1;
}

.live-flight-main span {
  color: #344054;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.25;
}

.live-flight-details {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.live-flight-action {
  justify-self: end;
  color: var(--red);
  padding: 0;
  text-align: right;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.2;
}

.airport-showcase-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.82fr);
  align-items: center;
  gap: 28px;
}

.airport-showcase-photo {
  min-height: 360px;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--soft);
}

.airport-showcase-photo img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  display: block;
  object-fit: cover;
  object-position: center;
}

.airport-showcase-copy {
  display: grid;
  justify-items: start;
  gap: 18px;
}

.airport-showcase-copy .eyebrow {
  margin-bottom: 0;
}

.airport-showcase-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.home-photo-band {
  padding: 28px 0 74px;
  background: #fff;
}

.home-photo-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 14px;
}

.home-photo-card {
  position: relative;
  min-height: 270px;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
  box-shadow: var(--shadow);
}

.home-photo-card:first-child {
  grid-row: span 2;
  min-height: 554px;
}

.home-photo-card img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  display: block;
  object-fit: cover;
  object-position: center;
}

.home-photo-card figcaption {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  padding: 12px 14px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  font-size: 14px;
  font-weight: 900;
  line-height: 1.35;
  box-shadow: 0 12px 28px rgba(17, 24, 39, 0.12);
}

.section-soft {
  background: var(--soft);
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(260px, 0.55fr);
  gap: 28px;
  align-items: end;
  margin-bottom: 28px;
}

.section-head p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.section-head-cta {
  display: grid;
  justify-items: start;
  gap: 14px;
}

.section-head-cta .btn {
  min-width: 142px;
}

.grid-4,
.grid-3,
.grid-2 {
  display: grid;
  gap: 14px;
}

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

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

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

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 20px;
  min-height: 150px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.card:hover {
  transform: translateY(-3px);
  border-color: #f1b4b8;
  box-shadow: 0 16px 42px rgba(17, 24, 39, 0.08);
}

.card-highlight {
  border-color: #ee9da2;
  background:
    linear-gradient(135deg, rgba(255, 210, 63, 0.16), transparent 44%),
    linear-gradient(180deg, #fff, var(--soft-red));
}

.airport-code {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.airport-code strong {
  color: var(--red);
  font-size: 30px;
  line-height: 1;
  font-weight: 500;
}

.airport-code span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.card p {
  margin: 10px 0 0;
  color: var(--muted);
}

.card-link {
  display: inline-flex;
  margin-top: 16px;
  color: var(--red);
  font-size: 14px;
  font-weight: 900;
}

.google-reviews-section {
  background: #fff;
}

.google-reviews-head {
  grid-template-columns: minmax(0, 1fr);
  align-items: start;
  justify-content: start;
  gap: 0;
}

.google-reviews-head > div:first-child {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 8px 18px;
}

.google-reviews-head .eyebrow {
  flex: 0 0 100%;
}

.google-rating-summary {
  justify-self: start;
  align-self: end;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
  white-space: nowrap;
}

.google-rating-value {
  color: var(--ink);
  font-size: 28px;
  line-height: 1;
  font-weight: 900;
}

.google-rating-stars,
.google-review-stars-line {
  color: #f5a400;
  letter-spacing: 1px;
}

.google-rating-stars {
  font-size: 22px;
  line-height: 1;
}

.google-rating-summary small {
  display: none;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-align: right;
}

.google-reviews-grid {
  display: grid;
  grid-auto-columns: calc((100% - 28px) / 3);
  grid-auto-flow: column;
  gap: 14px;
  overflow-x: auto;
  padding: 2px 2px 16px;
  scroll-padding: 2px;
  scroll-snap-type: x mandatory;
  scrollbar-color: #d0d5dd transparent;
  scrollbar-width: thin;
}

.google-reviews-empty {
  grid-column: 1 / -1;
  border: 1px dashed #d0d5dd;
  border-radius: 8px;
  background: var(--soft);
  padding: 22px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.55;
}

.google-review-card {
  min-height: 230px;
  display: grid;
  align-content: start;
  gap: 13px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 18px;
  box-shadow: 0 14px 34px rgba(17, 24, 39, 0.06);
  scroll-snap-align: start;
}

.google-review-top {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
}

.google-review-top strong {
  display: block;
  overflow: hidden;
  color: var(--ink);
  font-size: 15px;
  font-weight: 900;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.google-review-top span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.google-review-avatar {
  position: relative;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  box-sizing: border-box;
  flex: 0 0 44px;
  overflow: hidden;
  line-height: 0;
}

.google-review-avatar-fallback {
  display: block;
  border: 1px solid #d0d5dd;
  background: #fff;
  box-shadow: 0 8px 18px rgba(17, 24, 39, 0.08);
}

.google-review-avatar-photo {
  display: block;
  border: 1px solid #d0d5dd;
  background: var(--soft);
  object-fit: cover;
}

.google-review-avatar-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 24px;
  height: 24px;
  display: block;
  transform: translate(-50%, -50%);
}

.google-review-stars-line {
  font-size: 14px;
  line-height: 1;
}

.google-review-card p {
  margin: 0;
  color: #344054;
  font-size: 14px;
  line-height: 1.65;
}

.google-reviews-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.google-reviews-controls {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}

.google-reviews-control {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  color: var(--ink);
  cursor: pointer;
  font-size: 26px;
  font-weight: 900;
  line-height: 1;
  transition: border-color .2s ease, color .2s ease, transform .2s ease;
}

.google-reviews-control:hover:not(:disabled) {
  border-color: var(--red);
  color: var(--red);
  transform: translateY(-1px);
}

.google-reviews-control:disabled {
  cursor: default;
  opacity: .35;
}

.airport-index-intro {
  margin-bottom: 18px;
}

.airport-list-card {
  overflow: hidden;
  padding: 0;
}

.airport-list-card.card-highlight {
  background: #fff;
}

.airport-list-image {
  width: 100%;
  aspect-ratio: 16 / 10;
  display: block;
  object-fit: cover;
  border-bottom: 1px solid var(--line);
}

.airport-list-body {
  padding: 18px;
}

.service-card {
  min-height: 220px;
}

.service-icon {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: var(--soft-yellow);
  color: var(--red);
  font-weight: 600;
  margin-bottom: 16px;
  box-shadow: inset 0 0 0 1px rgba(255, 210, 63, 0.52);
}

.steps {
  counter-reset: steps;
}

.step {
  position: relative;
  counter-increment: steps;
}

.step::before {
  content: counter(steps);
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  font-weight: 600;
  margin-bottom: 16px;
}

.price-table {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 14px;
}

.price-tabs {
  display: inline-grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(148px, max-content);
  align-items: center;
  gap: 4px;
  margin: 0 0 18px;
  padding: 4px;
  border: 1px solid rgba(215, 25, 32, 0.18);
  border-radius: 8px;
  background: linear-gradient(180deg, #fff 0%, #fff9ec 100%);
  box-shadow: 0 14px 34px rgba(16, 24, 40, 0.08);
}

.price-tab {
  appearance: none;
  -webkit-appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border: 1px solid transparent;
  border-radius: 6px;
  padding: 10px 20px;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
  cursor: pointer;
  transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.price-tab:hover {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.82);
  border-color: rgba(215, 25, 32, 0.16);
}

.price-tab:focus-visible {
  outline: 3px solid rgba(255, 206, 0, 0.55);
  outline-offset: 2px;
}

.price-tabs .price-tab.is-active,
.price-tabs .price-tab[aria-selected="true"] {
  color: #fff;
  background-color: var(--red);
  border-color: var(--red);
  box-shadow: 0 10px 22px rgba(215, 25, 32, 0.24);
  transform: translateY(-1px);
}

.price-panel[hidden] {
  display: none;
}

.price {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
}

.price-featured {
  border-color: var(--red);
  box-shadow: var(--shadow);
  background:
    linear-gradient(135deg, rgba(255, 210, 63, 0.18), transparent 40%),
    #fff;
}

.price-label {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.price-value {
  margin-top: 12px;
  font-size: 28px;
  font-weight: 500;
}

.price ul,
.faq-list {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.price li {
  color: var(--muted);
  padding: 8px 0;
  border-top: 1px solid var(--line);
}

.price-note {
  margin: 18px 0 0;
  max-width: 820px;
  color: var(--muted);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.65;
}

.currency-switch {
  display: inline-grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.currency-switch span {
  min-width: 64px;
  text-align: center;
  border-radius: 8px;
  padding: 9px 12px;
  color: #344054;
  font-weight: 600;
}

.currency-switch .active {
  background: var(--red);
  color: #fff;
}

.payment-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.payment {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
  font-weight: 600;
}

.payment span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  margin-top: 6px;
}

.payment-price {
  margin-top: 12px;
  color: var(--ink);
  font-size: 20px;
  font-weight: 900;
}

.payment-icon-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-top: 16px;
}

.payment-icon {
  width: 52px;
  height: 32px;
  display: inline-grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 5px;
}

.footer .payment-icon {
  width: auto;
  height: 24px;
  border: 0;
  border-radius: 0;
  background: transparent;
  padding: 0;
}

.payment-icon img {
  max-width: 100%;
  max-height: 100%;
  display: block;
}

.footer .payment-icon-strip {
  gap: 10px 12px;
  align-items: center;
}

.footer .payment-icon img {
  width: auto;
  height: 24px;
  max-width: 78px;
  object-fit: contain;
}

.footer .payment-icon img[src*="apple-pay"] {
  filter: brightness(0) invert(1);
}

.form-wrap {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(360px, 1fr);
  gap: 28px;
  align-items: start;
}

.form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  padding: 22px;
  display: grid;
  gap: 12px;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

label {
  display: grid;
  gap: 7px;
  color: #344054;
  font-size: 13px;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 11px 12px;
  color: var(--ink);
  background: #fff;
  font: inherit;
  font-weight: 600;
  outline: none;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 4px rgba(215, 25, 32, 0.09);
}

textarea {
  min-height: 100px;
  resize: vertical;
}

.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
}

.faq-item + .faq-item {
  margin-top: 10px;
}

.faq-item strong {
  display: block;
  font-size: 17px;
}

.faq-item p {
  margin: 8px 0 0;
  color: var(--muted);
}

.seo-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.seo-link {
  display: inline-flex;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 12px;
  background: #fff;
  color: #344054;
  font-size: 14px;
  font-weight: 800;
}

.seo-link:hover,
.card-link:hover {
  color: var(--red-deep);
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.breadcrumbs a {
  color: var(--red);
}

.inner-hero {
  background:
    linear-gradient(90deg, rgba(215, 25, 32, 0.035) 0 1px, transparent 1px 84px),
    linear-gradient(180deg, #ffffff 0%, #f7fbff 72%, #fff8f8 100%);
  background-size: 84px 84px, auto;
  border-bottom: 1px solid var(--line);
  padding: 54px 0 46px;
}

.inner-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(300px, 0.52fr);
  gap: 26px;
  align-items: stretch;
}

.inner-hero-grid-single {
  grid-template-columns: minmax(0, 960px);
}

.inner-hero-card,
.side-panel,
.content-panel,
.cta-band {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 42px rgba(17, 24, 39, 0.06);
}

.inner-hero-card {
  display: grid;
  gap: 16px;
  padding: 22px;
}

.inner-hero-booking {
  align-self: start;
  display: grid;
  gap: 10px;
}

.inner-hero-booking .flight-booking {
  width: 100%;
  margin-top: 0;
}

.inner-hero-booking .booking-hint {
  max-width: none;
  margin: 0;
}

.inner-hero-card .airport-code {
  margin-bottom: 0;
}

.inner-actions,
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(300px, 0.28fr);
  gap: 18px;
  align-items: start;
}

.content-panel,
.side-panel {
  padding: 22px;
}

.airport-detail-photo {
  overflow: hidden;
  margin: 0 0 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 42px rgba(17, 24, 39, 0.06);
}

.airport-detail-photo img {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: block;
  object-fit: cover;
}

.airport-detail-photo figcaption {
  display: none;
  padding: 8px 12px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.airport-detail-photo a {
  color: var(--muted);
}

.page-photo-section {
  padding: 28px 0 0;
  background: linear-gradient(180deg, #fff 0%, #f8fafc 100%);
}

.page-photo {
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(16, 24, 40, 0.08);
  border-radius: 26px;
  background: #fff;
  box-shadow: 0 22px 54px rgba(17, 24, 39, 0.09);
}

.page-photo img {
  display: block;
  width: 100%;
  height: clamp(230px, 34vw, 440px);
  object-fit: cover;
}

.page-photo figcaption {
  margin: 0;
  padding: 22px 28px 28px;
  color: var(--muted);
  font-size: clamp(20px, 2.2vw, 31px);
  font-weight: 500;
  line-height: 1.55;
}

.visa-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.68fr) minmax(300px, 0.32fr);
  gap: 18px;
  align-items: start;
}

.visa-main-panel {
  display: grid;
  gap: 18px;
}

.visa-hero-card {
  overflow: hidden;
}

.visa-hero-card img,
.visa-main-visual img {
  width: 100%;
  height: auto;
  display: block;
}

.visa-hero-card img {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #000;
}

.visa-hero-card p,
.visa-side-panel p {
  margin: 0;
  color: var(--muted);
}

.visa-main-visual {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #000;
}

.visa-kpi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.visa-kpi-grid div {
  display: grid;
  gap: 6px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.visa-kpi-grid strong {
  color: var(--red);
  font-size: 24px;
  font-weight: 900;
}

.visa-kpi-grid span {
  color: var(--muted);
  font-weight: 800;
}

.visa-doc-grid .card {
  min-height: 0;
}

.visa-process-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 22px;
}

.visa-process-list li {
  padding-left: 6px;
  color: var(--muted);
}

.visa-note-panel {
  background:
    linear-gradient(135deg, rgba(255, 210, 63, 0.18), transparent 46%),
    #fff;
}

.content-panel + .content-panel,
.side-panel + .side-panel {
  margin-top: 14px;
}

.content-panel h2,
.side-panel h2 {
  margin-top: 0;
}

.content-panel p,
.side-panel p,
.content-panel li,
.side-panel li {
  color: var(--muted);
}

.feature-list,
.plain-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.feature-list li,
.plain-list li {
  border-top: 1px solid var(--line);
  padding-top: 10px;
}

.feature-list li:first-child,
.plain-list li:first-child {
  border-top: 0;
  padding-top: 0;
}

.feature-list strong,
.plain-list strong {
  display: block;
  color: var(--ink);
  margin-bottom: 3px;
}

.airport-fact-table {
  display: grid;
  margin-top: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
}

.airport-fact-row {
  display: grid;
  grid-template-columns: minmax(190px, 0.8fr) 1fr;
  border-top: 1px solid var(--line);
}

.airport-fact-row:first-child {
  border-top: 0;
}

.airport-fact-row strong,
.airport-fact-row span {
  padding: 12px 14px;
}

.airport-fact-row strong {
  color: var(--ink);
  background: rgba(215, 25, 32, 0.04);
}

.airport-step-list {
  display: grid;
  gap: 14px;
}

.airport-step {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 14px;
  align-items: flex-start;
}

.airport-step > span {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  font-weight: 700;
}

.airport-step h3,
.airport-advice-grid h3 {
  margin: 0 0 6px;
  font-size: 18px;
}

.airport-step p {
  margin: 0;
}

.airport-note {
  margin-top: 18px;
  padding: 14px;
  border-left: 4px solid var(--red);
  border-radius: 8px;
  background: rgba(255, 210, 63, 0.16);
}

.airport-advice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 18px;
}

.link-grid {
  display: grid;
  gap: 10px;
}

.link-card {
  display: block;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px;
  background: #fff;
  font-weight: 900;
}

.link-card span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  margin-top: 3px;
}

.cta-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 22px;
  background:
    linear-gradient(135deg, rgba(255, 210, 63, 0.18), transparent 38%),
    #fff;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.notice {
  border-left: 3px solid var(--red);
  border-radius: 8px;
  padding: 14px 16px;
  background: var(--soft-red);
  color: #344054;
  font-weight: 700;
}

.legal-content {
  max-width: 880px;
}

.legal-content h2 {
  margin-top: 30px;
}

.legal-content p,
.legal-content li {
  color: var(--muted);
}

.legal-timeline-panel h2 {
  margin: 10px 0 12px;
}

.legal-intro {
  max-width: 760px;
  margin: 0 0 24px;
}

.legal-timeline {
  position: relative;
  display: grid;
  gap: 0;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.legal-timeline::before {
  content: "";
  position: absolute;
  left: 25px;
  top: 14px;
  bottom: 14px;
  width: 2px;
  background: linear-gradient(180deg, var(--red), rgba(215, 25, 32, 0.18));
}

.legal-timeline li {
  position: relative;
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 18px;
  padding: 0 0 28px;
}

.legal-timeline li:last-child {
  padding-bottom: 0;
}

.legal-step-icon {
  position: relative;
  z-index: 1;
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 14px 30px rgba(215, 25, 32, 0.22);
}

.legal-step-icon svg {
  width: 24px;
  height: 24px;
  fill: #fff;
}

.legal-timeline h3 {
  margin: 2px 0 8px;
  color: var(--ink);
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.15;
}

.legal-timeline p {
  max-width: 720px;
  margin: 0;
}

.footer {
  background: #111827;
  color: #fff;
  padding: 44px 0;
}

.footer .container {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: flex-start;
}

.footer p {
  color: rgba(255, 255, 255, 0.68);
  margin: 8px 0 0;
}

.footer-contacts {
  display: grid;
  justify-items: end;
  gap: 12px;
}

.footer-label {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 800;
}

.messenger-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.messenger-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  padding: 9px 12px 9px 10px;
  color: #fff;
  background: rgba(255, 255, 255, 0.07);
  font-size: 14px;
  font-weight: 800;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.messenger-link:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.12);
}

.messenger-link svg,
.messenger-link img {
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  object-fit: contain;
}

.messenger-link svg {
  fill: currentColor;
}

.messenger-whatsapp {
  color: #4ade80;
}

.messenger-telegram {
  color: #38bdf8;
}

.messenger-link span {
  color: #fff;
}

@media (max-width: 980px) {
  .nav .container,
  .topbar .container,
  .footer .container {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-links,
  .nav-actions,
  .topbar-links {
    flex-wrap: wrap;
  }

  .footer-contacts {
    justify-items: start;
  }

  .messenger-row {
    justify-content: flex-start;
  }

  .hero-grid,
  .inner-hero-grid,
  .section-head,
  .form-wrap,
  .content-grid,
  .visa-layout,
  .cta-band,
  .grid-4,
  .grid-3,
  .grid-2,
  .price-table,
  .airport-advice-grid,
  .payment-row,
  .airport-showcase-grid,
  .home-photo-grid,
  .trust-strip {
    grid-template-columns: 1fr;
  }

  .google-reviews-grid {
    grid-auto-columns: min(88vw, 360px);
  }

  .google-rating-summary {
    justify-self: start;
    justify-content: flex-start;
    margin-bottom: 0;
  }

  .google-rating-summary small {
    text-align: left;
  }

  .google-reviews-footer {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .google-reviews-controls {
    order: 3;
    margin-left: 0;
  }

  .airport-fact-row {
    grid-template-columns: 1fr;
  }

  .home-photo-card:first-child {
    grid-row: auto;
    min-height: 360px;
  }

  .hero-photo,
  .hero-photo img {
    min-height: 520px;
  }

  .hero-fullbleed {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.94) 0%, rgba(255, 255, 255, 0.76) 54%, rgba(255, 255, 255, 0.18) 100%),
      url("vietnam-fast-track-hero.webp") 62% center / cover no-repeat;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 32px;
    text-align: center;
    padding: 48px 0 36px;
  }

  .hero-grid > div:first-child {
    max-width: 700px;
  }

  h1 {
    max-width: 700px;
    font-size: 39px;
  }

  h2 {
    font-size: 38px;
  }

  .lead {
    margin-left: auto;
    margin-right: auto;
  }

  .eyebrow,
  .hero-actions,
  .meta-row {
    justify-content: center;
  }

  .flight-booking,
  .booking-hint {
    margin-left: auto;
    margin-right: auto;
  }

  .live-flight-row {
    grid-template-columns: 88px minmax(0, 1fr);
    align-items: start;
    gap: 10px 14px;
  }

  .live-flight-details,
  .live-flight-action {
    grid-column: 2;
  }

  .live-flight-action {
    justify-self: start;
  }

  .hero-media {
    width: min(100%, 760px);
    max-width: 760px;
    min-height: 0;
    margin-top: -10px;
    margin-left: auto;
    margin-right: auto;
  }

  .laptop-logo-board {
    right: 8%;
    top: 42%;
    width: min(300px, 52%);
    gap: 9px;
  }

  .laptop-logo-mark {
    width: 48px;
    height: 48px;
  }

  .laptop-logo-text strong {
    font-size: 22px;
  }

  .laptop-logo-text em {
    font-size: 14px;
  }

  .ticket {
    left: 50%;
    top: 124px;
    bottom: auto;
    transform: translateX(-50%);
  }

  .trust-strip {
    margin-bottom: 34px;
  }

  .cta-band {
    justify-items: start;
  }

  .airport-showcase-copy {
    justify-items: center;
    text-align: center;
  }
}

@media (max-width: 580px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .hero-actions,
  .btn,
  .pill,
  .currency-switch,
  .price-tabs {
    width: 100%;
  }

  .price-tabs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-auto-flow: initial;
    grid-auto-columns: initial;
    gap: 4px;
  }

  .price-tab {
    min-width: 0;
    padding: 10px 12px;
  }

  .topbar {
    font-size: 12px;
  }

  .topbar .container {
    min-height: 34px;
    align-items: center;
    flex-direction: row;
  }

  .topbar .container > span {
    display: none;
  }

  .topbar-links {
    width: 100%;
    justify-content: space-between;
    gap: 10px;
  }

  .language-options {
    left: 0;
    right: auto;
  }

  .topbar-links > a:last-child {
    display: none;
  }

  .nav {
    position: relative;
    backdrop-filter: none;
  }

  .nav .container {
    min-height: 0;
    align-items: stretch;
    gap: 12px;
    padding: 12px 0 10px;
  }

  .logo {
    gap: 9px;
  }

  .logo-mark {
    width: 42px;
    height: 42px;
  }

  .logo-text strong {
    font-size: 18px;
  }

  .logo-text span {
    font-size: 12px;
  }

  .nav-links {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    width: 100%;
    gap: 6px;
    font-size: 13px;
  }

  .nav-links a {
    min-height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    padding: 6px 4px;
  }

  .nav-links a::after,
  .nav-links a:hover::after {
    display: none;
  }

  .nav-actions {
    display: none;
  }

  .hero {
    border-top: 1px solid var(--line);
  }

  .hero-grid {
    padding-top: 34px;
  }

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

  .ticket {
    position: static;
    width: 100%;
    margin-top: 12px;
    transform: none;
  }

  .hero-photo,
  .hero-photo img {
    min-height: 430px;
  }

  .hero-photo img {
    object-position: center;
  }

  .hero-media {
    width: calc(100vw - 12px);
    max-width: calc(100vw - 12px);
    margin-top: -12px;
  }

  .airport-showcase {
    padding-top: 36px;
  }

  .airport-showcase-photo,
  .airport-showcase-photo img {
    min-height: 230px;
  }

  .home-photo-band {
    padding: 20px 0 46px;
  }

  .home-photo-card,
  .home-photo-card:first-child {
    min-height: 230px;
  }

  .visa-kpi-grid {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: 28px;
  }

  h2 {
    font-size: 30px;
  }

  .lead {
    font-size: 17px;
  }

  .flight-booking {
    padding: 18px;
  }

  .flight-input-shell input,
  .flight-date-display {
    font-size: 20px;
  }

  .flight-calendar {
    width: min(280px, calc(100vw - 28px));
    padding: 11px 10px 10px;
    box-shadow: 9px 9px 0 rgba(17, 24, 39, 0.12), 0 12px 28px rgba(17, 24, 39, 0.14);
  }

  .flight-calendar-head {
    grid-template-columns: 22px 1fr 22px;
    gap: 5px;
    margin-bottom: 10px;
  }

  .flight-calendar-title {
    gap: 5px;
    font-size: 15px;
  }

  .flight-calendar-nav {
    width: 22px;
    height: 22px;
    font-size: 22px;
  }

  .flight-calendar-week span,
  .flight-calendar-day {
    min-height: 28px;
    font-size: 12px;
  }

  .flight-calendar-week span {
    font-size: 11px;
  }

  .flight-booking-button {
    min-height: 54px;
    font-size: 19px;
  }

  .flight-suggestion {
    grid-template-columns: 58px 1fr;
    align-items: start;
    gap: 6px;
    padding: 8px 9px;
  }

  .flight-suggestion-meta small {
    white-space: normal;
  }

  .live-flight-board-section {
    padding-top: 50px;
    padding-bottom: 56px;
  }

  .live-flight-tabs {
    padding: 9px;
  }

  .live-flight-tab {
    min-height: 36px;
    padding: 8px 10px;
    font-size: 12px;
  }

  .live-flight-row {
    padding: 13px 12px;
  }

  .live-flight-time strong {
    font-size: 20px;
  }

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

  .time-flight-widget .flight-date-display {
    font-size: 20px;
  }

  .time-flight-widget .flight-date-native {
    padding: 10px 14px;
  }

  .flight-time-menu {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-height: 250px;
  }

  .time-flight-card {
    grid-template-columns: 72px 1fr;
  }

  .time-flight-card em {
    grid-column: 2;
    justify-items: start;
  }

  .laptop-logo-board {
    right: 13%;
    top: 37%;
    width: 50%;
    min-width: 118px;
    padding: 8px 9px;
    gap: 7px;
  }

  .laptop-logo-mark {
    width: 34px;
    height: 34px;
  }

  .laptop-logo-text strong {
    font-size: 15px;
  }

  .laptop-logo-text em {
    font-size: 10px;
  }

  .code {
    font-size: 30px;
  }

  .inner-hero {
    padding: 36px 0 32px;
  }

  .inner-hero-card,
  .content-panel,
  .side-panel,
  .cta-band {
    padding: 16px;
  }

  .legal-timeline-panel h2 {
    font-size: 27px;
  }

  .legal-timeline {
    margin-top: 22px;
  }

  .legal-timeline::before {
    left: 21px;
  }

  .legal-timeline li {
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 14px;
    padding-bottom: 24px;
  }

  .legal-step-icon {
    width: 44px;
    height: 44px;
  }

  .legal-step-icon svg {
    width: 21px;
    height: 21px;
  }

  .legal-timeline h3 {
    font-size: 21px;
  }

  .inner-actions,
  .button-row,
  .cta-actions {
    display: grid;
  }

  .cta-actions {
    justify-content: stretch;
  }
}

/* Final cascade activation for the international redesign. */
body {
  background: var(--ui-bg);
  color: var(--ui-ink);
}

.page {
  background:
    linear-gradient(180deg, #ffffff 0, var(--ui-bg) 620px),
    var(--ui-bg);
}

.topbar {
  border-bottom: 1px solid rgba(205, 214, 227, 0.72);
  background: #ffffff;
  color: var(--ui-muted);
}

.nav {
  border-bottom: 1px solid rgba(205, 214, 227, 0.84);
  background: rgba(255, 255, 255, 0.92);
}

.nav .container {
  min-height: 72px;
}

.nav-links {
  gap: 18px;
  color: #475569;
  font-weight: 750;
}

.nav-links a::after {
  bottom: -11px;
  background: var(--ui-blue);
}

.logo-mark,
.card,
.price,
.inner-hero-booking,
.content-panel,
.side-panel,
.flight-booking,
.hero-booking-panel,
.airport-showcase-photo,
.page-photo,
.live-flight-board {
  border-radius: var(--ui-radius);
}

.logo-mark {
  width: 40px;
  height: 40px;
  background: var(--ui-primary);
  box-shadow: 0 12px 24px rgba(215, 25, 32, 0.18);
}

.logo-text strong {
  color: var(--ui-ink);
  font-weight: 800;
}

.logo-text span {
  color: var(--ui-muted);
  font-weight: 650;
}

.btn {
  min-height: 42px;
  border-radius: var(--ui-radius);
  padding: 10px 16px;
  font-weight: 800;
}

.btn-red {
  background: var(--ui-primary);
  box-shadow: 0 12px 28px rgba(215, 25, 32, 0.18);
}

.hero {
  border-bottom: 1px solid var(--ui-line);
  background:
    radial-gradient(circle at 84% 18%, rgba(37, 99, 235, 0.09), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 64%, #f3f6fb 100%);
}

.hero-redesign .hero-grid {
  grid-template-columns: minmax(0, 1fr) minmax(360px, 470px);
  justify-content: space-between;
  gap: 48px;
  align-items: center;
  padding: 76px 0 64px;
}

.eyebrow {
  margin-bottom: 16px;
  color: var(--ui-primary);
  font-size: 13px;
  font-weight: 800;
}

.eyebrow::before {
  width: 24px;
  background: var(--ui-yellow);
}

h1,
h2,
h3 {
  color: var(--ui-ink);
  font-weight: 760;
}

h1 {
  max-width: 820px;
  font-size: 58px;
  line-height: 1.01;
}

h2 {
  font-size: 36px;
  line-height: 1.08;
}

h3 {
  font-size: 20px;
  line-height: 1.18;
}

.lead {
  max-width: 720px;
  color: var(--ui-muted);
  font-size: 19px;
  line-height: 1.72;
  font-weight: 520;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.hero-badges span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  border: 1px solid var(--ui-line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  color: #314158;
  padding: 8px 12px;
  font-size: 13px;
  font-weight: 780;
}

.hero-badges span::before {
  content: "";
  width: 7px;
  height: 7px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--ui-green);
}

.hero-proof-grid {
  max-width: 720px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  margin-top: 32px;
  border: 1px solid var(--ui-line);
  border-radius: var(--ui-radius);
  background: var(--ui-line);
}

.hero-proof-grid div {
  min-height: 94px;
  display: grid;
  align-content: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.88);
  padding: 18px;
}

.hero-proof-grid strong {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #eef4ff;
  color: var(--ui-blue);
  font-size: 14px;
  font-weight: 900;
}

.hero-proof-grid span {
  color: #475569;
  font-size: 14px;
  font-weight: 740;
  line-height: 1.35;
}

.hero-booking-panel,
.inner-hero-booking,
.content-panel,
.side-panel,
.price,
.card,
.form-card,
.order-summary,
.live-flight-board,
.google-rating-summary {
  border: 1px solid var(--ui-line);
  background: var(--ui-panel);
  box-shadow: 0 16px 44px rgba(23, 32, 51, 0.08);
}

.hero-booking-panel {
  width: 100%;
  max-width: 470px;
  min-width: 0;
  align-self: stretch;
  display: grid;
  align-content: start;
  overflow: hidden;
}

.hero-panel-photo {
  height: 220px;
  margin: 0;
  overflow: hidden;
  background: #eef2f7;
}

.hero-panel-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: 50% 28%;
}

.booking-panel-head {
  padding: 22px 22px 0;
}

.booking-panel-head p {
  margin: 0 0 6px;
  color: var(--ui-primary);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.booking-panel-head h2 {
  margin: 0;
  font-size: 25px;
  line-height: 1.12;
}

.hero-booking-panel .flight-booking {
  width: auto;
  margin: 0;
  padding: 18px 22px 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.flight-booking {
  width: min(430px, 100%);
  gap: 14px;
  padding: 18px;
  border-color: var(--ui-line);
  box-shadow: var(--ui-shadow);
}

.flight-booking-field label {
  margin-bottom: 8px;
  color: #46566f;
  font-size: 13px;
  font-weight: 820;
}

.flight-input-shell,
.flight-date-native {
  min-height: 54px;
  display: flex;
  align-items: center;
  border: 1px solid var(--ui-line-strong);
  border-radius: var(--ui-radius);
  background: #fff;
  padding: 0 14px;
}

.flight-input-shell:focus-within,
.flight-date-native:focus-within,
.flight-date-native.is-calendar-open {
  border-color: rgba(37, 99, 235, 0.62);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12);
}

.flight-input-shell input {
  min-height: 52px;
  padding-right: 34px;
  font-size: 18px;
  font-weight: 800;
}

.flight-input-shell input::placeholder {
  color: #94a3b8;
  opacity: 1;
}

.flight-date-trigger {
  min-height: 52px;
  padding-right: 34px;
}

.flight-date-display {
  min-height: 52px;
  font-size: 18px;
  font-weight: 800;
}

.flight-field-icon {
  right: 14px;
  width: 22px;
  height: 22px;
  color: var(--ui-blue);
}

.flight-booking-divider {
  display: none;
}

.flight-booking-button {
  min-height: 52px;
  border-radius: var(--ui-radius);
  background: var(--ui-primary);
  box-shadow: 0 12px 24px rgba(215, 25, 32, 0.18);
  font-size: 16px;
  font-weight: 900;
}

.flight-booking-button:disabled {
  background: #cbd5e1;
}

.flight-date-status,
.booking-hint {
  color: var(--ui-muted);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.45;
}

.hero-booking-panel .booking-hint {
  max-width: none;
  margin: 12px 22px 0;
}

.booking-panel-note {
  margin: 18px 22px 22px;
  border-top: 1px solid var(--ui-line);
  padding-top: 16px;
}

.booking-panel-note strong,
.booking-panel-note span {
  display: block;
}

.booking-panel-note strong {
  color: var(--ui-ink);
  font-size: 14px;
  font-weight: 850;
}

.booking-panel-note span {
  margin-top: 4px;
  color: var(--ui-muted);
  font-size: 13px;
  line-height: 1.45;
  font-weight: 650;
}

.international-fit-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 34px;
  align-items: center;
}

.international-fit-copy {
  max-width: 520px;
}

.international-fit-copy p {
  color: var(--ui-muted);
  font-size: 16px;
  line-height: 1.72;
  font-weight: 520;
}

.international-fit-copy .btn {
  margin-top: 12px;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.audience-card,
.airport-choice {
  min-height: 184px;
}

.audience-card h3,
.airport-choice h3 {
  margin-top: 0;
}

.route-context-section {
  border-top: 1px solid var(--ui-line);
  border-bottom: 1px solid var(--ui-line);
}

.route-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.route-card {
  min-height: 190px;
  border: 1px solid var(--ui-line);
  border-radius: var(--ui-radius);
  background: #ffffff;
  padding: 20px;
}

.route-card span {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  border-radius: 999px;
  background: #eef4ff;
  color: var(--ui-blue);
  padding: 5px 10px;
  font-size: 12px;
  font-weight: 850;
}

.route-card strong {
  display: block;
  margin-top: 14px;
  color: var(--ui-ink);
  font-size: 17px;
  line-height: 1.28;
}

.route-card p {
  margin: 10px 0 0;
  color: var(--ui-muted);
  font-size: 14px;
  line-height: 1.55;
  font-weight: 520;
}

.service-flow-grid .service-icon {
  width: auto;
  min-width: 44px;
  padding: 0 10px;
  font-size: 12px;
}

.request-flow-section .step {
  min-height: 176px;
}

.section,
.airport-showcase {
  padding: 78px 0;
  background: transparent;
}

.section-soft {
  background: #f3f6fb;
}

.section-head {
  align-items: end;
  gap: 32px;
  margin-bottom: 28px;
}

.section-head p,
.card p,
.content-panel p,
.side-panel p,
.price li,
.price-note,
.airport-showcase-copy p {
  color: var(--ui-muted);
  font-weight: 520;
}

.card {
  padding: 22px;
  box-shadow: none;
}

.card-highlight {
  border-color: rgba(37, 99, 235, 0.28);
  background: linear-gradient(180deg, #ffffff, #f7fbff);
}

.card-link {
  color: var(--ui-blue);
  font-weight: 850;
}

.service-icon {
  border-radius: 999px;
  background: #eef4ff;
  color: var(--ui-blue);
}

.price {
  box-shadow: none;
}

.price-featured {
  border-color: rgba(215, 25, 32, 0.26);
  background: #fffafa;
}

.inner-hero {
  padding: 68px 0 52px;
  border-bottom: 1px solid var(--ui-line);
  background:
    radial-gradient(circle at 86% 18%, rgba(37, 99, 235, 0.08), transparent 32%),
    linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%);
}

.inner-hero-grid {
  gap: 38px;
  align-items: center;
}

.inner-hero-booking {
  padding: 20px;
}

.inner-hero-booking .flight-booking {
  width: 100%;
  margin: 0;
  box-shadow: none;
}

.live-flight-board {
  padding: 18px;
  box-shadow: none;
}

.footer {
  border-top: 1px solid var(--ui-line);
  background: #ffffff;
}

@media (max-width: 980px) {
  .hero-redesign .hero-grid,
  .inner-hero-grid,
  .airport-showcase-grid,
  .section-grid {
    grid-template-columns: 1fr;
  }

  .hero-redesign .hero-grid {
    gap: 28px;
    padding: 54px 0 48px;
  }

  .hero-booking-panel {
    max-width: none;
  }

  h1 {
    font-size: 44px;
  }

  h2 {
    font-size: 32px;
  }

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

  .hero-panel-photo {
    height: 220px;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(100% - 28px, 1160px);
  }

  .topbar {
    display: none;
  }

  .nav .container {
    min-height: auto;
    padding: 14px 0;
    align-items: start;
  }

  .nav-links {
    width: 100%;
    order: 3;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .nav-links a {
    min-height: 36px;
    display: grid;
    place-items: center;
    border: 1px solid var(--ui-line);
    border-radius: var(--ui-radius);
    background: #fff;
  }

  .nav-links a::after,
  .nav-actions {
    display: none;
  }

  .hero-redesign .hero-grid {
    padding: 36px 0;
  }

  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 28px;
  }

  .lead {
    font-size: 17px;
    line-height: 1.6;
  }

  .hero-badges span {
    width: 100%;
  }

  .audience-grid,
  .route-grid {
    grid-template-columns: 1fr;
  }

  .audience-card,
  .airport-choice,
  .route-card,
  .request-flow-section .step {
    min-height: auto;
  }

  .booking-panel-head,
  .hero-booking-panel .flight-booking {
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero-booking-panel .booking-hint,
  .booking-panel-note {
    margin-left: 16px;
    margin-right: 16px;
  }

  .section,
  .airport-showcase {
    padding: 44px 0;
  }
}

@media (max-width: 480px) {
  .hero-badges span {
    width: 100%;
  }
}

@media (max-width: 720px) {
  .hero-badges span {
    width: auto;
  }

  .hero-proof-grid {
    display: none;
  }
}

@media (max-width: 480px) {
  .hero-badges span {
    width: 100%;
  }
}
