:root {
  --brand-red: #9f1d2d;
  --brand-blue: #1d4f91;
  --brand-navy: #070d18;
  --brand-ink: #101828;
  --brand-muted: #667085;
  --brand-cream: #f7f2ea;
  --brand-yellow: #d8a94f;
  --brand-green: #0d8f69;
  --brand-steel: #263241;
  --brand-mist: #eef2f7;
  --surface: #ffffff;
  --surface-soft: #f4f6f9;
  --line: #d7dee8;
  --shadow: 0 22px 60px rgba(16, 24, 39, 0.14);
  --radius: 8px;
  --max: 1160px;
}

* {
  box-sizing: border-box;
  min-width: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--brand-ink);
  background: #f6f8fb;
  font-family: Inter, "Segoe UI", Arial, Helvetica, sans-serif;
  line-height: 1.55;
  padding-bottom: 72px;
  overflow-x: hidden;
}

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

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 8px;
  z-index: 20;
  background: var(--brand-ink);
  color: white;
  padding: 8px 12px;
}

.skip-link:focus {
  left: 8px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}

.top-strip {
  background: var(--brand-navy);
  color: white;
  font-size: 13px;
}

.top-strip__inner,
.header-inner,
.section-inner {
  width: calc(100% - 28px);
  max-width: var(--max);
  margin: 0 auto;
}

.top-strip__inner {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 7px 0;
}

.top-strip a {
  color: white;
  text-decoration: none;
  font-weight: 700;
}

.header-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 16px;
  min-height: 72px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  min-width: 0;
}

.brand img {
  width: 48px;
  height: 48px;
  border-radius: 8px;
}

.brand strong {
  display: block;
  color: var(--brand-red);
  font-size: 15px;
  line-height: 1.15;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}

.brand span {
  display: block;
  color: var(--brand-muted);
  font-size: 12px;
}

.nav-toggle {
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  color: var(--brand-ink);
  display: inline-grid;
  place-items: center;
}

.nav-toggle svg {
  width: 22px;
  height: 22px;
}

.site-nav {
  grid-column: 1 / -1;
  display: none;
  padding-bottom: 14px;
}

.site-nav[data-open="true"] {
  display: block;
}

.site-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}

.site-nav a {
  display: block;
  padding: 10px 2px;
  color: var(--brand-ink);
  text-decoration: none;
  font-weight: 700;
  border-bottom: 1px solid var(--line);
}

.hero {
  min-height: 690px;
  display: grid;
  align-items: end;
  color: white;
  background-image:
    linear-gradient(90deg, rgba(8, 13, 24, 0.86) 0%, rgba(8, 13, 24, 0.63) 42%, rgba(8, 13, 24, 0.18) 100%),
    linear-gradient(180deg, rgba(8, 13, 24, 0.06) 0%, rgba(8, 13, 24, 0.72) 100%),
    var(--hero-image);
  background-color: var(--brand-navy);
  background-size: cover, cover, cover;
  background-repeat: no-repeat;
  background-position: center, center, center;
  overflow: hidden;
}

.hero__inner {
  width: calc(100% - 28px);
  max-width: var(--max);
  margin: 0 auto;
  padding: 120px 0 42px;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 5px 10px;
  background: rgba(247, 201, 72, 0.96);
  color: #422800;
  font-weight: 800;
  border-radius: var(--radius);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

.hero h1 {
  max-width: 720px;
  margin: 14px 0 8px;
  font-family: "Segoe UI", Arial, Helvetica, sans-serif;
  font-size: clamp(34px, 9vw, 46px);
  line-height: 1.02;
  letter-spacing: 0;
  text-transform: uppercase;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.34);
  overflow-wrap: break-word;
  word-break: normal;
}

.hero p {
  max-width: 620px;
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.38);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  max-width: 620px;
  margin-top: 18px;
}

.hero-metrics span {
  min-height: 72px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
}

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

.hero-metrics strong {
  font-size: 17px;
  white-space: nowrap;
}

.hero-metrics small {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 800;
  text-transform: uppercase;
  white-space: nowrap;
}

@media (max-width: 520px) {
  .hero {
    min-height: 642px;
    background-position: 64% center, 64% center, 64% center;
  }

  .hero__inner {
    width: min(100% - 24px, var(--max));
    padding-bottom: 34px;
  }

  .hero h1 {
    max-width: 350px;
    font-size: clamp(31px, 8.2vw, 36px);
  }

  .hero p {
    max-width: 350px;
    font-size: 15px;
  }

  .hero-metrics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: 350px;
    gap: 6px;
  }

  .hero-metrics span {
    min-height: 62px;
    padding: 9px 8px;
  }

  .hero-metrics strong {
    font-size: 15px;
  }

  .hero-metrics small {
    font-size: 10px;
  }

  .hero-actions {
    max-width: 350px;
  }

  .hero-actions .btn {
    flex: 1 1 calc(50% - 8px);
    padding-left: 10px;
    padding-right: 10px;
  }

  .hero-actions .btn--ghost {
    flex-basis: 138px;
  }
}

.hero-actions,
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 11px 16px;
  border-radius: 7px;
  border: 1px solid transparent;
  color: white;
  background: var(--brand-red);
  text-decoration: none;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 12px 24px rgba(197, 22, 29, 0.2);
  transition: transform 140ms ease, box-shadow 140ms ease, background 140ms ease;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 30px rgba(16, 24, 39, 0.18);
}

.btn svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
}

.btn--blue {
  background: var(--brand-blue);
  box-shadow: 0 12px 24px rgba(22, 75, 145, 0.22);
}

.btn--green {
  background: var(--brand-green);
}

.btn--ghost {
  color: white;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.58);
}

.btn--light {
  color: var(--brand-red);
  background: white;
  border-color: white;
}

.section {
  padding: 46px 0;
}

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

.section--pattern {
  background-color: #eef4ff;
  background-image: linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(238, 244, 255, 0.96)), url("/assets/images/premium-ops-desk.webp");
  background-size: cover, cover;
  background-position: center, center;
}

.section--red {
  background: var(--brand-red);
  color: white;
}

.section-head {
  max-width: 760px;
  margin-bottom: 22px;
}

.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-kicker {
  margin: 0 0 6px;
  color: var(--brand-blue);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.section h2,
.page-title {
  margin: 0;
  color: var(--brand-ink);
  font-family: "Segoe UI", Arial, Helvetica, sans-serif;
  font-size: clamp(22px, 5.8vw, 44px);
  line-height: 1.12;
  letter-spacing: 0;
  text-transform: uppercase;
  overflow-wrap: break-word;
}

.section--red h2,
.section--red .section-kicker {
  color: white;
}

.lead {
  margin: 10px 0 0;
  color: var(--brand-muted);
  font-size: 17px;
}

.section--red .lead {
  color: rgba(255, 255, 255, 0.9);
}

.grid {
  display: grid;
  gap: 14px;
}

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

.feature,
.route-card,
.service-card,
.article-card,
.quote-card,
.contact-item,
.form-panel,
.content-panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 8px 24px rgba(16, 24, 39, 0.06);
}

.feature {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 12px;
  padding: 16px;
}

.feature-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: white;
  background: linear-gradient(135deg, var(--brand-navy), var(--brand-blue));
}

.feature-icon svg {
  width: 24px;
  height: 24px;
}

.feature h3,
.route-card h3,
.service-card h3,
.article-card h3,
.contact-item h3 {
  margin: 0 0 6px;
  font-size: 18px;
  line-height: 1.22;
}

.feature p,
.route-card p,
.service-card p,
.article-card p,
.contact-item p {
  margin: 0;
  color: var(--brand-muted);
}

.route-card,
.service-card,
.article-card {
  overflow: hidden;
}

.route-card img,
.service-card img,
.article-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: var(--surface-soft);
}

.route-card__body,
.service-card__body,
.article-card__body {
  padding: 14px;
}

.price-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin: 12px 0;
}

