/* Luminy VTC — design tokens & global styles */

:root {
  --bg: #FAFAF7;
  --bg-elev: #FFFFFF;
  --bg-muted: #F2F1EC;
  --fg: #0E0F12;
  --fg-soft: #2A2C32;
  --fg-mute: #6B6E78;
  --fg-faint: #A8AAB2;
  --border: #E4E2DB;
  --border-strong: #D6D3C9;

  /* accent — overridden by Tweaks */
  --accent: #14233F;          /* deep navy */
  --accent-ink: #FFFFFF;
  --accent-soft: #EEF1F6;
  --accent-hover: #1B2F54;

  --radius-sm: 6px;
  --radius: 10px;
  --radius-lg: 16px;

  --shadow-sm: 0 1px 2px rgba(14,15,18,.04), 0 1px 1px rgba(14,15,18,.03);
  --shadow: 0 8px 24px rgba(14,15,18,.08), 0 2px 4px rgba(14,15,18,.04);
  --shadow-lg: 0 24px 60px rgba(14,15,18,.12), 0 4px 12px rgba(14,15,18,.06);

  --max: 1280px;
  --pad: 64px;

  --font-sans: "Geist", ui-sans-serif, system-ui, -apple-system, "Helvetica Neue", sans-serif;
  --font-mono: "Geist Mono", ui-monospace, "SF Mono", Menlo, monospace;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--fg);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-feature-settings: "ss01", "cv11";
}
img { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; }
a { color: inherit; }

/* layout helpers */
.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
}

.section { padding: 112px 0; }
.section--tight { padding: 80px 0; }

.eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-mute);
  margin: 0 0 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 18px;
  height: 1px;
  background: var(--fg-mute);
}

h1, h2, h3, h4 {
  font-family: var(--font-sans);
  color: var(--fg);
  font-weight: 500;
  letter-spacing: -0.02em;
  margin: 0;
  text-wrap: balance;
}
h1 { font-size: clamp(48px, 5.2vw, 76px); line-height: 1.02; letter-spacing: -0.035em; font-weight: 450; }
h2 { font-size: clamp(36px, 3.6vw, 52px); line-height: 1.05; letter-spacing: -0.028em; }
h3 { font-size: 22px; line-height: 1.25; letter-spacing: -0.012em; font-weight: 500; }
h4 { font-size: 16px; line-height: 1.3; font-weight: 500; }

p { margin: 0; text-wrap: pretty; }
.lede { font-size: 18px; line-height: 1.5; color: var(--fg-soft); max-width: 56ch; }

/* buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 10px;
  height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.005em;
  text-decoration: none;
  white-space: nowrap;
  transition: transform .15s ease, background .15s ease, color .15s ease, border-color .15s ease, box-shadow .15s ease;
  user-select: none;
}
.btn:active { transform: translateY(1px); }
.btn--primary { background: var(--accent); color: var(--accent-ink); }
.btn--primary:hover { background: var(--accent-hover); }
.btn--ghost { background: transparent; color: var(--fg); border-color: var(--border-strong); }
.btn--ghost:hover { background: var(--bg-muted); border-color: var(--fg); }
.btn--dark { background: var(--fg); color: #fff; }
.btn--dark:hover { background: #000; }
.btn--lg { height: 56px; padding: 0 28px; font-size: 16px; }
.btn--xl { height: 64px; padding: 0 32px; font-size: 17px; }

.btn .arrow { transition: transform .2s ease; }
.btn:hover .arrow { transform: translateX(3px); }

/* simple icon */
.icon { width: 18px; height: 18px; flex: 0 0 auto; }

/* divider */
.hr {
  height: 1px; background: var(--border); border: 0; margin: 0;
}

/* utility */
.mono { font-family: var(--font-mono); }
.muted { color: var(--fg-mute); }

