@font-face {
  font-family: "Vietlinker Sans";
  src: url("../realtor/fonts/vietlinker-sans-vietnamese.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  unicode-range:
    U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0,
    U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}

@font-face {
  font-family: "Vietlinker Sans";
  src: url("../realtor/fonts/vietlinker-sans-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  unicode-range:
    U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304,
    U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215,
    U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Vietlinker Serif";
  src: url("../realtor/fonts/vietlinker-serif-normal-vietnamese.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  unicode-range:
    U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0,
    U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}

@font-face {
  font-family: "Vietlinker Serif";
  src: url("../realtor/fonts/vietlinker-serif-normal-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  unicode-range:
    U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304,
    U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215,
    U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Vietlinker Serif";
  src: url("../realtor/fonts/vietlinker-serif-italic-vietnamese.woff2") format("woff2");
  font-style: italic;
  font-weight: 100 900;
  font-display: swap;
  unicode-range:
    U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0,
    U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}

@font-face {
  font-family: "Vietlinker Serif";
  src: url("../realtor/fonts/vietlinker-serif-italic-latin.woff2") format("woff2");
  font-style: italic;
  font-weight: 100 900;
  font-display: swap;
  unicode-range:
    U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304,
    U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215,
    U+FEFF, U+FFFD;
}

:root {
  --navy: #101b35;
  --navy-deep: #071122;
  --navy-soft: #253456;
  --coral: #ff7253;
  --coral-dark: #e65336;
  --sky: #c8e3ec;
  --sky-bright: #e8f5f7;
  --cream: #f4f1e9;
  --paper: #fffdf8;
  --sand: #e5dac8;
  --ink: #121a2c;
  --muted: #657080;
  --line: rgba(16, 27, 53, 0.16);
  --white: #fffefa;
  --banner-height: 34px;
  --header-height: 80px;
  --page-pad: clamp(20px, 4vw, 68px);
  --ease: cubic-bezier(0.2, 0.75, 0.2, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--cream);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: clip;
  color: var(--ink);
  background: var(--cream);
  font-family: "Vietlinker Sans", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

button,
input,
select {
  font: inherit;
}

button,
a,
label {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
}

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

img,
video {
  display: block;
  max-width: 100%;
}

h1,
h2,
h3,
p,
blockquote {
  margin-top: 0;
}

h1,
h2,
h3 {
  text-wrap: balance;
}

[id] {
  scroll-margin-top: calc(var(--banner-height) + var(--header-height) + 14px);
}

:focus-visible {
  outline: 3px solid var(--coral);
  outline-offset: 4px;
}

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

.skip-link {
  position: fixed;
  z-index: 3000;
  top: 8px;
  left: 8px;
  padding: 12px 18px;
  color: var(--white);
  background: var(--navy);
  border: 2px solid var(--coral);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.demo-banner {
  position: fixed;
  z-index: 1300;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--banner-height);
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 0 var(--page-pad);
  color: var(--navy);
  background: var(--coral);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.demo-dot {
  width: 6px;
  height: 6px;
  flex: 0 0 auto;
  background: var(--navy);
  border-radius: 50%;
}

.demo-credit {
  margin-left: auto;
  white-space: nowrap;
}

.site-header {
  position: fixed;
  z-index: 1200;
  top: var(--banner-height);
  left: 0;
  width: 100%;
  height: var(--header-height);
  display: flex;
  align-items: center;
  padding: 0 var(--page-pad);
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  transition:
    color 300ms var(--ease),
    background 300ms var(--ease),
    box-shadow 300ms var(--ease);
}

.site-header::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(7, 17, 34, 0.72), rgba(7, 17, 34, 0));
  pointer-events: none;
}

.site-header.is-scrolled,
.site-header.menu-active {
  color: var(--navy);
  background: rgba(255, 253, 248, 0.97);
  border-color: var(--line);
  box-shadow: 0 10px 30px rgba(7, 17, 34, 0.08);
  backdrop-filter: blur(14px);
}

.site-header.is-scrolled::before,
.site-header.menu-active::before {
  opacity: 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
}

.brand-mark {
  position: relative;
  width: 44px;
  height: 44px;
  display: block;
  border: 1px solid currentColor;
  border-radius: 50%;
}

.brand-mark::before {
  position: absolute;
  top: 20px;
  left: 8px;
  width: 27px;
  height: 1px;
  content: "";
  background: currentColor;
  transform: rotate(-23deg);
}

.brand-mark i {
  position: absolute;
  width: 5px;
  height: 5px;
  background: var(--coral);
  border-radius: 50%;
}

.brand-mark i:nth-child(1) {
  top: 27px;
  left: 7px;
}

.brand-mark i:nth-child(2) {
  top: 18px;
  left: 19px;
}

.brand-mark i:nth-child(3) {
  top: 8px;
  left: 31px;
}

.brand-type {
  display: grid;
  line-height: 1;
}

.brand-type strong {
  font-family: "Vietlinker Serif", Georgia, serif;
  font-size: 18px;
  letter-spacing: 0.12em;
}

.brand-type small {
  margin-top: 6px;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.32em;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.3vw, 38px);
  margin: 0 auto;
  font-size: 12px;
  font-weight: 700;
}

.desktop-nav a,
.footer-column a {
  position: relative;
}

.desktop-nav a::after,
.footer-column a::after {
  position: absolute;
  bottom: -7px;
  left: 0;
  width: 100%;
  height: 1px;
  content: "";
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 240ms var(--ease);
}

.desktop-nav a:hover::after,
.footer-column a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.language-switch {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 10px;
  font-weight: 800;
}

.lang-button {
  min-width: 28px;
  padding: 7px 3px;
  color: inherit;
  background: transparent;
  border: 0;
  cursor: pointer;
  opacity: 0.5;
}

.lang-button.is-active {
  opacity: 1;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  min-height: 48px;
  padding: 0 20px;
  color: var(--navy);
  background: var(--white);
  font-size: 11px;
  font-weight: 800;
  transition:
    color 220ms var(--ease),
    background 220ms var(--ease),
    transform 220ms var(--ease);
}

.site-header.is-scrolled .header-cta,
.site-header.menu-active .header-cta {
  color: var(--white);
  background: var(--navy);
}

.header-cta:hover {
  color: var(--navy) !important;
  background: var(--coral) !important;
  transform: translateY(-2px);
}

.menu-button {
  position: relative;
  width: 46px;
  height: 46px;
  display: none;
  padding: 0;
  color: inherit;
  background: transparent;
  border: 1px solid currentColor;
  cursor: pointer;
}

.menu-button i {
  position: absolute;
  left: 12px;
  width: 20px;
  height: 1px;
  background: currentColor;
  transition: transform 220ms var(--ease);
}

.menu-button i:first-of-type {
  top: 18px;
}

.menu-button i:last-of-type {
  top: 26px;
}

.menu-button[aria-expanded="true"] i:first-of-type {
  top: 22px;
  transform: rotate(45deg);
}

.menu-button[aria-expanded="true"] i:last-of-type {
  top: 22px;
  transform: rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  z-index: -1;
  top: calc(var(--banner-height) + var(--header-height));
  right: 0;
  left: 0;
  height: calc(100svh - var(--banner-height) - var(--header-height));
  padding: 36px var(--page-pad);
  color: var(--navy);
  background: var(--paper);
  overflow: auto;
}

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

.mobile-menu a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 62px;
  border-bottom: 1px solid var(--line);
  font-family: "Vietlinker Serif", Georgia, serif;
  font-size: clamp(24px, 5vw, 40px);
}

.mobile-language {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 22px;
  font-size: 12px;
  font-weight: 850;
}

.mobile-language .lang-button {
  border: 1px solid var(--line);
}

.mobile-menu a::after {
  content: "↗";
  font-family: "Vietlinker Sans", Arial, sans-serif;
  font-size: 15px;
}

.mobile-menu .mobile-menu-cta {
  justify-content: center;
  margin-top: 28px;
  color: var(--white);
  background: var(--navy);
  border: 0;
  font-family: "Vietlinker Sans", Arial, sans-serif;
  font-size: 13px;
  font-weight: 800;
}

.mobile-menu .mobile-menu-cta::after {
  margin-left: 16px;
}

.hero {
  position: relative;
  min-height: max(900px, 100svh);
  display: grid;
  color: var(--white);
  background: var(--navy-deep);
  overflow: hidden;
}

.hero-film,
.hero-poster,
.hero-shade,
.hero-grid {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-film {
  z-index: 0;
  object-fit: cover;
}

.hero-poster {
  z-index: 0;
  background:
    linear-gradient(rgba(7, 17, 34, 0.08), rgba(7, 17, 34, 0.08)),
    url("../assets/services-ride-hero-v1.webp") center / cover no-repeat;
  transition: opacity 700ms var(--ease);
}

.hero.is-video-playing .hero-poster {
  opacity: 0;
}

.hero-shade {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(7, 17, 34, 0.95) 0%, rgba(7, 17, 34, 0.72) 43%, rgba(7, 17, 34, 0.27) 72%, rgba(7, 17, 34, 0.42) 100%),
    linear-gradient(180deg, rgba(7, 17, 34, 0.5) 0%, transparent 45%, rgba(7, 17, 34, 0.86) 100%);
}

.hero-grid {
  z-index: 2;
  opacity: 0.2;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px);
  background-size: 88px 88px;
  mask-image: linear-gradient(90deg, black, transparent 64%);
}

.hero-layout {
  position: relative;
  z-index: 5;
  width: min(1580px, 100%);
  min-height: max(900px, 100svh);
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(420px, 0.72fr);
  align-items: center;
  gap: clamp(40px, 6vw, 100px);
  margin: 0 auto;
  padding:
    calc(var(--banner-height) + var(--header-height) + 64px)
    var(--page-pad)
    140px;
}

.hero-copy {
  align-self: center;
  max-width: 820px;
}

.eyebrow {
  margin-bottom: 20px;
  color: var(--navy);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.eyebrow.light {
  color: var(--white);
}

.hero h1 {
  max-width: 880px;
  margin-bottom: 26px;
  font-size: clamp(55px, 5.7vw, 102px);
  font-weight: 430;
  letter-spacing: -0.065em;
  line-height: 0.91;
}

.hero h1 em,
.section-heading h2 em,
.parents-copy h2 em,
.film-copy h2 em,
.trust-heading h2 em,
.faq-intro h2 em,
.final-cta h2 em {
  color: var(--coral);
  font-family: "Vietlinker Serif", Georgia, serif;
  font-weight: 400;
}

.hero h1 em {
  display: inline;
  color: var(--sky);
}

.hero-lede {
  max-width: 650px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(16px, 1.25vw, 20px);
}

.hero-actions,
.final-actions {
  display: flex;
  align-items: center;
  gap: 28px;
}

.button {
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  padding: 0 24px;
  border: 0;
  font-size: 12px;
  font-weight: 850;
  cursor: pointer;
  transition:
    transform 220ms var(--ease),
    color 220ms var(--ease),
    background 220ms var(--ease),
    box-shadow 220ms var(--ease);
}

.button:hover {
  transform: translateY(-3px);
}

.button-coral {
  color: var(--navy);
  background: var(--coral);
  box-shadow: 0 12px 30px rgba(255, 114, 83, 0.22);
}

.button-coral:hover {
  background: var(--white);
}

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

.button-navy:hover {
  color: var(--navy);
  background: var(--coral);
}

.text-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding: 0 0 3px;
  background: transparent;
  border: 0;
  border-bottom: 1px solid currentColor;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}

.light-link {
  color: var(--white);
}

.hero-assurance {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 34px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 10px;
  letter-spacing: 0.06em;
}

.hero-assurance span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-assurance i {
  width: 18px;
  height: 18px;
  display: inline-grid;
  place-items: center;
  color: var(--navy);
  background: var(--sky);
  border-radius: 50%;
  font-size: 10px;
}

.estimate-card {
  position: relative;
  z-index: 5;
  width: min(100%, 520px);
  justify-self: end;
  padding: clamp(24px, 3vw, 40px);
  color: var(--ink);
  background: rgba(255, 253, 248, 0.97);
  box-shadow: 0 30px 80px rgba(2, 8, 20, 0.32);
  backdrop-filter: blur(10px);
}

.estimate-card::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  content: "";
  background: linear-gradient(var(--coral) 0 50%, var(--sky) 50% 100%);
}

