:root {
  color-scheme: light;
  --navy: #0a1f3d;
  --navy-2: #102b50;
  --cyan: #00b4d8;
  --cyan-bright: #00d9ee;
  --cyan-soft: #e4fafd;
  --ink: #0a1f3d;
  --text: #4f6075;
  --muted: #8290a2;
  --surface: #ffffff;
  --surface-2: #f5f8fa;
  --surface-3: #eaf0f4;
  --border: #dce5eb;
  --success: #20b879;
  --shadow-sm: 0 8px 28px rgba(10, 31, 61, 0.08);
  --shadow-md: 0 22px 60px rgba(10, 31, 61, 0.13);
  --shadow-lg: 0 34px 90px rgba(10, 31, 61, 0.18);
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 32px;
  --max-width: 1200px;
  --font: "Plus Jakarta Sans", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

:root[data-theme="dark"] {
  color-scheme: dark;
  --ink: #f4f9fb;
  --text: #a9bac8;
  --muted: #74889a;
  --surface: #0d223c;
  --surface-2: #091a30;
  --surface-3: #142b46;
  --border: #213b57;
  --shadow-sm: 0 8px 28px rgba(0, 0, 0, 0.18);
  --shadow-md: 0 22px 60px rgba(0, 0, 0, 0.26);
  --shadow-lg: 0 34px 90px rgba(0, 0, 0, 0.34);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--surface);
  color: var(--ink);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  transition: background-color 0.25s ease, color 0.25s ease;
}

body::selection {
  background: var(--cyan);
  color: var(--navy);
}

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

button,
input {
  font: inherit;
}

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

button {
  color: inherit;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  border-radius: 10px;
  background: var(--surface);
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: none;
}

:focus-visible {
  outline: 3px solid rgba(0, 180, 216, 0.5);
  outline-offset: 3px;
}

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 50%;
  width: min(calc(100% - 40px), var(--max-width));
  height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transform: translateX(-50%);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.brand--on-map {
  color: var(--navy);
}

.brand-mark {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 12px 12px 12px 5px;
  background: var(--navy);
  color: var(--cyan-bright);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.05em;
  box-shadow: 0 7px 20px rgba(10, 31, 61, 0.18);
}

.brand-mark--small {
  width: 27px;
  height: 27px;
  border-radius: 8px 8px 8px 3px;
  font-size: 14px;
}

.desktop-nav {
  position: absolute;
  left: 50%;
  display: flex;
  align-items: center;
  gap: 36px;
  transform: translateX(-50%);
}

.desktop-nav a {
  color: var(--navy);
  font-size: 13px;
  font-weight: 700;
}

.desktop-nav a::after {
  content: "";
  display: block;
  width: 0;
  height: 2px;
  margin-top: 4px;
  background: var(--cyan);
  transition: width 0.2s ease;
}

.desktop-nav a:hover::after {
  width: 100%;
}

.theme-toggle {
  display: grid;
  width: 42px;
  height: 42px;
  padding: 0;
  place-items: center;
  border: 1px solid rgba(10, 31, 61, 0.12);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.76);
  color: var(--navy);
  cursor: pointer;
  backdrop-filter: blur(14px);
  transition: transform 0.2s ease, background 0.2s ease;
}

.theme-toggle:hover {
  background: #fff;
  transform: rotate(8deg);
}

.theme-toggle svg {
  grid-area: 1 / 1;
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  transition: opacity 0.2s ease, transform 0.25s ease;
}

.theme-toggle .moon-icon {
  opacity: 0;
  transform: scale(0.5) rotate(-30deg);
}

:root[data-theme="dark"] .theme-toggle .sun-icon {
  opacity: 0;
  transform: scale(0.5) rotate(30deg);
}

:root[data-theme="dark"] .theme-toggle .moon-icon {
  opacity: 1;
  transform: scale(1) rotate(0);
}

.hero {
  position: relative;
  padding-bottom: 112px;
}

.map-shell {
  position: relative;
  height: 650px;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 20%, rgba(0, 180, 216, 0.17), transparent 25%),
    linear-gradient(145deg, #e9f0f1 0%, #dce7e8 100%);
}

.map-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(10, 31, 61, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10, 31, 61, 0.035) 1px, transparent 1px);
  background-size: 38px 38px;
  mask-image: linear-gradient(to bottom, #000, rgba(0, 0, 0, 0.78));
}