.price-pair span {
  display: block;
  color: var(--brand-muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.price-pair strong {
  display: block;
  color: var(--brand-red);
  font-size: 18px;
}

.route-card .btn,
.service-card .btn,
.article-card .btn {
  width: 100%;
  min-height: 42px;
}

.price-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 680px;
}

.price-table th,
.price-table td {
  padding: 13px 12px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

.price-table th {
  color: white;
  background: var(--brand-navy);
}

.price-table tr:last-child td {
  border-bottom: 0;
}

.price-note {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.price-note strong {
  display: block;
  color: var(--brand-blue);
}

.booking-layout,
.contact-layout,
.content-layout {
  display: grid;
  gap: 18px;
}

.form-panel {
  padding: 16px;
  background: linear-gradient(180deg, #151f32, #101827);
  color: white;
  box-shadow: var(--shadow);
}

.form-panel h2,
.form-panel p {
  color: white;
}

.booking-form {
  display: grid;
  gap: 12px;
}

.field {
  display: grid;
  gap: 5px;
}

.field label {
  font-weight: 800;
  font-size: 13px;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: var(--radius);
  padding: 10px 11px;
  color: var(--brand-ink);
  background: white;
}

.field textarea {
  min-height: 92px;
  resize: vertical;
}

.field--hidden {
  position: absolute;
  left: -9999px;
}

.form-status {
  min-height: 22px;
  font-weight: 800;
}

.quote-card {
  padding: 16px;
}

.quote-card strong {
  color: var(--brand-red);
}

.content-panel {
  padding: 18px;
}

.content-panel h2,
.content-panel h3 {
  color: var(--brand-red);
}

.content-panel p:first-child,
.content-panel h2:first-child,
.content-panel h3:first-child {
  margin-top: 0;
}

.content-panel ul {
  padding-left: 20px;
}

.contact-item {
  padding: 16px;
}

.map-frame {
  width: 100%;
  min-height: 280px;
  border: 0;
  border-radius: var(--radius);
}

.app-links {
  display: grid;
  gap: 10px;
}

.testimonial {
  padding: 18px;
  background: white;
  border-radius: var(--radius);
  border-left: 5px solid var(--brand-yellow);
}

.testimonial p {
  margin: 0 0 8px;
}

.testimonial strong {
  color: var(--brand-blue);
}

.hero--enterprise {
  min-height: 760px;
  background-image:
    radial-gradient(circle at 78% 66%, rgba(216, 169, 79, 0.18), transparent 24%),
    linear-gradient(90deg, rgba(7, 13, 24, 0.9) 0%, rgba(7, 13, 24, 0.76) 42%, rgba(7, 13, 24, 0.22) 100%),
    linear-gradient(180deg, rgba(7, 13, 24, 0.06) 0%, rgba(7, 13, 24, 0.78) 100%),
    var(--hero-image);
}

.premium-console-section {
  position: relative;
  z-index: 2;
  margin-top: -94px;
  padding-bottom: 64px;
}

.premium-console {
  display: grid;
  gap: 18px;
  align-items: stretch;
}

.console-copy,
.console-card,
.service-level,
.ops-timeline article,
.app-enterprise,
.coverage-grid span {
  border: 1px solid rgba(16, 24, 40, 0.08);
  box-shadow: var(--shadow);
}

.console-copy {
  display: flex;
  flex-direction: column;
  padding: 24px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
}

.hero--enterprise .hero__inner {
  padding-bottom: 132px;
}

@media (max-width: 520px) {
  .hero--enterprise .hero__inner {
    padding-bottom: 34px;
  }
}

.console-copy h2,
.app-enterprise h2 {
  margin: 0;
  color: var(--brand-ink);
  font-size: clamp(28px, 5vw, 44px);
  line-height: 1.05;
  letter-spacing: 0;
}

.console-copy p {
  margin: 12px 0 0;
  color: var(--brand-muted);
}

.ops-list {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.ops-list span {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--brand-ink);
  font-weight: 800;
}

.ops-list svg {
  width: 20px;
  height: 20px;
  color: var(--brand-blue);
}

.console-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 16px;
  padding-top: 0;
}

.console-stats span,
.console-routes a {
  border: 1px solid rgba(18, 33, 58, 0.08);
  border-radius: 8px;
  background: #f7faff;
}

.console-stats span {
  display: grid;
  gap: 4px;
  min-width: 0;
  padding: 12px;
}

.console-stats strong {
  color: var(--brand-ink);
  font-size: 18px;
  line-height: 1.1;
}

.console-stats small {
  color: var(--brand-muted);
  font-size: 12px;
  line-height: 1.3;
}

.console-routes {
  display: grid;
  gap: 8px;
  margin-top: 12px;
}

.console-routes a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 44px;
  padding: 10px 12px;
  color: var(--brand-ink);
  text-decoration: none;
}

.console-routes span {
  min-width: 0;
  overflow: hidden;
  color: var(--brand-muted);
  font-weight: 800;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.console-routes strong {
  color: var(--brand-red);
}

.console-flow {
  display: grid;
  gap: 8px;
  margin-top: 18px;
  padding: 14px;
  border: 1px solid rgba(18, 33, 58, 0.08);
  border-radius: 8px;
  background: linear-gradient(180deg, #ffffff, #f6f9fd);
}

.console-flow span {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.console-flow strong {
  flex: 0 0 30px;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: #ffffff;
  background: var(--brand-navy);
  font-size: 12px;
}

.console-flow em {
  min-width: 0;
  color: var(--brand-ink);
  font-style: normal;
  font-weight: 800;
}

.console-card {
  padding: 18px;
  border-radius: 12px;
  color: white;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 32%),
    linear-gradient(145deg, #111b2c, #070d18);
}

.console-card__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  padding-bottom: 16px;
  margin-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.console-card__head span,
.console-card__head strong,
.console-card__head a {
  display: block;
}

.console-card__head span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 900;
}

.console-card__head strong {
  font-size: 20px;
}

.console-card__head a {
  color: white;
  font-weight: 900;
  text-decoration: none;
}

.premium-form .field label {
  color: rgba(255, 255, 255, 0.78);
}

.premium-form .field input,
.premium-form .field select,
.premium-form .field textarea {
  color: white;
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
}

.premium-form .field input:focus,
.premium-form .field select:focus,
.premium-form .field textarea:focus {
  outline: 2px solid rgba(216, 169, 79, 0.4);
  border-color: rgba(216, 169, 79, 0.8);
}

.premium-form option {
  color: var(--brand-ink);
}

.quote-card--premium {
  color: var(--brand-ink);
  background: rgba(255, 255, 255, 0.92);
}

.section--enterprise {
  background: linear-gradient(180deg, #f6f8fb, #ffffff);
}

.section--ink {
  color: white;
  background:
    radial-gradient(circle at 86% 10%, rgba(216, 169, 79, 0.18), transparent 28%),
    linear-gradient(135deg, #0b1220, #101827 52%, #172033);
}

.section--ink .section-kicker,
.section--ink h2,
.section--ink .lead {
  color: white;
}

.section--app {
  background:
    linear-gradient(90deg, rgba(7, 13, 24, 0.94), rgba(20, 33, 54, 0.88)),
    url("/assets/images/premium-app-mock.webp");
  background-size: cover;
  background-position: center;
  color: white;
}

.split-head {
  display: grid;
  gap: 14px;
  align-items: end;
  margin-bottom: 22px;
}

.split-head .section-head {
  margin-bottom: 0;
}

.split-head .lead {
  margin: 0;
}

.split-head--dark .lead {
  color: rgba(255, 255, 255, 0.72);
}

.service-levels {
  display: grid;
  gap: 14px;
}

.service-level {
  position: relative;
  overflow: hidden;
  min-height: 280px;
  padding: 22px;
  border-radius: 12px;
  background: white;
}

.service-level::after {
  content: "";
  position: absolute;
  inset: auto 18px 18px auto;
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(29, 79, 145, 0.12), rgba(216, 169, 79, 0.18));
}

.service-level span {
  color: var(--brand-blue);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.service-level h3 {
  margin: 10px 0 8px;
  color: var(--brand-ink);
  font-size: 24px;
}

.service-level p {
  margin: 0;
  color: var(--brand-muted);
}

.service-level ul {
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}

.service-level li {
  color: var(--brand-ink);
  font-weight: 800;
}

.service-level li::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 9px;
  border-radius: 50%;
  background: var(--brand-yellow);
}

.route-matrix {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
}

.route-row {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 12px;
  align-items: center;
  padding: 16px;
  color: white;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.route-row:last-child {
  border-bottom: 0;
}

.route-row:hover {
  background: rgba(255, 255, 255, 0.08);
}

.route-row__index {
  color: var(--brand-yellow);
  font-weight: 900;
}

.route-row__main strong,
.route-row__main small,
.route-row__price small {
  display: block;
}

.route-row__main strong {
  font-size: 18px;
}

.route-row__main small,
.route-row__price small {
  color: rgba(255, 255, 255, 0.62);
}

.route-row__price {
  grid-column: 2 / -1;
  padding: 10px 12px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  font-weight: 900;
}

.ops-timeline {
  display: grid;
  gap: 14px;
}

.ops-timeline article {
  padding: 22px;
  border-radius: 12px;
  background: white;
}

.ops-timeline span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 14px;
  border-radius: 50%;
  color: white;
  background: var(--brand-navy);
  font-weight: 900;
}

.ops-timeline h3 {
  margin: 0 0 6px;
  font-size: 20px;
}

.ops-timeline p {
  margin: 0;
  color: var(--brand-muted);
}

.app-enterprise {
  display: grid;
  gap: 20px;
  align-items: center;
  padding: 24px;
  border-color: rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.section--app .section-kicker,
.section--app h2,
.section--app p {
  color: white;
}

.app-enterprise p {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.72);
}

.app-device {
  width: min(100%, 360px);
  justify-self: center;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.04)),
    #0b1220;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.34);
}

.app-device__top,
.app-device__route,
.app-device__list span,
.app-device__cta {
  border-radius: 12px;
}

.app-device__top {
  padding: 18px;
  color: var(--brand-ink);
  background: white;
}

.app-device__top span,
.app-device__top strong,
.app-device__list b,
.app-device__list small {
  display: block;
}

.app-device__top span {
  color: var(--brand-blue);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.app-device__top strong {
  margin-top: 4px;
  font-size: 22px;
}

.app-device__route {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 12px;
}

.app-device__route span {
  padding: 12px;
  color: white;
  background: rgba(255, 255, 255, 0.1);
  font-weight: 900;
}

.app-device__list {
  display: grid;
  gap: 10px;
  margin-top: 12px;
}

.app-device__list span {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 12px;
  color: var(--brand-ink);
  background: rgba(255, 255, 255, 0.92);
}

.app-device__list small {
  color: var(--brand-muted);
  font-weight: 800;
}

.app-device__cta {
  margin-top: 12px;
  padding: 13px;
  color: var(--brand-ink);
  background: var(--brand-yellow);
  text-align: center;
  font-weight: 900;
}

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

.coverage-grid span {
  min-height: 54px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: white;
  color: var(--brand-ink);
  font-weight: 900;
}

.breadcrumb {
  width: calc(100% - 28px);
  max-width: var(--max);
  margin: 0 auto;
  padding: 14px 0 18px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 7px;
  color: var(--brand-muted);
  font-size: 14px;
}

.breadcrumb a {
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border: 1px solid rgba(18, 33, 58, 0.08);
  border-radius: 8px;
  color: var(--brand-blue);
  background: #ffffff;
  text-decoration: none;
  font-weight: 800;
}

.breadcrumb__sep {
  color: #98a2b3;
  font-weight: 800;
}

.breadcrumb__current {
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 8px;
  color: var(--brand-ink);
  background: #edf4fb;
  font-weight: 850;
}

.page-hero {
  padding: 34px 0;
  background: var(--surface-soft);
  border-bottom: 1px solid var(--line);
}

.page-hero .section-inner {
  display: grid;
  gap: 18px;
}

.page-hero img {
  width: 100%;
  max-height: 280px;
  object-fit: cover;
  border-radius: var(--radius);
}

.site-footer {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(7, 13, 24, 0.98), rgba(16, 31, 55, 0.96)),
    url("/assets/images/premium-hero-fleet.webp") center / cover;
  color: white;
  padding: 44px 0 calc(24px + env(safe-area-inset-bottom));
  border-top: 3px solid #b42338;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.site-footer h2,
.site-footer h3,
.site-footer p {
  margin: 0;
}

.footer-command {
  display: grid;
  gap: 18px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(14px);
}

.footer-badge {
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  margin-bottom: 10px;
  padding: 7px 10px;
  border-radius: 8px;
  color: #ffe0a3;
  background: rgba(198, 147, 53, 0.16);
  font-size: 12px;
  font-weight: 900;
}

.footer-command h2 {
  max-width: 760px;
  font-size: clamp(26px, 4vw, 42px);
  line-height: 1.05;
}

.footer-command p {
  max-width: 620px;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 16px;
  line-height: 1.6;
}

.footer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.footer-command__status {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.footer-command__status div {
  min-width: 0;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.footer-command__status strong,
.footer-command__status span {
  display: block;
}

.footer-command__status strong {
  color: #ffffff;
  font-size: 20px;
  line-height: 1.1;
}

.footer-command__status span {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 12px;
  line-height: 1.35;
}

.footer-grid {
  display: grid;
  gap: 14px;
  margin-top: 14px;
}

.footer-panel {
  min-width: 0;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(2, 6, 23, 0.34);
}

.footer-panel h3 {
  margin-bottom: 14px;
  color: #ffffff;
  font-size: 16px;
}

.footer-route-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.site-footer a,
.site-footer span {
  color: white;
}

.footer-route-list a,
.footer-links a,
.footer-contact-row,
.footer-booking-link {
  border-radius: 8px;
  text-decoration: none;
}

.footer-route-list a {
  display: grid;
  gap: 4px;
  min-width: 0;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.06);
}

.footer-route-list a span {
  overflow: hidden;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.footer-route-list a strong {
  color: #ffd57a;
  font-size: 16px;
}

.footer-links {
  display: grid;
  gap: 8px;
}

.footer-links a {
  padding: 10px 0;
  color: rgba(255, 255, 255, 0.78);
}

.footer-contact-row {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  color: rgba(255, 255, 255, 0.82);
}

.footer-contact-row svg {
  width: 18px;
  height: 18px;
  color: #ffd57a;
}

.footer-booking-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  min-height: 46px;
  margin-top: 10px;
  color: #ffffff;
  background: #b42338;
  font-weight: 900;
}

.footer-booking-link svg {
  width: 18px;
  height: 18px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
}

.footer-bottom div {
  display: flex;
  gap: 14px;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.76);
  text-decoration: none;
}

.mobile-actions {
  position: fixed;
  left: 0;
  right: 0;
  width: 100vw;
  bottom: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: white;
  border-top: 1px solid var(--line);
  box-shadow: 0 -10px 24px rgba(24, 32, 51, 0.12);
}

.mobile-actions a {
  min-height: 60px;
  display: grid;
  place-items: center;
  gap: 2px;
  color: var(--brand-ink);
  text-decoration: none;
  font-size: 12px;
  font-weight: 900;
  min-width: 0;
}

.mobile-actions svg {
  width: 20px;
  height: 20px;
}

.mobile-actions a:first-child {
  color: var(--brand-red);
}

.mobile-actions a:nth-child(2) {
  color: var(--brand-blue);
}

.mobile-actions a:nth-child(3) {
  color: var(--brand-green);
}

@media (min-width: 760px) {
  body {
    padding-bottom: 0;
  }

  .top-strip__inner {
    font-size: 14px;
  }

  .header-inner {
    grid-template-columns: auto 1fr;
    min-height: 82px;
  }

  .brand img {
    width: 58px;
    height: 58px;
  }

  .brand strong {
    font-size: 18px;
  }

  .brand span {
    font-size: 13px;
  }

  .nav-toggle {
    display: none;
  }

  .site-nav,
  .site-nav[data-open="true"] {
    display: block;
    grid-column: auto;
    padding-bottom: 0;
  }

  .site-nav ul {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 18px;
  }

  .site-nav a {
    padding: 8px 0;
    border-bottom: 2px solid transparent;
  }

  .site-nav a:hover,
  .site-nav a[aria-current="page"] {
    color: var(--brand-red);
    border-bottom-color: var(--brand-red);
  }

  .hero {
    min-height: 720px;
    background-position: center, center, center;
  }

  .hero--enterprise {
    min-height: 760px;
  }

  .hero__inner {
    padding-bottom: 54px;
  }

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

  .section {
    padding: 58px 0;
  }

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

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

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

  .booking-layout,
  .contact-layout,
  .content-layout {
    grid-template-columns: 0.92fr 1.08fr;
    align-items: start;
  }

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

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

  .page-hero .section-inner {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
  }

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

  .premium-console {
    grid-template-columns: 0.82fr 1.18fr;
  }

  .console-copy,
  .console-card {
    padding: 28px;
  }

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

  .split-head {
    grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.65fr);
  }

  .route-row {
    grid-template-columns: 54px minmax(0, 1fr) minmax(130px, 0.22fr) minmax(150px, 0.24fr);
  }

  .route-row__price {
    grid-column: auto;
  }

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

  .app-enterprise {
    grid-template-columns: 1fr 0.62fr;
    padding: 34px;
  }

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

  .mobile-actions {
    display: none;
  }
}

@media (min-width: 1080px) {
  .route-card img {
    aspect-ratio: 4 / 3;
  }
}

/* Khung giao diện cao cấp ưu tiên điện thoại */
.top-strip {
  display: none;
}

.brand-mark {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  display: block;
  border-radius: 8px;
  object-fit: contain;
  box-shadow: 0 10px 24px rgba(16, 24, 39, 0.16);
}

.brand-mark span {
  display: none;
}

.brand strong {
  color: var(--brand-ink);
}

.page-shell-hero {
  min-height: 420px;
  display: grid;
  align-items: end;
  color: white;
  background-image:
    radial-gradient(circle at 80% 72%, rgba(216, 169, 79, 0.18), transparent 24%),
    linear-gradient(90deg, rgba(7, 13, 24, 0.92) 0%, rgba(7, 13, 24, 0.76) 48%, rgba(7, 13, 24, 0.28) 100%),
    linear-gradient(180deg, rgba(7, 13, 24, 0.12), rgba(7, 13, 24, 0.82)),
    var(--page-hero-image);
  background-color: var(--brand-navy);
  background-position: center;
  background-size: cover;
}

.page-shell-hero .section-inner {
  padding: 88px 0 24px;
}

.page-shell-hero__copy {
  max-width: 720px;
}

.page-shell-hero h1 {
  margin: 12px 0 8px;
  font-size: clamp(29px, 8.4vw, 46px);
  line-height: 1.04;
  letter-spacing: 0;
  text-transform: uppercase;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.34);
}

.page-shell-hero p {
  max-width: 620px;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 750;
}

.premium-stat-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 14px;
}

.premium-stat,
.route-summary-panel,
.route-price-panel,
.price-tile,
.contact-premium-card,
.editorial-panel,
.booking-aside,
.premium-media-panel {
  border: 1px solid rgba(16, 24, 40, 0.08);
  border-radius: 8px;
  background: white;
  box-shadow: 0 16px 42px rgba(16, 24, 39, 0.08);
}

.premium-stat {
  min-height: 72px;
  padding: 12px;
}

.premium-stat strong,
.premium-stat span {
  display: block;
}

.premium-stat strong {
  color: var(--brand-red);
  font-size: 20px;
  line-height: 1.1;
}

.premium-stat span {
  margin-top: 4px;
  color: var(--brand-muted);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.premium-media-panel {
  overflow: hidden;
  display: grid;
}

.premium-media-panel img,
.app-shot {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
}

.premium-media-panel > div {
  padding: 16px;
}

.premium-media-panel h2 {
  margin: 0;
  font-size: clamp(24px, 6vw, 40px);
}

.premium-media-panel p {
  color: var(--brand-muted);
}

.premium-media-panel ul {
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 16px 0 0;
  list-style: none;
}

.premium-media-panel li,
.route-chip-row span {
  font-weight: 850;
}

.premium-media-panel li::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 9px;
  border-radius: 50%;
  background: var(--brand-yellow);
}

.route-detail-grid,
.contact-premium-grid,
.article-premium-layout {
  display: grid;
  gap: 12px;
}

.route-summary-panel,
.route-price-panel,
.booking-aside {
  padding: 18px;
}

.route-summary-panel h2,
.route-price-panel h3,
.booking-aside h2 {
  margin: 0;
  font-size: clamp(24px, 6vw, 38px);
}

.route-summary-panel p,
.route-price-panel p,
.booking-aside p,
.editorial-panel p {
  color: var(--brand-muted);
}

.route-chip-row {
  display: grid;
  gap: 8px;
  margin-top: 16px;
}

.route-chip-row span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 10px;
  border-radius: 8px;
  background: var(--surface-soft);
}

.route-chip-row svg {
  width: 18px;
  height: 18px;
  color: var(--brand-blue);
}

.price-tile-grid {
  display: grid;
  gap: 8px;
}

.route-price-panel {
  display: grid;
  align-content: start;
  gap: 12px;
  background:
    linear-gradient(180deg, #ffffff, #f8fbff);
}

.route-price-panel .section-kicker {
  margin-bottom: 0;
}

.route-price-panel h3 {
  color: var(--brand-ink);
}

.route-price-panel .price-tile-grid {
  gap: 10px;
}

.price-tile {
  padding: 16px;
}

.price-tile span,
.price-tile small {
  display: block;
  color: var(--brand-muted);
  font-weight: 850;
  text-transform: uppercase;
}

.price-tile strong {
  display: block;
  margin: 6px 0;
  color: var(--brand-red);
  font-size: clamp(26px, 7vw, 38px);
  line-height: 1;
}

.route-price-panel .price-tile {
  background: #f1f6fd;
  box-shadow: none;
}

.route-price-panel .price-tile span,
.route-price-panel .price-tile small {
  text-transform: none;
}

.route-price-note {
  padding: 12px;
  border: 1px solid rgba(198, 147, 53, 0.22);
  border-radius: 8px;
  background: #fff8e8;
  color: #6b4b13 !important;
  font-size: 14px;
  line-height: 1.55;
}

.contact-premium-card {
  display: grid;
  gap: 8px;
  padding: 16px;
}

.contact-premium-card svg {
  width: 28px;
  height: 28px;
  color: var(--brand-yellow);
}

.contact-premium-card span {
  color: var(--brand-muted);
  font-weight: 850;
  text-transform: uppercase;
}

.contact-premium-card strong,
.contact-premium-card a {
  color: var(--brand-ink);
  text-decoration: none;
}

.map-shell {
  margin-top: 12px;
  padding: 8px;
  border-radius: 8px;
  background: white;
  box-shadow: var(--shadow);
}

.map-shell .map-frame {
  min-height: 300px;
  border-radius: 6px;
}

.editorial-panel {
  padding: 18px;
}

.editorial-panel p {
  margin-top: 0;
  font-size: 17px;
}

.booking-aside {
  display: grid;
  gap: 10px;
  align-content: start;
  color: white;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 34%),
    linear-gradient(145deg, #111b2c, #070d18);
}

.booking-aside h2,
.booking-aside .section-kicker,
.booking-aside p {
  color: white;
}

.booking-aside .btn {
  width: 100%;
}

.app-enterprise--media {
  overflow: hidden;
}

.app-shot {
  border-radius: 8px;
  box-shadow: 0 28px 72px rgba(0, 0, 0, 0.32);
}

.premium-listing .route-card,
.premium-listing .service-card,
.premium-listing .article-card,
.service-level,
.route-matrix,
.console-copy,
.console-card,
.app-enterprise,
.ops-timeline article,
.coverage-grid span {
  border-radius: 8px;
}

.mobile-actions {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  padding-bottom: env(safe-area-inset-bottom);
  background: rgba(7, 13, 24, 0.97);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px);
}

.mobile-actions a,
.mobile-actions button {
  min-height: 62px;
  display: grid;
  place-items: center;
  gap: 3px;
  padding: 8px 4px 7px;
  border: 0;
  color: rgba(255, 255, 255, 0.78);
  background: transparent;
  text-decoration: none;
  font-size: 11px;
  font-weight: 900;
}

.mobile-actions a:first-child,
.mobile-actions a:nth-child(2),
.mobile-actions a:nth-child(3) {
  color: rgba(255, 255, 255, 0.78);
}

.mobile-actions a:nth-child(3) {
  color: #f7d384;
}

.mobile-actions svg {
  width: 21px;
  height: 21px;
}