.estimate-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
}

.estimate-head .eyebrow {
  margin-bottom: 7px;
  color: var(--muted);
  font-size: 8px;
}

.estimate-head h2 {
  margin: 0;
  font-family: "Vietlinker Serif", Georgia, serif;
  font-size: clamp(28px, 2.4vw, 40px);
  font-weight: 500;
  letter-spacing: -0.035em;
}

.live-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 9px;
  color: #194e3d;
  background: #dceee5;
  font-size: 7px;
  letter-spacing: 0.12em;
  white-space: nowrap;
}

.live-pill i {
  width: 6px;
  height: 6px;
  background: #2fa66f;
  border-radius: 50%;
  animation: status-pulse 1.8s infinite;
}

.trip-type {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  margin: 0 0 15px;
  padding: 4px;
  background: #e9e9e3;
  border: 0;
}

.trip-type label {
  cursor: pointer;
}

.trip-type input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.trip-type span {
  min-height: 38px;
  display: grid;
  place-items: center;
  padding: 5px 12px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
}

.trip-type input:checked + span {
  color: var(--navy);
  background: var(--white);
  box-shadow: 0 3px 10px rgba(7, 17, 34, 0.08);
}

.trip-type input:focus-visible + span {
  outline: 3px solid var(--coral);
  outline-offset: 2px;
}

.field-pair {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 34px 1fr;
  align-items: end;
  gap: 5px;
  margin-bottom: 12px;
}

.field-pair--even {
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.field {
  min-width: 0;
  display: grid;
  gap: 6px;
}

.field > span {
  color: var(--muted);
  font-size: 8px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.field select {
  width: 100%;
  height: 48px;
  padding: 0 31px 0 12px;
  color: var(--ink);
  background-color: var(--white);
  border: 1px solid var(--line);
  border-radius: 0;
  font-size: 12px;
  font-weight: 650;
  cursor: pointer;
}

.swap-button {
  width: 34px;
  height: 48px;
  padding: 0;
  color: var(--navy);
  background: var(--sky-bright);
  border: 1px solid var(--line);
  cursor: pointer;
  transition: transform 220ms var(--ease);
}

.swap-button:hover {
  transform: rotate(180deg);
}

.caregiver-choice {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 11px;
  align-items: center;
  margin: 17px 0;
  cursor: pointer;
}

.caregiver-choice input {
  position: absolute;
  opacity: 0;
}

.check-ui {
  position: relative;
  width: 20px;
  height: 20px;
  display: block;
  background: var(--white);
  border: 1px solid var(--line);
}

.caregiver-choice input:checked + .check-ui {
  background: var(--navy);
}

.caregiver-choice input:checked + .check-ui::after {
  position: absolute;
  top: 2px;
  left: 6px;
  width: 5px;
  height: 10px;
  content: "";
  border-right: 2px solid var(--white);
  border-bottom: 2px solid var(--white);
  transform: rotate(45deg);
}

.caregiver-choice input:focus-visible + .check-ui {
  outline: 3px solid var(--coral);
  outline-offset: 2px;
}

.caregiver-choice strong,
.caregiver-choice small {
  display: block;
}

.caregiver-choice strong {
  font-size: 11px;
}

.caregiver-choice small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 9px;
}

.estimate-result {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 10px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.estimate-result > div:last-child {
  padding-left: 18px;
  border-left: 1px solid var(--line);
}

.estimate-result span {
  display: block;
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 7px;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.estimate-result strong {
  display: block;
  font-family: "Vietlinker Serif", Georgia, serif;
  font-size: 22px;
  line-height: 1.1;
}

.caregiver-result {
  margin: 11px 0 0;
  padding: 10px 12px;
  color: var(--navy);
  background: var(--sky-bright);
  font-size: 10px;
}

.quote-button {
  width: 100%;
  margin-top: 15px;
}

.estimate-note {
  margin: 11px 0 0;
  color: var(--muted);
  font-size: 8px;
  line-height: 1.45;
}

.hero-route-chip {
  position: absolute;
  z-index: 4;
  top: 20%;
  right: 3%;
  width: 180px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.hero-route-chip span,
.hero-route-chip small {
  white-space: nowrap;
}

.hero-route-chip i {
  position: relative;
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.5);
}

.hero-route-chip i::after {
  position: absolute;
  top: -3px;
  right: 0;
  width: 7px;
  height: 7px;
  content: "";
  background: var(--coral);
  border-radius: 50%;
}

.hero-driver-chip {
  position: absolute;
  z-index: 4;
  right: 3%;
  bottom: 16%;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  color: var(--white);
  background: rgba(7, 17, 34, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(10px);
}

.driver-avatar,
.mini-avatar {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  background: var(--coral);
  border-radius: 50%;
  font-family: "Vietlinker Serif", Georgia, serif;
  font-size: 18px;
}

.hero-driver-chip small,
.hero-driver-chip strong {
  display: block;
}

.hero-driver-chip small {
  margin-bottom: 2px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 7px;
  letter-spacing: 0.12em;
}

.hero-driver-chip strong {
  font-size: 11px;
}

.hero-video-toggle {
  position: absolute;
  z-index: 7;
  bottom: 84px;
  left: var(--page-pad);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  color: var(--white);
  background: rgba(7, 17, 34, 0.44);
  border: 1px solid rgba(255, 255, 255, 0.35);
  font-size: 9px;
  font-weight: 800;
  cursor: pointer;
  backdrop-filter: blur(8px);
}

.hero-video-toggle > span:first-child {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  color: var(--navy);
  background: var(--white);
  border-radius: 50%;
  font-size: 8px;
}

.hero-flight-bar {
  position: absolute;
  z-index: 6;
  right: var(--page-pad);
  bottom: 0;
  left: var(--page-pad);
  height: 62px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  color: rgba(255, 255, 255, 0.78);
  border-top: 1px solid rgba(255, 255, 255, 0.23);
}

.hero-flight-bar div {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 8px;
  letter-spacing: 0.13em;
}

.hero-flight-bar div span {
  color: var(--coral);
}

.hero-flight-bar > i {
  width: 34px;
  height: 1px;
  background: rgba(255, 255, 255, 0.24);
}

.section-pad {
  padding: clamp(86px, 10vw, 160px) var(--page-pad);
}

.section-heading {
  width: min(1420px, 100%);
  margin: 0 auto clamp(52px, 6vw, 90px);
}

.section-heading h2,
.parents-copy h2,
.film-copy h2,
.trust-heading h2,
.faq-intro h2,
.final-cta h2 {
  margin-bottom: 0;
  font-family: "Vietlinker Sans", Arial, sans-serif;
  font-size: clamp(44px, 5.2vw, 88px);
  font-weight: 430;
  letter-spacing: -0.058em;
  line-height: 0.96;
}

.split-heading,
.journey-heading,
.stories-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.55fr);
  align-items: end;
  gap: clamp(40px, 8vw, 140px);
}

.split-heading > p,
.journey-heading > p,
.stories-heading > p {
  max-width: 470px;
  margin: 0 0 8px;
  color: var(--muted);
}

.journey {
  background: var(--cream);
}

.route-story {
  width: min(1480px, 100%);
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(380px, 0.65fr);
  gap: clamp(50px, 7vw, 120px);
  margin: 0 auto;
}

.route-sticky {
  position: sticky;
  top: calc(var(--banner-height) + var(--header-height) + 24px);
  height: calc(100svh - var(--banner-height) - var(--header-height) - 48px);
  min-height: 590px;
  align-self: start;
}

.route-map {
  position: relative;
  height: 100%;
  min-height: 590px;
  color: var(--white);
  background: var(--navy);
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(16, 27, 53, 0.17);
}

.map-grid {
  position: absolute;
  inset: 0;
  opacity: 0.24;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.14) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.14) 1px, transparent 1px);
  background-size: 62px 62px;
  transform: perspective(600px) rotateX(58deg) scale(1.4) translateY(-5%);
  transform-origin: center;
}