/* image slot styling */
image-slot {
  --is-bg: var(--bg-muted);
  --is-fg: var(--fg-mute);
  background: var(--bg-muted);
}
image-slot::part(placeholder) {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ---------- HEADER ---------- */
.header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 50;
  transition: padding .25s ease, background .25s ease, border-color .25s ease, box-shadow .25s ease;
  padding: 22px 0;
  border-bottom: 1px solid transparent;
}
.header__inner {
  display: flex; align-items: center; justify-content: space-between; gap: 32px;
}
.header.is-scrolled {
  background: rgba(250, 250, 247, 0.85);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  padding: 12px 0;
  border-bottom-color: var(--border);
}
.header--onDark { color: #fff; }
.header--onDark .nav__link { color: rgba(255,255,255,.86); }
.header--onDark .nav__link:hover { color: #fff; }
.header--onDark .header__phone { color: #fff; }
.header--onDark .header__phone-num { color: #fff; }
.header--onDark .logo__mark { background: #fff; color: var(--accent); }
.header--onDark .logo__type { color: #fff; }
.header.is-scrolled.header--onDark { color: var(--fg); }
.header.is-scrolled.header--onDark .nav__link { color: var(--fg-mute); }
.header.is-scrolled.header--onDark .nav__link:hover { color: var(--fg); }
.header.is-scrolled.header--onDark .header__phone-num { color: var(--fg); }
.header.is-scrolled.header--onDark .logo__mark { background: var(--accent); color: #fff; }
.header.is-scrolled.header--onDark .logo__type { color: var(--fg); }

.logo { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; }
.logo__img { height: 64px; width: auto; display: block; }
.logo__img--light { display: none; }
.header--onDark:not(.is-scrolled) .logo__img--dark,
.footer .logo__img--dark { display: none; }
.header--onDark:not(.is-scrolled) .logo__img--light,
.footer .logo__img--light { display: block; }
.logo__mark {
  width: 36px; height: 36px; border-radius: 8px;
  background: var(--accent); color: #fff;
  display: grid; place-items: center;
  font-weight: 600; font-size: 15px; letter-spacing: -0.02em;
  position: relative;
}
.logo__mark::after {
  content: ""; position: absolute; inset: 5px;
  border: 1px solid rgba(255,255,255,.25); border-radius: 5px;
}
.logo__type {
  font-weight: 500; font-size: 16px; letter-spacing: -0.015em;
  color: var(--fg);
  display: flex; flex-direction: column; line-height: 1;
}
.logo__type small {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.18em;
  color: var(--fg-mute);
  text-transform: uppercase;
  margin-top: 4px;
}

.nav { display: flex; align-items: center; gap: 30px; }
.nav__link {
  font-size: 14px; color: var(--fg-soft); text-decoration: none;
  letter-spacing: -0.005em;
  transition: color .15s ease;
}
.nav__link:hover { color: var(--fg); }

.header__actions { display: flex; align-items: center; gap: 18px; }
.header__phone {
  display: inline-flex; align-items: center; gap: 10px;
  text-decoration: none;
  font-size: 14px;
  color: var(--fg-soft);
}
.header__phone-icon {
  width: 30px; height: 30px;
  display: grid; place-items: center;
  border-radius: 50%;
  border: 1px solid currentColor;
  opacity: .5;
}
.header__phone-num {
  font-family: var(--font-mono);
  font-size: 13px; letter-spacing: 0.02em;
  color: var(--fg);
  font-weight: 500;
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 880px;
  padding: 160px 0 96px;
  color: #fff;
  overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0;
  z-index: 0;
}
.hero__bg image-slot {
  width: 100%; height: 100%;
  --is-bg: #1a1d24;
  --is-fg: rgba(255,255,255,.5);
}
.hero__overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(180deg, rgba(8,10,14,.45) 0%, rgba(8,10,14,.25) 30%, rgba(8,10,14,.65) 100%),
    linear-gradient(90deg, rgba(8,10,14,.6) 0%, rgba(8,10,14,.0) 60%);
}
.hero .container { position: relative; z-index: 2; }
.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 80px;
  align-items: end;
}
.hero__copy { padding-bottom: 12px; }
.hero__eyebrow {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,255,255,.7);
  display: inline-flex; align-items: center; gap: 10px;
  margin-bottom: 28px;
}
.hero__eyebrow::before {
  content: ""; width: 22px; height: 1px; background: rgba(255,255,255,.7);
}
.hero h1 { color: #fff; }
.hero h1 em {
  font-style: normal;
  color: rgba(255,255,255,.55);
}
.hero__sub {
  margin-top: 22px;
  color: rgba(255,255,255,.78);
  font-size: 18px; line-height: 1.5;
  max-width: 48ch;
}
.hero__meta {
  margin-top: 44px;
  display: flex; gap: 36px;
  flex-wrap: wrap;
}
.hero__meta-item {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,.6);
  display: flex; flex-direction: column; gap: 6px;
}
.hero__meta-item b {
  font-family: var(--font-sans);
  font-size: 22px; letter-spacing: -0.02em; font-weight: 450;
  color: #fff; text-transform: none;
}

/* booking form */
.booking {
  background: var(--bg);
  color: var(--fg);
  border-radius: 14px;
  box-shadow: var(--shadow-lg);
  padding: 28px;
  position: relative;
}
.booking__header {
  display: flex; align-items: flex-start; justify-content: space-between;
  gap: 16px;
  margin-bottom: 22px;
}
.booking__title {
  font-size: 19px; font-weight: 500; letter-spacing: -0.015em;
}
.booking__title-sub {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--fg-mute);
  margin-top: 4px;
}
.booking__tabs {
  display: inline-flex;
  background: var(--bg-muted);
  padding: 3px;
  border-radius: 999px;
  font-size: 12px;
}
.booking__tab {
  padding: 6px 12px;
  border-radius: 999px;
  color: var(--fg-mute);
  cursor: pointer;
  border: 0; background: transparent;
  font-weight: 500;
}
.booking__tab.is-active {
  background: #fff; color: var(--fg);
  box-shadow: 0 1px 2px rgba(0,0,0,.06);
}
.booking__row {
  display: grid; gap: 12px;
}
.booking__row--two { grid-template-columns: 1fr 1fr; }
.field { position: relative; }
.field__label {
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--fg-mute);
  display: block;
  margin-bottom: 6px;
}
.field__input {
  width: 100%;
  height: 58px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: #fff;
  padding: 0 16px 0 44px;
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--fg);
  transition: border-color .15s ease, box-shadow .15s ease;
}
.field__input:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 4px var(--accent-soft); }
.field__input::placeholder { color: var(--fg-faint); }
.field__icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--fg-mute);
  width: 18px; height: 18px;
}
.field__icon--label { top: calc(50% + 9px); }
.field__pin {
  position: absolute;
  left: 16px;
  bottom: 19px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
}
.field__pin--out { background: transparent; border: 1.5px solid var(--accent); }