.go-bottom {
  position: fixed;
  right: 14px;
  bottom: calc(76px + env(safe-area-inset-bottom));
  z-index: 31;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  color: #07111f;
  background: linear-gradient(135deg, #f4d385, #b9812d);
  box-shadow: 0 14px 34px rgba(7, 13, 24, 0.24);
}

.go-bottom svg {
  width: 22px;
  height: 22px;
}

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

  .section-inner,
  .top-strip__inner,
  .header-inner,
  .breadcrumb,
  .hero__inner {
    width: calc(100% - 20px);
  }

  .site-header {
    background: rgba(255, 255, 255, 0.96);
  }

  .header-inner {
    min-height: 62px;
    gap: 10px;
  }

  .brand {
    gap: 8px;
  }

  .brand strong {
    font-size: 13px;
  }

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

  .nav-toggle {
    width: 40px;
    height: 40px;
  }

  .site-nav {
    padding-bottom: 10px;
  }

  .site-nav ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
  }

  .site-nav a {
    min-height: 42px;
    display: grid;
    place-items: center;
    padding: 8px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: white;
    text-align: center;
    font-size: 13px;
  }

  .hero,
  .hero--enterprise {
    min-height: 560px;
    background-position: 62% center, 62% center, 62% center, 62% center;
  }

  .hero__inner,
  .hero--enterprise .hero__inner {
    padding: 92px 0 24px;
  }

  .hero h1 {
    max-width: 360px;
    font-size: clamp(29px, 8.8vw, 38px);
  }

  .hero p {
    max-width: 360px;
    font-size: 14px;
  }

  .hero__eyebrow {
    min-height: 28px;
    padding: 4px 8px;
    font-size: 11px;
  }

  .hero-metrics {
    max-width: 360px;
    margin-top: 12px;
  }

  .hero-metrics span {
    min-height: 54px;
    padding: 8px 6px;
  }

  .hero-metrics strong {
    font-size: 14px;
  }

  .hero-actions,
  .cta-row {
    gap: 8px;
    margin-top: 14px;
  }

  .btn {
    min-height: 42px;
    padding: 9px 12px;
    font-size: 14px;
  }

  .section {
    padding: 28px 0;
  }

  .lead {
    font-size: 15px;
  }

  .premium-console-section {
    margin-top: 0;
    padding: 12px 0 28px;
    background: #f6f8fb;
  }

  .premium-console {
    gap: 10px;
  }

  .console-copy,
  .console-card {
    padding: 14px;
  }

  .console-copy h2,
  .app-enterprise h2 {
    font-size: 25px;
  }

  .console-copy p {
    margin-top: 8px;
  }

  .ops-list {
    gap: 6px;
    margin-top: 12px;
  }

  .ops-list span {
    min-height: 38px;
    padding: 8px;
    border-radius: 8px;
    background: var(--surface-soft);
    font-size: 13px;
  }

  .console-card__head {
    padding-bottom: 10px;
    margin-bottom: 10px;
  }

  .form-grid {
    display: grid;
    gap: 9px;
  }

  .field input,
  .field select,
  .field textarea {
    min-height: 42px;
  }

  .field textarea {
    min-height: 76px;
  }

  .split-head {
    gap: 8px;
    margin-bottom: 12px;
  }

  .service-level,
  .ops-timeline article {
    min-height: 0;
    padding: 16px;
  }

  .service-level h3,
  .ops-timeline h3 {
    font-size: 19px;
  }

  .route-row {
    grid-template-columns: 34px 1fr;
    gap: 8px;
    padding: 12px;
  }

  .route-row__main strong {
    font-size: 16px;
  }

  .route-row__price {
    padding: 8px 9px;
    font-size: 14px;
  }

  .app-enterprise {
    padding: 16px;
  }

  .coverage-grid span {
    min-height: 42px;
    font-size: 13px;
  }

  .breadcrumb {
    padding: 10px 0 14px;
    font-size: 12px;
  }
}

@media (min-width: 760px) {
  .top-strip {
    display: block;
  }

  .brand-mark {
    width: 54px;
    height: 54px;
    flex-basis: 54px;
  }

  .brand-mark span {
    font-size: 16px;
  }

  .page-shell-hero {
    min-height: 540px;
  }

  .page-shell-hero .section-inner {
    padding: 128px 0 48px;
  }

  .page-shell-hero h1 {
    font-size: clamp(46px, 5vw, 66px);
  }

  .premium-stat-grid {
    gap: 14px;
    margin-bottom: 22px;
  }

  .premium-stat {
    padding: 18px;
  }

  .premium-media-panel {
    grid-template-columns: 1.08fr 0.92fr;
    align-items: stretch;
  }

  .premium-media-panel img {
    height: 100%;
    min-height: 420px;
    aspect-ratio: auto;
  }

  .premium-media-panel > div {
    display: grid;
    align-content: center;
    padding: 30px;
  }

  .route-detail-grid {
    grid-template-columns: 1.05fr 0.95fr;
    align-items: stretch;
    gap: 16px;
  }

  .price-tile-grid {
    grid-template-columns: 1fr;
  }

  .contact-premium-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
  }

  .contact-premium-card {
    padding: 22px;
  }

  .article-premium-layout {
    grid-template-columns: minmax(0, 1fr) 330px;
    gap: 18px;
  }

  .editorial-panel {
    padding: 30px;
  }

  .booking-aside {
    position: sticky;
    top: 112px;
    padding: 22px;
  }

  .app-enterprise--media {
    grid-template-columns: 0.82fr 1.18fr;
  }

  .app-shot {
    height: 100%;
    min-height: 430px;
    aspect-ratio: auto;
  }

  .mobile-actions {
    display: none;
  }

  .go-bottom {
    right: 20px;
    bottom: 20px;
  }
}

/* Tinh chỉnh cảm giác ứng dụng gốc trên điện thoại */
@media (max-width: 759px) {
  :root {
    --mobile-gutter: 10px;
    --mobile-panel: #ffffff;
    --mobile-bg: #edf1f6;
  }

  html {
    background: var(--mobile-bg);
  }

  body {
    background: var(--mobile-bg);
    color: #111827;
    padding-bottom: calc(78px + env(safe-area-inset-bottom));
  }

  .top-strip,
  .breadcrumb {
    display: none;
  }

  .site-header {
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid rgba(16, 24, 40, 0.08);
    box-shadow: 0 10px 28px rgba(16, 24, 39, 0.08);
  }

  .header-inner,
  .section-inner,
  .hero__inner {
    width: calc(100% - 20px);
  }

  .header-inner {
    min-height: 58px;
    gap: 8px;
  }

  .brand {
    gap: 8px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
    flex-basis: 38px;
    border-radius: 8px;
  }

  .brand-mark span {
    font-size: 12px;
  }

  .brand > span:last-child {
    display: grid;
    gap: 1px;
  }

  .brand strong {
    max-width: min(250px, calc(100vw - 104px));
    overflow: hidden;
    color: #101828;
    font-size: 12.5px;
    line-height: 1.18;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

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

  .nav-toggle {
    width: 38px;
    height: 38px;
    border: 0;
    border-radius: 8px;
    background: #eef2f7;
    box-shadow: inset 0 0 0 1px rgba(16, 24, 40, 0.06);
  }

  .site-nav {
    position: absolute;
    top: 58px;
    left: var(--mobile-gutter);
    right: var(--mobile-gutter);
    z-index: 20;
    padding: 8px;
    border: 1px solid rgba(16, 24, 40, 0.08);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 18px 46px rgba(16, 24, 39, 0.16);
  }

  .site-nav:not([data-open="true"]) {
    display: none;
  }

  .site-nav ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
  }

  .site-nav a {
    min-height: 42px;
    display: grid;
    place-items: center;
    padding: 8px;
    border: 1px solid rgba(16, 24, 40, 0.08);
    border-radius: 8px;
    background: #f8fafc;
    color: #101828;
    font-size: 13px;
    text-align: center;
  }

  .hero,
  .page-shell-hero {
    min-height: 0;
    border-bottom: 0;
    background-position: 62% center, 62% center, 62% center, 62% center;
    box-shadow: inset 0 -80px 86px rgba(7, 13, 24, 0.7);
  }

  .hero {
    min-height: 494px;
  }

  .page-shell-hero {
    min-height: 354px;
  }

  .hero__inner,
  .hero--enterprise .hero__inner,
  .page-shell-hero .section-inner {
    width: calc(100% - 20px);
    padding-top: 0;
    padding-bottom: 16px;
  }

  .hero__inner {
    align-self: end;
    padding-top: 154px;
  }

  .page-shell-hero .section-inner {
    align-self: end;
    padding-top: 118px;
  }

  .hero__eyebrow {
    min-height: 28px;
    padding: 5px 8px;
    border-radius: 8px;
    font-size: 11px;
    line-height: 1.15;
    box-shadow: 0 10px 22px rgba(7, 13, 24, 0.18);
  }

  .hero h1,
  .page-shell-hero h1,
  .section h2,
  .page-title {
    text-transform: none;
  }

  .hero h1 {
    max-width: 354px;
    margin: 12px 0 7px;
    font-size: clamp(29px, 9vw, 38px);
    line-height: 1.03;
  }

  .page-shell-hero h1 {
    max-width: 360px;
    margin: 12px 0 7px;
    font-size: clamp(28px, 8.5vw, 36px);
    line-height: 1.04;
  }

  .hero p,
  .page-shell-hero p {
    max-width: 360px;
    font-size: 14px;
    line-height: 1.45;
  }

  .page-shell-hero p {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
  }

  .hero-metrics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: 360px;
    gap: 6px;
    margin-top: 12px;
  }

  .hero-metrics span {
    min-height: 50px;
    padding: 8px 7px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.12);
  }

  .hero-metrics strong {
    font-size: 13px;
  }

  .hero-metrics small {
    font-size: 9.5px;
  }

  .hero-actions,
  .cta-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-top: 12px;
  }

  .hero-actions .btn--ghost {
    grid-column: 1 / -1;
  }

  .btn {
    min-height: 42px;
    padding: 9px 10px;
    border-radius: 8px;
    font-size: 13.5px;
    box-shadow: 0 10px 22px rgba(16, 24, 39, 0.16);
  }

  .btn svg {
    width: 18px;
    height: 18px;
  }

  .section {
    padding: 24px 0;
  }

  .section--enterprise,
  .section--soft {
    background: var(--mobile-bg);
  }

  .section--ink {
    background:
      radial-gradient(circle at 82% 0%, rgba(216, 169, 79, 0.16), transparent 24%),
      linear-gradient(180deg, #111827, #070d18);
  }

  .section-head {
    margin-bottom: 12px;
  }

  .section-kicker {
    margin-bottom: 5px;
    font-size: 11px;
    letter-spacing: 0;
  }

  .section h2,
  .console-copy h2,
  .app-enterprise h2 {
    font-size: clamp(23px, 6.4vw, 30px);
    line-height: 1.08;
  }

  .lead {
    margin-top: 7px;
    font-size: 14.5px;
    line-height: 1.5;
  }

  .split-head {
    gap: 6px;
    margin-bottom: 10px;
  }

  .premium-console-section {
    margin-top: 0;
    padding: 10px 0 24px;
    background: var(--mobile-bg);
  }

  .premium-console {
    width: calc(100% - 20px);
    gap: 8px;
  }

  .console-copy {
    padding: 0 2px 2px;
    border: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
  }

  .console-copy p:not(.section-kicker),
  .console-copy .ops-list {
    display: none;
  }

  .console-card {
    padding: 12px;
    border-radius: 8px;
    box-shadow: 0 16px 42px rgba(7, 13, 24, 0.18);
  }

  .console-card__head {
    padding-bottom: 10px;
    margin-bottom: 10px;
  }

  .console-card__head strong {
    font-size: 16px;
  }

  .console-card__head a {
    padding: 7px 9px;
    border-radius: 8px;
    background: rgba(216, 169, 79, 0.16);
    color: #f7d384;
    font-size: 13px;
  }

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

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

  .field label {
    font-size: 11px;
    text-transform: uppercase;
  }

  .field input,
  .field select,
  .field textarea {
    min-height: 40px;
    padding: 8px 9px;
    border-radius: 8px;
    font-size: 14px;
  }

  .field textarea {
    min-height: 62px;
  }

  .quote-card {
    padding: 12px;
    border-radius: 8px;
  }

  .quote-card p {
    margin: 0 0 6px;
    font-size: 13.5px;
  }

  .quote-card p:last-child {
    margin-bottom: 0;
  }

  .route-matrix {
    display: grid;
    gap: 8px;
    overflow: visible;
    border: 0;
    background: transparent;
  }

  .route-row {
    grid-template-columns: 34px 1fr;
    gap: 8px;
    padding: 11px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.07);
  }

  .route-row__main strong {
    font-size: 15.5px;
    line-height: 1.2;
  }

  .route-row__main small {
    margin-top: 3px;
    font-size: 12px;
    line-height: 1.35;
  }

  .route-row__price {
    grid-column: 2 / -1;
    padding: 8px;
    border-radius: 8px;
    font-size: 13px;
  }

  .service-levels,
  .ops-timeline,
  .coverage-grid,
  .price-tile-grid,
  .contact-premium-grid,
  .article-premium-layout,
  .route-detail-grid {
    gap: 8px;
  }

  .service-level,
  .ops-timeline article,
  .premium-stat,
  .route-summary-panel,
  .route-price-panel,
  .price-tile,
  .contact-premium-card,
  .editorial-panel,
  .booking-aside,
  .premium-media-panel,
  .app-enterprise,
  .coverage-grid span,
  .map-shell {
    border-radius: 8px;
    box-shadow: 0 10px 28px rgba(16, 24, 39, 0.08);
  }

  .service-level,
  .ops-timeline article,
  .route-summary-panel,
  .route-price-panel,
  .contact-premium-card,
  .editorial-panel,
  .booking-aside {
    padding: 14px;
  }

  .service-level {
    min-height: 0;
  }

  .service-level h3,
  .ops-timeline h3 {
    font-size: 18px;
  }

  .premium-stat-grid {
    gap: 6px;
    margin-bottom: 10px;
  }

  .premium-stat {
    min-height: 64px;
    padding: 10px;
  }

  .premium-stat strong {
    font-size: 18px;
  }

  .premium-stat span {
    font-size: 10.5px;
  }

  .premium-media-panel {
    overflow: hidden;
  }

  .premium-media-panel img,
  .app-shot {
    aspect-ratio: 16 / 9;
  }

  .premium-media-panel > div {
    padding: 14px;
  }

  .premium-media-panel h2,
  .route-summary-panel h2,
  .route-price-panel h3,
  .booking-aside h2 {
    font-size: clamp(22px, 6.2vw, 28px);
  }

  .premium-media-panel p,
  .route-summary-panel p,
  .route-price-panel p,
  .booking-aside p,
  .editorial-panel p {
    font-size: 14.5px;
    line-height: 1.55;
  }

  .route-chip-row {
    gap: 6px;
    margin-top: 12px;
  }

  .route-chip-row span {
    min-height: 38px;
    padding: 8px;
    font-size: 13px;
  }

  .price-tile-grid {
    grid-template-columns: 1fr;
  }

  .price-tile {
    padding: 10px;
  }

  .price-tile span,
  .price-tile small {
    font-size: 10px;
  }

  .price-tile strong {
    margin: 5px 0;
    font-size: clamp(17px, 5vw, 22px);
    word-break: break-word;
  }

  .contact-premium-card {
    grid-template-columns: 34px 1fr;
    align-items: center;
    gap: 4px 10px;
  }

  .contact-premium-card svg {
    grid-row: span 2;
    width: 24px;
    height: 24px;
  }

  .contact-premium-card span {
    font-size: 11px;
  }

  .contact-premium-card strong {
    font-size: 15px;
  }

  .map-shell {
    margin-top: 8px;
    padding: 6px;
  }

  .map-shell .map-frame {
    min-height: 220px;
  }

  .app-enterprise {
    padding: 14px;
  }

  .app-shot {
    margin-top: 4px;
  }

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

  .coverage-grid span {
    min-height: 40px;
    padding: 6px;
    font-size: 12px;
    text-align: center;
  }

  .mobile-actions {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    width: 100%;
    padding-bottom: env(safe-area-inset-bottom);
    background: rgba(7, 13, 24, 0.98);
  }

  .mobile-actions a,
  .mobile-actions button {
    width: 100%;
    min-height: 62px;
    padding: 8px 2px 7px;
    color: rgba(255, 255, 255, 0.76);
    font-size: 10.5px;
  }

  .mobile-actions a:nth-child(3),
  .mobile-actions button {
    color: #f7d384;
  }

  .mobile-actions svg {
    width: 20px;
    height: 20px;
  }

  .go-bottom {
    display: none;
  }
}

/* Làm sáng giao diện cao cấp */
:root {
  --brand-red: #b42338;
  --brand-blue: #1559a8;
  --brand-navy: #12213a;
  --brand-ink: #111827;
  --brand-muted: #5f6f86;
  --brand-yellow: #c69335;
  --brand-mist: #edf4fb;
  --surface-soft: #f3f7fb;
  --line: #dfe7f1;
  --shadow: 0 18px 48px rgba(18, 33, 58, 0.1);
}

body {
  background: #f4f7fb;
}

.hero--enterprise {
  background-image:
    linear-gradient(90deg, rgba(13, 33, 61, 0.76) 0%, rgba(13, 33, 61, 0.52) 48%, rgba(13, 33, 61, 0.16) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(13, 33, 61, 0.46)),
    var(--hero-image);
}

.page-shell-hero {
  background-image:
    linear-gradient(90deg, rgba(13, 33, 61, 0.72) 0%, rgba(13, 33, 61, 0.48) 50%, rgba(13, 33, 61, 0.18) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(13, 33, 61, 0.44)),
    var(--page-hero-image);
}

.section--ink {
  color: var(--brand-ink);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(238, 244, 251, 0.98)),
    linear-gradient(135deg, rgba(198, 147, 53, 0.12), rgba(21, 89, 168, 0.08));
}