.map-water {
  position: absolute;
  right: -8%;
  bottom: -8%;
  width: 60%;
  height: 74%;
  background:
    repeating-linear-gradient(150deg, transparent 0 17px, rgba(200, 227, 236, 0.12) 18px 19px),
    rgba(60, 116, 145, 0.28);
  border-radius: 52% 0 0;
  transform: rotate(-8deg);
}

.map-road {
  position: absolute;
  height: 8px;
  background: rgba(255, 255, 255, 0.09);
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.map-road--one {
  top: 32%;
  left: -8%;
  width: 72%;
  transform: rotate(15deg);
}

.map-road--two {
  top: 62%;
  left: 25%;
  width: 90%;
  transform: rotate(-22deg);
}

.map-road--three {
  top: 18%;
  left: 42%;
  width: 60%;
  transform: rotate(67deg);
}

.route-line,
.route-line-progress {
  position: absolute;
  inset: 18% 21% 16% 22%;
  background: rgba(255, 255, 255, 0.25);
  clip-path: polygon(
    0 100%,
    2.7% 100%,
    26% 72%,
    48% 65%,
    70% 36%,
    100% 0,
    97% 0,
    68% 32%,
    46% 60%,
    24% 67%
  );
}

.route-line-progress {
  inset: 0;
  background: linear-gradient(180deg, var(--sky), var(--coral));
  transform: scaleY(0.08);
  transform-origin: bottom;
  transition: transform 900ms var(--ease);
}

.route-story[data-route-step="1"] .route-line-progress {
  transform: scaleY(0.38);
}

.route-story[data-route-step="2"] .route-line-progress {
  transform: scaleY(0.69);
}

.route-story[data-route-step="3"] .route-line-progress {
  transform: scaleY(1);
}

.route-node {
  position: absolute;
  z-index: 3;
  display: grid;
  color: rgba(255, 255, 255, 0.64);
  line-height: 1.1;
}

.route-node i {
  width: 14px;
  height: 14px;
  margin-bottom: 8px;
  background: var(--navy);
  border: 3px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.1);
  transition:
    background 500ms var(--ease),
    box-shadow 500ms var(--ease);
}

.route-node b {
  color: var(--white);
  font-size: 10px;
  letter-spacing: 0.12em;
}

.route-node small {
  margin-top: 3px;
  font-size: 8px;
}

.route-node--sea {
  bottom: 13%;
  left: 20%;
}

.route-node--meet {
  bottom: 37%;
  left: 39%;
}

.route-node--bridge {
  top: 38%;
  left: 59%;
}

.route-node--home {
  top: 12%;
  right: 15%;
}

.route-story[data-route-step="0"] .route-node--sea i,
.route-story[data-route-step="1"] .route-node--meet i,
.route-story[data-route-step="2"] .route-node--bridge i,
.route-story[data-route-step="3"] .route-node--home i {
  background: var(--coral);
  box-shadow: 0 0 0 8px rgba(255, 114, 83, 0.22);
}

.route-car {
  position: absolute;
  z-index: 5;
  bottom: 20%;
  left: 22%;
  width: 44px;
  height: 22px;
  background: var(--coral);
  border-radius: 9px 13px 5px 5px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.3);
  transition:
    left 900ms var(--ease),
    top 900ms var(--ease),
    bottom 900ms var(--ease),
    transform 900ms var(--ease);
}

.route-car::before {
  position: absolute;
  top: -9px;
  left: 11px;
  width: 25px;
  height: 12px;
  content: "";
  background: var(--sky);
  border: 3px solid var(--coral);
  border-radius: 10px 10px 0 0;
}

.route-car i,
.route-car b {
  position: absolute;
  bottom: -4px;
  width: 10px;
  height: 10px;
  background: var(--navy-deep);
  border: 2px solid var(--white);
  border-radius: 50%;
}

.route-car i {
  left: 7px;
}

.route-car b {
  right: 7px;
}

.route-story[data-route-step="1"] .route-car {
  bottom: 41%;
  left: 39%;
  transform: rotate(-16deg);
}

.route-story[data-route-step="2"] .route-car {
  bottom: auto;
  top: 40%;
  left: 58%;
  transform: rotate(-42deg);
}

.route-story[data-route-step="3"] .route-car {
  top: 17%;
  bottom: auto;
  left: 76%;
  transform: rotate(-38deg);
}

.map-status {
  position: absolute;
  right: 24px;
  bottom: 24px;
  left: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 18px;
  background: rgba(7, 17, 34, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(10px);
}

.map-status span {
  color: rgba(255, 255, 255, 0.48);
  font-size: 7px;
  font-weight: 850;
  letter-spacing: 0.15em;
}

.map-status strong {
  font-size: 12px;
  text-align: right;
}

.map-progress {
  position: absolute;
  top: 28px;
  left: 28px;
  display: grid;
  grid-template-columns: auto 1px auto;
  gap: 10px;
  align-items: center;
  font-size: 9px;
}

.map-progress > i {
  position: relative;
  width: 1px;
  height: 80px;
  display: block;
  background: rgba(255, 255, 255, 0.22);
}

.map-progress b {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 25%;
  display: block;
  background: var(--coral);
  transition: height 700ms var(--ease);
}

.route-chapters {
  display: grid;
}

.route-chapter {
  min-height: 80svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(44px, 7vw, 86px) 0;
  opacity: 0.24;
  transform: translateY(24px);
  transition:
    opacity 500ms var(--ease),
    transform 500ms var(--ease);
}

.route-chapter.is-active {
  opacity: 1;
  transform: translateY(0);
}

.chapter-number {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  margin-bottom: 36px;
  color: var(--navy);
  border: 1px solid var(--navy);
  border-radius: 50%;
  font-size: 9px;
  font-weight: 850;
}

.route-chapter .eyebrow {
  margin-bottom: 12px;
  color: var(--muted);
}

.route-chapter h3 {
  margin-bottom: 22px;
  font-family: "Vietlinker Serif", Georgia, serif;
  font-size: clamp(36px, 3.5vw, 58px);
  font-weight: 450;
  letter-spacing: -0.045em;
  line-height: 1;
}

.route-chapter > p:not(.eyebrow) {
  max-width: 560px;
  color: var(--muted);
  font-size: 16px;
}

.chapter-signal,
.message-bubble,
.arrival-card {
  width: min(100%, 440px);
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 22px;
  padding: 16px 18px;
  color: var(--navy);
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: 0 12px 30px rgba(16, 27, 53, 0.06);
}

.chapter-signal > span:first-child,
.arrival-card > span:first-child {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  color: var(--navy);
  background: var(--sky);
  border-radius: 50%;
}

.chapter-signal small,
.chapter-signal strong,
.arrival-card small,
.arrival-card strong {
  display: block;
}

.chapter-signal small,
.arrival-card small {
  color: var(--muted);
  font-size: 8px;
  letter-spacing: 0.1em;
}

.chapter-signal strong,
.arrival-card strong {
  margin-top: 3px;
  font-size: 12px;
}

.driver-signal .mini-avatar {
  flex: 0 0 auto;
  color: var(--navy);
}

.message-bubble {
  position: relative;
  display: block;
  color: var(--white);
  background: var(--navy);
}

.message-bubble::after {
  position: absolute;
  right: 24px;
  bottom: -10px;
  width: 20px;
  height: 20px;
  content: "";
  background: var(--navy);
  clip-path: polygon(0 0, 100% 0, 100% 100%);
}

.message-bubble small,
.message-bubble strong {
  display: block;
}

.message-bubble small {
  margin-bottom: 7px;
  color: var(--sky);
  font-size: 8px;
  letter-spacing: 0.11em;
}

.message-bubble strong {
  font-family: "Vietlinker Serif", Georgia, serif;
  font-size: 17px;
  font-weight: 450;
}

.arrival-card {
  background: var(--sky-bright);
}

.arrival-card > span:first-child {
  color: var(--white);
  background: #2f8b68;
}

.parents-story {
  min-height: 820px;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(420px, 0.92fr);
  background: var(--paper);
}

.parents-image {
  position: relative;
  min-height: 780px;
  overflow: hidden;
}

.parents-image::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 45%, rgba(7, 17, 34, 0.74));
  pointer-events: none;
}

