:root {
  --orange: #fe6a00;
  --orange-deep: #d85500;
  --orange-soft: #fff0e5;
  --blue: #1581bf;
  --blue-deep: #073d60;
  --blue-ink: #062b43;
  --blue-soft: #eaf6fc;
  --ink: #111c25;
  --muted: #5f6d78;
  --line: #dbe6ec;
  --paper: #ffffff;
  --warm: #fffaf6;
  --surface: #f4f8fa;
  --shadow: 0 26px 70px rgba(6, 43, 67, 0.13);
  --container: 1220px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "DM Sans", sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

button,
input,
select {
  font: inherit;
}

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

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

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

h1,
h2,
h3,
.brand-name,
.booking-submit,
.route-button,
.final-cta a {
  font-family: "Archivo", sans-serif;
}

.container {
  width: min(var(--container), calc(100% - 48px));
  margin-inline: auto;
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  border-radius: 8px;
  color: #fff;
  background: var(--blue-deep);
  transform: translateY(-160%);
}

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

:focus-visible {
  outline: 3px solid rgba(254, 106, 0, 0.48);
  outline-offset: 3px;
}

.trust-ribbon {
  color: #fff;
  background: var(--blue-ink);
}

.trust-ribbon-inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  font-size: 0.78rem;
  font-weight: 600;
}

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

.trust-ribbon i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 4px rgba(254, 106, 0, 0.13);
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(7, 61, 96, 0.09);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(18px);
}

.nav-shell {
  min-height: 80px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 34px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
}

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

.brand-mark rect {
  fill: var(--blue);
}