.map-roads {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.map-roads path {
  fill: none;
  stroke-linecap: round;
}

.map-roads .water {
  stroke: #b7dbe1;
  stroke-width: 48;
}

.map-roads .road {
  stroke: rgba(255, 255, 255, 0.92);
  stroke-width: 10;
  filter: drop-shadow(0 1px 0 rgba(10, 31, 61, 0.08));
}

.map-roads .major {
  stroke-width: 17;
}

.map-roads .small {
  stroke-width: 6;
}

.district-label {
  position: absolute;
  color: rgba(10, 31, 61, 0.45);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.district-label--1 {
  top: 23%;
  left: 15%;
}

.district-label--2 {
  top: 31%;
  left: 55%;
}

.district-label--3 {
  top: 66%;
  left: 31%;
}

.district-label--4 {
  top: 59%;
  left: 72%;
}

.map-pin {
  position: absolute;
  z-index: 3;
  width: 54px;
  height: 54px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.map-pin--1 {
  top: 27%;
  left: 28%;
}

.map-pin--2 {
  top: 36%;
  left: 61%;
}

.map-pin--3 {
  top: 62%;
  left: 40%;
}

.map-pin--4 {
  top: 53%;
  left: 76%;
}

.pin-core {
  position: relative;
  z-index: 2;
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border: 5px solid #fff;
  border-radius: 50% 50% 50% 14px;
  background: var(--navy);
  box-shadow: 0 12px 28px rgba(10, 31, 61, 0.28);
  transform: rotate(-45deg);
  transition: transform 0.25s ease, background 0.25s ease;
}

.map-pin:hover .pin-core,
.map-pin.is-active .pin-core {
  background: var(--cyan);
  transform: rotate(-45deg) scale(1.08);
}

.mini-trailer {
  position: relative;
  width: 23px;
  height: 13px;
  border: 2px solid #fff;
  border-radius: 2px;
  transform: rotate(45deg);
}

.mini-trailer::before,
.mini-trailer::after {
  content: "";
  position: absolute;
}

.mini-trailer::before {
  right: -9px;
  bottom: -2px;
  width: 7px;
  border-top: 2px solid #fff;
  transform: rotate(22deg);
  transform-origin: left;
}

.mini-trailer::after {
  right: 2px;
  bottom: -6px;
  left: 2px;
  height: 5px;
  border-right: 4px dotted #fff;
  border-left: 4px dotted #fff;
}

.pin-pulse {
  position: absolute;
  z-index: 1;
  inset: -7px;
  border: 2px solid var(--cyan);
  border-radius: 50%;
  animation: pulse 2.2s ease-out infinite;
}

.pin-label {
  position: absolute;
  z-index: 4;
  top: 5px;
  left: 64px;
  width: max-content;
  padding: 8px 12px;
  border: 1px solid rgba(10, 31, 61, 0.08);
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--navy);
  text-align: left;
  box-shadow: 0 10px 30px rgba(10, 31, 61, 0.13);
  opacity: 0;
  pointer-events: none;
  transform: translateX(-6px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.pin-label strong,
.pin-label small {
  display: block;
  line-height: 1.35;
}

.pin-label strong {
  font-size: 11px;
}

.pin-label small {
  color: #6f7f91;
  font-size: 9px;
}

.map-pin:hover .pin-label,
.map-pin.is-active .pin-label {
  opacity: 1;
  transform: none;
}

.map-status {
  position: absolute;
  right: max(28px, calc((100% - var(--max-width)) / 2));
  bottom: 88px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border: 1px solid rgba(10, 31, 61, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--navy);
  font-size: 11px;
  font-weight: 700;
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(12px);
}

.status-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 4px rgba(32, 184, 121, 0.12);
}

.locate-button {
  position: absolute;
  right: max(28px, calc((100% - var(--max-width)) / 2));
  bottom: 145px;
  display: grid;
  width: 46px;
  height: 46px;
  padding: 0;
  place-items: center;
  border: 1px solid rgba(10, 31, 61, 0.09);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--navy);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
}

.locate-button svg {
  width: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
}

.hero-card-wrap {
  position: relative;
  z-index: 8;
  margin-top: -105px;
}

.booking-card {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(430px, 1.12fr);
  gap: 60px;
  padding: 44px 48px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-lg);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  color: var(--cyan);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 4px rgba(32, 184, 121, 0.13);
}

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

.booking-copy h1,
.section-heading h2,
.trust-copy h2,
.fleet-hero h1 {
  margin: 0;
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 1.04;
}

.booking-copy h1 {
  font-size: clamp(34px, 3.1vw, 50px);
}

.booking-copy h1 span,
.fleet-hero h1 span {
  color: var(--cyan);
}

.booking-copy p {
  max-width: 420px;
  margin: 18px 0 0;
  color: var(--text);
  font-size: 14px;
}

.search-form {
  align-self: center;
}

.search-form > label {
  display: block;
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
}

.search-controls {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}

.input-shell {
  display: flex;
  height: 62px;
  align-items: center;
  gap: 12px;
  padding: 0 12px 0 18px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--surface-2);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.input-shell:focus-within {
  border-color: var(--cyan);
  box-shadow: 0 0 0 4px rgba(0, 180, 216, 0.1);
}

.input-shell > svg {
  width: 20px;
  flex: 0 0 auto;
  fill: none;
  stroke: var(--cyan);
  stroke-width: 1.8;
}

.input-shell input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font-size: 14px;
  font-weight: 600;
}

.input-shell input::placeholder {
  color: var(--muted);
}

.input-location {
  display: grid;
  width: 36px;
  height: 36px;
  padding: 0;
  flex: 0 0 auto;
  place-items: center;
  border: 0;
  border-radius: 10px;
  background: var(--surface);
  color: var(--cyan);
  cursor: pointer;
}

.input-location svg {
  width: 17px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 14px;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.button svg,
.text-link svg,
.footer-email svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
  transition: transform 0.2s ease;
}

.button:hover svg,
.text-link:hover svg,
.footer-email:hover svg {
  transform: translateX(3px);
}

.button--primary {
  background: var(--cyan);
  color: #05233b;
  box-shadow: 0 12px 28px rgba(0, 180, 216, 0.25);
}