.parents-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease);
}

.parents-story:hover .parents-image img {
  transform: scale(1.025);
}

.parents-image-note {
  position: absolute;
  z-index: 2;
  right: 36px;
  bottom: 36px;
  left: 36px;
  color: var(--white);
}

.parents-image-note span,
.parents-image-note strong {
  display: block;
}

.parents-image-note span {
  margin-bottom: 8px;
  font-size: 8px;
  font-weight: 850;
  letter-spacing: 0.16em;
}

.parents-image-note strong {
  max-width: 590px;
  font-family: "Vietlinker Serif", Georgia, serif;
  font-size: clamp(24px, 2.5vw, 43px);
  font-weight: 400;
  line-height: 1.08;
}

.parents-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(68px, 8vw, 130px);
}

.parents-copy h2 {
  font-size: clamp(44px, 4.5vw, 76px);
}

.parents-lede {
  max-width: 620px;
  margin: 34px 0 24px;
  color: var(--muted);
  font-size: 17px;
}

.care-list {
  display: grid;
  gap: 0;
  margin: 0 0 32px;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.care-list li {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.care-list > li > span {
  padding-top: 2px;
  color: var(--coral-dark);
  font-size: 9px;
  font-weight: 850;
}

.care-list strong,
.care-list p {
  display: block;
}

.care-list strong {
  margin-bottom: 3px;
  font-size: 13px;
}

.care-list p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.parents-copy .button {
  align-self: flex-start;
}

.story-disclosure {
  margin: 17px 0 0;
  color: var(--muted);
  font-size: 9px;
}

.fleet {
  background: var(--sky-bright);
}

.fleet-grid {
  width: min(1420px, 100%);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: 18px;
  margin: 0 auto;
}

.fleet-card {
  position: relative;
  display: grid;
  grid-template-rows: auto auto 1fr;
  min-height: 0;
  color: var(--navy);
  background: var(--paper);
  border: 1px solid rgba(16, 27, 53, 0.12);
  border-radius: 18px;
  overflow: hidden;
  transition:
    transform 350ms var(--ease),
    border-color 350ms var(--ease),
    box-shadow 350ms var(--ease);
}

.fleet-card:hover {
  border-color: rgba(16, 27, 53, 0.24);
  box-shadow: 0 24px 54px rgba(7, 17, 34, 0.13);
  transform: translateY(-6px);
}

.fleet-top {
  position: relative;
  z-index: 2;
  padding: 26px 26px 20px;
}

.fleet-top span,
.fleet-top strong {
  display: block;
}

.fleet-top span {
  margin-bottom: 10px;
  color: var(--coral-dark);
  font-size: 8px;
  font-weight: 850;
  letter-spacing: 0.16em;
}

.fleet-top strong {
  font-family: "Vietlinker Sans", Arial, sans-serif;
  font-size: clamp(25px, 2vw, 32px);
  font-weight: 680;
  letter-spacing: -0.035em;
  line-height: 1.08;
}

.fleet-media {
  aspect-ratio: 3 / 2;
  overflow: hidden;
  background: #dce8ec;
}

.fleet-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  transform: scale(1.002);
  transition: transform 600ms var(--ease);
}

.fleet-card:hover .fleet-media img {
  transform: scale(1.045);
}

.fleet-details {
  position: relative;
  z-index: 2;
  display: grid;
  align-content: start;
  padding: 22px 26px 26px;
}

.fleet-details > p {
  min-height: 3.3em;
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.fleet-specs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: auto 0 0;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.fleet-specs div {
  display: grid;
  gap: 2px;
}

.fleet-specs dt {
  grid-row: 2;
  color: var(--muted);
  font-size: 8px;
  font-weight: 850;
  letter-spacing: 0.14em;
}

.fleet-specs dd {
  grid-row: 1;
  margin: 0;
  font-family: "Vietlinker Sans", Arial, sans-serif;
  font-size: 27px;
  font-weight: 720;
  letter-spacing: -0.04em;
}

.fleet-note {
  width: min(1420px, 100%);
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.55;
  text-align: right;
}

.film-story {
  display: grid;
  grid-template-columns: minmax(340px, 0.75fr) minmax(0, 1.25fr);
  color: var(--white);
  background: var(--navy-deep);
}

.film-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(70px, 8vw, 130px) var(--page-pad);
}

.film-copy h2 {
  font-size: clamp(44px, 4.3vw, 72px);
}

.film-copy > p:not(.eyebrow) {
  max-width: 560px;
  margin: 32px 0;
  color: rgba(255, 255, 255, 0.65);
}

.film-meta {
  display: flex;
  gap: 34px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.film-meta span {
  display: grid;
}

.film-meta b {
  font-family: "Vietlinker Serif", Georgia, serif;
  font-size: 24px;
  font-weight: 450;
}

.film-meta small {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.47);
  font-size: 7px;
  letter-spacing: 0.14em;
}

.film-frame {
  position: relative;
  min-height: 720px;
  overflow: hidden;
}

.film-frame::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(7, 17, 34, 0.44), rgba(7, 17, 34, 0.06));
  pointer-events: none;
  transition: opacity 400ms var(--ease);
}

.film-frame.is-playing::after {
  opacity: 0;
}

.film-frame video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.film-play {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  display: grid;
  justify-items: center;
  gap: 15px;
  color: var(--white);
  background: transparent;
  border: 0;
  transform: translate(-50%, -50%);
  cursor: pointer;
}

.film-play > span {
  width: 92px;
  height: 92px;
  display: grid;
  place-items: center;
  padding-left: 5px;
  background: rgba(255, 114, 83, 0.92);
  border-radius: 50%;
  box-shadow: 0 0 0 12px rgba(255, 255, 255, 0.12);
  transition:
    color 220ms var(--ease),
    background 220ms var(--ease),
    transform 220ms var(--ease);
}

.film-play:hover > span {
  color: var(--navy);
  background: var(--white);
  transform: scale(1.06);
}

.film-play strong {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.film-frame.is-playing .film-play strong {
  opacity: 0;
}

.film-frame.is-playing .film-play {
  top: auto;
  right: 18px;
  bottom: 18px;
  left: auto;
  transform: none;
}

.film-frame.is-playing .film-play > span {
  width: 48px;
  height: 48px;
  font-size: 10px;
  box-shadow: none;
}

.film-corner {
  position: absolute;
  z-index: 2;
  width: 70px;
  height: 70px;
  pointer-events: none;
}

.film-corner--top {
  top: 22px;
  right: 22px;
  border-top: 1px solid var(--white);
  border-right: 1px solid var(--white);
}

.film-corner--bottom {
  bottom: 22px;
  left: 22px;
  border-bottom: 1px solid var(--white);
  border-left: 1px solid var(--white);
}

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

.trust-heading {
  width: min(1420px, 100%);
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.5fr);
  align-items: end;
  gap: 70px;
  margin: 0 auto 70px;
}

.trust-heading .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -42px;
}

.trust-heading h2 {
  font-size: clamp(44px, 5vw, 82px);
}

.trust-heading > p:last-child {
  margin: 0 0 8px;
  color: rgba(255, 255, 255, 0.58);
}