.brand-mark path:first-of-type {
  fill: none;
  stroke: #fff;
  stroke-width: 3.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.brand-mark path:last-of-type {
  fill: none;
  stroke: var(--orange);
  stroke-width: 3.4;
  stroke-linecap: round;
}

.brand-name {
  position: relative;
  display: inline-flex;
  align-items: baseline;
  color: var(--blue);
  font-size: 1.38rem;
  font-weight: 800;
  letter-spacing: -0.055em;
}

.brand-name strong,
.brand-name b {
  font: inherit;
}

.brand-name b {
  color: var(--orange);
}

.brand-name::after {
  content: "";
  position: absolute;
  right: 2px;
  bottom: -4px;
  width: 27px;
  border-top: 3px solid var(--orange);
  border-radius: 999px;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
}

.main-nav a {
  position: relative;
  color: #30414e;
  font-size: 0.91rem;
  font-weight: 700;
}

.main-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  border-top: 2px solid var(--orange);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.main-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  min-height: 48px;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border-radius: 12px;
  color: #fff;
  background: var(--orange);
  font-family: "Archivo", sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  box-shadow: 0 10px 25px rgba(254, 106, 0, 0.2);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.nav-cta span {
  font-size: 1.1rem;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(254, 106, 0, 0.28);
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 64px 0 74px;
  background:
    radial-gradient(circle at 4% 10%, rgba(21, 129, 191, 0.1), transparent 29%),
    linear-gradient(180deg, #fff 0%, #f8fbfd 100%);
}

.hero::after {
  content: "";
  position: absolute;
  z-index: -2;
  right: -120px;
  bottom: -100px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(21, 129, 191, 0.13);
  border-radius: 50%;
}

.hero-shape {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  pointer-events: none;
}

.hero-shape-one {
  top: 120px;
  right: 5%;
  width: 120px;
  height: 120px;
  border: 22px solid rgba(254, 106, 0, 0.12);
}

.hero-shape-two {
  right: 36%;
  bottom: 70px;
  width: 18px;
  height: 18px;
  background: var(--orange);
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(420px, 0.92fr);
  gap: clamp(42px, 6vw, 82px);
  align-items: center;
}

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

.hero-kicker {
  margin-bottom: 17px;
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--blue-deep);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-kicker span {
  padding: 6px 10px;
  border-radius: 7px;
  color: #fff;
  background: var(--blue);
}

.hero h1 {
  max-width: 680px;
  margin-bottom: 20px;
  color: var(--ink);
  font-size: clamp(3.55rem, 5.8vw, 5.35rem);
  font-weight: 800;
  line-height: 0.96;
  letter-spacing: -0.065em;
}

.hero h1 em {
  color: var(--orange);
  font-style: normal;
}

.hero-lead {
  max-width: 590px;
  margin-bottom: 27px;
  color: var(--muted);
  font-size: 1.07rem;
  line-height: 1.58;
}

.hero-booking {
  position: relative;
  max-width: 680px;
  overflow: hidden;
  border: 1px solid rgba(21, 129, 191, 0.18);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 18px 55px rgba(6, 43, 67, 0.1);
}

.hero-booking::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 5px;
  background: linear-gradient(180deg, var(--blue) 0 50%, var(--orange) 50% 100%);
}

.booking-step {
  padding: 19px 22px 21px 27px;
  margin: 0;
  border: 0;
}

.booking-step + .booking-step {
  border-top: 1px solid var(--line);
}

.booking-step legend {
  width: 100%;
  padding: 0;
  margin-bottom: 12px;
  color: #40515d;
  font-size: 0.8rem;
  font-weight: 700;
}

.booking-step legend span {
  margin-right: 8px;
  color: var(--blue);
  font-family: "Archivo", sans-serif;
  font-weight: 800;
}

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

.choice-card {
  position: relative;
  min-height: 68px;
  padding: 9px 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  border: 1.5px solid var(--line);
  border-radius: 13px;
  color: #4e5d68;
  background: #fff;
  cursor: pointer;
  transition: border-color 160ms ease, background 160ms ease, color 160ms ease, transform 160ms ease;
}

.choice-card:hover {
  border-color: rgba(21, 129, 191, 0.55);
  transform: translateY(-1px);
}

.choice-card.is-selected {
  border-color: var(--blue);
  color: var(--blue-deep);
  background: var(--blue-soft);
  box-shadow: inset 0 -3px 0 var(--blue);
}

.choice-card input,
.mode-choice input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.choice-card svg {
  width: 35px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.choice-card strong {
  font-family: "Archivo", sans-serif;
  font-size: 0.91rem;
}

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

.mode-choice {
  position: relative;
  min-height: 76px;
  padding: 12px 13px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 11px;
  border: 1.5px solid var(--line);
  border-radius: 14px;
  color: #42525e;
  background: #fff;
  cursor: pointer;
  transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.mode-choice:hover {
  border-color: rgba(254, 106, 0, 0.55);
  transform: translateY(-1px);
}

.mode-choice.is-selected {
  border-color: var(--orange);
  background: var(--orange-soft);
  box-shadow: inset 0 -3px 0 var(--orange);
}

.mode-icon {
  width: 31px;
  height: 31px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  color: var(--blue);
  background: var(--blue-soft);
  font-size: 0.72rem;
}

.mode-icon-fast {
  color: var(--orange);
  background: #fff;
  font-size: 1rem;
}

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

.mode-copy small,
.mode-copy strong,
.mode-price small {
  display: block;
}

.mode-copy small {
  margin-bottom: 2px;
  color: var(--orange-deep);
  font-size: 0.61rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.mode-copy strong {
  overflow: hidden;
  color: var(--ink);
  font-family: "Archivo", sans-serif;
  font-size: 0.86rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mode-price {
  color: var(--blue-deep);
  font-family: "Archivo", sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1;
  text-align: right;
}

.mode-price small {
  margin-bottom: 3px;
  color: var(--muted);
  font-family: "DM Sans", sans-serif;
  font-size: 0.58rem;
  font-weight: 600;
}

.booking-finish {
  min-width: 0;
  padding: 19px 22px 22px 27px;
  display: grid;
  grid-template-columns: 1.05fr 0.8fr;
  gap: 12px;
  border-top: 1px solid var(--line);
  background: var(--surface);
}

.location-field {
  display: block;
}

.location-field.is-hidden {
  display: none;
}

.booking-finish.is-online {
  grid-template-columns: 1fr;
}

.location-field > span,
.booking-summary > span {
  display: block;
  margin-bottom: 7px;
  color: #4c5c67;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.location-field select {
  width: 100%;
  min-height: 49px;
  padding: 0 42px 0 13px;
  border: 1px solid #cfdce3;
  border-radius: 11px;
  color: var(--ink);
  background: #fff;
  cursor: pointer;
}

.booking-summary {
  min-width: 0;
  padding-top: 1px;
}

.booking-summary strong,
.booking-summary small {
  display: block;
}

.booking-summary strong {
  overflow: hidden;
  color: var(--blue-deep);
  font-family: "Archivo", sans-serif;
  font-size: 0.83rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.booking-summary small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.67rem;
}

.booking-summary b {
  color: var(--orange-deep);
}

.booking-submit {
  min-height: 54px;
  padding: 0 18px 0 20px;
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 0;
  border-radius: 12px;
  color: #fff;
  background: var(--orange);
  font-size: 0.94rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(254, 106, 0, 0.22);
  transition: background 160ms ease, transform 160ms ease;
}

.booking-submit:hover {
  background: var(--orange-deep);
  transform: translateY(-1px);
}

.booking-submit i {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  font-style: normal;
  font-size: 1.1rem;
}

.booking-feedback {
  display: none;
  padding: 13px 22px 15px 27px;
  margin: 0;
  border-top: 1px solid #ffd4b5;
  color: #943d00;
  background: var(--orange-soft);
  font-size: 0.79rem;
  font-weight: 600;
}

.booking-feedback.is-visible {
  display: block;
}

.hero-assurances {
  margin-top: 18px;
  display: flex;
  align-items: center;
  gap: 12px 24px;
  flex-wrap: wrap;
  color: #4f606c;
  font-size: 0.77rem;
  font-weight: 600;
}

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

.hero-assurances svg {
  width: 18px;
  height: 18px;
  padding: 3px;
  overflow: visible;
  border-radius: 50%;
  fill: none;
  stroke: #fff;
  stroke-width: 2.5;
  background: var(--blue);
}

.hero-media {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  border: 8px solid #fff;
  border-radius: 190px 30px 30px 30px;
  background: var(--blue-soft);
  box-shadow: var(--shadow);
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(6, 43, 67, 0.72) 100%);
}

.hero-media img {
  width: 100%;
  height: 100%;
  min-height: 720px;
  object-fit: cover;
  object-position: 61% center;
  transition: transform 700ms cubic-bezier(0.2, 0.75, 0.25, 1);
}

.hero-media:hover img {
  transform: scale(1.025);
}

.media-label {
  position: absolute;
  z-index: 2;
  top: 32px;
  left: 58px;
  max-width: 190px;
  padding: 12px 15px;
  border-radius: 12px;
  color: var(--blue-deep);
  background: rgba(255, 255, 255, 0.92);
  font-family: "Archivo", sans-serif;
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.25;
  box-shadow: 0 10px 30px rgba(6, 43, 67, 0.13);
  backdrop-filter: blur(12px);
}

.media-label::before {
  content: "";
  position: absolute;
  top: 11px;
  bottom: 11px;
  left: 0;
  border-left: 4px solid var(--orange);
  border-radius: 999px;
}

.media-play {
  position: absolute;
  z-index: 2;
  right: 24px;
  bottom: 24px;
  left: 24px;
  min-height: 72px;
  padding: 10px 15px;
  display: flex;
  align-items: center;
  gap: 13px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 17px;
  color: #fff;
  background: rgba(6, 43, 67, 0.84);
  backdrop-filter: blur(14px);
}

.media-play > i {
  position: relative;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--orange);
}

.media-play > i::after {
  content: "";
  position: absolute;
  top: 14px;
  left: 18px;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 12px solid #fff;
}

.media-play small,
.media-play strong {
  display: block;
}

.media-play small {
  margin-bottom: 2px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.66rem;
}

.media-play strong {
  font-family: "Archivo", sans-serif;
  font-size: 0.92rem;
}

.proof-strip {
  color: #fff;
  background: var(--blue);
}

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

.proof-grid > div {
  min-height: 92px;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.proof-grid > div:first-child {
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.proof-grid strong {
  color: rgba(255, 255, 255, 0.46);
  font-family: "Archivo", sans-serif;
  font-size: 0.76rem;
}

.proof-grid span {
  font-family: "Archivo", sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  line-height: 1.25;
}

.section {
  padding: 112px 0;
}

.section-heading {
  margin-bottom: 44px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 60px;
  align-items: end;
}

.eyebrow {
  margin-bottom: 13px;
  color: var(--orange-deep);
  font-size: 0.71rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.section-heading h2,
.locations-copy h2,
.faq-heading h2,
.method-copy h2 {
  margin-bottom: 0;
  font-size: clamp(2.8rem, 5vw, 4.65rem);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.section-heading > p {
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 1rem;
}

.routes {
  background: var(--warm);
}

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

.route-card {
  position: relative;
  min-height: 590px;
  padding: 44px;
  overflow: hidden;
  border-radius: 28px;
}

.route-card-day {
  color: #fff;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 42%),
    var(--blue-deep);
}

.route-card-online {
  border: 1px solid #cfe1ea;
  color: var(--ink);
  background:
    radial-gradient(circle at 95% 5%, rgba(21, 129, 191, 0.14), transparent 32%),
    var(--blue-soft);
}

.route-copy {
  position: relative;
  z-index: 3;
  max-width: 340px;
}

.route-tag {
  display: inline-flex;
  padding: 7px 10px;
  border-radius: 8px;
  color: var(--orange);
  background: #fff;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.route-card-online .route-tag {
  color: #fff;
  background: var(--blue);
}

.route-card h3 {
  margin: 22px 0 19px;
  font-size: clamp(2.7rem, 4vw, 4.35rem);
  font-weight: 800;
  line-height: 0.94;
  letter-spacing: -0.06em;
}

.route-card p {
  max-width: 330px;
  margin-bottom: 23px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.94rem;
}

.route-card-online p {
  color: #526572;
}

.route-card ul {
  padding: 0;
  margin: 0 0 29px;
  display: grid;
  gap: 9px;
  list-style: none;
  font-size: 0.81rem;
  font-weight: 600;
}

.route-card li {
  display: flex;
  align-items: center;
  gap: 9px;
}

.route-card li::before {
  content: "";
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--orange);
}

.route-button {
  min-height: 51px;
  padding: 0 17px 0 19px;
  display: inline-flex;
  align-items: center;
  gap: 23px;
  border-radius: 12px;
  font-size: 0.82rem;
  font-weight: 700;
  transition: transform 160ms ease;
}

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

.route-button-light {
  color: var(--blue-deep);
  background: #fff;
}

.route-button-dark {
  color: #fff;
  background: var(--orange);
}

.route-button span {
  font-size: 1.08rem;
}

.route-price {
  position: absolute;
  z-index: 3;
  top: 42px;
  right: 39px;
  color: #fff;
  text-align: right;
}

.route-card-online .route-price {
  color: var(--orange);
}

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

.route-price small {
  margin-bottom: -4px;
  color: currentColor;
  font-size: 0.61rem;
  font-weight: 700;
}

.route-price strong {
  font-family: "Archivo", sans-serif;
  font-size: 1.75rem;
  letter-spacing: -0.06em;
}

.route-graphic {
  position: absolute;
  z-index: 1;
  right: -60px;
  bottom: -85px;
  width: 315px;
  height: 315px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
}

.route-graphic::before,
.route-graphic::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
}

.route-graphic::before {
  inset: 36px;
}

.route-graphic::after {
  inset: 78px;
}

.sign {
  position: absolute;
  z-index: 2;
  display: grid;
  place-items: center;
  color: var(--blue-deep);
  background: #fff;
  font-family: "Archivo", sans-serif;
  font-weight: 800;
  box-shadow: 0 15px 35px rgba(2, 24, 38, 0.24);
}

.sign-round {
  top: 45px;
  left: 28px;
  width: 75px;
  height: 75px;
  border: 8px solid var(--orange);
  border-radius: 50%;
  font-size: 1.25rem;
}

.sign-square {
  top: 132px;
  left: 112px;
  width: 68px;
  height: 68px;
  border: 7px solid #fff;
  border-radius: 14px;
  color: #fff;
  background: var(--blue);
  font-size: 1.4rem;
  transform: rotate(8deg);
}

.route-line {
  position: absolute;
  right: 70px;
  bottom: 12px;
  width: 80px;
  height: 180px;
  border-left: 4px dashed rgba(255, 255, 255, 0.34);
  transform: rotate(42deg);
}

.learning-screen {
  position: absolute;
  right: -72px;
  bottom: -56px;
  width: 350px;
  height: 265px;
  padding: 14px;
  border: 9px solid var(--blue-deep);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 24px 55px rgba(6, 43, 67, 0.2);
  transform: rotate(-6deg);
}

.screen-top {
  height: 18px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.screen-top span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #cddae0;
}

.screen-top span:first-child {
  background: var(--orange);
}

.screen-video {
  height: 130px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background:
    linear-gradient(140deg, rgba(21, 129, 191, 0.9), rgba(7, 61, 96, 0.94)),
    var(--blue);
}

.screen-video i {
  position: relative;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: #fff;
}

.screen-video i::after {
  content: "";
  position: absolute;
  top: 13px;
  left: 18px;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  border-left: 13px solid var(--orange);
}

.screen-progress {
  height: 5px;
  margin: 12px 0;
  border-radius: 999px;
  background: #e2edf2;
}

.screen-progress span {
  width: 64%;
  height: 100%;
  display: block;
  border-radius: inherit;
  background: var(--orange);
}

.screen-answers {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.screen-answers span {
  height: 38px;
  border: 1px solid #d8e5eb;
  border-radius: 9px;
  background: var(--surface);
}

.method {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: var(--blue-ink);
}

.method::before {
  content: "";
  position: absolute;
  top: -310px;
  right: -210px;
  width: 650px;
  height: 650px;
  border: 100px solid rgba(21, 129, 191, 0.14);
  border-radius: 50%;
}

.method-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(400px, 0.8fr);
  gap: clamp(60px, 8vw, 110px);
  align-items: center;
}

.method-media {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  border-radius: 28px 28px 150px 28px;
  background: var(--blue-deep);
  box-shadow: 0 30px 75px rgba(0, 0, 0, 0.24);
}

.method-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(5, 26, 40, 0.65));
}

.method-media img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  object-position: center;
}

.method-play {
  position: absolute;
  z-index: 2;
  bottom: 26px;
  left: 26px;
  min-height: 59px;
  padding: 8px 18px 8px 9px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border-radius: 14px;
  color: var(--ink);
  background: #fff;
  font-family: "Archivo", sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
}

.method-play span {
  position: relative;
  width: 42px;
  height: 42px;
  border-radius: 11px;
  background: var(--orange);
}

.method-play span::after {
  content: "";
  position: absolute;
  top: 13px;
  left: 17px;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 11px solid #fff;
}

.eyebrow-light {
  color: #58b2e5;
}

.method-copy h2 {
  color: #fff;
  font-size: clamp(3.2rem, 5.5vw, 5.3rem);
}

.method-lead {
  max-width: 500px;
  margin: 25px 0 33px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
}

.method-steps {
  padding: 0;
  margin: 0;
  display: grid;
  list-style: none;
}

.method-steps li {
  min-height: 92px;
  padding: 16px 0;
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 16px;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.method-steps li:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.method-steps > li > span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  color: var(--orange);
  font-family: "Archivo", sans-serif;
  font-size: 0.76rem;
  font-weight: 800;
}

.method-steps strong,
.method-steps small {
  display: block;
}

.method-steps strong {
  margin-bottom: 3px;
  font-family: "Archivo", sans-serif;
  font-size: 0.94rem;
}

.method-steps small {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.78rem;
}

.locations {
  background:
    linear-gradient(90deg, rgba(21, 129, 191, 0.05) 1px, transparent 1px),
    linear-gradient(rgba(21, 129, 191, 0.05) 1px, transparent 1px),
    #fff;
  background-size: 38px 38px;
}

.locations-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(480px, 1fr);
  gap: clamp(70px, 9vw, 140px);
  align-items: center;
}

.locations-copy h2 {
  max-width: 520px;
  margin-bottom: 24px;
}

.locations-copy > p:last-child {
  max-width: 480px;
  margin-bottom: 0;
  color: var(--muted);
}

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

.location-list button {
  width: 100%;
  min-height: 92px;
  padding: 0 5px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  background: transparent;
  cursor: pointer;
  transition: color 160ms ease, padding 160ms ease, background 160ms ease;
}

.location-list button:hover {
  padding-inline: 17px;
  color: var(--blue);
  background: rgba(234, 246, 252, 0.78);
}

.location-list button > span {
  display: flex;
  align-items: center;
  gap: 20px;
  font-family: "Archivo", sans-serif;
  font-size: 1.55rem;
  font-weight: 700;
  letter-spacing: -0.035em;
}

.location-list small {
  color: var(--orange);
  font-size: 0.65rem;
  letter-spacing: 0.03em;
}

.location-list i {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--blue);
  font-style: normal;
}