.button--primary:hover {
  background: var(--cyan-bright);
  box-shadow: 0 15px 32px rgba(0, 180, 216, 0.34);
}

.button--secondary {
  border-color: var(--border);
  background: var(--surface);
  color: var(--ink);
}

.button--secondary:hover {
  border-color: var(--cyan);
}

.button--outline {
  border-color: var(--border);
  background: transparent;
  color: var(--ink);
}

.button--light {
  background: #fff;
  color: var(--navy);
}

.button--search {
  min-width: 126px;
  height: 62px;
}

.popular-areas {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-top: 13px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 600;
}

.popular-areas button {
  padding: 0;
  border: 0;
  border-bottom: 1px dashed var(--muted);
  background: transparent;
  color: var(--text);
  font-size: inherit;
  cursor: pointer;
}

.section {
  padding: 108px 0;
}

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

.section-heading--center {
  max-width: 660px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-heading--split {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 48px;
}

.section-heading h2 {
  font-size: clamp(36px, 4.2vw, 62px);
}

.section-heading > p,
.section-heading--split > p {
  max-width: 405px;
  margin: 20px 0 0;
  color: var(--text);
  font-size: 14px;
}

.section-heading--split > p {
  margin-bottom: 8px;
}

.how-section {
  overflow: hidden;
  background: var(--surface);
}

.steps {
  display: grid;
  grid-template-columns: 1fr 80px 1fr 80px 1fr;
  align-items: start;
}

.step {
  position: relative;
  text-align: center;
}

.step-number {
  position: absolute;
  top: -5px;
  left: calc(50% + 38px);
  color: var(--border);
  font-size: 11px;
  font-weight: 800;
}

.step-icon {
  display: grid;
  width: 82px;
  height: 82px;
  margin: 0 auto 25px;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 25px;
  background: var(--surface-2);
  color: var(--cyan);
  transition: transform 0.25s ease, background 0.25s ease;
}

.step:hover .step-icon {
  background: var(--cyan-soft);
  transform: translateY(-5px) rotate(-2deg);
}

:root[data-theme="dark"] .step:hover .step-icon {
  background: rgba(0, 180, 216, 0.1);
}

.step-icon svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.step h3 {
  margin: 0 0 11px;
  font-size: 18px;
}

.step p {
  max-width: 280px;
  margin: 0 auto;
  color: var(--text);
  font-size: 13px;
}

.step-line {
  height: 82px;
  display: flex;
  align-items: center;
}

.step-line span {
  width: 100%;
  border-top: 1px dashed var(--border);
}

.benefits-section {
  overflow: hidden;
  background: var(--surface-2);
}

.benefit-scroller {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.benefit-card {
  position: relative;
  min-height: 305px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 30px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--surface);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.benefit-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}

.benefit-card--dark {
  border-color: var(--navy);
  background: var(--navy);
  color: #fff;
}

.benefit-card--dark::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -90px;
  width: 260px;
  height: 260px;
  border: 50px solid rgba(0, 229, 255, 0.08);
  border-radius: 50%;
}

.benefit-icon {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 18px;
  background: var(--cyan-soft);
  color: var(--cyan);
}

.benefit-card--dark .benefit-icon {
  background: rgba(0, 229, 255, 0.12);
  color: var(--cyan-bright);
}

.benefit-icon svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.benefit-index {
  position: absolute;
  top: 32px;
  right: 30px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
}

.benefit-card h3 {
  margin: 0 0 9px;
  font-size: 20px;
  letter-spacing: -0.03em;
}

.benefit-card p {
  margin: 0;
  color: var(--text);
  font-size: 13px;
}

.benefit-card--dark p {
  color: #9eb1c4;
}

.scroll-hint {
  display: none;
}

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

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
  border-bottom: 1px solid var(--border);
  padding-bottom: 5px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: start;
}

.product-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--surface);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.product-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}

.product-card--featured {
  border-color: rgba(0, 180, 216, 0.6);
  box-shadow: 0 20px 50px rgba(0, 180, 216, 0.1);
}

.popular-ribbon {
  position: relative;
  z-index: 3;
  padding: 9px 16px;
  background: var(--cyan);
  color: var(--navy);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

.product-visual {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.product-card--featured .product-visual {
  height: 214px;
}

.product-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(10, 31, 61, 0.07) 1px, transparent 1px);
  background-size: 13px 13px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), #000);
}

.product-visual--cyan {
  background: #e2f8fb;
}

.product-visual--mint {
  background: #e5f6f1;
}

.product-visual--blue {
  background: #e8f0f8;
}

:root[data-theme="dark"] .product-visual--cyan,
:root[data-theme="dark"] .product-visual--mint,
:root[data-theme="dark"] .product-visual--blue {
  background: #152e48;
}

.product-visual img {
  position: absolute;
  right: -2%;
  bottom: -2%;
  width: 104%;
  height: 89%;
  object-fit: contain;
  transition: transform 0.35s ease;
}

.product-card:hover .product-visual img {
  transform: scale(1.04) translateX(2px);
}

.availability-badge,
.product-count {
  position: absolute;
  z-index: 2;
  font-size: 9px;
  font-weight: 700;
}

.availability-badge {
  top: 17px;
  left: 17px;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--navy);
  box-shadow: 0 6px 16px rgba(10, 31, 61, 0.08);
  backdrop-filter: blur(8px);
}