.booking__route {
  position: relative;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: #fff;
  overflow: hidden;
}
.booking__route-row {
  display: flex; align-items: center;
  padding: 0 16px;
  height: 58px;
  position: relative;
}
.booking__route-row + .booking__route-row {
  border-top: 1px solid var(--border);
}
.booking__route-row::before {
  content: ""; position: absolute; left: 19px;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent);
}
.booking__route-row + .booking__route-row::before {
  background: transparent; border: 1.5px solid var(--accent);
}
.booking__route-row::after {
  display: none;
}
.booking__route-link {
  content: "";
  position: absolute;
  left: 23px;
  top: 28px;
  height: 30px;
  width: 0; border-left: 1px dashed var(--border-strong);
  z-index: 1;
}
.booking__route input {
  border: 0; outline: none;
  flex: 1; height: 100%;
  padding: 0 0 0 24px;
  font-size: 15px;
  background: transparent;
}
.booking__route input::placeholder { color: var(--fg-faint); }
.booking__route-swap {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--bg);
  display: grid; place-items: center;
  color: var(--fg-mute);
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
}
.booking__route-swap:hover { color: var(--fg); border-color: var(--fg); }

.vehicles {
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
}
.vehicle-pick {
  text-align: left;
  border: 1px solid var(--border);
  background: #fff;
  border-radius: 10px;
  padding: 12px;
  cursor: pointer;
  transition: border-color .15s ease, background .15s ease;
}
.vehicle-pick.is-active {
  border-color: var(--fg);
  background: var(--bg-muted);
}
.vehicle-pick__name { font-weight: 500; font-size: 14px; }
.vehicle-pick__meta {
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--fg-mute);
  margin-top: 4px;
}
.vehicle-pick__svg { color: var(--fg-mute); margin-bottom: 6px; }
.vehicle-pick.is-active .vehicle-pick__svg { color: var(--fg); }