.section--ink .section-kicker,
.section--ink h2 {
  color: var(--brand-ink);
}

.section--ink .lead,
.split-head--dark .lead {
  color: var(--brand-muted);
}

.section--ink .section-kicker {
  color: var(--brand-blue);
}

.section--ink .route-matrix {
  border: 0;
  background: transparent;
}

.section--ink .route-row {
  color: var(--brand-ink);
  border-color: rgba(18, 33, 58, 0.08);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 26px rgba(18, 33, 58, 0.08);
}

.section--ink .route-row:hover {
  background: white;
}

.section--ink .route-row__main small,
.section--ink .route-row__price small {
  color: var(--brand-muted);
}

.section--ink .route-row__price {
  color: var(--brand-ink);
  background: #eef4fb;
}

.console-card,
.booking-aside {
  color: var(--brand-ink);
  border-color: rgba(18, 33, 58, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 250, 253, 0.98)),
    #ffffff;
}

.console-card__head {
  border-bottom-color: rgba(18, 33, 58, 0.1);
}

.console-card__head span {
  color: var(--brand-muted);
}

.console-card__head strong,
.booking-aside h2,
.booking-aside .section-kicker,
.booking-aside p {
  color: var(--brand-ink);
}

.console-card__head a {
  color: var(--brand-blue);
  background: #eaf2ff;
}

.premium-form .field label {
  color: #344054;
}

.premium-form .field input,
.premium-form .field select,
.premium-form .field textarea {
  color: var(--brand-ink);
  border-color: #d8e1ec;
  background: #f8fbff;
}

.premium-form .field input:focus,
.premium-form .field select:focus,
.premium-form .field textarea:focus {
  outline: 2px solid rgba(21, 89, 168, 0.18);
  border-color: rgba(21, 89, 168, 0.58);
  background: white;
}

.console-card .btn--light,
.booking-aside .btn {
  color: white;
  background: var(--brand-blue);
  border-color: var(--brand-blue);
}

.quote-card--premium {
  color: var(--brand-ink);
  border: 1px solid rgba(198, 147, 53, 0.2);
  background: #fff8ea;
}

.booking-form[data-state] .form-status {
  min-height: 42px;
  display: flex;
  align-items: center;
  padding: 10px 12px;
  border-radius: 8px;
  line-height: 1.35;
}

.booking-form[data-state="loading"] .form-status {
  color: #1559a8;
  background: #eaf2ff;
}

.booking-form[data-state="success"] .form-status {
  color: #067647;
  background: #ecfdf3;
}

.booking-form[data-state="error"] .form-status {
  color: #b42318;
  background: #fff1f1;
}

.booking-form[data-state="loading"] button[type="submit"] {
  cursor: progress;
  opacity: 0.76;
}

.section--app {
  color: var(--brand-ink);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.93), rgba(239, 246, 255, 0.9)),
    url("/assets/images/premium-app-mock.webp");
  background-size: cover;
  background-position: center;
}

.section--app .section-kicker {
  color: var(--brand-blue);
}

.section--app h2,
.section--app p,
.app-enterprise p {
  color: var(--brand-ink);
}

.app-enterprise {
  border-color: rgba(18, 33, 58, 0.08);
  background: rgba(255, 255, 255, 0.86);
}

.service-level::after {
  display: none;
}

.app-device,
.app-device__top,
.app-device__route,
.app-device__list span,
.app-device__cta {
  border-radius: 8px;
}

.mobile-actions {
  background: rgba(255, 255, 255, 0.96);
  border-top: 1px solid rgba(18, 33, 58, 0.1);
  box-shadow: 0 -12px 30px rgba(18, 33, 58, 0.13);
}

.mobile-actions a,
.mobile-actions button {
  color: #5f6f86;
}

.mobile-actions a[aria-current="page"] {
  color: var(--brand-blue);
}

.mobile-actions a:nth-child(3) {
  color: var(--brand-red);
}

.mobile-actions__primary {
  color: #7a4e10;
}

@media (max-width: 759px) {
  body {
    background: #f4f7fb;
  }

  .hero,
  .page-shell-hero {
    box-shadow: inset 0 -58px 74px rgba(13, 33, 61, 0.46);
  }

  .hero {
    min-height: 468px;
  }

  .page-shell-hero {
    min-height: 326px;
  }

  .hero__inner {
    padding-top: 134px;
  }

  .page-shell-hero .section-inner {
    padding-top: 96px;
  }

  .premium-console-section,
  .section--enterprise,
  .section--soft {
    background: #f4f7fb;
  }

  .console-card {
    box-shadow: 0 14px 34px rgba(18, 33, 58, 0.12);
  }

  .route-row {
    grid-template-columns: 34px minmax(0, 1fr) minmax(0, 1fr);
    align-items: stretch;
  }

  .route-row__main {
    grid-column: 2 / -1;
  }

  .route-row__price:nth-child(3) {
    grid-column: 2 / 3;
  }

  .route-row__price:nth-child(4) {
    grid-column: 3 / 4;
  }

  .route-row__price {
    display: grid;
    align-content: center;
    min-height: 54px;
  }

  .route-detail-grid .route-price-panel {
    order: -1;
  }

  .route-detail-grid .price-tile-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .route-detail-grid .route-summary-panel {
    order: 2;
  }

  .route-detail-grid .price-tile {
    min-height: 86px;
    padding: 10px 8px;
  }

  .route-detail-grid .price-tile strong {
    font-size: clamp(15px, 4.5vw, 19px);
    line-height: 1.08;
  }

  .route-detail-grid .price-tile span,
  .route-detail-grid .price-tile small {
    font-size: 9.5px;
  }

  .route-detail-grid .route-price-note {
    padding-right: 64px;
  }

  .mobile-actions {
    background: rgba(255, 255, 255, 0.97);
  }

  .mobile-actions a,
  .mobile-actions button,
  .mobile-actions a:first-child,
  .mobile-actions a:nth-child(2),
  .mobile-actions a:nth-child(3),
  .mobile-actions__primary {
    color: #5f6f86;
  }

  .mobile-actions a[aria-current="page"] {
    color: var(--brand-blue);
  }

  .mobile-actions a:nth-child(3) {
    color: var(--brand-red);
  }

  .mobile-actions__primary {
    color: #8a5a12;
  }
}

/* Bản dựng điện thoại sáng, gọn như ứng dụng */
@media (max-width: 759px) {
  body {
    background: #f2f6fb;
  }

  .site-header {
    box-shadow: 0 8px 22px rgba(18, 33, 58, 0.08);
  }

  .brand strong {
    text-transform: none;
    letter-spacing: 0;
  }

  .premium-form .field label,
  .field label {
    text-transform: none;
    letter-spacing: 0;
    font-size: 12px;
  }

  .hero,
  .page-shell-hero {
    position: relative;
    display: block;
    min-height: 0;
    color: var(--brand-ink);
    background: #ffffff;
    border-bottom: 1px solid rgba(18, 33, 58, 0.08);
    box-shadow: 0 12px 34px rgba(18, 33, 58, 0.08);
    overflow: hidden;
  }

  .hero {
    padding-top: 158px;
  }

  .page-shell-hero {
    padding-top: 146px;
  }

  .hero::before,
  .page-shell-hero::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 178px;
    background-color: #dfe9f5;
    background-size: cover;
    background-position: center;
  }

  .hero::before {
    background-image:
      linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(18, 33, 58, 0.12)),
      var(--hero-image);
  }

  .page-shell-hero::before {
    height: 166px;
    background-image:
      linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(18, 33, 58, 0.14)),
      var(--page-hero-image);
  }

  .hero__inner,
  .hero--enterprise .hero__inner,
  .page-shell-hero .section-inner {
    position: relative;
    width: calc(100vw - 20px);
    max-width: calc(100vw - 20px);
    padding: 0 0 16px;
  }

  .section-inner,
  .header-inner,
  .premium-console,
  .breadcrumb {
    width: calc(100vw - 20px) !important;
    max-width: calc(100vw - 20px) !important;
  }

  main,
  .section,
  .premium-console-section,
  .section--ink,
  .section--enterprise,
  .section--app,
  .section--soft {
    max-width: 100vw;
    overflow-x: hidden;
  }

  .page-shell-hero .section-inner {
    padding-bottom: 18px;
  }

  .hero__eyebrow {
    margin-top: 0;
    color: #382400;
    background: #f4d27a;
    text-shadow: none;
  }

  .hero h1,
  .page-shell-hero h1 {
    color: var(--brand-ink);
    text-shadow: none;
    overflow-wrap: anywhere;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(28px, 8.2vw, 35px);
  }

  .page-shell-hero h1 {
    max-width: 100%;
    font-size: clamp(27px, 7.8vw, 34px);
  }

  .hero p,
  .page-shell-hero p {
    color: #344054;
    font-weight: 700;
    text-shadow: none;
  }

  .hero-metrics {
    max-width: none;
  }

  .hero-metrics span {
    color: var(--brand-ink);
    border-color: #dce6f1;
    background: #f7faff;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.72);
    backdrop-filter: none;
  }

  .hero-metrics strong {
    color: var(--brand-ink);
  }

  .hero-metrics small {
    color: var(--brand-muted);
  }

  .hero-actions .btn--ghost {
    color: var(--brand-blue);
    border-color: #cbd9ea;
    background: #f8fbff;
  }

  .section h2,
  .console-copy h2,
  .app-enterprise h2,
  .route-summary-panel h2,
  .booking-aside h2,
  .premium-media-panel h2 {
    max-width: 100%;
    overflow-wrap: anywhere;
    font-size: clamp(22px, 6vw, 28px);
  }

  .section--ink {
    background: #f2f6fb;
  }

  .section--ink .route-row,
  .route-row {
    border-color: rgba(18, 33, 58, 0.08);
    background: #ffffff;
    box-shadow: 0 10px 26px rgba(18, 33, 58, 0.08);
  }

  .route-row {
    grid-template-columns: 34px minmax(0, 1fr) minmax(0, 1fr);
    width: 100%;
  }

  .route-row__main {
    grid-column: 2 / -1;
  }

  .route-row__price {
    color: var(--brand-ink);
    background: #edf4fb;
  }

  .route-row__price:nth-child(3) {
    grid-column: 2 / 3;
  }

  .route-row__price:nth-child(4) {
    grid-column: 3 / 4;
  }

  .route-detail-grid,
  .price-tile-grid {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }

  .route-detail-grid .price-tile-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .route-detail-grid .price-tile {
    min-width: 0;
  }

  .route-detail-grid .price-tile strong {
    font-size: clamp(14px, 4.3vw, 18px);
  }

  .mobile-actions {
    display: flex !important;
    align-items: stretch;
    grid-template-columns: none !important;
    left: 0 !important;
    right: auto !important;
    width: 100vw !important;
    max-width: 100vw;
    overflow: hidden;
  }

  .mobile-actions a,
  .mobile-actions button {
    flex: 0 0 25vw !important;
    width: 25vw !important;
    max-width: 25vw;
    min-width: 0;
  }

  .mobile-actions__primary {
    color: #7a4e10 !important;
    background: #fff7e6;
  }
}

.mobile-actions a:nth-child(3) {
  position: relative;
  isolation: isolate;
  overflow: visible;
}

.mobile-actions a:nth-child(3)::before,
.mobile-actions a:nth-child(3)::after {
  content: "";
  position: absolute;
  top: 10px;
  left: 50%;
  z-index: 0;
  width: 34px;
  height: 34px;
  margin-left: -17px;
  border: 2px solid rgba(191, 28, 59, 0.42);
  border-radius: 999px;
  opacity: 0;
  transform: scale(0.55);
  pointer-events: none;
  animation: callDockWave 1.9s ease-out infinite;
}

.mobile-actions a:nth-child(3)::after {
  animation-delay: 0.95s;
}

.mobile-actions a:nth-child(3) svg {
  position: relative;
  z-index: 1;
  transform-origin: 50% 50%;
  animation: callDockShake 1.25s ease-in-out infinite;
}

.mobile-actions a:nth-child(3) span {
  position: relative;
  z-index: 1;
}

@keyframes callDockShake {
  0%,
  48%,
  100% {
    transform: rotate(0);
  }
  8% {
    transform: rotate(-13deg);
  }
  16% {
    transform: rotate(11deg);
  }
  24% {
    transform: rotate(-9deg);
  }
  32% {
    transform: rotate(7deg);
  }
}

@keyframes callDockWave {
  0% {
    opacity: 0;
    transform: scale(0.55);
  }
  15% {
    opacity: 0.5;
  }
  78% {
    opacity: 0.08;
  }
  100% {
    opacity: 0;
    transform: scale(1.55);
  }
}

@media (min-width: 760px) {
  .premium-console {
    align-items: stretch;
    gap: 24px;
    padding: 14px;
    border-radius: 8px;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(237, 244, 251, 0.82)),
      #eef4fb;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.78);
  }

  .console-copy,
  .console-card {
    height: 100%;
    border-radius: 8px;
  }

  .console-copy {
    box-shadow: 0 20px 54px rgba(18, 33, 58, 0.13);
  }

  .console-card {
    box-shadow:
      0 30px 80px rgba(7, 13, 24, 0.3),
      0 0 0 1px rgba(255, 255, 255, 0.08);
  }

  .footer-command {
    grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.82fr);
    align-items: end;
  }

  .footer-grid {
    grid-template-columns: minmax(0, 1.25fr) minmax(220px, 0.72fr) minmax(260px, 0.82fr);
  }
}

@media (max-width: 759px) {
  .console-flow,
  .console-stats,
  .console-routes {
    display: none;
  }

  .site-footer {
    padding-top: 28px;
    padding-bottom: calc(104px + env(safe-area-inset-bottom));
  }

  .footer-command {
    padding: 16px;
  }

  .footer-command h2 {
    font-size: 24px;
  }

  .footer-command p {
    font-size: 14px;
  }

  .footer-actions .btn {
    flex: 1 1 100%;
    justify-content: center;
  }

  .footer-command__status,
  .footer-route-list {
    grid-template-columns: 1fr;
  }

  .footer-panel {
    padding: 14px;
  }

  .footer-bottom {
    display: grid;
  }

  .footer-bottom div {
    flex-wrap: wrap;
  }
}

.go-bottom {
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.go-bottom:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 42px rgba(7, 13, 24, 0.28);
}

.go-bottom span {
  display: grid;
  place-items: center;
}

.go-bottom[data-direction="bottom"] .scroll-switch__up,
.go-bottom[data-direction="top"] .scroll-switch__down {
  display: none;
}