.availability-badge span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--success);
}

.product-count {
  right: 16px;
  bottom: 14px;
  color: rgba(10, 31, 61, 0.56);
}

:root[data-theme="dark"] .product-count {
  color: rgba(255, 255, 255, 0.6);
}

.product-content {
  padding: 25px;
}

.product-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  color: var(--cyan);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-topline span:last-child {
  color: var(--muted);
}

.product-content h3 {
  margin: 10px 0 17px;
  font-size: 21px;
  letter-spacing: -0.03em;
}

.spec-list {
  display: flex;
  gap: 18px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--border);
}

.spec-list span {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--text);
  font-size: 10px;
  font-weight: 600;
}

.spec-list svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: var(--cyan);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.product-footer {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 12px;
  padding-top: 22px;
}

.price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 3px;
  line-height: 1.2;
}

.price small {
  width: 100%;
  color: var(--muted);
  font-size: 8px;
  font-weight: 700;
  text-transform: uppercase;
}

.price strong {
  font-size: 18px;
  letter-spacing: -0.03em;
}

.price span {
  color: var(--muted);
  font-size: 8px;
  font-weight: 600;
}

.product-footer .button {
  min-height: 43px;
  padding: 0 14px;
  font-size: 10px;
}

.product-footer .button svg {
  width: 14px;
}

.mobile-only {
  display: none;
}

.trust-section {
  position: relative;
  overflow: hidden;
  padding-bottom: 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(0, 229, 255, 0.12), transparent 25%),
    var(--navy);
  color: #fff;
}

.trust-section::before {
  content: "";
  position: absolute;
  top: -160px;
  left: 45%;
  width: 540px;
  height: 540px;
  border: 100px solid rgba(255, 255, 255, 0.02);
  border-radius: 50%;
}

.trust-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  align-items: center;
}

.trust-copy {
  padding-bottom: 108px;
}

.trust-copy h2 {
  font-size: clamp(42px, 5vw, 70px);
}

.trust-copy p {
  max-width: 490px;
  margin: 25px 0 32px;
  color: #9db0c3;
  font-size: 14px;
}

.phone-demo {
  position: relative;
  align-self: end;
  min-height: 600px;
}

.phone {
  position: absolute;
  bottom: -78px;
  left: 50%;
  width: 304px;
  height: 622px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  background: #071529;
  box-shadow: 0 35px 90px rgba(0, 0, 0, 0.45);
  transform: translateX(-50%) rotate(3deg);
}

.phone-screen {
  height: 100%;
  overflow: hidden;
  border-radius: 41px;
  background: #f4f8fa;
  color: var(--navy);
}

.phone-island {
  position: absolute;
  z-index: 5;
  top: 18px;
  left: 50%;
  width: 91px;
  height: 24px;
  border-radius: 999px;
  background: #050d18;
  transform: translateX(-50%);
}

.phone-header {
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 18px 0;
  font-size: 11px;
  font-weight: 800;
}

.phone-more {
  letter-spacing: 2px;
}

.phone-map {
  position: relative;
  height: 185px;
  overflow: hidden;
  background-color: #dfeaec;
  background-image:
    linear-gradient(25deg, transparent 45%, rgba(255, 255, 255, 0.9) 46%, rgba(255, 255, 255, 0.9) 51%, transparent 52%),
    linear-gradient(115deg, transparent 55%, rgba(255, 255, 255, 0.8) 56%, rgba(255, 255, 255, 0.8) 62%, transparent 63%);
}

.phone-road {
  position: absolute;
  width: 250px;
  height: 20px;
  border-radius: 50%;
  border-top: 7px solid #fff;
}

.phone-road--1 {
  top: 54px;
  left: -20px;
  transform: rotate(-18deg);
}

.phone-road--2 {
  right: -78px;
  bottom: 23px;
  transform: rotate(63deg);
}

.phone-pin {
  position: absolute;
  top: 62px;
  left: 132px;
  display: grid;
  width: 39px;
  height: 39px;
  place-items: center;
  border: 4px solid #fff;
  border-radius: 50% 50% 50% 12px;
  background: var(--cyan);
  color: var(--navy);
  font-size: 12px;
  font-weight: 800;
  box-shadow: 0 8px 20px rgba(10, 31, 61, 0.2);
  transform: rotate(-45deg);
}

.phone-pin::first-letter {
  transform: rotate(45deg);
}

.phone-booking {
  position: relative;
  z-index: 2;
  margin: -20px 12px 0;
  padding: 16px;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 12px 34px rgba(10, 31, 61, 0.14);
}

.phone-booking-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 8px;
  font-weight: 800;
  text-transform: uppercase;
}

.phone-booking-head span {
  color: #20a974;
}

.phone-booking-head strong {
  font-size: 9px;
}

.phone-booking img {
  width: 100%;
  height: 113px;
  margin: 5px 0 -4px;
  object-fit: contain;
}

.phone-booking h3 {
  margin: 0;
  font-size: 15px;
}

.phone-booking p {
  margin: 3px 0 14px;
  color: #728194;
  font-size: 8px;
}

.phone-booking button {
  width: 100%;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border: 0;
  border-radius: 11px;
  background: var(--cyan);
  color: var(--navy);
  font-size: 10px;
  font-weight: 800;
}