.faq {
  background: var(--warm);
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.68fr) minmax(500px, 1fr);
  gap: clamp(60px, 9vw, 140px);
}

.faq-heading {
  align-self: start;
}

.faq-heading h2 {
  margin-bottom: 25px;
}

.faq-heading > p:last-child {
  max-width: 380px;
  margin-bottom: 0;
  color: var(--muted);
}

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

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

.faq-list summary {
  min-height: 86px;
  padding: 15px 2px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: #273641;
  font-family: "Archivo", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  list-style: none;
  cursor: pointer;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span {
  position: relative;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--blue-soft);
}

.faq-list summary span::before,
.faq-list summary span::after {
  content: "";
  position: absolute;
  top: 16px;
  left: 9px;
  width: 16px;
  border-top: 2px solid var(--blue);
  transition: transform 180ms ease;
}

.faq-list summary span::after {
  transform: rotate(90deg);
}

.faq-list details[open] summary span::after {
  transform: rotate(0);
}

.faq-list details[open] summary {
  color: var(--blue);
}

.faq-list details p {
  max-width: 700px;
  padding: 0 52px 25px 2px;
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.final-cta {
  padding: 95px 0;
  color: #fff;
  background:
    radial-gradient(circle at 80% 50%, rgba(255, 255, 255, 0.11), transparent 28%),
    var(--blue);
}

.final-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.final-cta h2 {
  margin-bottom: 0;
  font-size: clamp(3.1rem, 6vw, 5.9rem);
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: -0.065em;
}

.final-cta h2 span {
  color: var(--orange);
}

.final-cta a {
  min-width: 230px;
  min-height: 66px;
  padding: 0 16px 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 16px;
  color: var(--blue-deep);
  background: #fff;
  font-size: 0.93rem;
  font-weight: 700;
  box-shadow: 0 20px 44px rgba(6, 43, 67, 0.18);
  transition: transform 160ms ease;
}

.final-cta a:hover {
  transform: translateY(-2px);
}

.final-cta a i {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 11px;
  color: #fff;
  background: var(--orange);
  font-style: normal;
  font-size: 1.15rem;
}

.site-footer {
  padding: 70px 0 28px;
  color: #fff;
  background: var(--blue-ink);
}

.site-footer .brand-name strong {
  color: #fff;
}

.footer-main {
  padding-bottom: 52px;
  display: grid;
  grid-template-columns: 1.5fr 0.75fr 0.75fr;
  gap: 70px;
}

.footer-brand p {
  margin: 21px 0 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.88rem;
}

.footer-links,
.footer-courses {
  display: grid;
  align-content: start;
  gap: 11px;
}

.footer-links a,
.footer-courses a {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.82rem;
}

.footer-links a:hover,
.footer-courses a:hover {
  color: #fff;
}

.footer-bottom {
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.43);
  font-size: 0.72rem;
}