.go-bottom[data-direction="top"] {
  color: #ffffff;
  background: linear-gradient(135deg, #1c3359, #0b1424);
}

@media (min-width: 760px) {
  .go-bottom {
    right: 22px;
    bottom: 22px;
  }
}

@media (max-width: 759px) {
  .go-bottom {
    display: grid !important;
    right: 12px;
    bottom: calc(92px + env(safe-area-inset-bottom));
    width: 44px;
    height: 44px;
  }
}

.site-nav__head,
.nav-backdrop {
  display: none;
}

@media (min-width: 760px) {
  .site-nav__head {
    display: none !important;
  }
}

@media (max-width: 759px) {
  body.nav-drawer-open {
    overflow: hidden;
  }

  .site-nav__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 4px 2px 14px;
    color: var(--brand-ink);
    font-weight: 900;
  }

  .site-nav__close {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(18, 33, 58, 0.1);
    border-radius: 8px;
    color: var(--brand-ink);
    background: #f3f6fb;
  }

  .site-nav__close svg {
    width: 20px;
    height: 20px;
  }

  .nav-backdrop {
    position: fixed;
    inset: 0;
    z-index: 39;
    display: block;
    border: 0;
    background: rgba(7, 13, 24, 0.46);
    backdrop-filter: blur(6px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease;
  }

  .nav-backdrop[data-open="true"] {
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav,
  .site-nav[data-open="true"] {
    position: fixed !important;
    top: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    left: auto !important;
    z-index: 40 !important;
    width: min(86vw, 340px) !important;
    max-width: 340px;
    display: block !important;
    padding: calc(14px + env(safe-area-inset-top)) 14px calc(18px + env(safe-area-inset-bottom)) !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: #ffffff !important;
    box-shadow: -24px 0 70px rgba(7, 13, 24, 0.22) !important;
    transform: translateX(104%);
    transition: transform 220ms ease;
  }

  .site-nav[data-open="true"] {
    transform: translateX(0);
  }

  .site-nav ul {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 8px !important;
  }

  .site-nav a {
    min-height: 50px !important;
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    padding: 12px !important;
    border: 1px solid rgba(18, 33, 58, 0.08) !important;
    border-radius: 8px !important;
    background: #f7faff !important;
    color: var(--brand-ink) !important;
    font-size: 15px !important;
    font-weight: 850 !important;
    text-align: left !important;
  }

  .site-nav a::after {
    content: "";
    width: 8px;
    height: 8px;
    border-top: 2px solid currentColor;
    border-right: 2px solid currentColor;
    transform: rotate(45deg);
    opacity: 0.5;
  }

  .site-nav a[aria-current="page"] {
    color: #ffffff !important;
    background: var(--brand-blue) !important;
  }
}

@media (max-width: 759px) {
  .hero-actions {
    width: 100% !important;
    max-width: none !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .hero-actions .btn {
    width: 100% !important;
    min-width: 0 !important;
  }

  .hero-actions .btn--ghost {
    grid-column: 1 / -1 !important;
    flex-basis: 100% !important;
    justify-content: center !important;
  }

  .site-nav,
  .site-nav[data-open="true"] {
    inset: 0 !important;
    width: 100vw !important;
    max-width: none !important;
    min-height: 100dvh;
    padding: calc(16px + env(safe-area-inset-top)) 16px calc(92px + env(safe-area-inset-bottom)) !important;
    background:
      linear-gradient(180deg, #ffffff 0%, #f5f8fc 100%) !important;
    box-shadow: none !important;
    overflow-y: auto;
    transform: translateX(100%);
  }

  .site-nav[data-open="true"] {
    transform: translateX(0);
  }

  .site-nav__head {
    padding: 0 0 14px;
    margin-bottom: 10px;
    border-bottom: 1px solid #e2e8f0;
    font-size: 18px;
  }

  .site-nav ul {
    gap: 0 !important;
    padding: 6px;
    border: 1px solid #dce6f1;
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 18px 42px rgba(18, 33, 58, 0.1);
  }

  .site-nav li + li a {
    border-top: 1px solid #edf2f7 !important;
  }

  .site-nav a {
    min-height: 54px !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
  }

  .site-nav li:first-child a {
    border-radius: 8px 8px 0 0 !important;
  }

  .site-nav li:last-child a {
    border-radius: 0 0 8px 8px !important;
  }

  .site-nav a[aria-current="page"] {
    border-radius: 8px !important;
  }

  .nav-backdrop[data-open="true"] {
    opacity: 0;
  }

  .footer-bottom {
    justify-content: center;
    justify-items: center;
    text-align: center;
  }

  .footer-bottom div {
    justify-content: center;
  }
}

.booking-sheet-close,
.booking-sheet-backdrop {
  display: none;
}

.field label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  color: #344054;
}

.field--required label::after {
  content: "Bắt buộc";
  flex: 0 0 auto;
  padding: 2px 6px;
  border-radius: 8px;
  color: #b42318;
  background: #fff1f3;
  font-size: 10px;
  font-weight: 900;
}

.field input,
.field select,
.field textarea,
.premium-form .field input,
.premium-form .field select,
.premium-form .field textarea {
  min-height: 48px;
  border: 1px solid #d6e0eb;
  border-radius: 8px;
  color: #101828;
  background: #ffffff;
  box-shadow: inset 0 1px 0 rgba(16, 24, 40, 0.04);
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.field select,
.premium-form .field select {
  appearance: none;
  padding-right: 34px;
  background-image:
    linear-gradient(45deg, transparent 50%, #667085 50%),
    linear-gradient(135deg, #667085 50%, transparent 50%);
  background-position:
    calc(100% - 18px) 50%,
    calc(100% - 13px) 50%;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
}

.field input:focus,
.field select:focus,
.field textarea:focus,
.premium-form .field input:focus,
.premium-form .field select:focus,
.premium-form .field textarea:focus {
  outline: 0;
  border-color: #1559a8;
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(21, 89, 168, 0.13);
}

.quick-tools {
  position: fixed;
  right: 22px;
  bottom: 78px;
  z-index: 32;
  display: grid;
  gap: 8px;
}

.quick-tools__item {
  position: relative;
  --quick-ripple-rgb: 21 89 168;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #ffffff;
  text-decoration: none;
  box-shadow: 0 14px 34px rgba(7, 13, 24, 0.24);
  isolation: isolate;
}

.quick-tools__item::before,
.quick-tools__item::after {
  content: "";
  position: absolute;
  inset: -12px;
  z-index: -1;
  border: 2px solid rgb(var(--quick-ripple-rgb) / 0.62);
  border-radius: 999px;
  background:
    radial-gradient(circle, rgb(var(--quick-ripple-rgb) / 0.26) 0%, rgb(var(--quick-ripple-rgb) / 0.14) 42%, transparent 72%);
  opacity: 0;
  transform: scale(0.62);
  pointer-events: none;
}

.quick-tools__item::before {
  animation: quickToolRipple 2.7s cubic-bezier(0.18, 0.72, 0.28, 1) infinite;
}

.quick-tools__item::after {
  animation: quickToolRipple 2.7s cubic-bezier(0.18, 0.72, 0.28, 1) infinite;
  animation-delay: 1.35s;
}

.quick-tools__item svg {
  position: relative;
  z-index: 1;
  width: 22px;
  height: 22px;
}

.quick-tools__item .brand-icon--messenger {
  width: 25px;
  height: 25px;
}

.quick-tools__item .brand-icon--zalo {
  width: 34px;
  height: 20px;
}

.quick-tools__item span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.quick-tools__item--facebook {
  background: linear-gradient(135deg, #00b2ff 0%, #006aff 48%, #a033ff 100%);
}

.quick-tools__item--facebook::before,
.quick-tools__item--facebook::after {
  display: none;
  animation: none;
}

.quick-tools__item--zalo {
  --quick-ripple-rgb: 0 104 255;
  background: #0068ff;
}

.quick-tools__item:hover,
.quick-tools__item:focus-visible {
  transform: none;
}

@keyframes quickToolRipple {
  0% {
    opacity: 0;
    transform: scale(0.58);
  }
  12% {
    opacity: 0.58;
  }
  72% {
    opacity: 0.13;
  }
  100% {
    opacity: 0;
    transform: scale(1.88);
  }
}

@media (prefers-reduced-motion: reduce) {
  .quick-tools__item,
  .quick-tools__item::before,
  .quick-tools__item::after,
  .mobile-actions a:nth-child(3)::before,
  .mobile-actions a:nth-child(3)::after,
  .mobile-actions a:nth-child(3) svg {
    animation: none !important;
  }
}

@media (max-width: 759px) {
  body.nav-drawer-open,
  body.booking-sheet-open {
    overflow: hidden;
  }

  .nav-backdrop {
    z-index: 43;
    background: rgba(7, 13, 24, 0.42);
    backdrop-filter: blur(10px);
  }

  .nav-backdrop[data-open="true"] {
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav,
  .site-nav[data-open="true"] {
    top: auto !important;
    right: 10px !important;
    bottom: calc(10px + env(safe-area-inset-bottom)) !important;
    left: 10px !important;
    width: auto !important;
    max-width: none !important;
    min-height: 0 !important;
    max-height: min(74dvh, 560px);
    z-index: 44 !important;
    padding: 10px !important;
    border: 1px solid rgba(255, 255, 255, 0.72) !important;
    border-radius: 8px 8px 0 0 !important;
    background: #f7f8fb !important;
    box-shadow: 0 -24px 80px rgba(7, 13, 24, 0.28) !important;
    overflow-y: auto;
    transform: translateY(calc(100% + 26px));
    transition: transform 240ms cubic-bezier(0.2, 0.8, 0.2, 1);
  }

  .site-nav[data-open="true"] {
    transform: translateY(0);
  }

  .site-nav__head {
    position: relative;
    justify-content: center;
    padding: 24px 48px 14px;
    margin: 0;
    border-bottom: 0;
    color: #101828;
    font-size: 18px;
    text-align: center;
  }

  .site-nav__head::before {
    content: "";
    position: absolute;
    top: 7px;
    left: 50%;
    width: 44px;
    height: 5px;
    border-radius: 8px;
    background: #d0d7e2;
    transform: translateX(-50%);
  }

  .site-nav__close {
    position: absolute;
    top: 12px;
    right: 4px;
    width: 38px;
    height: 38px;
    border: 1px solid #d9e2ec;
    background: #ffffff;
  }

  .site-nav ul {
    gap: 0 !important;
    padding: 4px;
    border: 1px solid #dde6f0;
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(18, 33, 58, 0.08);
  }

  .site-nav a {
    min-height: 52px !important;
    border: 0 !important;
    border-radius: 8px !important;
    background: transparent !important;
    color: #101828 !important;
    font-size: 16px !important;
    font-weight: 850 !important;
  }

  .site-nav li + li a {
    border-top: 1px solid #eef2f6 !important;
  }

  .site-nav a[aria-current="page"] {
    color: #1559a8 !important;
    background: #eef6ff !important;
  }

  .booking-sheet-backdrop {
    position: fixed;
    inset: 0;
    z-index: 41;
    display: block;
    border: 0;
    background: rgba(7, 13, 24, 0.46);
    backdrop-filter: blur(10px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 220ms ease;
  }

  .booking-sheet-backdrop[data-open="true"] {
    opacity: 1;
    pointer-events: auto;
  }

  .premium-console-section#dat-xe {
    position: fixed;
    inset: auto 0 0 0;
    z-index: 42;
    max-height: min(92dvh, 760px);
    margin: 0;
    padding: 0;
    border-radius: 8px 8px 0 0;
    background: #f5f7fb;
    box-shadow: 0 -28px 80px rgba(7, 13, 24, 0.32);
    overflow: hidden;
    transform: translateY(calc(100% + 28px));
    transition: transform 260ms cubic-bezier(0.2, 0.8, 0.2, 1);
  }

  .premium-console-section#dat-xe[data-open="true"] {
    transform: translateY(0);
  }

  .premium-console-section#dat-xe .premium-console {
    width: 100% !important;
    max-width: none !important;
    display: block;
    padding: 0;
  }

  .premium-console-section#dat-xe .console-copy {
    display: none;
  }

  .premium-console-section#dat-xe .console-card {
    position: relative;
    max-height: min(92dvh, 760px);
    padding: 18px 14px calc(22px + env(safe-area-inset-bottom));
    border: 0;
    border-radius: 8px 8px 0 0;
    color: #101828;
    background: #f5f7fb;
    box-shadow: none;
    overflow-y: auto;
  }

  .premium-console-section#dat-xe .console-card::before {
    content: "";
    position: sticky;
    top: 0;
    left: 50%;
    width: 42px;
    height: 5px;
    display: block;
    margin: 0 auto 12px;
    border-radius: 8px;
    background: #cfd8e5;
  }

  .premium-console-section#dat-xe .console-card__head {
    position: sticky;
    top: -1px;
    z-index: 2;
    align-items: center;
    padding: 0 46px 12px 0;
    margin: 0 0 12px;
    border-bottom: 1px solid #dce5ef;
    background: #f5f7fb;
  }

  .premium-console-section#dat-xe .console-card__head span {
    color: #667085;
  }

  .premium-console-section#dat-xe .console-card__head strong {
    color: #101828;
    font-size: 18px;
  }

  .premium-console-section#dat-xe .console-card__head a {
    padding: 8px 10px;
    border-radius: 8px;
    color: #1559a8;
    background: #eaf2ff;
    font-size: 13px;
  }

  .booking-sheet-close {
    position: sticky;
    top: 14px;
    z-index: 3;
    float: right;
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    margin-top: -50px;
    border: 1px solid #d8e1ec;
    border-radius: 8px;
    color: #101828;
    background: #ffffff;
  }

  .booking-sheet-close svg {
    width: 19px;
    height: 19px;
  }

  .premium-console-section#dat-xe .form-grid {
    grid-template-columns: 1fr !important;
    gap: 12px;
  }

  .field label,
  .premium-form .field label {
    color: #475467;
    font-size: 12px;
    letter-spacing: 0;
    text-transform: none;
  }

  .field input,
  .field select,
  .field textarea,
  .premium-form .field input,
  .premium-form .field select,
  .premium-form .field textarea {
    min-height: 50px;
    padding: 12px;
    border-color: #d6e0eb;
    background-color: #ffffff;
    font-size: 16px;
  }

  .field textarea,
  .premium-form .field textarea {
    min-height: 92px;
  }

  .premium-console-section#dat-xe .quote-card--premium {
    border-color: #f0d8a4;
    background: #fff8ea;
  }

  .premium-console-section#dat-xe .btn--light {
    position: sticky;
    bottom: 0;
    min-height: 52px;
    margin-top: 2px;
    color: #ffffff;
    background: #1559a8;
    box-shadow: 0 14px 30px rgba(21, 89, 168, 0.22);
  }

  .quick-tools {
    right: 12px;
    bottom: calc(146px + env(safe-area-inset-bottom));
    z-index: 32;
  }

  .quick-tools__item {
    width: 44px;
    height: 44px;
  }
}

.brand img.brand-mark,
.brand-mark {
  width: 54px;
  height: 54px;
  min-width: 54px;
  aspect-ratio: 1 / 1;
  display: block;
  object-fit: contain;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 8px 18px rgba(18, 33, 58, 0.12);
}