.booking__submit {
  margin-top: 16px;
  width: 100%;
  height: 60px;
  border-radius: 10px;
  background: var(--accent);
  color: var(--accent-ink);
  border: 0;
  font-size: 16px; font-weight: 500;
  display: inline-flex; align-items: center; justify-content: center;
  gap: 12px;
  transition: background .15s ease;
}
.booking__submit:hover { background: var(--accent-hover); }

.booking__footer {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 14px;
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--fg-mute);
}
.booking__footer a { color: var(--fg); text-decoration: none; border-bottom: 1px solid var(--border-strong); padding-bottom: 1px; }
.booking__footer a:hover { border-color: var(--fg); }

/* ---------- REASSURANCE ---------- */
.reassure {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}
.reassure__grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--border);
}
.reassure__item {
  padding: 36px 32px;
  display: flex; align-items: flex-start; gap: 18px;
}
.reassure__item + .reassure__item { border-left: 1px solid var(--border); }
.reassure__icon {
  width: 32px; height: 32px;
  display: grid; place-items: center;
  color: var(--accent);
  flex: 0 0 auto;
}
.reassure__num {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.08em;
  color: var(--fg-faint);
  margin-right: 12px;
}
.reassure__title { font-size: 15px; font-weight: 500; }
.reassure__text { font-size: 13px; color: var(--fg-mute); margin-top: 4px; line-height: 1.45; }

/* ---------- SECTION HEADER ---------- */
.section-head {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
  align-items: end;
  margin-bottom: 72px;
}
.section-head--center {
  grid-template-columns: 1fr;
  text-align: center;
  max-width: 720px; margin-left: auto; margin-right: auto;
}
.section-head__intro { color: var(--fg-mute); font-size: 17px; line-height: 1.55; max-width: 52ch; }
.section-head--center .section-head__intro { margin-left: auto; margin-right: auto; }