.phone-booking button svg {
  width: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.floating-proof {
  position: absolute;
  z-index: 5;
  display: flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(13, 39, 69, 0.9);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(16px);
}

.floating-proof--top {
  top: 85px;
  right: -6px;
  gap: 11px;
  padding: 13px 17px;
  border-radius: 16px;
}

.floating-proof--top > span {
  display: grid;
  width: 31px;
  height: 31px;
  place-items: center;
  border-radius: 50%;
  background: var(--success);
  color: #fff;
  font-size: 12px;
}

.floating-proof strong,
.floating-proof small {
  display: block;
  line-height: 1.5;
}

.floating-proof strong {
  font-size: 10px;
}

.floating-proof small {
  color: #8ca3b9;
  font-size: 8px;
}

.floating-proof--bottom {
  bottom: 116px;
  left: -12px;
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 10px;
  padding: 12px 16px;
  border-radius: 16px;
}

.floating-proof--bottom > span {
  grid-row: span 2;
  font-size: 22px;
  font-weight: 800;
}

.stars {
  color: #ffca48;
  font-size: 9px;
  letter-spacing: 1px;
}

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

.faq-layout {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 100px;
}

.faq-layout .section-heading {
  margin: 0;
}

.faq-layout .section-heading p {
  margin-bottom: 8px;
}

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

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item h3 {
  margin: 0;
}

.faq-item h3 button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
}

.faq-item h3 button > span:first-child {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 15px;
  font-weight: 700;
}

.faq-item h3 small {
  color: var(--cyan);
  font-size: 9px;
  font-weight: 800;
}

.faq-toggle {
  position: relative;
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  border: 1px solid var(--border);
  border-radius: 50%;
}

.faq-toggle::before,
.faq-toggle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 1px;
  background: var(--ink);
  transform: translate(-50%, -50%);
  transition: transform 0.2s ease;
}

.faq-toggle::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item.is-open .faq-toggle {
  border-color: var(--cyan);
  background: var(--cyan);
}

.faq-item.is-open .faq-toggle::after {
  transform: translate(-50%, -50%) rotate(0);
}

.faq-item.is-open .faq-toggle::before,
.faq-item.is-open .faq-toggle::after {
  background: var(--navy);
}

.faq-answer {
  overflow: hidden;
}

.faq-answer p {
  max-width: 660px;
  margin: -9px 50px 28px 38px;
  padding-left: 29px;
  color: var(--text);
  font-size: 13px;
}

.site-footer {
  padding: 68px 0 30px;
  background: var(--surface-2);
}

.footer-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
}

.footer-main p {
  margin: 11px 0 0;
  color: var(--text);
  font-size: 11px;
}

.footer-email {
  display: flex;
  align-items: center;
  gap: 13px;
  font-size: clamp(18px, 2.5vw, 30px);
  font-weight: 700;
  letter-spacing: -0.03em;
}

.footer-email svg {
  width: 28px;
  height: 28px;
  color: var(--cyan);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding-top: 26px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 600;
}

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

.footer-bottom a:hover {
  color: var(--cyan);
}

.mobile-sticky-cta {
  display: none;
}

.mobile-sticky-cta.is-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(100%);
}

.toast {
  position: fixed;
  z-index: 100;
  right: 24px;
  bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 340px;
  padding: 14px 18px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--surface);
  color: var(--ink);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.toast.is-visible {
  opacity: 1;
  transform: none;
}

.toast-icon {
  display: grid;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: rgba(32, 184, 121, 0.12);
  color: var(--success);
  font-weight: 800;
}

.toast strong,
.toast small {
  display: block;
}

.toast strong {
  font-size: 11px;
}

.toast small {
  color: var(--text);
  font-size: 9px;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* Fleet page */

.fleet-page {
  background: var(--surface-2);
}

.subpage-header {
  position: relative;
  z-index: 10;
  height: 82px;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}

.subpage-nav {
  height: 100%;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

.back-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text);
  font-size: 11px;
  font-weight: 700;
}

.back-link svg {
  width: 17px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.theme-toggle--subpage {
  justify-self: end;
  border-color: var(--border);
  background: var(--surface-2);
  color: var(--ink);
}

.fleet-hero {
  position: relative;
  overflow: hidden;
  padding: 96px 0 90px;
  background: var(--navy);
  color: #fff;
}

.fleet-hero::before,
.fleet-hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.fleet-hero::before {
  top: -230px;
  right: -100px;
  width: 580px;
  height: 580px;
  border: 105px solid rgba(0, 229, 255, 0.06);
}

.fleet-hero::after {
  bottom: -200px;
  left: 45%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 180, 216, 0.12), transparent 66%);
}

.fleet-hero .container {
  position: relative;
  z-index: 2;
}

.fleet-hero h1 {
  max-width: 830px;
  font-size: clamp(50px, 7vw, 88px);
}

.fleet-hero p {
  max-width: 660px;
  margin: 26px 0 40px;
  color: #a6b8ca;
  font-size: 15px;
}

.fleet-stat-row {
  display: flex;
  gap: 52px;
}

.fleet-stat-row div {
  display: flex;
  flex-direction: column;
}

.fleet-stat-row strong {
  color: var(--cyan-bright);
  font-size: 23px;
  letter-spacing: -0.04em;
}

.fleet-stat-row span {
  color: #8197ac;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.fleet-catalog {
  min-height: 600px;
}