.trust-grid {
  width: min(1420px, 100%);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0 auto;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.trust-grid article {
  position: relative;
  min-height: 370px;
  display: flex;
  flex-direction: column;
  padding: 26px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.trust-grid article > span:first-child {
  color: rgba(255, 255, 255, 0.42);
  font-size: 9px;
}

.trust-icon {
  width: 66px;
  height: 66px;
  display: grid;
  place-items: center;
  margin: 50px 0 34px;
  color: var(--navy);
  background: var(--sky);
  border-radius: 50%;
  font-family: "Vietlinker Serif", Georgia, serif;
  font-size: 17px;
}

.trust-grid h3 {
  margin-bottom: 12px;
  font-family: "Vietlinker Serif", Georgia, serif;
  font-size: 24px;
  font-weight: 450;
}

.trust-grid p {
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
}

.trust-grid small {
  margin-top: auto;
  color: var(--sky);
  font-size: 7px;
  font-weight: 850;
  letter-spacing: 0.14em;
}

.trust-grid .trust-pricing {
  color: var(--navy);
  background: var(--coral);
}

.trust-pricing .trust-icon {
  color: var(--white);
  background: var(--navy);
}

.trust-grid .trust-pricing p {
  color: rgba(16, 27, 53, 0.72);
}

.trust-grid .trust-pricing small {
  color: var(--navy);
}

.compliance-note {
  width: min(1420px, 100%);
  margin: 18px auto 0;
  color: rgba(255, 255, 255, 0.45);
  font-size: 9px;
  text-align: right;
}

.stories {
  background: var(--paper);
}

.reviews-grid {
  width: min(1420px, 100%);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0 auto;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.reviews-grid article {
  min-height: 430px;
  display: flex;
  flex-direction: column;
  padding: clamp(26px, 3.2vw, 48px);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition:
    color 300ms var(--ease),
    background 300ms var(--ease);
}

.reviews-grid article:hover {
  color: var(--white);
  background: var(--navy);
}

.review-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--coral-dark);
}

.review-top span {
  font-family: "Vietlinker Serif", Georgia, serif;
  font-size: 28px;
}

.review-top b {
  font-size: 10px;
  letter-spacing: 0.14em;
}

.reviews-grid blockquote {
  margin: 60px 0 40px;
  font-family: "Vietlinker Serif", Georgia, serif;
  font-size: clamp(23px, 2.2vw, 34px);
  font-weight: 420;
  letter-spacing: -0.025em;
  line-height: 1.2;
}

.reviews-grid footer {
  display: grid;
  gap: 5px;
  margin-top: auto;
}

.reviews-grid footer strong {
  font-size: 11px;
}

.reviews-grid footer small {
  color: var(--muted);
  font-size: 7px;
  font-weight: 850;
  letter-spacing: 0.14em;
}

.reviews-grid article:hover footer small {
  color: var(--sky);
}

.faq {
  width: min(1420px, 100%);
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(60px, 10vw, 160px);
  margin: 0 auto;
  background: var(--cream);
}

.faq-intro {
  align-self: start;
  position: sticky;
  top: calc(var(--banner-height) + var(--header-height) + 38px);
}

.faq-intro h2 {
  font-size: clamp(43px, 4vw, 68px);
}

.faq-intro > p:last-child {
  max-width: 500px;
  margin: 30px 0 0;
  color: var(--muted);
}

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

.faq-list article {
  border-bottom: 1px solid var(--line);
}

.faq-list h3 {
  margin: 0;
}

.faq-list button {
  width: 100%;
  min-height: 94px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 20px 0;
  background: transparent;
  border: 0;
  font-family: "Vietlinker Serif", Georgia, serif;
  font-size: clamp(21px, 2vw, 30px);
  text-align: left;
  cursor: pointer;
}

.faq-list button b {
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  font-family: "Vietlinker Sans", Arial, sans-serif;
  font-size: 17px;
  font-weight: 400;
}

.faq-panel {
  max-width: 680px;
  padding: 0 52px 28px 0;
  color: var(--muted);
}

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

.final-cta {
  position: relative;
  min-height: 580px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 40px;
  padding: clamp(90px, 11vw, 170px) var(--page-pad);
  color: var(--white);
  background:
    radial-gradient(circle at 80% 10%, rgba(76, 127, 151, 0.55), transparent 37%),
    var(--navy-deep);
  overflow: hidden;
}

.final-cta > div:not(.final-route) {
  position: relative;
  z-index: 2;
}

.final-cta h2 {
  font-size: clamp(55px, 7vw, 120px);
}

.final-route {
  position: absolute;
  top: 12%;
  right: 5%;
  width: 45%;
  height: 55%;
  opacity: 0.26;
}

.final-route::before {
  position: absolute;
  inset: 0;
  content: "";
  border: 2px dashed var(--sky);
  border-left: 0;
  border-radius: 0 55% 55% 0;
  transform: rotate(-12deg);
}

.final-route i,
.final-route b,
.final-route span {
  position: absolute;
  width: 13px;
  height: 13px;
  background: var(--coral);
  border: 3px solid var(--white);
  border-radius: 50%;
}

.final-route i {
  bottom: -2px;
  left: 0;
}

.final-route b {
  top: 46%;
  right: -5px;
}

.final-route span {
  top: -5px;
  left: 22%;
}

.final-actions {
  align-self: end;
  justify-self: end;
  padding-bottom: 14px;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, minmax(150px, 0.65fr));
  gap: 40px;
  padding: 72px var(--page-pad) 32px;
  color: var(--white);
  background: #050c18;
}

.brand--footer {
  color: var(--white);
}

.footer-brand > p {
  max-width: 320px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 12px;
}

.footer-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  font-size: 11px;
}

.footer-column > span {
  margin-bottom: 11px;
  color: var(--sky);
  font-size: 8px;
  font-weight: 850;
  letter-spacing: 0.15em;
}

.footer-column p {
  margin: 0;
  color: rgba(255, 255, 255, 0.52);
}

.footer-column:last-of-type p {
  max-width: 290px;
}

.footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 34px;
  padding-top: 24px;
  color: rgba(255, 255, 255, 0.36);
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  font-size: 8px;
  letter-spacing: 0.1em;
}

.demo-dialog {
  width: min(520px, calc(100% - 32px));
  padding: 48px;
  color: var(--ink);
  background: var(--paper);
  border: 0;
  box-shadow: 0 28px 90px rgba(7, 17, 34, 0.45);
}

.demo-dialog::backdrop {
  background: rgba(7, 17, 34, 0.78);
  backdrop-filter: blur(6px);
}

.dialog-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: 1px solid var(--line);
  font-size: 23px;
  cursor: pointer;
}

.dialog-icon {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  margin-bottom: 32px;
  color: var(--navy);
  background: var(--coral);
  border-radius: 50%;
  font-size: 24px;
}

.demo-dialog .eyebrow {
  margin-bottom: 9px;
}

.demo-dialog h2 {
  margin-bottom: 18px;
  font-family: "Vietlinker Serif", Georgia, serif;
  font-size: clamp(30px, 5vw, 44px);
  font-weight: 450;
  line-height: 1.05;
}

.demo-dialog p:not(.eyebrow) {
  color: var(--muted);
}

.demo-dialog .button {
  margin-top: 10px;
}

.mobile-sticky {
  display: none;
}

@keyframes status-pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(47, 166, 111, 0.45);
  }
  50% {
    box-shadow: 0 0 0 5px rgba(47, 166, 111, 0);
  }
}

@media (max-width: 1240px) {
  .desktop-nav {
    gap: 18px;
  }

  .desktop-nav a {
    font-size: 11px;
  }

  .hero-layout {
    grid-template-columns: minmax(0, 1fr) minmax(390px, 0.68fr);
    gap: 34px;
  }

  .hero h1 {
    font-size: clamp(54px, 6.1vw, 76px);
  }

  .hero-route-chip,
  .hero-driver-chip {
    display: none;
  }

  .parents-copy {
    padding: clamp(56px, 6vw, 86px);
  }
}

@media (max-width: 1060px) {
  :root {
    --header-height: 72px;
  }

  .desktop-nav,
  .header-cta {
    display: none;
  }

  .header-actions {
    margin-left: auto;
  }

  .menu-button {
    display: block;
  }

  .hero {
    min-height: auto;
  }

  .hero-layout {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 52px;
    padding-top: calc(var(--banner-height) + var(--header-height) + 94px);
    padding-bottom: 150px;
  }

  .hero-copy {
    max-width: 760px;
  }

  .hero h1 {
    font-size: clamp(64px, 9vw, 94px);
  }

  .estimate-card {
    width: min(100%, 700px);
    justify-self: start;
  }

  .hero-shade {
    background:
      linear-gradient(180deg, rgba(7, 17, 34, 0.8), rgba(7, 17, 34, 0.56) 46%, rgba(7, 17, 34, 0.9)),
      linear-gradient(90deg, rgba(7, 17, 34, 0.7), transparent);
  }

  .hero-video-toggle {
    bottom: 80px;
  }

  .route-story {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
    gap: 40px;
  }

  .route-sticky {
    min-height: 520px;
  }

  .route-map {
    min-height: 520px;
  }

  .parents-story {
    grid-template-columns: 1fr;
  }

  .parents-image {
    min-height: 65svh;
  }

  .film-story {
    grid-template-columns: 1fr;
  }

  .film-copy {
    min-height: 580px;
  }

  .film-frame {
    min-height: 62svh;
  }

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

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

  .reviews-grid article {
    min-height: 330px;
  }

  .reviews-grid blockquote {
    margin: 40px 0;
  }

  .site-footer {
    grid-template-columns: 1.2fr repeat(2, 0.8fr);
  }

  .site-footer .footer-column:last-of-type {
    grid-column: 2 / -1;
  }
}