/* ---------- SERVICES ---------- */
.services__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.service {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 0;
  display: flex; flex-direction: column;
  overflow: hidden;
  transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.service__img {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: #f4f4f2;
  border-bottom: 1px solid var(--border);
}
.service__img image-slot {
  display: block;
  width: 100%;
  height: 100%;
}
.service > .service__num,
.service > .service__title,
.service > .service__body,
.service > .service__list,
.service > .service__cta { margin-left: 32px; margin-right: 32px; }
.service > .service__num { margin-top: 28px; }
.service > .service__cta { margin-bottom: 32px; }
.service:hover {
  border-color: var(--fg);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.service__num {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.12em;
  color: var(--fg-mute);
  margin-bottom: 28px;
  display: flex; align-items: center; justify-content: space-between;
}
.service__icon { color: var(--accent); }
.service__title { font-size: 24px; line-height: 1.2; letter-spacing: -0.02em; font-weight: 500; }
.service__body {
  margin-top: 16px;
  color: var(--fg-mute);
  font-size: 14.5px;
  line-height: 1.55;
}
.service__list {
  margin-top: 22px;
  list-style: none; padding: 0;
  font-size: 13px; color: var(--fg-soft);
}
.service__list li {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 0;
  border-top: 1px solid var(--border);
}
.service__list li:first-child { border-top: 0; padding-top: 0; }
.service__list svg { color: var(--accent); flex: 0 0 auto; }
.service__cta {
  margin-top: auto;
  padding-top: 28px;
  font-size: 14px;
  display: inline-flex; align-items: center; gap: 8px;
  text-decoration: none;
  color: var(--fg);
  font-weight: 500;
}
.service__cta:hover .arrow { transform: translateX(4px); }
.service__cta .arrow { transition: transform .2s ease; }

/* ---------- ZONES ---------- */
.zones {
  background: #0E0F12;
  color: #fff;
}
.zones h2 { color: #fff; }
.zones .eyebrow { color: rgba(255,255,255,.5); }
.zones .eyebrow::before { background: rgba(255,255,255,.5); }
.zones .section-head__intro { color: rgba(255,255,255,.65); }

.zones__layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: start;
}
.zones__map {
  position: relative;
  aspect-ratio: 5/4;
  background: #16181D;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #23262D;
}
.zones__map svg,
.zones__map image-slot { width: 100%; height: 100%; display: block; }
.zones__map-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}
.zones__pin {
  cursor: pointer;
  transition: transform .2s ease;
}
.zones__pin:hover { transform: scale(1.15); }
.zones__pin circle { transition: fill .2s ease; }
.zones__pin-label {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  fill: rgba(255,255,255,.55);
  pointer-events: none;
  transition: fill .2s ease;
}
.zones__pin:hover .zones__pin-label,
.zones__pin.is-hover .zones__pin-label { fill: #fff; }

.zones__list { display: grid; gap: 28px; }
.zones__group {
  border-top: 1px solid #23262D;
  padding-top: 24px;
}
.zones__group:first-child { border-top: 0; padding-top: 0; }
.zones__group-head {
  display: flex; align-items: baseline; justify-content: space-between;
  margin-bottom: 14px;
}
.zones__group-title {
  font-size: 16px; font-weight: 500;
  display: flex; align-items: center; gap: 12px;
}
.zones__group-title .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent);
  display: inline-block;
}
.zones__group-code {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.1em;
  color: rgba(255,255,255,.4);
}
.zones__cities {
  display: flex; flex-wrap: wrap; gap: 6px;
}
.zones__chip {
  font-size: 13px;
  padding: 6px 12px;
  border: 1px solid #23262D;
  border-radius: 999px;
  color: rgba(255,255,255,.82);
  cursor: default;
  transition: border-color .15s ease, background .15s ease;
}
.zones__chip:hover { border-color: rgba(255,255,255,.4); background: #16181D; }
.zones__chip--active { border-color: var(--accent); color: #fff; background: rgba(255,255,255,.03); }

/* ---------- FLEET ---------- */
.fleet__tabs {
  display: flex; gap: 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-bottom: 48px;
}
.fleet__tab {
  flex: 1;
  background: transparent;
  border: 0; border-right: 1px solid var(--border);
  padding: 22px 24px;
  text-align: left;
  cursor: pointer;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
  position: relative;
  transition: background .15s ease;
}
.fleet__tab:last-child { border-right: 0; }
.fleet__tab:hover { background: var(--bg-muted); }
.fleet__tab.is-active::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -1px;
  height: 2px; background: var(--accent);
}
.fleet__tab-num {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.1em;
  color: var(--fg-faint);
}
.fleet__tab-name { font-size: 20px; font-weight: 500; letter-spacing: -0.015em; display: block; margin-top: 4px; }
.fleet__tab-meta {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--fg-mute);
  margin-top: 4px;
}
.fleet__tab-cap {
  font-family: var(--font-mono);
  font-size: 12px; letter-spacing: 0.04em;
  color: var(--fg-mute);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 5px 10px;
}