@media (max-width: 759px) {
  .brand img.brand-mark,
  .brand-mark {
    width: 44px !important;
    height: 44px !important;
    min-width: 44px !important;
    flex: 0 0 44px !important;
    border-radius: 8px !important;
  }

  .nav-backdrop {
    z-index: 43 !important;
    display: block;
    background: rgba(7, 13, 24, 0.48);
    backdrop-filter: blur(10px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease;
  }

  .nav-backdrop[hidden] {
    display: none !important;
  }

  .nav-backdrop[data-open="true"] {
    opacity: 1 !important;
    pointer-events: auto !important;
  }

  .site-nav,
  .site-nav[data-open="false"],
  .site-nav:not([data-open="true"]) {
    position: fixed !important;
    inset: 0 0 0 auto !important;
    z-index: 44 !important;
    width: min(88vw, 356px) !important;
    max-width: 356px !important;
    height: 100dvh !important;
    min-height: 100dvh !important;
    max-height: none !important;
    display: block !important;
    padding: calc(16px + env(safe-area-inset-top)) 14px calc(18px + env(safe-area-inset-bottom)) !important;
    border: 0 !important;
    border-left: 1px solid rgba(18, 33, 58, 0.08) !important;
    border-radius: 0 !important;
    background: #f7f9fc !important;
    box-shadow: -22px 0 68px rgba(7, 13, 24, 0.28) !important;
    overflow-y: auto;
    transform: translateX(108%) !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
    transition:
      transform 220ms cubic-bezier(0.2, 0.8, 0.2, 1),
      opacity 160ms ease,
      visibility 0s linear 220ms;
  }

  .site-nav[data-open="true"] {
    transform: translateX(0) !important;
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    transition:
      transform 220ms cubic-bezier(0.2, 0.8, 0.2, 1),
      opacity 160ms ease,
      visibility 0s;
  }

  .site-nav__head {
    justify-content: space-between !important;
    padding: 4px 0 14px !important;
    margin: 0 0 8px !important;
    border-bottom: 1px solid #dde6f0 !important;
    font-size: 16px !important;
    text-align: left !important;
  }

  .site-nav__head::before {
    content: none !important;
  }

  .site-nav__close {
    position: static !important;
    width: 40px !important;
    height: 40px !important;
    border-radius: 8px !important;
    background: #ffffff !important;
  }

  .site-nav ul {
    display: grid !important;
    gap: 6px !important;
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
  }

  .site-nav li + li a {
    border-top: 0 !important;
  }

  .site-nav a {
    min-height: 52px !important;
    padding: 12px 12px !important;
    border: 1px solid #dbe5f0 !important;
    border-radius: 8px !important;
    background: #ffffff !important;
    box-shadow: 0 8px 22px rgba(18, 33, 58, 0.06) !important;
    color: #101828 !important;
    font-size: 15px !important;
    font-weight: 850 !important;
    text-align: left !important;
  }

  .site-nav a[aria-current="page"] {
    color: #1559a8 !important;
    background: #eaf3ff !important;
    border-color: #c9def7 !important;
  }
}

.brand--wordmark {
  display: inline-flex !important;
  align-items: center;
  gap: 14px !important;
  min-width: 0;
  max-width: 100%;
  color: #071527;
}

.brand-badge {
  width: 58px;
  height: 58px;
  min-width: 58px;
  display: block;
  object-fit: contain;
  border-radius: 16px;
  background: transparent;
  box-shadow: 0 14px 26px rgba(21, 98, 158, 0.2);
}

.brand-symbol {
  width: 58px;
  height: 58px;
  min-width: 58px;
  display: grid !important;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(145deg, #1e78b8 0%, #135b94 100%);
  box-shadow: 0 14px 26px rgba(21, 98, 158, 0.26);
}

.brand-symbol svg {
  width: 46px;
  height: 46px;
  display: block;
}

.brand-car__roof,
.brand-car__body {
  fill: #ffffff;
}

.brand-car__base {
  fill: none;
  stroke: #ffffff;
  stroke-width: 4;
  stroke-linecap: round;
}

.brand-car__dot--gold {
  fill: #ffd166;
}

.brand-car__dot--white {
  fill: #ffffff;
}

.brand-copy {
  display: grid !important;
  gap: 5px;
  min-width: 0;
}

.brand--wordmark .brand-eyebrow,
.brand--wordmark .brand-service {
  display: block !important;
  overflow: hidden;
  color: #56687f !important;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.brand--wordmark .brand-eyebrow {
  font-size: 11px !important;
  font-weight: 850;
  letter-spacing: 0.22em;
  line-height: 1;
  text-transform: uppercase;
}

.brand--wordmark .brand-service {
  font-size: 12px !important;
  font-weight: 650;
  letter-spacing: 0;
  line-height: 1.15;
}

.brand--wordmark .brand-route {
  display: flex !important;
  align-items: center;
  gap: 10px;
  max-width: none !important;
  overflow: visible !important;
  color: #071527 !important;
  font-size: clamp(21px, 2.1vw, 30px) !important;
  font-weight: 900 !important;
  letter-spacing: 0 !important;
  line-height: 1 !important;
  text-transform: uppercase !important;
  text-overflow: clip !important;
  white-space: nowrap !important;
}

.brand--wordmark .brand-route span {
  display: inline !important;
  color: inherit !important;
  font-size: inherit !important;
  font-weight: inherit !important;
  line-height: inherit !important;
}

.brand-route__arrow {
  width: 30px;
  height: 20px;
  flex: 0 0 auto;
  color: #1e78b8;
}

@media (max-width: 759px) {
  .brand--wordmark {
    gap: 9px !important;
    width: min(100%, calc(100vw - 74px));
    max-width: calc(100vw - 74px);
    overflow: hidden;
  }

  .header-inner {
    grid-template-columns: minmax(0, 1fr) 42px !important;
  }

  .nav-toggle {
    position: relative;
    z-index: 2;
    width: 42px !important;
    height: 42px !important;
    display: inline-grid !important;
    justify-self: end;
    place-items: center;
    border: 1px solid #d9e5f2 !important;
    border-radius: 12px !important;
    background: #f3f8ff !important;
    color: #1559a8 !important;
    box-shadow: 0 8px 18px rgba(18, 33, 58, 0.08) !important;
  }

  .nav-toggle svg {
    width: 21px !important;
    height: 21px !important;
  }

  .brand-symbol {
    width: 42px !important;
    height: 42px !important;
    min-width: 42px !important;
    border-radius: 12px;
    box-shadow: 0 9px 18px rgba(21, 98, 158, 0.22);
  }

  .brand-symbol svg {
    width: 34px;
    height: 34px;
  }

  .brand-badge {
    width: 42px !important;
    height: 42px !important;
    min-width: 42px !important;
    border-radius: 12px !important;
    box-shadow: 0 9px 18px rgba(21, 98, 158, 0.18);
  }

  .brand-copy {
    gap: 3px;
  }

  .brand--wordmark .brand-eyebrow {
    font-size: 8.8px !important;
    letter-spacing: 0.18em;
  }

  .brand--wordmark .brand-route {
    gap: 5px;
    font-size: clamp(16px, 4.55vw, 18px) !important;
  }

  .brand-route__arrow {
    width: 22px;
    height: 15px;
  }

  .brand--wordmark .brand-service {
    max-width: 240px;
    font-size: 10.5px !important;
  }
}

@media (max-width: 374px) {
  .brand--wordmark .brand-service {
    display: none !important;
  }

  .brand--wordmark .brand-route {
    font-size: 15px !important;
  }
}

@media (min-width: 760px) {
  .nav-backdrop {
    display: none !important;
  }

  .site-nav,
  .site-nav[data-open="false"],
  .site-nav[data-open="true"] {
    position: static !important;
    top: auto !important;
    right: auto !important;
    left: auto !important;
    z-index: auto !important;
    width: auto !important;
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    display: block !important;
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    overflow: visible !important;
    transform: none !important;
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: auto !important;
  }

  .site-nav__head {
    display: none !important;
  }

  .site-nav ul {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    gap: 18px !important;
    padding: 0 !important;
    margin: 0 !important;
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
  }

  .site-nav a {
    min-height: 40px !important;
    display: inline-flex !important;
    align-items: center !important;
    padding: 8px 0 !important;
    border: 0 !important;
    border-bottom: 2px solid transparent !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    color: #101828 !important;
    font-size: 15px !important;
    font-weight: 800 !important;
    text-decoration: none !important;
  }

  .site-nav a::after {
    content: none !important;
  }

  .site-nav a:hover,
  .site-nav a[aria-current="page"] {
    color: #b42338 !important;
    border-bottom-color: #b42338 !important;
  }
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

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

.console-card__actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

@media (max-width: 759px) {
  html {
    scroll-padding-top: 74px;
  }

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

  .premium-console-section#dat-xe .console-card {
    display: block !important;
    max-height: min(92dvh, 760px) !important;
    padding: 0 12px calc(16px + env(safe-area-inset-bottom)) !important;
    background: #f5f7fb !important;
    overflow-y: auto !important;
    overscroll-behavior: contain;
    scroll-padding-top: 92px;
  }

  .premium-console-section#dat-xe .console-card::before {
    content: none !important;
    display: none !important;
  }

  .premium-console-section#dat-xe .console-card__head {
    position: sticky !important;
    top: 0 !important;
    z-index: 24 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 10px !important;
    padding: 22px 0 10px !important;
    margin: 0 0 10px !important;
    border-bottom: 1px solid #dce5ef !important;
    background: linear-gradient(180deg, #f5f7fb 0%, #f5f7fb 78%, rgba(245, 247, 251, 0.94) 100%) !important;
    box-shadow: 0 10px 18px rgba(18, 33, 58, 0.08) !important;
  }

  .premium-console-section#dat-xe .console-card__head::before {
    content: "" !important;
    position: absolute !important;
    top: 8px !important;
    left: 50% !important;
    width: 42px !important;
    height: 5px !important;
    border-radius: 8px !important;
    background: #cfd8e5 !important;
    transform: translateX(-50%) !important;
  }

  .premium-console-section#dat-xe .console-card__head > div:first-child {
    flex: 1 1 auto;
    min-width: 0;
    overflow: hidden;
  }

  .premium-console-section#dat-xe .console-card__head span {
    color: #667085 !important;
    font-size: 11px !important;
    line-height: 1.1 !important;
  }

  .premium-console-section#dat-xe .console-card__head strong {
    color: #101828 !important;
    font-size: 18px !important;
    line-height: 1.15 !important;
  }

  .premium-console-section#dat-xe .console-card__actions {
    flex: 0 0 auto;
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
  }

  .premium-console-section#dat-xe .console-card__head a {
    max-width: 112px;
    padding: 8px 9px !important;
    border-radius: 8px !important;
    color: #1559a8 !important;
    background: #eaf2ff !important;
    font-size: 13px !important;
    line-height: 1 !important;
    white-space: nowrap;
  }

  .premium-console-section#dat-xe .booking-sheet-close {
    position: static !important;
    float: none !important;
    width: 38px !important;
    height: 38px !important;
    min-width: 38px !important;
    display: grid !important;
    place-items: center !important;
    margin: 0 !important;
    border: 1px solid #d8e1ec !important;
    border-radius: 8px !important;
    color: #101828 !important;
    background: #ffffff !important;
  }

  .premium-console-section#dat-xe .booking-form {
    padding-top: 0 !important;
  }

  .premium-console-section#dat-xe .form-grid {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 10px !important;
    align-items: start !important;
  }

  .premium-console-section#dat-xe .field {
    min-width: 0;
  }

  .premium-console-section#dat-xe .field--wide,
  .premium-console-section#dat-xe .field--hidden {
    grid-column: 1 / -1 !important;
  }

  .premium-console-section#dat-xe .field--hidden {
    display: none !important;
  }

  .premium-console-section#dat-xe .field label {
    min-height: 17px;
    margin: 0 0 5px;
    color: #475467 !important;
    font-size: 11.5px !important;
    line-height: 1.2 !important;
    letter-spacing: 0 !important;
    text-transform: none !important;
  }

  .premium-console-section#dat-xe .field--required label::after {
    content: "*" !important;
    min-width: auto !important;
    padding: 0 !important;
    border: 0 !important;
    color: #c5162d !important;
    background: transparent !important;
    font-size: 15px !important;
    font-weight: 900 !important;
    line-height: 1 !important;
  }

  .premium-console-section#dat-xe .field input,
  .premium-console-section#dat-xe .field select,
  .premium-console-section#dat-xe .field textarea {
    min-height: 46px !important;
    padding: 9px 10px !important;
    border-color: #d6e0eb !important;
    border-radius: 8px !important;
    background-color: #ffffff !important;
    color: #101828 !important;
    font-size: 15px !important;
  }

  .premium-console-section#dat-xe .field textarea {
    min-height: 76px !important;
  }

  .premium-console-section#dat-xe .quote-card--premium {
    margin-top: 10px !important;
    padding: 11px !important;
    border-radius: 8px !important;
    background: #fff8ea !important;
    font-size: 13px !important;
    line-height: 1.45 !important;
  }

  .premium-console-section#dat-xe .quote-card--premium p {
    margin: 0 0 6px !important;
  }

  .premium-console-section#dat-xe .quote-card--premium p:last-child {
    margin-bottom: 0 !important;
  }

  .premium-console-section#dat-xe .btn--light {
    z-index: 24 !important;
    min-height: 50px !important;
    margin-top: 10px !important;
    border-radius: 8px !important;
  }
}

@media (max-width: 374px) {
  .premium-console-section#dat-xe .form-grid {
    gap: 8px !important;
  }

  .premium-console-section#dat-xe .console-card__head a {
    display: none !important;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
  }
}

@media (max-width: 759px) {
  .header-inner {
    position: relative !important;
    display: flex !important;
    align-items: center !important;
    min-height: 58px !important;
    padding-right: 50px !important;
    gap: 0 !important;
    overflow: visible !important;
  }

  .brand--wordmark {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    gap: 8px !important;
  }

  .brand-copy {
    min-width: 0 !important;
    overflow: hidden !important;
  }

  .brand--wordmark .brand-route {
    gap: 5px !important;
    max-width: 100% !important;
    overflow: hidden !important;
    font-size: clamp(15px, 4.25vw, 17px) !important;
  }

  .brand--wordmark .brand-route span {
    min-width: 0;
  }

  .brand-route__arrow {
    width: 21px !important;
    height: 14px !important;
  }

  .brand--wordmark .brand-service {
    max-width: 100% !important;
    font-size: 10px !important;
  }

  .nav-toggle {
    position: fixed !important;
    top: calc(8px + env(safe-area-inset-top)) !important;
    right: 10px !important;
    z-index: 1200 !important;
    width: 42px !important;
    height: 42px !important;
    display: inline-grid !important;
    place-items: center !important;
    transform: none !important;
    border: 1px solid #d9e5f2 !important;
    border-radius: 12px !important;
    background: #f3f8ff !important;
    color: #1559a8 !important;
    box-shadow: 0 8px 18px rgba(18, 33, 58, 0.08) !important;
  }

  .nav-toggle svg {
    width: 21px !important;
    height: 21px !important;
  }

  body.nav-drawer-open .site-header {
    z-index: 1000 !important;
  }

  .nav-backdrop {
    position: fixed !important;
    inset: 0 !important;
    z-index: 1001 !important;
    width: 100vw !important;
    height: 100dvh !important;
    display: block !important;
    border: 0 !important;
    background: rgba(7, 13, 24, 0.48) !important;
    backdrop-filter: blur(10px) !important;
    opacity: 0 !important;
    pointer-events: none !important;
    transition: opacity 180ms ease !important;
  }

  .nav-backdrop[hidden] {
    display: none !important;
  }

  .nav-backdrop[data-open="true"] {
    opacity: 1 !important;
    pointer-events: auto !important;
  }

  .site-nav,
  .site-nav[data-open="false"],
  .site-nav:not([data-open="true"]) {
    position: fixed !important;
    top: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    left: auto !important;
    z-index: 1002 !important;
    width: min(86vw, 348px) !important;
    max-width: 348px !important;
    height: 100dvh !important;
    min-height: 100dvh !important;
    max-height: none !important;
    display: flex !important;
    flex-direction: column !important;
    padding: calc(14px + env(safe-area-inset-top)) 14px calc(18px + env(safe-area-inset-bottom)) !important;
    border: 0 !important;
    border-left: 1px solid rgba(18, 33, 58, 0.08) !important;
    border-radius: 0 !important;
    background: #f7f9fc !important;
    box-shadow: -24px 0 70px rgba(7, 13, 24, 0.32) !important;
    overflow-y: auto !important;
    transform: translate3d(104%, 0, 0) !important;
    visibility: hidden !important;
    opacity: 1 !important;
    pointer-events: none !important;
    transition:
      transform 230ms cubic-bezier(0.2, 0.8, 0.2, 1),
      visibility 0s linear 230ms !important;
  }

  .site-nav[data-open="true"] {
    transform: translate3d(0, 0, 0) !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transition:
      transform 230ms cubic-bezier(0.2, 0.8, 0.2, 1),
      visibility 0s !important;
  }

  .site-nav__head {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    flex: 0 0 auto !important;
    padding: 2px 0 14px !important;
    margin: 0 0 8px !important;
    border-bottom: 1px solid #dde6f0 !important;
    color: #101828 !important;
    font-size: 16px !important;
    font-weight: 900 !important;
    text-align: left !important;
  }

  .site-nav__head::before {
    content: none !important;
  }

  .site-nav__close {
    position: static !important;
    width: 40px !important;
    height: 40px !important;
    display: inline-grid !important;
    place-items: center !important;
    border: 1px solid #d9e5f2 !important;
    border-radius: 12px !important;
    background: #ffffff !important;
    color: #101828 !important;
  }

  .site-nav ul {
    display: grid !important;
    gap: 8px !important;
    padding: 0 !important;
    margin: 0 !important;
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
  }

  .site-nav a {
    min-height: 52px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 12px 12px !important;
    border: 1px solid #dbe5f0 !important;
    border-radius: 8px !important;
    background: #ffffff !important;
    box-shadow: 0 8px 22px rgba(18, 33, 58, 0.06) !important;
    color: #101828 !important;
    font-size: 15px !important;
    font-weight: 850 !important;
    text-align: left !important;
  }

  .site-nav a::after {
    content: "›" !important;
    color: #7a899b !important;
    font-size: 24px !important;
    font-weight: 500 !important;
    line-height: 1 !important;
  }

  .site-nav a[aria-current="page"] {
    color: #1559a8 !important;
    background: #eaf3ff !important;
    border-color: #c9def7 !important;
  }

  .site-nav a[aria-current="page"]::after {
    color: #1559a8 !important;
  }

  .hero-metrics {
    max-width: 100% !important;
    gap: 8px !important;
  }

  .hero-metrics span {
    min-height: 54px !important;
    display: grid !important;
    place-items: center !important;
    align-content: center !important;
    justify-items: center !important;
    padding: 8px 6px !important;
    text-align: center !important;
  }

  .hero-metrics strong,
  .hero-metrics small {
    width: 100%;
    text-align: center !important;
  }

  .hero-metrics strong {
    font-size: clamp(13px, 3.65vw, 15px) !important;
    line-height: 1.1 !important;
  }

  .hero-metrics small {
    font-size: 9.5px !important;
    line-height: 1.15 !important;
  }

  .ops-timeline article {
    display: grid !important;
    grid-template-columns: 44px minmax(0, 1fr) !important;
    column-gap: 12px !important;
    row-gap: 8px !important;
    align-items: center !important;
    padding: 14px !important;
  }

  .ops-timeline article > span {
    grid-column: 1 !important;
    grid-row: 1 !important;
    width: 42px !important;
    height: 42px !important;
    margin: 0 !important;
  }

  .ops-timeline article > h3 {
    grid-column: 2 !important;
    grid-row: 1 !important;
    margin: 0 !important;
    align-self: center !important;
    font-size: 18px !important;
    line-height: 1.2 !important;
  }

  .ops-timeline article > p {
    grid-column: 1 / -1 !important;
    grid-row: 2 !important;
    margin: 0 !important;
    line-height: 1.5 !important;
  }
}