@media (max-width: 780px) {
  :root {
    --banner-height: 31px;
    --header-height: 66px;
  }

  .demo-banner {
    gap: 8px;
    font-size: 7px;
    letter-spacing: 0.11em;
  }

  .demo-credit {
    display: none;
  }

  .site-header {
    padding-right: 14px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .brand-mark::before {
    top: 17px;
    left: 7px;
    width: 23px;
  }

  .brand-mark i:nth-child(1) {
    top: 23px;
    left: 6px;
  }

  .brand-mark i:nth-child(2) {
    top: 15px;
    left: 16px;
  }

  .brand-mark i:nth-child(3) {
    top: 7px;
    left: 27px;
  }

  .brand-type strong {
    font-size: 15px;
  }

  .brand-type small {
    font-size: 6px;
  }

  .language-switch {
    display: none;
  }

  .hero-layout {
    gap: 42px;
    padding-top: calc(var(--banner-height) + var(--header-height) + 66px);
    padding-bottom: 148px;
  }

  .hero h1 {
    font-size: clamp(49px, 14.5vw, 72px);
    line-height: 0.93;
  }

  .hero-lede {
    font-size: 15px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 15px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-actions .text-link {
    align-self: flex-start;
  }

  .hero-assurance {
    display: grid;
    gap: 10px;
  }

  .estimate-card {
    padding: 25px 20px;
  }

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

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

  .estimate-result strong {
    font-size: 19px;
  }

  .hero-flight-bar {
    justify-content: flex-start;
    gap: 8px;
    overflow: hidden;
  }

  .hero-flight-bar > i {
    width: 12px;
  }

  .hero-flight-bar div {
    font-size: 6px;
  }

  .hero-video-toggle {
    bottom: 77px;
  }

  .section-pad {
    padding-top: 84px;
    padding-bottom: 84px;
  }

  .split-heading,
  .journey-heading,
  .stories-heading {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .section-heading h2,
  .parents-copy h2,
  .film-copy h2,
  .trust-heading h2,
  .faq-intro h2 {
    font-size: clamp(43px, 12vw, 62px);
  }

  .route-story {
    display: block;
  }

  .route-sticky {
    top: calc(var(--banner-height) + var(--header-height));
    height: 54svh;
    min-height: 390px;
    z-index: 0;
  }

  .route-map {
    height: 100%;
    min-height: 390px;
  }

  .map-status {
    right: 14px;
    bottom: 14px;
    left: 14px;
    padding: 12px;
  }

  .map-status strong {
    font-size: 10px;
  }

  .map-progress {
    top: 18px;
    left: 18px;
  }

  .route-chapters {
    position: relative;
    z-index: 3;
    margin-top: -35px;
  }

  .route-chapter {
    min-height: 76svh;
    justify-content: flex-end;
    margin-bottom: 16px;
    padding: 58px 22px 34px;
    background: linear-gradient(180deg, rgba(244, 241, 233, 0.88), var(--cream) 25%);
    opacity: 0.55;
  }

  .route-chapter.is-active {
    opacity: 1;
  }

  .chapter-number {
    margin-bottom: 24px;
  }

  .route-chapter h3 {
    font-size: clamp(35px, 10vw, 49px);
  }

  .parents-image {
    min-height: 64svh;
  }

  .parents-image-note {
    right: 22px;
    bottom: 22px;
    left: 22px;
  }

  .parents-copy {
    padding: 76px var(--page-pad);
  }

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

  .fleet-card {
    min-height: 0;
    border-right: 1px solid rgba(16, 27, 53, 0.12);
  }

  .film-copy {
    min-height: auto;
  }

  .film-frame {
    min-height: 56svh;
  }

  .film-play > span {
    width: 72px;
    height: 72px;
  }

  .trust-heading {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .trust-heading .eyebrow {
    grid-column: auto;
    margin-bottom: -5px;
  }

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

  .trust-grid article {
    min-height: 300px;
  }

  .trust-icon {
    margin: 34px 0 24px;
  }

  .compliance-note,
  .fleet-note {
    text-align: left;
  }

  .reviews-grid article {
    min-height: 390px;
  }

  .faq {
    grid-template-columns: 1fr;
    gap: 58px;
  }

  .faq-intro {
    position: static;
  }

  .faq-list button {
    min-height: 82px;
    font-size: 21px;
  }

  .final-cta {
    min-height: 620px;
    grid-template-columns: 1fr;
    align-items: end;
  }

  .final-cta h2 {
    font-size: clamp(55px, 16vw, 86px);
  }

  .final-actions {
    width: 100%;
    align-items: stretch;
    flex-direction: column;
    justify-self: stretch;
  }

  .final-actions .button {
    width: 100%;
  }

  .final-actions .text-link {
    align-self: flex-start;
  }

  .site-footer {
    grid-template-columns: 1fr 1fr;
    padding-bottom: 96px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .site-footer .footer-column:last-of-type {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .demo-dialog {
    padding: 38px 24px 28px;
  }

  .mobile-sticky {
    position: fixed;
    z-index: 1250;
    right: 0;
    bottom: 0;
    left: 0;
    height: 64px;
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    padding: 6px;
    background: var(--paper);
    border-top: 1px solid var(--line);
    box-shadow: 0 -12px 30px rgba(7, 17, 34, 0.14);
  }

  .mobile-sticky button,
  .mobile-sticky a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    background: transparent;
    border: 0;
    font-size: 11px;
    cursor: pointer;
  }

  .mobile-sticky a {
    color: var(--white);
    background: var(--navy);
  }

  .mobile-sticky span {
    color: var(--coral);
  }
}

@media (max-width: 480px) {
  .demo-banner {
    padding-right: 12px;
    padding-left: 12px;
  }

  .hero h1 {
    letter-spacing: -0.07em;
  }

  .estimate-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 9px;
  }

  .live-pill {
    position: absolute;
    top: 22px;
    right: 18px;
  }

  .field-pair:not(.field-pair--even) {
    grid-template-columns: 1fr;
  }

  .field-pair:not(.field-pair--even) .swap-button {
    width: 100%;
    height: 32px;
  }

  .estimate-result {
    grid-template-columns: 1fr;
    gap: 13px;
  }

  .estimate-result > div:last-child {
    padding: 13px 0 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .hero-flight-bar div:last-child,
  .hero-flight-bar > i:last-of-type {
    display: none;
  }

  .map-status span {
    display: none;
  }

  .film-meta {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

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

  .footer-brand,
  .site-footer .footer-column:last-of-type {
    grid-column: auto;
  }
}

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

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

  .hero-film {
    display: none;
  }

  .route-sticky,
  .faq-intro {
    position: relative;
    top: auto;
    height: auto;
  }

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

  .route-map {
    height: 520px;
  }

  .route-chapter {
    min-height: auto;
    padding: 52px 0;
    opacity: 1;
    transform: none;
  }
}

@media (forced-colors: active) {
  .hero-shade,
  .hero-grid,
  .map-grid,
  .map-water {
    display: none;
  }

  .button,
  .header-cta,
  .mobile-sticky a {
    border: 2px solid currentColor;
  }
}

/* Professional service refresh — VIỆT MỸ AIRPORT SHUTTLE */

:root {
  --navy: #0b2035;
  --navy-deep: #061523;
  --navy-soft: #294159;
  --coral: #f2775c;
  --coral-dark: #d95d44;
  --sky: #c9e7ee;
  --sky-bright: #edf7f8;
  --cream: #f7f5ef;
  --paper: #fffefa;
  --sand: #e9dfd0;
  --ink: #122337;
  --muted: #617080;
  --line: rgba(11, 32, 53, 0.14);
  --banner-height: 32px;
  --header-height: 74px;
  --page-pad: clamp(22px, 4.2vw, 72px);
}

body {
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
}

.demo-banner {
  height: var(--banner-height);
  gap: 9px;
  background: var(--sky);
  color: var(--navy);
  font-size: 8px;
  letter-spacing: 0.14em;
}

.demo-dot {
  background: var(--coral);
}

.site-header {
  height: var(--header-height);
  background: rgba(6, 21, 35, 0.2);
  border-bottom-color: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
}

.site-header::before {
  background: linear-gradient(180deg, rgba(6, 21, 35, 0.7), rgba(6, 21, 35, 0));
}

.site-header.is-scrolled,
.site-header.menu-active {
  color: var(--navy);
  background: rgba(255, 254, 250, 0.96);
  border-color: var(--line);
}

.brand {
  gap: 10px;
}

.brand-mark {
  width: 40px;
  height: 40px;
}

.brand-mark::before {
  top: 18px;
  left: 7px;
  width: 25px;
}

.brand-mark i:nth-child(1) {
  top: 25px;
  left: 6px;
}

.brand-mark i:nth-child(2) {
  top: 16px;
  left: 17px;
}

.brand-mark i:nth-child(3) {
  top: 7px;
  left: 28px;
}

.brand-type strong {
  font-family: "Vietlinker Sans", Arial, sans-serif;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.brand-type small {
  margin-top: 4px;
  font-size: 7px;
  letter-spacing: 0.22em;
}

.desktop-nav {
  gap: clamp(17px, 2vw, 32px);
  font-size: 11px;
}

.header-actions {
  gap: 12px;
}

.header-cta {
  min-height: 44px;
  padding: 0 18px;
  border-radius: 7px;
}

.hero {
  min-height: max(780px, 100svh);
  background: var(--navy-deep);
}

.hero-shade {
  background:
    linear-gradient(
      90deg,
      rgba(6, 21, 35, 0.94) 0%,
      rgba(6, 21, 35, 0.8) 39%,
      rgba(6, 21, 35, 0.34) 72%,
      rgba(6, 21, 35, 0.56) 100%
    ),
    linear-gradient(180deg, rgba(6, 21, 35, 0.32), transparent 48%, rgba(6, 21, 35, 0.8));
}

.hero-grid,
.hero-route-chip,
.hero-driver-chip {
  display: none;
}

.hero-layout {
  width: min(1480px, 100%);
  min-height: max(780px, 100svh);
  grid-template-columns: minmax(0, 1fr) minmax(440px, 0.72fr);
  gap: clamp(50px, 6vw, 94px);
  padding-top: calc(var(--banner-height) + var(--header-height) + 54px);
  padding-bottom: 104px;
}

.hero-copy {
  max-width: 720px;
}

.eyebrow {
  margin-bottom: 15px;
  font-size: 9px;
  letter-spacing: 0.17em;
}

.hero h1 {
  max-width: 720px;
  margin-bottom: 24px;
  font-size: clamp(54px, 5.2vw, 78px);
  font-weight: 560;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.hero h1 em,
.section-heading h2 em,
.parents-copy h2 em,
.film-copy h2 em,
.trust-heading h2 em,
.faq-intro h2 em,
.final-cta h2 em {
  font-family: "Vietlinker Sans", Arial, sans-serif;
  font-style: normal;
  font-weight: 650;
  letter-spacing: -0.045em;
}

.hero h1 em {
  color: var(--sky);
}

.hero-lede {
  max-width: 610px;
  margin-bottom: 27px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(15px, 1.15vw, 18px);
  line-height: 1.65;
}

.hero-actions {
  gap: 22px;
}

.button {
  min-height: 52px;
  gap: 24px;
  padding: 0 22px;
  border-radius: 8px;
  box-shadow: none;
}

.button-coral {
  background: var(--coral);
}

.text-link {
  min-height: 42px;
  font-size: 12px;
}

.hero-assurance {
  gap: 18px;
  margin-top: 27px;
  font-size: 9px;
}

.hero-assurance i {
  background: var(--sky);
}

.estimate-card {
  width: min(100%, 510px);
  padding: clamp(25px, 2.6vw, 35px);
  border: 1px solid rgba(255, 255, 255, 0.56);
  border-radius: 16px;
  box-shadow: 0 26px 70px rgba(2, 11, 20, 0.28);
}

.estimate-card::before {
  top: 0;
  left: 28px;
  width: 78px;
  height: 4px;
  background: var(--coral);
  border-radius: 0 0 4px 4px;
}

.estimate-head {
  margin-bottom: 20px;
}

.estimate-head h2 {
  font-family: "Vietlinker Sans", Arial, sans-serif;
  font-size: clamp(25px, 2.2vw, 34px);
  font-weight: 680;
}

.live-pill {
  border-radius: 999px;
}

.trip-type,
.field select,
.swap-button,
.check-ui {
  border-radius: 7px;
}

.trip-type {
  background: #ebeee9;
}

.trip-type span {
  border-radius: 5px;
}

.field select {
  height: 46px;
  border-color: rgba(11, 32, 53, 0.18);
}

.swap-button {
  height: 46px;
}

.estimate-result {
  padding: 14px 0;
}

.estimate-result strong {
  font-family: "Vietlinker Sans", Arial, sans-serif;
  font-size: 20px;
  font-weight: 750;
}

.caregiver-result {
  border-radius: 7px;
}

.quote-button {
  margin-top: 14px;
}

.estimate-note {
  font-size: 8px;
  line-height: 1.55;
}

.hero-video-toggle {
  bottom: 72px;
  padding: 7px 10px;
  border-radius: 999px;
}

.hero-flight-bar {
  height: 54px;
  font-size: 7px;
}

.section-pad {
  padding-top: clamp(86px, 8vw, 124px);
  padding-bottom: clamp(86px, 8vw, 124px);
}

.section-heading {
  width: min(1320px, 100%);
  margin-bottom: clamp(44px, 5vw, 70px);
}

.section-heading h2,
.parents-copy h2,
.film-copy h2,
.trust-heading h2,
.faq-intro h2,
.final-cta h2 {
  font-size: clamp(40px, 4.4vw, 66px);
  font-weight: 570;
  letter-spacing: -0.052em;
  line-height: 1.02;
}

.split-heading,
.journey-heading,
.stories-heading {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.46fr);
  gap: clamp(38px, 7vw, 105px);
}

.split-heading > p,
.journey-heading > p,
.stories-heading > p {
  font-size: 14px;
  line-height: 1.7;
}

.route-story {
  width: min(1320px, 100%);
  grid-template-columns: minmax(0, 1.06fr) minmax(360px, 0.6fr);
  gap: clamp(46px, 6vw, 88px);
}

.route-sticky {
  top: calc(var(--banner-height) + var(--header-height) + 20px);
  height: calc(100svh - var(--banner-height) - var(--header-height) - 40px);
  min-height: 540px;
}

.route-map {
  min-height: 540px;
  border-radius: 18px;
  background: #102a42;
  box-shadow: 0 24px 60px rgba(11, 32, 53, 0.16);
}

.route-chapter {
  min-height: 70svh;
  padding: 56px 0;
}

.chapter-number {
  width: 42px;
  height: 42px;
  margin-bottom: 27px;
}

.route-chapter h3 {
  margin-bottom: 17px;
  font-family: "Vietlinker Sans", Arial, sans-serif;
  font-size: clamp(30px, 3vw, 44px);
  font-weight: 650;
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.route-chapter > p:not(.eyebrow) {
  font-size: 14px;
  line-height: 1.7;
}

.chapter-signal,
.message-bubble,
.arrival-card {
  border-radius: 10px;
  box-shadow: 0 10px 26px rgba(11, 32, 53, 0.05);
}

.parents-story {
  width: min(1440px, calc(100% - (var(--page-pad) * 2)));
  min-height: 680px;
  grid-template-columns: minmax(0, 1fr) minmax(410px, 0.94fr);
  margin: 0 auto clamp(84px, 8vw, 124px);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 18px 60px rgba(11, 32, 53, 0.08);
}

.parents-image {
  min-height: 680px;
}

.parents-image-note strong {
  max-width: 540px;
  font-family: "Vietlinker Sans", Arial, sans-serif;
  font-size: clamp(24px, 2.2vw, 34px);
  font-weight: 620;
}

.parents-copy {
  padding: clamp(54px, 6vw, 88px);
}

.parents-copy h2 {
  font-size: clamp(40px, 4vw, 60px);
}

.parents-lede {
  margin-top: 27px;
  font-size: 15px;
  line-height: 1.7;
}

.care-list li {
  padding: 15px 0;
}

.fleet {
  background: var(--sky-bright);
}

.fleet-grid {
  width: min(1320px, 100%);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  border: 0;
}

.fleet-card {
  min-height: 0;
  padding: 0;
  border: 1px solid rgba(11, 32, 53, 0.1);
  border-radius: 18px;
  background: var(--paper);
}

.fleet-card:last-child {
  border-right: 1px solid rgba(11, 32, 53, 0.1);
}

.fleet-top strong {
  font-family: "Vietlinker Sans", Arial, sans-serif;
  font-size: clamp(24px, 2vw, 31px);
  font-weight: 680;
}

.fleet-details > p {
  font-size: 13px;
}

.film-story {
  grid-template-columns: minmax(360px, 0.7fr) minmax(0, 1.3fr);
  background: var(--navy-deep);
}

.film-copy {
  padding: clamp(66px, 7vw, 104px) var(--page-pad);
}

.film-copy h2 {
  font-size: clamp(40px, 4vw, 60px);
}

.film-copy > p:not(.eyebrow) {
  margin: 26px 0;
  font-size: 14px;
}

.film-frame {
  min-height: 620px;
}

.film-play > span {
  width: 76px;
  height: 76px;
}

.trust {
  background: #0d263d;
}

.trust-heading {
  width: min(1320px, 100%);
  gap: 60px;
  margin-bottom: 54px;
}

.trust-heading h2 {
  font-size: clamp(40px, 4.4vw, 64px);
}

.trust-grid {
  width: min(1320px, 100%);
  gap: 12px;
  border: 0;
}

.trust-grid article {
  min-height: 320px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
}

.trust-icon {
  width: 56px;
  height: 56px;
  margin: 36px 0 26px;
  font-family: "Vietlinker Sans", Arial, sans-serif;
  font-size: 14px;
  font-weight: 800;
}

.trust-grid h3 {
  font-family: "Vietlinker Sans", Arial, sans-serif;
  font-size: 20px;
  font-weight: 680;
}

.trust-grid .trust-pricing {
  background: var(--coral);
  border-color: var(--coral);
}

.stories {
  background: var(--paper);
}

.reviews-grid {
  width: min(1320px, 100%);
  gap: 16px;
  border: 0;
}

.reviews-grid article {
  min-height: 350px;
  padding: clamp(25px, 2.8vw, 38px);
  border: 1px solid var(--line);
  border-radius: 14px;
}

.reviews-grid blockquote {
  margin: 42px 0 32px;
  font-family: "Vietlinker Sans", Arial, sans-serif;
  font-size: clamp(20px, 1.8vw, 27px);
  font-weight: 520;
  line-height: 1.35;
}

.faq {
  width: min(1320px, 100%);
  gap: clamp(56px, 8vw, 116px);
}

.faq-intro h2 {
  font-size: clamp(40px, 3.8vw, 58px);
}

.faq-list button {
  min-height: 84px;
  font-family: "Vietlinker Sans", Arial, sans-serif;
  font-size: clamp(18px, 1.65vw, 24px);
  font-weight: 650;
}

.final-cta {
  min-height: 500px;
}

.final-cta h2 {
  font-size: clamp(52px, 6vw, 86px);
}

.site-footer {
  grid-template-columns: 1.2fr repeat(3, minmax(150px, 0.65fr));
}

.demo-dialog {
  border-radius: 16px;
}

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

  .header-cta {
    display: none;
  }

  .menu-button {
    display: block;
  }

  .hero-layout {
    grid-template-columns: minmax(0, 1fr) minmax(400px, 0.72fr);
    gap: 34px;
  }

  .hero h1 {
    font-size: clamp(52px, 6vw, 68px);
  }
}

@media (max-width: 920px) {
  .hero,
  .hero-layout {
    min-height: auto;
  }

  .hero-layout {
    grid-template-columns: 1fr;
    gap: 36px;
    padding-top: calc(var(--banner-height) + var(--header-height) + 74px);
    padding-bottom: 126px;
  }

  .hero-copy {
    max-width: 680px;
  }

  .estimate-card {
    width: min(100%, 650px);
    justify-self: start;
  }

  .hero-shade {
    background:
      linear-gradient(180deg, rgba(6, 21, 35, 0.82), rgba(6, 21, 35, 0.5) 42%, rgba(6, 21, 35, 0.92)),
      linear-gradient(90deg, rgba(6, 21, 35, 0.62), transparent);
  }

  .route-story {
    grid-template-columns: minmax(0, 1fr) minmax(310px, 0.66fr);
  }

  .parents-story {
    width: min(100% - 40px, 760px);
    grid-template-columns: 1fr;
  }

  .parents-image {
    min-height: 520px;
  }

  .film-story {
    grid-template-columns: 1fr;
  }

  .film-copy {
    min-height: auto;
  }

  .film-frame {
    min-height: 56svh;
  }

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

@media (max-width: 780px) {
  :root {
    --banner-height: 30px;
    --header-height: 64px;
    --page-pad: 17px;
  }

  .demo-banner {
    padding: 0 12px;
    font-size: 6.5px;
    letter-spacing: 0.09em;
  }

  .demo-credit {
    display: none;
  }

  .site-header {
    padding: 0 12px 0 16px;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
  }

  .brand-mark::before {
    top: 15px;
    left: 6px;
    width: 21px;
  }

  .brand-mark i:nth-child(1) {
    top: 21px;
    left: 5px;
  }

  .brand-mark i:nth-child(2) {
    top: 13px;
    left: 14px;
  }

  .brand-mark i:nth-child(3) {
    top: 6px;
    left: 24px;
  }

  .brand-type strong {
    font-size: 12px;
  }

  .brand-type small {
    font-size: 5.5px;
  }

  .header-actions > .language-switch {
    display: none;
  }

  .menu-button {
    width: 42px;
    height: 42px;
  }

  .hero-layout {
    gap: 27px;
    padding-top: calc(var(--banner-height) + var(--header-height) + 50px);
    padding-bottom: 116px;
  }

  .hero h1 {
    max-width: 520px;
    margin-bottom: 18px;
    font-size: clamp(42px, 12.6vw, 57px);
    line-height: 1;
  }

  .hero-lede {
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 1.55;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr 0.8fr;
    gap: 9px;
  }

  .hero-actions .button,
  .hero-actions .text-link {
    width: 100%;
    min-height: 49px;
    justify-content: center;
    padding: 0 13px;
    border: 1px solid rgba(255, 255, 255, 0.44);
    border-radius: 8px;
    font-size: 10px;
  }

  .hero-actions .text-link {
    border-bottom: 1px solid rgba(255, 255, 255, 0.44);
  }

  .hero-assurance {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 5px;
    margin-top: 18px;
  }

  .hero-assurance span {
    align-items: flex-start;
    font-size: 7px;
    line-height: 1.35;
  }

  .hero-assurance i {
    width: 16px;
    height: 16px;
    flex: 0 0 auto;
  }

  .estimate-card {
    padding: 24px 18px;
    border-radius: 12px;
  }

  .estimate-head {
    margin-bottom: 18px;
  }

  .estimate-head h2 {
    font-size: 27px;
  }

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

  .hero-flight-bar {
    left: 17px;
    right: 17px;
  }

  .hero-video-toggle {
    left: 17px;
  }

  .section-heading h2,
  .parents-copy h2,
  .film-copy h2,
  .trust-heading h2,
  .faq-intro h2 {
    font-size: clamp(37px, 10.5vw, 50px);
  }

  .split-heading,
  .journey-heading,
  .stories-heading {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .route-story {
    display: block;
  }

  .route-sticky {
    top: calc(var(--banner-height) + var(--header-height));
    height: 51svh;
    min-height: 360px;
  }

  .route-map {
    min-height: 360px;
    border-radius: 13px;
  }

  .route-chapters {
    position: relative;
    z-index: 3;
    margin-top: -24px;
  }

  .route-chapter {
    min-height: 66svh;
    margin-bottom: 12px;
    padding: 52px 19px 30px;
    background: linear-gradient(180deg, rgba(247, 245, 239, 0.9), var(--cream) 22%);
  }

  .route-chapter h3 {
    font-size: clamp(30px, 8.8vw, 40px);
  }

  .parents-story {
    width: calc(100% - 34px);
    margin-bottom: 84px;
    border-radius: 14px;
  }

  .parents-image {
    min-height: 460px;
  }

  .parents-copy {
    padding: 58px 20px;
  }

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

  .fleet-card {
    min-height: 0;
    border-right: 1px solid rgba(11, 32, 53, 0.1);
  }

  .fleet-details > p {
    min-height: 0;
  }

  .film-copy {
    padding: 72px 20px;
  }

  .film-frame {
    min-height: 54svh;
  }

  .trust-heading {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .trust-heading .eyebrow {
    grid-column: auto;
    margin-bottom: -4px;
  }

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

  .trust-grid article {
    min-height: 275px;
  }

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

  .reviews-grid article {
    min-height: 320px;
  }

  .faq {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .faq-intro {
    position: static;
  }

  .final-cta {
    min-height: 560px;
    grid-template-columns: 1fr;
  }

  .final-cta h2 {
    font-size: clamp(48px, 14vw, 68px);
  }

  .final-actions {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 0.75fr;
    gap: 10px;
  }

  .final-actions .button,
  .final-actions .text-link {
    width: 100%;
    justify-content: center;
  }

  .site-footer {
    grid-template-columns: 1fr 1fr;
    padding-bottom: calc(96px + env(safe-area-inset-bottom, 0px));
  }

  .mobile-sticky {
    height: calc(66px + env(safe-area-inset-bottom, 0px));
    grid-template-columns: 0.9fr 1.1fr;
    padding: 7px 7px calc(7px + env(safe-area-inset-bottom, 0px));
    background: rgba(255, 254, 250, 0.98);
  }

  .mobile-sticky button,
  .mobile-sticky a {
    border-radius: 7px;
    font-size: 10px;
  }

  .mobile-sticky button {
    border: 1px solid var(--line);
  }

  .mobile-sticky a {
    background: var(--navy);
  }
}

@media (max-width: 440px) {
  .brand-type strong {
    font-size: 11px;
  }

  .hero-actions,
  .final-actions {
    grid-template-columns: 1fr;
  }

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

  .hero-assurance span:nth-child(2),
  .hero-assurance span:nth-child(3) {
    display: none;
  }

  .field-pair:not(.field-pair--even) {
    grid-template-columns: 1fr;
  }

  .field-pair:not(.field-pair--even) .swap-button {
    width: 100%;
    height: 32px;
  }
}

@media (max-height: 560px) and (orientation: landscape) {
  .hero-layout {
    grid-template-columns: 1fr;
    padding-top: calc(var(--banner-height) + var(--header-height) + 34px);
  }

  .hero h1 {
    font-size: 44px;
  }

  .route-sticky {
    position: relative;
    top: auto;
    height: 560px;
  }

  .route-chapter {
    min-height: auto;
  }

  .mobile-sticky {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-film {
    display: none;
  }

  .route-sticky,
  .faq-intro {
    position: relative;
    top: auto;
    height: auto;
  }

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

  .route-map {
    height: 500px;
  }

  .route-chapter {
    min-height: auto;
    opacity: 1;
    transform: none;
  }
}