.mobile-book-bar {
  display: none;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 650ms ease, transform 650ms cubic-bezier(0.2, 0.75, 0.25, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.route-grid .reveal:nth-child(2) {
  transition-delay: 100ms;
}

@media (max-width: 1080px) {
  .main-nav {
    gap: 22px;
  }

  .hero-layout {
    grid-template-columns: minmax(0, 1.08fr) minmax(380px, 0.8fr);
    gap: 40px;
  }

  .hero-media,
  .hero-media img {
    min-height: 680px;
  }

  .route-card {
    padding: 37px;
  }

  .route-price {
    top: 37px;
    right: 32px;
  }
}

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

  .nav-shell {
    min-height: 70px;
    grid-template-columns: 1fr auto;
  }

  .menu-toggle {
    position: relative;
    z-index: 102;
    width: 44px;
    height: 44px;
    padding: 11px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    border: 0;
    border-radius: 12px;
    background: var(--blue-soft);
    cursor: pointer;
  }

  .menu-toggle > span:not(.sr-only) {
    height: 2px;
    border-radius: 999px;
    background: var(--blue-deep);
    transition: 180ms ease;
  }

  .menu-toggle[aria-expanded="true"] > span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] > span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] > span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .main-nav {
    position: absolute;
    z-index: 101;
    top: 100%;
    right: 0;
    left: 0;
    min-height: calc(100dvh - 70px);
    padding: 28px 24px 50px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    background: #fff;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: 200ms ease;
  }

  .main-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .main-nav a {
    padding: 17px 2px;
    border-bottom: 1px solid var(--line);
    font-family: "Archivo", sans-serif;
    font-size: 1.25rem;
  }

  .main-nav a::after,
  .nav-cta {
    display: none;
  }

  .hero-layout,
  .method-grid,
  .locations-layout,
  .faq-grid {
    grid-template-columns: minmax(0, 1fr);
  }

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

  .hero-media {
    min-height: 560px;
    border-radius: 150px 28px 28px 28px;
  }

  .hero-media img {
    min-height: 560px;
  }

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

  .proof-grid > div:nth-child(2) {
    border-right: 1px solid rgba(255, 255, 255, 0.2);
  }

  .proof-grid > div:nth-child(-n+2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .section-heading > p {
    max-width: 520px;
  }

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

  .route-card {
    min-height: 560px;
  }

  .method-grid {
    gap: 58px;
  }

  .method-media {
    max-width: 720px;
  }

  .method-copy {
    max-width: 650px;
  }

  .locations-layout,
  .faq-grid {
    gap: 50px;
  }

  .location-list {
    max-width: 720px;
  }

  .faq-list {
    max-width: 760px;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(var(--container), calc(100% - 28px));
  }

  .trust-ribbon-inner {
    min-height: 36px;
    justify-content: flex-start;
    gap: 0;
    overflow: hidden;
    white-space: nowrap;
  }

  .trust-ribbon span {
    font-size: 0.7rem;
  }

  .trust-ribbon span:not(:first-child) {
    display: none;
  }

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

  .brand-name {
    font-size: 1.24rem;
  }

  .hero {
    padding: 39px 0 50px;
  }

  .hero-shape-one {
    top: 150px;
    right: -48px;
  }

  .hero-shape-two {
    display: none;
  }

  .hero-layout {
    gap: 38px;
  }

  .hero-kicker {
    margin-bottom: 15px;
    font-size: 0.68rem;
  }

  .hero h1 {
    margin-bottom: 17px;
    font-size: clamp(2.75rem, 11.2vw, 3.35rem);
    line-height: 0.98;
    letter-spacing: -0.06em;
  }

  .hero-lead {
    margin-bottom: 23px;
    font-size: 0.96rem;
  }

  .hero-booking {
    border-radius: 19px;
  }

  .booking-step {
    padding: 17px 14px 18px 20px;
  }

  .vehicle-picker {
    gap: 7px;
  }

  .choice-card {
    min-height: 72px;
    padding: 8px 4px;
    flex-direction: column;
    gap: 4px;
    border-radius: 11px;
  }

  .choice-card svg {
    width: 31px;
    height: 23px;
  }

  .choice-card strong {
    font-size: 0.78rem;
  }

  .mode-picker {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .mode-choice {
    min-height: 71px;
  }

  .mode-copy strong {
    font-size: 0.83rem;
  }

  .booking-finish {
    padding: 17px 14px 19px 20px;
    grid-template-columns: 1fr;
  }

  .booking-summary {
    padding: 7px 1px 2px;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: end;
    gap: 2px 10px;
  }

  .booking-summary > span {
    grid-column: 1 / -1;
  }

  .booking-summary strong {
    font-size: 0.79rem;
  }

  .booking-summary small {
    margin: 0;
  }

  .booking-submit {
    grid-column: auto;
  }

  .booking-feedback {
    padding-inline: 20px 14px;
  }

  .hero-assurances {
    display: grid;
    gap: 9px;
  }

  .hero-media {
    min-height: 430px;
    border-width: 5px;
    border-radius: 105px 22px 22px 22px;
  }

  .hero-media img {
    min-height: 430px;
    object-position: 58% center;
  }

  .media-label {
    top: 20px;
    left: 38px;
  }

  .media-play {
    right: 15px;
    bottom: 15px;
    left: 15px;
  }

  .proof-grid > div {
    min-height: 78px;
    padding: 15px 12px;
    gap: 9px;
  }

  .proof-grid span {
    font-size: 0.71rem;
  }

  .section {
    padding: 78px 0;
  }

  .section-heading {
    margin-bottom: 29px;
  }

  .section-heading h2,
  .locations-copy h2,
  .faq-heading h2,
  .method-copy h2 {
    font-size: clamp(2.35rem, 11vw, 3.35rem);
  }

  .section-heading > p,
  .locations-copy > p:last-child,
  .faq-heading > p:last-child,
  .method-lead {
    font-size: 0.91rem;
  }

  .route-card {
    min-height: 600px;
    padding: 27px 22px;
    border-radius: 22px;
  }

  .route-card h3 {
    font-size: clamp(2.7rem, 13vw, 3.65rem);
  }

  .route-card p {
    max-width: 270px;
    font-size: 0.87rem;
  }

  .route-price {
    top: 26px;
    right: 22px;
  }

  .route-price strong {
    font-size: 1.42rem;
  }

  .route-graphic {
    right: -80px;
    bottom: -76px;
  }

  .learning-screen {
    right: -88px;
    bottom: -48px;
    transform: rotate(-4deg) scale(0.9);
  }

  .method-grid {
    gap: 46px;
  }

  .method-media,
  .method-media img {
    min-height: 410px;
  }

  .method-media {
    border-radius: 22px 22px 90px 22px;
  }

  .method-media img {
    object-position: 58% center;
  }

  .method-play {
    bottom: 17px;
    left: 17px;
  }

  .method-steps li {
    min-height: 88px;
  }

  .method-steps small {
    font-size: 0.73rem;
  }

  .locations-layout,
  .faq-grid {
    gap: 37px;
  }

  .location-list button {
    min-height: 78px;
  }

  .location-list button > span {
    gap: 13px;
    font-size: 1.18rem;
  }

  .location-list i {
    width: 36px;
    height: 36px;
  }

  .faq-list summary {
    min-height: 76px;
    font-size: 0.87rem;
  }

  .faq-list details p {
    padding-right: 40px;
    font-size: 0.84rem;
  }

  .final-cta {
    padding: 72px 0;
  }

  .final-cta-inner {
    align-items: stretch;
    flex-direction: column;
    gap: 31px;
  }

  .final-cta h2 {
    font-size: clamp(3rem, 14vw, 4.3rem);
  }

  .final-cta a {
    min-width: 0;
  }

  .site-footer {
    padding: 58px 0 100px;
  }

  .footer-main {
    padding-bottom: 40px;
    grid-template-columns: 1fr 1fr;
    gap: 42px 24px;
  }

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

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

  .mobile-book-bar {
    position: fixed;
    z-index: 90;
    right: 10px;
    bottom: 10px;
    left: 10px;
    min-height: 66px;
    padding: 8px 9px 8px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    border: 1px solid rgba(255, 255, 255, 0.17);
    border-radius: 17px;
    color: #fff;
    background: rgba(6, 43, 67, 0.96);
    box-shadow: 0 18px 45px rgba(6, 43, 67, 0.32);
    backdrop-filter: blur(14px);
    opacity: 0;
    pointer-events: none;
    transform: translateY(120%);
    transition: opacity 180ms ease, transform 240ms cubic-bezier(0.2, 0.75, 0.25, 1);
  }

  .mobile-book-bar.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .mobile-book-bar small,
  .mobile-book-bar strong {
    display: block;
  }

  .mobile-book-bar small {
    margin-bottom: 1px;
    color: rgba(255, 255, 255, 0.56);
    font-size: 0.63rem;
  }

  .mobile-book-bar strong {
    font-family: "Archivo", sans-serif;
    font-size: 0.91rem;
  }

  .mobile-book-bar a {
    min-height: 46px;
    padding: 0 15px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    border-radius: 11px;
    background: var(--orange);
    font-family: "Archivo", sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
  }

  .mobile-book-bar i {
    font-style: normal;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