@media (max-width: 759px) {
  .premium-console-section#dat-xe .console-card {
    display: flex !important;
    flex-direction: column !important;
    max-height: min(92dvh, 760px) !important;
    padding: 0 !important;
    border-radius: 8px 8px 0 0 !important;
    background: #f5f7fb !important;
    overflow: hidden !important;
  }

  .premium-console-section#dat-xe .console-card::before {
    content: none !important;
    display: none !important;
  }

  .premium-console-section#dat-xe .console-card__head {
    position: relative !important;
    top: auto !important;
    z-index: 2 !important;
    flex: 0 0 auto !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 10px !important;
    padding: 24px 12px 10px !important;
    margin: 0 !important;
    border-bottom: 1px solid #dce5ef !important;
    background: #f5f7fb !important;
    box-shadow: 0 10px 18px rgba(18, 33, 58, 0.07) !important;
  }

  .premium-console-section#dat-xe .console-card__head::before {
    content: "" !important;
    position: absolute !important;
    top: 8px !important;
    left: 50% !important;
    width: 42px !important;
    height: 5px !important;
    border-radius: 8px !important;
    background: #cfd8e5 !important;
    transform: translateX(-50%) !important;
  }

  .premium-console-section#dat-xe .console-card__head > div:first-child {
    min-width: 0;
  }

  .premium-console-section#dat-xe .console-card__head span {
    color: #667085 !important;
    font-size: 11px !important;
    line-height: 1.1 !important;
  }

  .premium-console-section#dat-xe .console-card__head strong {
    display: block !important;
    max-width: 100%;
    overflow: hidden;
    color: #101828 !important;
    font-size: 18px !important;
    line-height: 1.15 !important;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .premium-console-section#dat-xe .console-card__actions {
    flex: 0 0 auto;
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
  }

  .premium-console-section#dat-xe .console-card__head a {
    max-width: 98px;
    padding: 8px 8px !important;
    border-radius: 8px !important;
    color: #1559a8 !important;
    background: #eaf2ff !important;
    font-size: 12px !important;
    line-height: 1 !important;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .premium-console-section#dat-xe .booking-sheet-close {
    position: static !important;
    float: none !important;
    width: 38px !important;
    height: 38px !important;
    min-width: 38px !important;
    display: grid !important;
    place-items: center !important;
    margin: 0 !important;
    border: 1px solid #d8e1ec !important;
    border-radius: 8px !important;
    color: #101828 !important;
    background: #ffffff !important;
  }

  .booking-sheet__body {
    flex: 1 1 auto;
    min-height: 0;
    padding: 12px 12px calc(16px + env(safe-area-inset-bottom)) !important;
    overflow-y: auto;
    overscroll-behavior: contain;
    background: #f5f7fb;
  }

  .premium-console-section#dat-xe .booking-form {
    margin: 0 !important;
    padding: 0 !important;
  }

  .premium-console-section#dat-xe .form-grid {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 10px !important;
    align-items: start !important;
  }

  .premium-console-section#dat-xe .field {
    min-width: 0;
  }

  .premium-console-section#dat-xe .field--wide,
  .premium-console-section#dat-xe .field--hidden {
    grid-column: 1 / -1 !important;
  }

  .premium-console-section#dat-xe .field--hidden {
    display: none !important;
  }

  .premium-console-section#dat-xe .field label {
    min-height: 17px;
    margin: 0 0 5px;
    color: #475467 !important;
    font-size: 11.5px !important;
    line-height: 1.2 !important;
    letter-spacing: 0 !important;
    text-transform: none !important;
  }

  .premium-console-section#dat-xe .field input,
  .premium-console-section#dat-xe .field select,
  .premium-console-section#dat-xe .field textarea {
    min-height: 46px !important;
    padding: 9px 10px !important;
    border-color: #d6e0eb !important;
    border-radius: 8px !important;
    background-color: #ffffff !important;
    color: #101828 !important;
    font-size: 15px !important;
  }

  .premium-console-section#dat-xe .field textarea {
    min-height: 76px !important;
  }

  .premium-console-section#dat-xe .quote-card--premium {
    margin-top: 10px !important;
    padding: 11px !important;
  }

  .premium-console-section#dat-xe .btn--light {
    min-height: 50px !important;
    margin-top: 10px !important;
    border-radius: 8px !important;
  }
}

@media (max-width: 759px) {
  html.nav-drawer-open,
  body.nav-drawer-open {
    overflow: hidden !important;
  }

  .mobile-menu-button {
    position: fixed !important;
    top: calc(8px + env(safe-area-inset-top)) !important;
    right: 10px !important;
    z-index: 1600 !important;
    width: 42px !important;
    height: 42px !important;
    display: inline-grid !important;
    place-items: center !important;
    border: 1px solid #d9e5f2 !important;
    border-radius: 12px !important;
    background: #f3f8ff !important;
    color: #1559a8 !important;
    box-shadow: 0 8px 18px rgba(18, 33, 58, 0.1) !important;
    transform: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
  }

  .mobile-menu-button svg {
    width: 21px !important;
    height: 21px !important;
  }

  .mobile-drawer-backdrop {
    position: fixed !important;
    inset: 0 !important;
    z-index: 1590 !important;
    width: 100vw !important;
    height: 100dvh !important;
    display: block !important;
    border: 0 !important;
    background: rgba(7, 13, 24, 0.5) !important;
    backdrop-filter: blur(10px) !important;
    opacity: 0 !important;
    pointer-events: none !important;
    transition: opacity 180ms ease !important;
  }

  .mobile-drawer-backdrop[hidden] {
    display: none !important;
  }

  .mobile-drawer-backdrop[data-open="true"] {
    opacity: 1 !important;
    pointer-events: auto !important;
  }

  .mobile-drawer,
  .mobile-drawer[data-open="false"],
  .mobile-drawer:not([data-open="true"]) {
    position: fixed !important;
    top: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    left: auto !important;
    z-index: 1601 !important;
    width: min(86vw, 348px) !important;
    max-width: 348px !important;
    height: 100dvh !important;
    min-height: 100dvh !important;
    max-height: none !important;
    display: flex !important;
    flex-direction: column !important;
    padding: calc(14px + env(safe-area-inset-top)) 14px calc(18px + env(safe-area-inset-bottom)) !important;
    border: 0 !important;
    border-left: 1px solid rgba(18, 33, 58, 0.08) !important;
    border-radius: 0 !important;
    background: #f7f9fc !important;
    box-shadow: -24px 0 70px rgba(7, 13, 24, 0.32) !important;
    overflow-y: auto !important;
    transform: translate3d(104%, 0, 0) !important;
    visibility: hidden !important;
    opacity: 1 !important;
    pointer-events: none !important;
    transition:
      transform 230ms cubic-bezier(0.2, 0.8, 0.2, 1),
      visibility 0s linear 230ms !important;
  }

  .mobile-drawer[data-open="true"] {
    transform: translate3d(0, 0, 0) !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transition:
      transform 230ms cubic-bezier(0.2, 0.8, 0.2, 1),
      visibility 0s !important;
  }

  .mobile-drawer .site-nav__head {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    flex: 0 0 auto !important;
    padding: 2px 0 14px !important;
    margin: 0 0 10px !important;
    border-bottom: 1px solid #dde6f0 !important;
    color: #101828 !important;
    font-size: 16px !important;
    font-weight: 900 !important;
  }

  .mobile-drawer .site-nav__head::before {
    content: none !important;
  }

  .mobile-drawer .site-nav__close {
    position: static !important;
    width: 40px !important;
    height: 40px !important;
    display: inline-grid !important;
    place-items: center !important;
    border: 1px solid #d9e5f2 !important;
    border-radius: 12px !important;
    background: #ffffff !important;
    color: #101828 !important;
  }

  .mobile-drawer ul {
    display: grid !important;
    gap: 8px !important;
    padding: 0 !important;
    margin: 0 !important;
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
  }

  .mobile-drawer a {
    min-height: 52px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 12px 12px !important;
    border: 1px solid #dbe5f0 !important;
    border-radius: 8px !important;
    background: #ffffff !important;
    box-shadow: 0 8px 22px rgba(18, 33, 58, 0.06) !important;
    color: #101828 !important;
    font-size: 15px !important;
    font-weight: 850 !important;
    text-decoration: none !important;
  }

  .mobile-drawer a::after {
    content: "›" !important;
    color: #7a899b !important;
    font-size: 24px !important;
    font-weight: 500 !important;
    line-height: 1 !important;
  }

  .mobile-drawer a[aria-current="page"] {
    color: #1559a8 !important;
    background: #eaf3ff !important;
    border-color: #c9def7 !important;
  }
}

@media (max-width: 1023px) {
  html.nav-drawer-open,
  body.nav-drawer-open {
    overflow: hidden !important;
  }

  .mobile-menu-button {
    position: fixed !important;
    top: calc(8px + env(safe-area-inset-top)) !important;
    right: 10px !important;
    z-index: 1800 !important;
    width: 42px !important;
    height: 42px !important;
    display: inline-grid !important;
    place-items: center !important;
    border: 1px solid #d9e5f2 !important;
    border-radius: 12px !important;
    background: #f3f8ff !important;
    color: #1559a8 !important;
    box-shadow: 0 8px 18px rgba(18, 33, 58, 0.1) !important;
    transform: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
  }

  .mobile-menu-button svg {
    width: 21px !important;
    height: 21px !important;
  }

  .mobile-drawer-backdrop {
    position: fixed !important;
    inset: 0 !important;
    z-index: 1790 !important;
    display: block !important;
    width: 100vw !important;
    height: 100dvh !important;
    border: 0 !important;
    background: rgba(7, 13, 24, 0.5) !important;
    backdrop-filter: blur(10px) !important;
    opacity: 0 !important;
    pointer-events: none !important;
    transition: opacity 180ms ease !important;
  }

  .mobile-drawer-backdrop[hidden] {
    display: none !important;
  }

  .mobile-drawer-backdrop[data-open="true"] {
    opacity: 1 !important;
    pointer-events: auto !important;
  }

  .mobile-drawer,
  .mobile-drawer[data-open="false"],
  .mobile-drawer:not([data-open="true"]) {
    position: fixed !important;
    top: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    left: auto !important;
    z-index: 1801 !important;
    width: min(86vw, 348px) !important;
    max-width: 348px !important;
    height: 100dvh !important;
    min-height: 100dvh !important;
    max-height: none !important;
    display: flex !important;
    flex-direction: column !important;
    padding: calc(14px + env(safe-area-inset-top)) 14px calc(18px + env(safe-area-inset-bottom)) !important;
    border: 0 !important;
    border-left: 1px solid rgba(18, 33, 58, 0.08) !important;
    border-radius: 0 !important;
    background: #f7f9fc !important;
    box-shadow: -24px 0 70px rgba(7, 13, 24, 0.32) !important;
    overflow-y: auto !important;
    transform: translate3d(104%, 0, 0) !important;
    visibility: hidden !important;
    opacity: 1 !important;
    pointer-events: none !important;
    transition:
      transform 230ms cubic-bezier(0.2, 0.8, 0.2, 1),
      visibility 0s linear 230ms !important;
  }

  .mobile-drawer[data-open="true"] {
    transform: translate3d(0, 0, 0) !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transition:
      transform 230ms cubic-bezier(0.2, 0.8, 0.2, 1),
      visibility 0s !important;
  }

  .mobile-drawer .site-nav__head {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    flex: 0 0 auto !important;
    padding: 2px 0 14px !important;
    margin: 0 0 10px !important;
    border-bottom: 1px solid #dde6f0 !important;
    color: #101828 !important;
    font-size: 16px !important;
    font-weight: 900 !important;
  }

  .mobile-drawer .site-nav__head::before {
    content: none !important;
  }

  .mobile-drawer .site-nav__close {
    position: static !important;
    width: 40px !important;
    height: 40px !important;
    display: inline-grid !important;
    place-items: center !important;
    border: 1px solid #d9e5f2 !important;
    border-radius: 12px !important;
    background: #ffffff !important;
    color: #101828 !important;
  }

  .mobile-drawer ul {
    display: grid !important;
    gap: 8px !important;
    padding: 0 !important;
    margin: 0 !important;
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
  }

  .mobile-drawer a {
    min-height: 52px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 12px 12px !important;
    border: 1px solid #dbe5f0 !important;
    border-radius: 8px !important;
    background: #ffffff !important;
    box-shadow: 0 8px 22px rgba(18, 33, 58, 0.06) !important;
    color: #101828 !important;
    font-size: 15px !important;
    font-weight: 850 !important;
    text-decoration: none !important;
  }

  .mobile-drawer a::after {
    content: "›" !important;
    color: #7a899b !important;
    font-size: 24px !important;
    font-weight: 500 !important;
    line-height: 1 !important;
  }

  .mobile-drawer a[aria-current="page"] {
    color: #1559a8 !important;
    background: #eaf3ff !important;
    border-color: #c9def7 !important;
  }
}

@media (min-width: 1024px) {
  .site-header {
    position: sticky !important;
    top: 0 !important;
    z-index: 900 !important;
    background: rgba(255, 255, 255, 0.96) !important;
    border-bottom: 1px solid rgba(18, 33, 58, 0.1) !important;
    box-shadow: 0 10px 28px rgba(18, 33, 58, 0.08) !important;
    backdrop-filter: blur(14px) !important;
  }

  .header-inner {
    min-height: 78px !important;
  }

  .mobile-menu-button {
    display: none !important;
  }

  .mobile-drawer,
  .mobile-drawer[data-open="false"],
  .mobile-drawer[data-open="true"] {
    position: static !important;
    width: auto !important;
    max-width: none !important;
    height: auto !important;
    min-height: 0 !important;
    display: block !important;
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    overflow: visible !important;
    transform: none !important;
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: auto !important;
  }
}

@media (max-width: 1023px) {
  body > .nav-backdrop.mobile-drawer-backdrop {
    position: fixed !important;
    inset: 0 !important;
    z-index: 3000 !important;
    display: block !important;
    width: 100vw !important;
    height: 100dvh !important;
    border: 0 !important;
    background: rgba(7, 13, 24, 0.5) !important;
    backdrop-filter: blur(10px) !important;
    opacity: 0 !important;
    pointer-events: none !important;
    transition: opacity 180ms ease !important;
  }

  body > .nav-backdrop.mobile-drawer-backdrop[hidden] {
    display: none !important;
  }

  body > .nav-backdrop.mobile-drawer-backdrop[data-open="true"] {
    opacity: 1 !important;
    pointer-events: auto !important;
  }

  body > .site-nav.mobile-drawer,
  body > .site-nav.mobile-drawer[data-open="false"],
  body > .site-nav.mobile-drawer:not([data-open="true"]) {
    position: fixed !important;
    top: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    left: auto !important;
    z-index: 3001 !important;
    width: min(86vw, 348px) !important;
    max-width: 348px !important;
    height: 100dvh !important;
    min-height: 100dvh !important;
    max-height: none !important;
    display: flex !important;
    flex-direction: column !important;
    padding: calc(14px + env(safe-area-inset-top)) 14px calc(18px + env(safe-area-inset-bottom)) !important;
    border: 0 !important;
    border-left: 1px solid rgba(18, 33, 58, 0.08) !important;
    border-radius: 0 !important;
    background: #f7f9fc !important;
    box-shadow: -24px 0 70px rgba(7, 13, 24, 0.32) !important;
    overflow-y: auto !important;
    transform: translate3d(104%, 0, 0) !important;
    visibility: hidden !important;
    opacity: 1 !important;
    pointer-events: none !important;
    transition:
      transform 230ms cubic-bezier(0.2, 0.8, 0.2, 1),
      visibility 0s linear 230ms !important;
  }

body > .site-nav.mobile-drawer[data-open="true"] {
    transform: translate3d(0, 0, 0) !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transition:
      transform 230ms cubic-bezier(0.2, 0.8, 0.2, 1),
      visibility 0s !important;
  }
}

a.btn[href^="tel:"][data-call-track] {
  position: relative;
  isolation: isolate;
  overflow: visible;
}

a.btn[href^="tel:"][data-call-track]::before,
a.btn[href^="tel:"][data-call-track]::after {
  content: none !important;
  display: none !important;
  animation: none !important;
}

a.btn[href^="tel:"][data-call-track]::after {
  animation-delay: 0.95s;
}

.phone-pulse {
  position: relative;
  z-index: 1;
  width: 1.25em;
  height: 1.25em;
  min-width: 1.25em;
  display: inline-grid;
  place-items: center;
  color: currentColor;
  isolation: isolate;
}

.phone-pulse::before,
.phone-pulse::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 0;
  width: 30px;
  height: 30px;
  border: 2px solid currentColor;
  border-radius: 999px;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.58);
  pointer-events: none;
  animation: phonePulseWave 1.9s ease-out infinite;
}

.phone-pulse::after {
  animation-delay: 0.95s;
}

a.btn[href^="tel:"][data-call-track] .phone-pulse,
.mobile-actions a:nth-child(3) .phone-pulse {
  color: currentColor;
}

a.btn[href^="tel:"][data-call-track] svg,
.phone-pulse svg {
  position: relative;
  z-index: 1;
  transform-origin: 50% 50%;
  animation: ctaPhoneShake 1.25s ease-in-out infinite;
}

.mobile-actions a:nth-child(3)::before,
.mobile-actions a:nth-child(3)::after {
  content: none !important;
  display: none !important;
  animation: none !important;
}

.icon-phone {
  transform-origin: 50% 50%;
  animation: ctaPhoneShake 1.25s ease-in-out infinite;
}