.fleet__panel {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 64px;
  align-items: center;
}
.fleet__img {
  aspect-ratio: 16/11;
  border-radius: 16px;
  overflow: hidden;
}
.fleet__img image-slot,
.hero__bg image-slot {
  width: 100%;
  height: 100%;
  display: block;
}
.fleet__detail h3 {
  font-size: 40px; line-height: 1.05; letter-spacing: -0.025em; font-weight: 500;
}
.fleet__tagline {
  margin-top: 12px;
  font-size: 18px; color: var(--fg-mute);
  max-width: 40ch;
}
.fleet__specs {
  margin-top: 36px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  border-top: 1px solid var(--border);
}
.fleet__spec {
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
  display: flex; justify-content: space-between; align-items: baseline;
  gap: 16px;
}
.fleet__spec:nth-child(odd) { padding-right: 20px; border-right: 1px solid var(--border); padding-left: 0; }
.fleet__spec:nth-child(even) { padding-left: 20px; }
.fleet__spec-label {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--fg-mute);
}
.fleet__spec-val { font-size: 15px; font-weight: 500; }
.fleet__equip { margin-top: 28px; display: flex; flex-wrap: wrap; gap: 8px; }
.fleet__equip-chip {
  font-size: 13px;
  padding: 7px 14px;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--fg-soft);
  display: inline-flex; align-items: center; gap: 8px;
}
.fleet__equip-chip svg { color: var(--accent); }

/* ---------- WHY ---------- */
.why {
  background: var(--bg-muted);
}
.why__grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
}
.why__item {
  padding: 40px 36px;
  background: var(--bg);
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  display: flex; flex-direction: column;
  min-height: 240px;
}
.why__num {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.1em;
  color: var(--fg-mute);
}
.why__icon { margin: 20px 0 20px; color: var(--accent); }
.why__title { font-size: 18px; font-weight: 500; letter-spacing: -0.012em; }
.why__text { margin-top: 10px; font-size: 14px; color: var(--fg-mute); line-height: 1.55; }

/* ---------- REVIEWS ---------- */
.reviews__head {
  display: grid; grid-template-columns: 1fr auto; gap: 60px;
  align-items: end; margin-bottom: 56px;
}
.rating {
  display: flex; flex-direction: column; gap: 6px;
  text-align: right;
}
.rating__stars {
  display: inline-flex; gap: 2px; color: var(--accent);
}
.rating__line {
  font-family: var(--font-mono); font-size: 12px; color: var(--fg-mute);
  letter-spacing: 0.04em;
}
.rating__big { font-size: 40px; letter-spacing: -0.025em; font-weight: 500; }

.reviews__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.review {
  border: 1px solid var(--border);
  background: #fff;
  border-radius: 14px;
  padding: 32px;
  display: flex; flex-direction: column;
  gap: 20px;
  min-height: 320px;
}
.review__quote {
  font-size: 17px; line-height: 1.5;
  letter-spacing: -0.012em;
  color: var(--fg);
  flex: 1;
}
.review__author {
  display: flex; align-items: center; gap: 14px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.review__avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--bg-muted);
  display: grid; place-items: center;
  font-size: 14px; font-weight: 500; color: var(--fg-soft);
}
.review__name { font-size: 14px; font-weight: 500; }
.review__meta { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.06em; color: var(--fg-mute); }
.review__stars { color: var(--accent); display: inline-flex; gap: 1px; margin-bottom: 4px; }

/* ---------- FAQ ---------- */
.faq__layout {
  display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px;
  align-items: start;
}
.faq__list { border-top: 1px solid var(--border); }
.faq__item { border-bottom: 1px solid var(--border); }
.faq__q {
  width: 100%;
  background: transparent; border: 0;
  text-align: left;
  padding: 28px 0;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 18px; letter-spacing: -0.012em;
  color: var(--fg); font-weight: 500;
}
.faq__q-num {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.1em;
  color: var(--fg-mute);
  margin-right: 24px;
  width: 32px; flex: 0 0 auto;
}
.faq__q-text { flex: 1; }
.faq__chev {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: grid; place-items: center;
  color: var(--fg);
  transition: transform .25s ease, background .15s ease, color .15s ease;
  flex: 0 0 auto;
}
.faq__item.is-open .faq__chev { transform: rotate(45deg); background: var(--accent); color: #fff; border-color: var(--accent); }
.faq__a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .3s ease;
}
.faq__a > div { overflow: hidden; }
.faq__item.is-open .faq__a { grid-template-rows: 1fr; }
.faq__a-inner {
  padding: 0 0 28px 56px;
  color: var(--fg-mute);
  font-size: 15px; line-height: 1.6;
  max-width: 64ch;
}