.catalog-toolbar {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 30px;
}

.catalog-toolbar .eyebrow {
  margin-bottom: 10px;
}

.catalog-toolbar h2 {
  margin: 0;
  font-size: clamp(34px, 4vw, 54px);
  letter-spacing: -0.05em;
  line-height: 1.1;
}

.filter-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 7px;
}

.filter-pills button {
  padding: 10px 15px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--surface);
  color: var(--text);
  font-size: 10px;
  font-weight: 700;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.filter-pills button:hover,
.filter-pills button.is-active {
  border-color: var(--cyan);
  background: var(--cyan);
  color: var(--navy);
}

.catalog-status {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  color: var(--text);
  font-size: 10px;
  font-weight: 600;
}

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

.catalog-loading,
.catalog-error {
  grid-column: 1 / -1;
  padding: 80px 20px;
  border: 1px dashed var(--border);
  border-radius: var(--radius-md);
  color: var(--text);
  text-align: center;
}

.catalog-card {
  display: grid;
  grid-template-columns: 45% 55%;
  min-height: 390px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.catalog-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.catalog-image {
  position: relative;
  min-height: 100%;
  overflow: hidden;
  background: linear-gradient(145deg, #e2f8fb, #e7f0f5);
}

:root[data-theme="dark"] .catalog-image {
  background: linear-gradient(145deg, #13314c, #17293e);
}

.catalog-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(10, 31, 61, 0.08) 1px, transparent 1px);
  background-size: 14px 14px;
}

.catalog-image img {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  width: 116%;
  max-width: none;
  transform: translate(-50%, -50%) rotate(-1deg);
}

.catalog-id {
  position: absolute;
  z-index: 3;
  top: 18px;
  left: 18px;
  color: rgba(10, 31, 61, 0.38);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

:root[data-theme="dark"] .catalog-id {
  color: rgba(255, 255, 255, 0.44);
}

.catalog-card-content {
  display: flex;
  flex-direction: column;
  padding: 26px;
}

.catalog-category {
  color: var(--cyan);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.catalog-card h3 {
  margin: 8px 0 11px;
  font-size: 20px;
  letter-spacing: -0.03em;
  line-height: 1.28;
}

.catalog-description {
  display: -webkit-box;
  margin: 0 0 18px;
  overflow: hidden;
  color: var(--text);
  font-size: 11px;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}

.catalog-specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 7px;
  margin-bottom: 17px;
}

.catalog-specs span {
  padding: 8px 9px;
  border-radius: 9px;
  background: var(--surface-2);
  color: var(--text);
  font-size: 8px;
  font-weight: 700;
}

.catalog-extras {
  margin-bottom: 20px;
}

.catalog-extras strong {
  display: block;
  margin-bottom: 5px;
  color: var(--ink);
  font-size: 8px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.catalog-extras p {
  margin: 0;
  color: var(--text);
  font-size: 9px;
  line-height: 1.5;
}

.catalog-card-footer {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 17px;
  border-top: 1px solid var(--border);
}

.catalog-price small {
  display: block;
  color: var(--muted);
  font-size: 7px;
  font-weight: 700;
  text-transform: uppercase;
}

.catalog-price strong {
  font-size: 18px;
  letter-spacing: -0.04em;
}

.catalog-price span {
  color: var(--muted);
  font-size: 8px;
}

.catalog-card-footer .button {
  min-height: 42px;
  padding: 0 14px;
  font-size: 9px;
}

@keyframes pulse {
  0% {
    opacity: 0.7;
    transform: scale(0.7);
  }
  80%,
  100% {
    opacity: 0;
    transform: scale(1.4);
  }
}

@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;
  }
}

@media (max-width: 1024px) {
  .booking-card {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 34px;
    padding: 38px;
  }

  .desktop-nav {
    display: none;
  }

  .steps {
    grid-template-columns: 1fr 46px 1fr 46px 1fr;
  }

  .product-content {
    padding: 20px;
  }

  .product-footer {
    display: block;
  }

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

  .trust-grid {
    gap: 30px;
  }

  .faq-layout {
    gap: 60px;
  }

  .catalog-card {
    grid-template-columns: 1fr;
  }

  .catalog-image {
    min-height: 250px;
  }
}

@media (max-width: 760px) {
  body {
    padding-bottom: 78px;
  }

  .container {
    width: min(calc(100% - 32px), var(--max-width));
  }

  .site-header {
    width: calc(100% - 32px);
    height: 72px;
  }

  .brand {
    gap: 9px;
    font-size: 15px;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
    border-radius: 10px 10px 10px 4px;
    font-size: 18px;
  }

  .theme-toggle {
    width: 38px;
    height: 38px;
  }

  .hero {
    padding-bottom: 68px;
  }

  .map-shell {
    height: 485px;
  }

  .map-roads {
    width: 190%;
    max-width: none;
    transform: translateX(-26%);
  }

  .district-label--1 {
    top: 24%;
    left: 8%;
  }

  .district-label--2 {
    top: 33%;
    left: 67%;
  }

  .district-label--3 {
    top: 63%;
    left: 24%;
  }

  .district-label--4 {
    display: none;
  }

  .map-pin--1 {
    top: 25%;
    left: 18%;
  }

  .map-pin--2 {
    top: 40%;
    left: 68%;
  }

  .map-pin--3 {
    top: 61%;
    left: 31%;
  }

  .map-pin--4 {
    top: 55%;
    left: 81%;
  }

  .map-pin--4 .pin-label {
    right: 62px;
    left: auto;
  }

  .pin-core {
    width: 48px;
    height: 48px;
    border-width: 4px;
  }

  .map-pin {
    width: 48px;
    height: 48px;
  }

  .mini-trailer {
    width: 20px;
    height: 12px;
  }

  .pin-label {
    display: none;
  }

  .map-pin.is-active .pin-label {
    display: block;
    top: 56px;
    left: -12px;
    opacity: 1;
    transform: none;
  }

  .map-status {
    right: 16px;
    bottom: 78px;
    padding: 8px 11px;
    font-size: 9px;
  }

  .locate-button {
    right: 16px;
    bottom: 122px;
    width: 42px;
    height: 42px;
  }

  .hero-card-wrap {
    margin-top: -53px;
  }

  .booking-card {
    display: block;
    padding: 27px 22px 22px;
    border-radius: 25px;
  }

  .booking-copy h1 {
    font-size: 34px;
  }

  .booking-copy p {
    margin-top: 13px;
    font-size: 12px;
  }

  .search-form {
    margin-top: 24px;
  }

  .search-controls {
    grid-template-columns: 1fr;
  }

  .input-shell,
  .button--search {
    height: 56px;
  }

  .button--search {
    width: 100%;
  }

  .popular-areas {
    display: none;
  }

  .section {
    padding: 76px 0;
  }

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

  .section-heading--center {
    text-align: left;
  }

  .section-heading--split {
    display: block;
  }

  .section-heading h2 {
    font-size: 38px;
  }

  .section-heading > p,
  .section-heading--split > p {
    margin-top: 16px;
    font-size: 12px;
  }

  .steps {
    display: block;
  }

  .step {
    display: grid;
    grid-template-columns: 62px 1fr;
    gap: 18px;
    align-items: start;
    text-align: left;
  }

  .step:not(:last-child) {
    margin-bottom: 34px;
  }

  .step-number {
    top: -5px;
    right: auto;
    left: 47px;
    font-size: 8px;
  }

  .step-icon {
    width: 62px;
    height: 62px;
    margin: 0;
    border-radius: 19px;
  }

  .step-icon svg {
    width: 27px;
  }

  .step h3 {
    margin-top: 2px;
    font-size: 16px;
  }

  .step p {
    max-width: none;
    font-size: 11px;
  }

  .step-line {
    display: none;
  }

  .benefit-scroller {
    width: calc(100% + 16px);
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding: 0 16px 14px 0;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .benefit-scroller::-webkit-scrollbar {
    display: none;
  }

  .benefit-card {
    min-width: 84%;
    min-height: 280px;
    padding: 25px;
    scroll-snap-align: start;
  }

  .scroll-hint {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
    color: var(--muted);
    font-size: 9px;
    font-weight: 700;
  }

  .scroll-hint span {
    width: 25px;
    border-top: 1px solid var(--muted);
  }

  .desktop-only {
    display: none;
  }

  .mobile-only {
    display: inline-flex;
  }

  .product-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .product-card--featured {
    order: -1;
  }

  .product-visual,
  .product-card--featured .product-visual {
    height: 230px;
  }

  .product-content {
    padding: 22px;
  }

  .product-footer {
    display: flex;
  }

  .product-footer .button {
    width: auto;
    margin-top: 0;
  }

  .fleet-all-button {
    width: 100%;
    margin-top: 18px;
  }

  .trust-section {
    padding-bottom: 0;
  }

  .trust-grid {
    display: block;
  }

  .trust-copy {
    padding-bottom: 45px;
  }

  .trust-copy h2 {
    font-size: 43px;
  }

  .trust-copy p {
    font-size: 12px;
  }

  .phone-demo {
    min-height: 515px;
  }

  .phone {
    bottom: -95px;
    width: 270px;
    height: 550px;
    border-radius: 45px;
  }

  .phone-screen {
    border-radius: 37px;
  }

  .phone-map {
    height: 150px;
  }

  .floating-proof--top {
    top: 38px;
    right: -8px;
  }

  .floating-proof--bottom {
    bottom: 80px;
    left: -9px;
  }

  .faq-layout {
    display: block;
  }

  .faq-layout .section-heading {
    margin-bottom: 36px;
  }

  .faq-item h3 button {
    padding: 22px 0;
  }

  .faq-item h3 button > span:first-child {
    gap: 12px;
    font-size: 13px;
  }

  .faq-answer p {
    margin: -3px 10px 23px 0;
    padding-left: 33px;
    font-size: 11px;
  }

  .site-footer {
    padding-top: 52px;
  }

  .footer-main {
    display: block;
    padding-bottom: 34px;
  }

  .footer-email {
    margin-top: 28px;
    font-size: 19px;
  }

  .footer-bottom {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .footer-made {
    display: none;
  }

  .mobile-sticky-cta {
    position: fixed;
    z-index: 90;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 14px max(10px, env(safe-area-inset-bottom));
    border-top: 1px solid var(--border);
    background: color-mix(in srgb, var(--surface) 92%, transparent);
    box-shadow: 0 -10px 30px rgba(10, 31, 61, 0.1);
    backdrop-filter: blur(18px);
    transition: opacity 0.25s ease, transform 0.25s ease;
  }

  .mobile-sticky-cta > div {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    column-gap: 3px;
    line-height: 1.1;
  }

  .mobile-sticky-cta small {
    width: 100%;
    color: var(--muted);
    font-size: 7px;
    font-weight: 700;
    text-transform: uppercase;
  }

  .mobile-sticky-cta strong {
    font-size: 15px;
  }

  .mobile-sticky-cta span {
    color: var(--muted);
    font-size: 7px;
  }

  .mobile-sticky-cta .button {
    min-height: 52px;
    padding: 0 17px;
    font-size: 10px;
  }

  .mobile-sticky-cta--single .button {
    width: 100%;
  }

  .toast {
    right: 14px;
    bottom: 91px;
    left: 14px;
    max-width: none;
  }

  .subpage-header {
    height: 72px;
  }

  .subpage-nav {
    grid-template-columns: 1fr auto;
  }

  .subpage-nav .back-link {
    display: none;
  }

  .fleet-hero {
    padding: 72px 0 66px;
  }

  .fleet-hero h1 {
    font-size: 48px;
  }

  .fleet-hero p {
    margin: 20px 0 30px;
    font-size: 12px;
  }

  .fleet-stat-row {
    gap: 29px;
  }

  .fleet-stat-row strong {
    font-size: 20px;
  }

  .fleet-stat-row span {
    font-size: 7px;
  }

  .catalog-toolbar {
    display: block;
  }

  .filter-pills {
    justify-content: flex-start;
    margin-top: 24px;
  }

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

  .catalog-card {
    grid-template-columns: 1fr;
  }

  .catalog-image {
    min-height: 245px;
  }

  .catalog-card-content {
    padding: 22px;
  }
}

/* Lighter glass surfaces */

.site-header {
  top: 14px;
  height: 68px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.6);
  box-shadow: 0 12px 36px rgba(10, 31, 61, 0.1);
  backdrop-filter: blur(24px) saturate(155%);
  -webkit-backdrop-filter: blur(24px) saturate(155%);
}

.brand-logo-frame {
  display: grid;
  width: 52px;
  height: 40px;
  flex: 0 0 auto;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 7px 22px rgba(10, 31, 61, 0.12);
}

.brand-logo {
  width: 48px;
  height: 36px;
  object-fit: contain;
}

.booking-card {
  border-color: rgba(255, 255, 255, 0.72);
  background: color-mix(in srgb, var(--surface) 82%, transparent);
  box-shadow: 0 28px 75px rgba(10, 31, 61, 0.14);
  backdrop-filter: blur(28px) saturate(145%);
  -webkit-backdrop-filter: blur(28px) saturate(145%);
}

.input-shell,
.step-icon,
.filter-pills button,
.catalog-specs span {
  border-color: rgba(255, 255, 255, 0.66);
  background: color-mix(in srgb, var(--surface-2) 76%, transparent);
}

.benefit-card,
.product-card,
.catalog-card {
  border-color: color-mix(in srgb, var(--border) 72%, transparent);
  background: color-mix(in srgb, var(--surface) 88%, transparent);
  box-shadow: 0 14px 42px rgba(10, 31, 61, 0.07);
}

.subpage-header {
  position: sticky;
  top: 0;
  border-bottom-color: rgba(255, 255, 255, 0.56);
  background: color-mix(in srgb, var(--surface) 76%, transparent);
  box-shadow: 0 8px 28px rgba(10, 31, 61, 0.07);
  backdrop-filter: blur(22px) saturate(145%);
  -webkit-backdrop-filter: blur(22px) saturate(145%);
}

.mobile-sticky-cta {
  border-top-color: rgba(255, 255, 255, 0.62);
  background: color-mix(in srgb, var(--surface) 78%, transparent);
  backdrop-filter: blur(24px) saturate(155%);
  -webkit-backdrop-filter: blur(24px) saturate(155%);
}

:root[data-theme="dark"] .site-header {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(9, 26, 48, 0.64);
  box-shadow: 0 12px 38px rgba(0, 0, 0, 0.24);
}

:root[data-theme="dark"] .brand--on-map,
:root[data-theme="dark"] .site-header .desktop-nav a {
  color: #f4f9fb;
}

:root[data-theme="dark"] .booking-card,
:root[data-theme="dark"] .benefit-card,
:root[data-theme="dark"] .product-card,
:root[data-theme="dark"] .catalog-card {
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(13, 34, 60, 0.82);
}

@media (max-width: 760px) {
  .site-header {
    top: 10px;
    width: calc(100% - 20px);
    height: 58px;
    padding: 0 10px;
    border-radius: 18px;
  }

  .brand-logo-frame {
    width: 45px;
    height: 34px;
    border-radius: 11px;
  }

  .brand-logo {
    width: 41px;
    height: 31px;
  }

  .booking-card {
    border-radius: 24px;
    box-shadow: 0 20px 56px rgba(10, 31, 61, 0.14);
  }
}

@media (max-width: 380px) {
  .booking-copy h1,
  .section-heading h2 {
    font-size: 32px;
  }

  .product-footer {
    display: block;
  }

  .product-footer .button {
    width: 100%;
    margin-top: 14px;
  }

  .mobile-sticky-cta .button {
    padding: 0 12px;
  }
}