@keyframes ctaPhoneShake {
  0%,
  48%,
  100% {
    transform: rotate(0);
  }
  8% {
    transform: rotate(-13deg);
  }
  16% {
    transform: rotate(11deg);
  }
  24% {
    transform: rotate(-9deg);
  }
  32% {
    transform: rotate(7deg);
  }
}

@keyframes ctaPhoneWave {
  0% {
    opacity: 0;
    transform: translateY(-50%) scale(0.58);
  }
  15% {
    opacity: 0.52;
  }
  78% {
    opacity: 0.08;
  }
  100% {
    opacity: 0;
    transform: translateY(-50%) scale(1.55);
  }
}

@keyframes phonePulseWave {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.58);
  }
  15% {
    opacity: 0.46;
  }
  78% {
    opacity: 0.08;
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(1.55);
  }
}

@media (prefers-reduced-motion: reduce) {
  a.btn[href^="tel:"][data-call-track]::before,
  a.btn[href^="tel:"][data-call-track]::after,
  a.btn[href^="tel:"][data-call-track] svg,
  .icon-phone,
  .phone-pulse::before,
  .phone-pulse::after {
    animation: none !important;
  }
}

.premium-console-section#dat-xe {
  position: relative;
  z-index: 1;
  clear: both;
  margin-top: clamp(26px, 4vw, 56px);
}

@media (min-width: 760px) {
  .premium-console-section#dat-xe {
    padding-top: clamp(28px, 4vw, 64px);
  }

  .premium-console-section#dat-xe .premium-console {
    position: relative;
    z-index: 2;
  }
}

@media (max-width: 759px) {
  .premium-console-section#dat-xe {
    margin-top: 0;
    padding-top: 0;
  }
}

/* Production locks: sticky app bar, booking sheet layer, bottom call dock, article SEO layout */
.site-header {
  position: sticky !important;
  top: 0 !important;
  z-index: 2400 !important;
  background: rgba(255, 255, 255, 0.96) !important;
  border-bottom: 1px solid rgba(18, 33, 58, 0.1) !important;
  box-shadow: 0 10px 30px rgba(18, 33, 58, 0.08) !important;
  backdrop-filter: blur(16px) !important;
}

.top-strip {
  flex: 0 0 auto;
}

.header-inner {
  min-height: 72px;
}

@media (max-width: 759px) {
  .site-header {
    z-index: 2400 !important;
  }

  .top-strip {
    display: none !important;
  }

  .header-inner {
    min-height: 64px !important;
    width: calc(100% - 20px) !important;
  }
}

@media (min-width: 1024px) {
  .site-header {
    z-index: 2400 !important;
  }

  .header-inner {
    min-height: 78px !important;
  }
}

@media (max-width: 1023px) {
  body > .nav-backdrop.mobile-drawer-backdrop {
    z-index: 3100 !important;
  }

  body > .site-nav.mobile-drawer,
  body > .site-nav.mobile-drawer[data-open="false"],
  body > .site-nav.mobile-drawer:not([data-open="true"]) {
    z-index: 3101 !important;
  }
}

@media (max-width: 759px) {
  body.booking-sheet-open .site-header {
    z-index: 1200 !important;
  }

  .booking-sheet-backdrop {
    z-index: 4200 !important;
  }

  .booking-sheet-backdrop[data-open="true"] {
    display: block !important;
    opacity: 1 !important;
    pointer-events: auto !important;
  }

  .premium-console-section#dat-xe,
  .premium-console-section#dat-xe[data-open="false"] {
    position: fixed !important;
    inset: auto 0 0 0 !important;
    z-index: 4210 !important;
    display: block !important;
    width: 100% !important;
    max-height: min(92dvh, 760px) !important;
    margin: 0 !important;
    padding: 0 !important;
    border-radius: 8px 8px 0 0 !important;
    background: #f5f7fb !important;
    box-shadow: 0 -28px 80px rgba(7, 13, 24, 0.32) !important;
    overflow: hidden !important;
    opacity: 1 !important;
    transform: translate3d(0, calc(100% + 32px), 0) !important;
    visibility: hidden !important;
    pointer-events: none !important;
    transition:
      transform 260ms cubic-bezier(0.2, 0.8, 0.2, 1),
      visibility 0s linear 260ms !important;
  }

  .premium-console-section#dat-xe[data-open="true"] {
    transform: translate3d(0, 0, 0) !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transition:
      transform 260ms cubic-bezier(0.2, 0.8, 0.2, 1),
      visibility 0s !important;
  }

  .premium-console-section#dat-xe .console-card {
    max-height: min(92dvh, 760px) !important;
    display: flex !important;
    flex-direction: column !important;
    overflow: hidden !important;
  }

  .premium-console-section#dat-xe .console-card__head {
    position: relative !important;
    top: auto !important;
    z-index: 2 !important;
    flex: 0 0 auto !important;
  }

  .booking-sheet__body {
    flex: 1 1 auto !important;
    min-height: 0 !important;
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch;
  }
}

.mobile-actions__call {
  position: relative !important;
  overflow: visible !important;
  isolation: isolate !important;
}

.mobile-actions__call .phone-pulse {
  width: 24px !important;
  height: 24px !important;
  min-width: 24px !important;
  margin-bottom: 1px;
}

.mobile-actions__call .phone-pulse::before,
.mobile-actions__call .phone-pulse::after {
  width: 34px !important;
  height: 34px !important;
  border-width: 2px !important;
  color: #b42338;
}

.mobile-actions__call .icon-phone {
  width: 20px !important;
  height: 20px !important;
}

.mobile-actions__call span:not(.phone-pulse) {
  color: #b42338 !important;
  font-weight: 900 !important;
}

.article-card__meta,
.article-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: #667085;
  font-size: 12px;
  font-weight: 800;
}

.article-card__meta {
  margin-bottom: 8px;
}

.editorial-panel--seo {
  display: grid;
  gap: 22px;
}

.article-meta-row {
  padding: 12px;
  border: 1px solid #dce5ef;
  border-radius: 8px;
  background: #f8fbff;
}

.article-meta-row span {
  display: inline-flex;
  align-items: center;
}

.article-intro {
  display: grid;
  gap: 12px;
  padding: 18px;
  border-left: 4px solid #1559a8;
  border-radius: 8px;
  background: #f4f8ff;
}

.article-intro p,
.article-section-block p,
.article-faq p {
  margin: 0;
}

.article-toc {
  display: grid;
  gap: 8px;
  padding: 16px;
  border: 1px solid #dce5ef;
  border-radius: 8px;
  background: #ffffff;
}

.article-toc strong {
  color: #101828;
  font-size: 15px;
}

.article-toc a {
  padding: 10px 12px;
  border-radius: 8px;
  color: #1559a8;
  background: #eef6ff;
  font-weight: 850;
  text-decoration: none;
}

.article-section-block {
  display: grid;
  gap: 13px;
  scroll-margin-top: 110px;
}

.article-inline-media {
  margin: 6px 0 4px;
  overflow: hidden;
  border: 1px solid #dce5ef;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 16px 42px rgba(18, 33, 58, 0.08);
}

.article-inline-media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.article-inline-media figcaption {
  padding: 10px 12px;
  color: #667085;
  font-size: 13px;
  font-weight: 700;
}

.article-section-block h2,
.article-faq h2,
.article-related h2 {
  margin: 0;
  color: #101828;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.15;
}

.article-section-block ul {
  display: grid;
  gap: 8px;
  margin: 4px 0 0;
  padding: 14px 16px 14px 34px;
  border: 1px solid #dce5ef;
  border-radius: 8px;
  background: #fbfcfe;
}

.article-section-block li {
  color: #344054;
}

.article-faq {
  display: grid;
  gap: 10px;
  padding-top: 8px;
}

.article-faq details {
  border: 1px solid #dce5ef;
  border-radius: 8px;
  background: #ffffff;
  overflow: hidden;
}

.article-faq summary {
  cursor: pointer;
  padding: 14px;
  color: #101828;
  font-weight: 900;
}

.article-faq details p {
  padding: 0 14px 14px;
  color: #475467;
}

.article-related {
  display: grid;
  gap: 14px;
}

.article-related__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.article-related__grid a {
  display: grid;
  gap: 8px;
  overflow: hidden;
  padding: 0 0 14px;
  border: 1px solid #dce5ef;
  border-radius: 8px;
  background: #ffffff;
  color: #101828;
  text-decoration: none;
  box-shadow: 0 14px 34px rgba(18, 33, 58, 0.08);
}

.article-related__grid img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: #eef3f8;
  transition: transform 220ms ease;
}

.article-related__grid a:hover img,
.article-related__grid a:focus-visible img {
  transform: scale(1.025);
}

.article-related__grid span,
.article-related__grid small {
  color: #667085;
}

.article-related__grid span,
.article-related__grid strong,
.article-related__grid small {
  margin-inline: 14px;
}

.article-related__grid strong {
  font-size: 17px;
  line-height: 1.25;
}

.booking-aside__note {
  display: grid;
  gap: 4px;
  padding: 14px;
  border: 1px solid #dce5ef;
  border-radius: 8px;
  background: #f8fbff;
}

.booking-aside__note span {
  color: #667085;
  font-size: 13px;
}

.customer-voice-section {
  background: #f7faff;
}

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

.customer-voice-grid article {
  display: grid;
  gap: 10px;
  padding: 18px;
  border: 1px solid #dce5ef;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 44px rgba(18, 33, 58, 0.08);
}

.customer-voice-grid span {
  color: #1559a8;
  font-size: 12px;
  font-weight: 900;
}

.customer-voice-grid p {
  margin: 0;
  color: #101828;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.3;
}

.customer-voice-grid strong {
  color: #475467;
  font-size: 14px;
  line-height: 1.55;
}

@media (max-width: 759px) {
  .article-premium-layout {
    display: grid !important;
    gap: 16px !important;
  }

  .editorial-panel--seo {
    gap: 18px;
  }

  .article-meta-row {
    gap: 6px;
    padding: 10px;
    font-size: 11px;
  }

  .article-intro {
    padding: 14px;
  }

  .article-toc {
    padding: 12px;
  }

  .article-toc a {
    padding: 10px;
  }

  .article-section-block {
    scroll-margin-top: 78px;
  }

  .premium-listing .article-card .cta-row,
  .article-card .cta-row {
    width: 100% !important;
    display: grid !important;
    grid-template-columns: 1fr !important;
  }

  .premium-listing .article-card .btn,
  .article-card .btn {
    width: 100% !important;
    max-width: none !important;
    justify-content: center !important;
  }

  .hero-actions,
  .cta-row {
    width: 100% !important;
    max-width: none !important;
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 8px !important;
  }

  .hero-actions .btn,
  .cta-row .btn {
    width: 100% !important;
    max-width: none !important;
    min-width: 0 !important;
    justify-content: center !important;
    white-space: normal !important;
  }

  .article-section-block h2,
  .article-faq h2,
  .article-related h2 {
    font-size: 24px;
  }

  .article-related__grid,
  .customer-voice-grid {
    grid-template-columns: 1fr;
  }

  .customer-voice-grid article {
    padding: 15px;
  }
}

.brand--wordmark .brand-eyebrow {
  overflow: visible !important;
  font-size: 12px !important;
  line-height: 1.28 !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
  text-overflow: clip !important;
  white-space: nowrap !important;
  -webkit-font-smoothing: antialiased;
}

@media (max-width: 759px) {
  .brand-copy {
    gap: 2px !important;
  }

  .brand--wordmark .brand-eyebrow {
    font-size: 10.5px !important;
    line-height: 1.35 !important;
    letter-spacing: 0 !important;
  }

  .brand--wordmark .brand-service {
    font-size: 10.5px !important;
    line-height: 1.25 !important;
  }
}

.article-card__media,
.article-card h3 a,
.article-card__summary {
  color: inherit;
  text-decoration: none;
}

.article-card__media {
  display: block;
  overflow: hidden;
}

.article-card__media img {
  transition: transform 220ms ease;
}

.article-card:hover .article-card__media img,
.article-card:focus-within .article-card__media img {
  transform: scale(1.025);
}

.article-card h3 a {
  display: inline;
}

.article-card h3 a:hover,
.article-card h3 a:focus-visible,
.article-card__summary:hover,
.article-card__summary:focus-visible {
  color: #1559a8;
}

.article-card__summary {
  display: block;
  margin: 0;
  color: var(--brand-muted);
  line-height: 1.55;
}

.brand-copy {
  gap: 2px !important;
}

.brand--wordmark .brand-route {
  gap: 0 !important;
}

.site-footer .footer-bottom {
  position: relative !important;
  border-top: 0 !important;
}

.site-footer .footer-bottom::before {
  content: "" !important;
  position: absolute !important;
  top: 0 !important;
  left: 50% !important;
  width: 100vw !important;
  height: 1px !important;
  background: rgba(255, 255, 255, 0.16) !important;
  transform: translateX(-50%) !important;
  pointer-events: none !important;
}

.route-title {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: .48em;
  flex-wrap: wrap;
  line-height: 1.2;
}

.route-title__switch {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.8em;
  height: 1.28em;
  padding: 0 .18em;
  border-radius: 6px;
  background: rgba(31, 104, 177, .1);
  color: #1764ad;
  font-weight: 900;
  line-height: 1;
  transform: translateY(-.02em);
}

/* Final fixed lock for desktop and mobile app bar */
:root {
  --fixed-header-offset: 104px;
  --anchor-extra-offset: 24px;
}

html {
  scroll-padding-top: calc(var(--fixed-header-offset) + var(--anchor-extra-offset)) !important;
}

body {
  padding-top: var(--fixed-header-offset) !important;
}

[id] {
  scroll-margin-top: calc(var(--fixed-header-offset) + var(--anchor-extra-offset)) !important;
}

.breadcrumb {
  padding-top: clamp(22px, 2.4vw, 32px) !important;
  padding-bottom: clamp(22px, 2.4vw, 32px) !important;
}

.site-header,
header.site-header {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  inset-block-start: 0 !important;
  z-index: 2600 !important;
  width: 100% !important;
  background: rgba(255, 255, 255, 0.97) !important;
  border-bottom: 1px solid rgba(18, 33, 58, 0.1) !important;
  box-shadow: 0 10px 30px rgba(18, 33, 58, 0.08) !important;
  backdrop-filter: blur(16px) !important;
  -webkit-backdrop-filter: blur(16px) !important;
}

body.nav-drawer-open .site-header {
  z-index: 2500 !important;
}

body.booking-sheet-open .site-header {
  z-index: 1200 !important;
}

@media (max-width: 759px) {
  :root {
    --fixed-header-offset: 64px;
    --anchor-extra-offset: 18px;
  }

  .site-header,
  header.site-header {
    top: 0 !important;
    min-height: 64px !important;
  }

  .top-strip {
    display: none !important;
  }

  .breadcrumb {
    padding-top: 16px !important;
    padding-bottom: 20px !important;
  }
}

@media (min-width: 760px) {
  :root {
    --fixed-header-offset: 104px;
    --anchor-extra-offset: 24px;
  }

  .site-header,
  header.site-header {
    top: 0 !important;
  }
}

@media (min-width: 760px) {
  .premium-console-section#dat-xe {
    position: relative !important;
    z-index: 6 !important;
    clear: both !important;
    margin-top: clamp(56px, 6vw, 96px) !important;
    padding-top: 0 !important;
    padding-bottom: clamp(48px, 5vw, 78px) !important;
  }

  .premium-console-section#dat-xe.premium-console-section--home {
    margin-top: clamp(-100px, -6.8vw, -64px) !important;
  }

  .premium-console-section#dat-xe .premium-console {
    position: relative !important;
    z-index: 2 !important;
  }
}

@media (max-width: 759px) {
  .premium-console-section#dat-xe {
    margin-top: 0 !important;
    padding-top: 0 !important;
  }
}

/* Final heading scale: compact enough for Vietnamese titles on mobile. */
.section h2,
.console-copy h2,
.app-enterprise h2,
.premium-media-panel h2,
.route-summary-panel h2,
.booking-aside h2,
.content-panel h2,
.article-section-block h2,
.article-faq h2,
.article-related h2,
.footer-command h2 {
  font-size: clamp(22px, 3.2vw, 34px) !important;
  line-height: 1.12 !important;
  letter-spacing: 0 !important;
}

.console-copy h2 {
  max-width: none !important;
}

@media (max-width: 759px) {
  .section h2,
  .console-copy h2,
  .app-enterprise h2,
  .premium-media-panel h2,
  .route-summary-panel h2,
  .booking-aside h2,
  .content-panel h2,
  .article-section-block h2,
  .article-faq h2,
  .article-related h2,
  .footer-command h2 {
    font-size: clamp(20px, 5.25vw, 25px) !important;
    line-height: 1.15 !important;
  }

  .console-copy h2 {
    max-width: none !important;
  }
}