/* ---------- FINAL CTA ---------- */
.cta-final {
  background: var(--fg);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.cta-final__bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 80% 50%, rgba(255,255,255,.04) 0%, transparent 50%),
    radial-gradient(circle at 10% 80%, var(--accent) 0%, transparent 40%);
  opacity: .5;
  pointer-events: none;
}
.cta-final .container { position: relative; z-index: 1; }
.cta-final__inner {
  display: grid; grid-template-columns: 1.4fr 1fr;
  gap: 80px;
  align-items: center;
}
.cta-final h2 { color: #fff; font-size: clamp(40px, 4vw, 64px); }
.cta-final__sub {
  margin-top: 20px;
  color: rgba(255,255,255,.7);
  font-size: 18px;
  max-width: 50ch;
}
.cta-final__actions {
  display: flex; flex-direction: column; gap: 14px;
}
.cta-final__btn-primary {
  background: var(--accent); color: #fff;
  height: 72px; border-radius: 12px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 28px;
  font-size: 18px; font-weight: 500;
  text-decoration: none;
  letter-spacing: -0.01em;
  transition: background .15s ease;
}
.cta-final__btn-primary:hover { background: var(--accent-hover); }
.cta-final__btn-secondary {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.15);
  color: #fff;
  height: 72px; border-radius: 12px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 28px;
  text-decoration: none;
  transition: background .15s ease;
}
.cta-final__btn-secondary:hover { background: rgba(255,255,255,.08); }
.cta-final__phone {
  font-family: var(--font-mono);
  font-size: 18px;
  letter-spacing: 0.02em;
  font-weight: 500;
}
.cta-final__phone-label {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,.5);
  display: block;
}

/* ---------- FOOTER ---------- */
.footer {
  background: var(--fg);
  color: rgba(255,255,255,.7);
  padding: 80px 0 32px;
  font-size: 14px;
}
.footer__top {
  display: grid;
  grid-template-columns: 1.4fr repeat(4, 1fr);
  gap: 48px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer__brand {}
.footer__brand .logo__type { color: #fff; }
.footer__brand .logo__type small { color: rgba(255,255,255,.5); }
.footer__brand-desc {
  margin-top: 20px;
  color: rgba(255,255,255,.6);
  font-size: 13.5px; line-height: 1.6;
  max-width: 36ch;
}
.footer__licence {
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,.45);
  margin-top: 28px;
  padding: 10px 14px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 6px;
  display: inline-block;
}

.footer__col h4 {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,.5);
  font-weight: 500;
  margin-bottom: 18px;
}
.footer__col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.footer__col a { color: rgba(255,255,255,.8); text-decoration: none; }
.footer__col a:hover { color: #fff; }

.footer__bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 32px;
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.08em;
  color: rgba(255,255,255,.45);
  text-transform: uppercase;
}
.footer__socials { display: flex; gap: 16px; }
.footer__socials a {
  width: 32px; height: 32px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 50%;
  display: grid; place-items: center;
  color: rgba(255,255,255,.7);
  text-decoration: none;
  transition: background .15s ease, color .15s ease, border-color .15s ease;
}
.footer__socials a:hover { background: #fff; color: var(--fg); border-color: #fff; }

/* fade-in on scroll */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .8s ease, transform .8s ease;
}
.reveal.is-in {
  opacity: 1;
  transform: none;
}
