/* Damien — global styles */

:root {
  --bg-page: #f6f7f9;
  --bg-card: #ffffff;
  --accent: #3563e9;
  --accent-hover: #2950c8;
  --text: #131313;
  --text-muted: #6b7280;
  --text-soft: #9ca3af;
  --footer-bg: #0f1419;
  --footer-surface: #1a2332;
  --footer-border: #2a3544;
  --radius: 12px;
  --radius-lg: 14px;
  --radius-pill: 999px;
  --shadow-card: 0 4px 24px rgba(19, 19, 19, 0.06);
  --font: "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg-page);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

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

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

a {
  color: inherit;
}

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

/* ——— Top bar ——— */
.site-header {
  background: var(--bg-card);
  border-bottom: 1px solid #eceef2;
  padding: 18px 0;
}

.header-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 44px;
}

.logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: var(--text);
  font-family: 'Black Ops One', var(--font);
  font-weight: 400;
  font-size: 1.35rem;
  letter-spacing: 0.01em;
}

.nav-main {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-main a {
  text-decoration: none;
  color: var(--text);
  font-weight: 500;
  font-size: 0.92rem;
}

.nav-main a:hover {
  color: var(--accent);
}

.nav-main a[aria-current="page"] {
  color: var(--accent);
  font-weight: 700;
}

.site-header--on-hero .nav-main a[aria-current="page"] {
  color: #a7f3d0;
}

.site-header--on-hero .nav-main a[aria-current="page"]:hover {
  color: #fff;
}

@media (min-width: 961px) {
  .nav-main {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
}

.btn-black {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--text);
  color: #fff;
  font-weight: 600;
  font-size: 0.88rem;
  padding: 11px 22px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}

.btn-black:hover {
  background: #2d2d2d;
}

/* ——— Section heading row ——— */
.section-intro {
  padding: 48px 0 36px;
}

.section-intro__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px 40px;
}

.section-intro h1,
.section-intro h2 {
  font-size: clamp(1.75rem, 3.2vw, 2.35rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.2;
  max-width: 520px;
}

.section-intro p {
  max-width: 400px;
  font-size: 0.94rem;
  color: var(--text-muted);
  font-weight: 500;
  line-height: 1.65;
}

/* ——— Premium hero + glass search widget ——— */
:root {
  --amov-text: #1b2530;
  --amov-coral: #ee5a4a;
  --hero-slate-950: #020617;
  --hero-slate-900: #0f172a;
  --hero-slate-800: #1e293b;
  --hero-slate-600: #475569;
  --hero-slate-400: #94a3b8;
  --hero-accent: #10b981;
  --hero-accent-hover: #059669;
  --hero-accent-glow: rgba(16, 185, 129, 0.45);
  --hero-glass-bg: rgba(15, 23, 42, 0.62);
  --hero-glass-border: rgba(255, 255, 255, 0.14);
  --hero-glass-highlight: rgba(255, 255, 255, 0.06);
}

.site-header--on-hero {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: transparent;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site-header--on-hero .logo,
.site-header--on-hero .nav-main a {
  color: #f8fafc;
}

.site-header--on-hero .nav-main a:hover {
  color: #fff;
}

.hero-premium {
  position: relative;
  min-height: clamp(640px, 92vh, 920px);
  padding: 96px 0 56px;
  background: var(--hero-slate-950);
  color: #f8fafc;
}

.hero-premium__shell {
  height: 100%;
}

.hero-premium__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 400px);
  gap: clamp(24px, 3vw, 40px);
  align-items: center;
  min-height: calc(clamp(560px, 78vh, 760px) - 96px);
}

.hero-premium__visual {
  position: relative;
  min-height: clamp(380px, 62vh, 680px);
  border-radius: 24px;
  overflow: hidden;
  isolation: isolate;
  box-shadow:
    0 24px 80px rgba(2, 6, 23, 0.55),
    inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.hero-premium__img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: center 58%;
  transform: scale(1.02);
}

.hero-premium__scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(2, 6, 23, 0.88) 0%, rgba(15, 23, 42, 0.45) 42%, rgba(15, 23, 42, 0.15) 100%),
    linear-gradient(0deg, rgba(2, 6, 23, 0.55) 0%, transparent 38%);
  pointer-events: none;
}

.hero-premium__headline {
  position: absolute;
  inset: auto auto 0 0;
  max-width: min(540px, 92%);
  padding: clamp(24px, 4vw, 40px);
  z-index: 1;
}

.hero-premium__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #a7f3d0;
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.28);
}

.hero-premium__headline h1 {
  font-size: clamp(2rem, 4.2vw, 3.25rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.05;
  margin-bottom: 14px;
  text-wrap: balance;
}

.hero-premium__lead {
  font-size: clamp(0.9375rem, 1.6vw, 1.0625rem);
  line-height: 1.65;
  color: #cbd5e1;
  max-width: 46ch;
}

.hero-premium__perks {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
  list-style: none;
  padding: 0;
}

.hero-premium__perks li {
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #e2e8f0;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
}

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

.hero-glass {
  padding: clamp(22px, 3vw, 28px);
  border-radius: 22px;
  background: var(--hero-glass-bg);
  border: 1px solid var(--hero-glass-border);
  box-shadow:
    0 32px 64px rgba(2, 6, 23, 0.45),
    inset 0 1px 0 var(--hero-glass-highlight);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
}

.hero-glass__head {
  margin-bottom: 22px;
}

.hero-glass__title {
  font-size: 1.375rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: 6px;
}

.hero-glass__subtitle {
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--hero-slate-400);
}

.hero-glass__form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-glass__field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}

.hero-glass__label {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #94a3b8;
}

.hero-glass__control {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 14px;
  border-radius: 14px;
  background: rgba(2, 6, 23, 0.42);
  border: 1px solid rgba(148, 163, 184, 0.22);
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.hero-glass__control:focus-within {
  border-color: rgba(16, 185, 129, 0.55);
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.16);
  background: rgba(2, 6, 23, 0.58);
}

.hero-glass__control--compact {
  min-height: 48px;
  flex: 1;
  min-width: 0;
}

.hero-glass__icon {
  flex-shrink: 0;
  color: var(--hero-accent);
  display: grid;
  place-items: center;
}

.hero-glass__input {
  width: 100%;
  min-width: 0;
  border: none;
  background: transparent;
  color: #f8fafc;
  font: inherit;
  font-size: 0.9375rem;
  font-weight: 600;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}

.hero-glass__input option {
  color: #0f172a;
  background: #fff;
}

.hero-glass__input::-webkit-calendar-picker-indicator {
  filter: invert(0.85);
  cursor: pointer;
}

.hero-glass__row {
  display: grid;
  gap: 14px;
}

.hero-glass__split {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 10px;
}

.hero-glass__cta {
  width: 100%;
  min-height: 54px;
  margin-top: 4px;
  padding: 0 22px;
  border: none;
  border-radius: 14px;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: #022c22;
  cursor: pointer;
  background: linear-gradient(135deg, #34d399 0%, var(--hero-accent) 48%, var(--hero-accent-hover) 100%);
  box-shadow:
    0 12px 28px var(--hero-accent-glow),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    filter 0.18s ease;
}

.hero-glass__cta:hover {
  transform: translateY(-2px);
  box-shadow:
    0 18px 36px rgba(16, 185, 129, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.32);
  filter: brightness(1.04);
}

.hero-glass__cta:active {
  transform: translateY(0);
}

.hero-glass__hint {
  font-size: 0.75rem;
  line-height: 1.5;
  color: #64748b;
  text-align: center;
}

@media (max-width: 1024px) {
  .hero-premium__layout {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-premium__visual {
    min-height: clamp(300px, 48vw, 420px);
  }

  .hero-premium__panel {
    margin-top: -28px;
  }

  .hero-glass {
    max-width: 520px;
    margin-inline: auto;
  }
}

@media (max-width: 768px) {
  .hero-premium {
    padding-top: 118px;
  }

  .hero-premium__layout {
    gap: 28px;
  }

  .hero-premium__panel {
    margin-top: 0;
  }

  /* Stack image and headline so text isn't over the photo */
  .hero-premium__visual {
    display: flex;
    flex-direction: column;
    overflow: visible;
    min-height: 0;
    margin-top: 20px;
    box-shadow: none;
  }

  .hero-premium__img {
    height: clamp(220px, 56vw, 340px);
    min-height: 0;
    border-radius: 20px;
    object-position: center center;
    transform: none;
    box-shadow:
      0 24px 60px rgba(2, 6, 23, 0.5),
      inset 0 0 0 1px rgba(255, 255, 255, 0.06);
  }

  .hero-premium__scrim {
    display: none;
  }

  .hero-premium__headline {
    position: static;
    max-width: none;
    padding: 24px 2px;
  }
}

@media (max-width: 560px) {
  .hero-premium {
    min-height: auto;
  }

  .hero-premium__img {
    border-radius: 18px;
  }

  .hero-premium__perks {
    gap: 8px;
  }

  .hero-premium__perks li {
    font-size: 0.75rem;
    padding: 6px 10px;
  }

  .hero-glass {
    padding: 18px;
    border-radius: 18px;
  }

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

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

.catalog-search-status {
  padding: 12px 14px;
  border-radius: 10px;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.28);
  color: #0f172a;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 16px;
  text-align: center;
}

/* ——— Advantages top bar (perks strip under hero) ——— */
.advantages {
  padding: clamp(20px, 3vw, 32px) 0;
  background: var(--bg-page);
}

.topbar-perks {
  list-style: none;
  margin: 0;
  padding: 14px 12px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px 0;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  box-shadow: 0 6px 24px rgba(15, 23, 42, 0.05);
}

.topbar-perk {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 4px 22px;
  font-size: 0.95rem;
  font-weight: 600;
  color: #0f172a;
  white-space: nowrap;
  border-right: 1px solid #e2e8f0;
}

.topbar-perk:last-child {
  border-right: none;
}

.topbar-perk svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: var(--hero-accent);
}

@media (max-width: 768px) {
  .topbar-perks {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 4px 0;
    padding: 12px 8px;
  }

  .topbar-perk {
    padding: 10px 12px;
    font-size: 0.85rem;
    white-space: normal;
    border-right: 1px solid #e2e8f0;
  }

  .topbar-perk:nth-child(2n) {
    border-right: none;
  }
}

/* ——— Fleet catalog grid + cards ——— */
.catalog {
  padding: 56px 0;
  background: linear-gradient(180deg, var(--bg-page) 0%, #fff 120px);
}

.help-banner {
  padding: 24px 0 64px;
}

.help-banner__card {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  isolation: isolate;
  box-shadow: 0 24px 60px rgba(2, 32, 22, 0.22);
}

.help-banner__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  z-index: -2;
}

.help-banner__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(6, 78, 59, 0.92) 0%, rgba(16, 185, 129, 0.82) 55%, rgba(5, 150, 105, 0.86) 100%);
  z-index: -1;
}

.help-banner__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: clamp(24px, 4vw, 56px);
  padding: clamp(32px, 5vw, 56px);
}

.help-banner__copy {
  flex: 1 1 460px;
  min-width: 0;
}

.help-banner__eyebrow {
  margin: 0 0 10px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
}

.help-banner__title {
  margin: 0 0 14px;
  font-size: clamp(1.7rem, 3.4vw, 2.6rem);
  line-height: 1.1;
  font-weight: 800;
  color: #fff;
}

.help-banner__text {
  margin: 0;
  max-width: 560px;
  font-size: 1.02rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
}

.help-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.help-banner__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.98rem;
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.help-banner__btn svg {
  flex: none;
}

.help-banner__btn--call {
  background: #fff;
  color: var(--hero-accent-hover);
  box-shadow: 0 12px 26px rgba(2, 32, 22, 0.28);
}

.help-banner__btn--wa {
  background: #25d366;
  color: #052e16;
  box-shadow: 0 12px 26px rgba(2, 32, 22, 0.28);
}

.help-banner__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(2, 32, 22, 0.34);
}

@media (max-width: 768px) {
  .help-banner {
    padding: 8px 0 48px;
  }

  .help-banner__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .help-banner__actions {
    width: 100%;
  }

  .help-banner__btn {
    flex: 1 1 auto;
    justify-content: center;
  }
}

.fleet-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(18px, 2.5vw, 28px);
  align-items: stretch;
}

.fleet-grid__item,
.rv-grid-slot.fleet-grid__item {
  min-width: 0;
  display: flex;
}

.fleet-card {
  display: flex;
  flex-direction: column;
  width: 100%;
  background: #fff;
  border-radius: 20px;
  border: 1px solid #e2e8f0;
  box-shadow:
    0 1px 2px rgba(15, 23, 42, 0.04),
    0 10px 30px rgba(15, 23, 42, 0.05);
  overflow: hidden;
  transition:
    transform 0.28s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.28s ease,
    border-color 0.2s ease;
}

.fleet-card:hover {
  transform: translateY(-6px);
  border-color: rgba(16, 185, 129, 0.28);
  box-shadow:
    0 8px 20px rgba(15, 23, 42, 0.06),
    0 24px 48px rgba(15, 23, 42, 0.08),
    0 12px 32px rgba(16, 185, 129, 0.1);
}

.fleet-card__media {
  position: relative;
  display: block;
  height: 200px;
  overflow: hidden;
  background: linear-gradient(165deg, #f1f5f9 0%, #e2e8f0 100%);
  text-decoration: none;
}

.fleet-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.fleet-card:hover .fleet-card__img {
  transform: scale(1.06);
}

.fleet-card__ribbon {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #065f46;
  background: rgba(209, 250, 229, 0.95);
  border: 1px solid rgba(16, 185, 129, 0.35);
  backdrop-filter: blur(6px);
}

.fleet-card__body {
  flex: 1;
  padding: 18px 18px 14px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.fleet-card__title-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}

.fleet-card__name {
  margin: 0;
  font-size: 1.0625rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.25;
  color: #0f172a;
  flex: 1;
  min-width: 0;
}

.fleet-card__badge {
  flex-shrink: 0;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #0f766e;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.22);
}

.fleet-card__specs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin: 0;
  padding: 12px 10px;
  list-style: none;
  border-radius: 14px;
  background: #f8fafc;
  border: 1px solid #eef2f7;
}

.fleet-card__spec {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
  min-width: 0;
}

.fleet-card__icon {
  color: #10b981;
  flex-shrink: 0;
}

.fleet-card__spec-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
  width: 100%;
}

.fleet-card__spec-label {
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #94a3b8;
}

.fleet-card__spec-value {
  font-size: 0.75rem;
  font-weight: 700;
  color: #334155;
  line-height: 1.2;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.fleet-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 18px 18px;
  margin-top: auto;
  border-top: 1px solid #f1f5f9;
}

.fleet-card__price {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 4px;
  min-width: 0;
}

.fleet-card__price-amt {
  font-size: 1.375rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #0f172a;
  line-height: 1;
}

.fleet-card__price-per {
  font-size: 0.8125rem;
  font-weight: 600;
  color: #64748b;
}

.fleet-card__cta {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  font-size: 0.8125rem;
  font-weight: 700;
  text-decoration: none;
  color: #fff;
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.2);
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    background 0.18s ease;
}

.fleet-card__cta:hover {
  background: linear-gradient(135deg, #334155 0%, #1e293b 100%);
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.28);
  transform: translateY(-1px);
}

.fleet-card__cta:focus-visible,
.fleet-card__media:focus-visible {
  outline: 2px solid #10b981;
  outline-offset: 3px;
}

.catalog__actions {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

@media (max-width: 1279px) {
  .fleet-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 1023px) {
  .fleet-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 639px) {
  .fleet-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin-inline: auto;
  }

  .fleet-card__media {
    height: 190px;
  }

  .fleet-card__footer {
    flex-wrap: wrap;
  }

  .fleet-card__cta {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .fleet-card,
  .fleet-card__img,
  .fleet-card__cta {
    transition: none;
  }

  .fleet-card:hover .fleet-card__img {
    transform: none;
  }
}

/* ——— Google reviews ——— */
.google-reviews {
  padding: clamp(56px, 8vw, 88px) 0 clamp(48px, 6vw, 72px);
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 45%, #f1f5f9 100%);
  border-top: 1px solid #e2e8f0;
  overflow: hidden;
}

.google-reviews .container {
  position: relative;
}

.google-reviews__header {
  max-width: 720px;
  margin: 0 auto 32px;
  text-align: center;
}

.google-reviews__brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  padding: 6px 14px 6px 10px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.04);
}

.google-reviews__logo {
  flex-shrink: 0;
}

.google-reviews__eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #64748b;
}

.google-reviews__title {
  margin: 0 0 16px;
  font-size: clamp(1.625rem, 3.2vw, 2.125rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.15;
  color: #0f172a;
}

.google-reviews__summary {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px 14px;
  padding: 12px 20px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid #e2e8f0;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.05);
}

.google-reviews__score {
  margin: 0;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
  color: #0f172a;
  letter-spacing: -0.03em;
}

.google-reviews__count {
  margin: 0;
  width: 100%;
  font-size: 0.88rem;
  color: #64748b;
}

.review-stars {
  display: inline-flex;
  font-size: 1.05rem;
  line-height: 1;
  letter-spacing: 0.06em;
}

.review-stars__full {
  color: #f59e0b;
}

.review-stars__empty {
  color: #cbd5e1;
}

.google-reviews__slider-wrap {
  position: relative;
  margin: 0 calc(50% - 50vw);
  width: 100vw;
}

.google-reviews__slider-wrap::before,
.google-reviews__slider-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 20px;
  width: clamp(24px, 5vw, 72px);
  z-index: 2;
  pointer-events: none;
}

.google-reviews__slider-wrap::before {
  left: 0;
  background: linear-gradient(90deg, #f8fafc 15%, rgba(248, 250, 252, 0));
}

.google-reviews__slider-wrap::after {
  right: 0;
  background: linear-gradient(270deg, #f1f5f9 15%, rgba(241, 245, 249, 0));
}

.google-reviews__track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 8px clamp(20px, 4vw, 48px) 24px;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: clamp(20px, 4vw, 48px);
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: #94a3b8 transparent;
}

.google-reviews__track:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
  border-radius: 12px;
}

.google-reviews__track::-webkit-scrollbar {
  height: 10px;
}

.google-reviews__track::-webkit-scrollbar-track {
  background: transparent;
}

.google-reviews__track::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 999px;
  border: 2px solid transparent;
  background-clip: padding-box;
}

.review-card {
  flex: 0 0 min(340px, calc(100vw - 56px));
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  min-height: 260px;
  padding: 22px 22px 20px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid #e2e8f0;
  box-shadow:
    0 10px 30px rgba(15, 23, 42, 0.06),
    0 1px 0 rgba(255, 255, 255, 0.8) inset;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.review-card:hover {
  transform: translateY(-4px);
  border-color: #cbd5e1;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.1);
}

.review-card__top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.review-card__avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid #fff;
  box-shadow: 0 0 0 1px #e2e8f0, 0 4px 12px rgba(15, 23, 42, 0.08);
  background: #e2e8f0;
}

.review-card__avatar--fallback {
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #4285f4 0%, #34a853 100%);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 800;
  box-shadow: 0 0 0 1px #e2e8f0;
}

.review-card__meta {
  min-width: 0;
  flex: 1;
}

.review-card__author {
  margin: 0 0 6px;
  font-size: 0.98rem;
  font-weight: 700;
  color: #0f172a;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.review-card__rating-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.review-card__stars {
  font-size: 0.88rem;
}

.review-card__time {
  font-size: 0.75rem;
  font-weight: 500;
  color: #94a3b8;
}

.review-card__text {
  margin: 0;
  flex: 1;
  font-size: 0.94rem;
  line-height: 1.65;
  color: #475569;
  display: -webkit-box;
  -webkit-line-clamp: 7;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.review-card__text::before {
  content: "“";
  color: #cbd5e1;
  font-size: 1.4rem;
  line-height: 0;
  margin-right: 2px;
}

.google-reviews__cta {
  margin-top: 20px;
  text-align: center;
}

.google-reviews__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid #cbd5e1;
  background: #fff;
  color: #0f172a;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease;
}

.google-reviews__link:hover {
  border-color: var(--accent);
  color: var(--accent);
  box-shadow: 0 8px 24px rgba(53, 99, 233, 0.12);
  transform: translateY(-1px);
}

@media (max-width: 640px) {
  .review-card {
    flex-basis: min(300px, calc(100vw - 48px));
    min-height: 240px;
  }

  .google-reviews__summary {
    width: 100%;
  }
}

/* ——— Driver license guide ——— */
.license-guide {
  padding: clamp(56px, 8vw, 88px) 0;
  background: #f1f5f9;
  border-block: 1px solid #e2e8f0;
}

.license-guide__header {
  max-width: 640px;
  margin: 0 auto 40px;
  text-align: center;
}

.license-guide__eyebrow {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #0f766e;
}

.license-guide__header h2 {
  font-size: clamp(1.625rem, 3.2vw, 2.125rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.15;
  color: #1e293b;
  margin-bottom: 14px;
}

.license-guide__lead {
  font-size: 1rem;
  line-height: 1.65;
  color: #475569;
}

.license-guide__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2.5vw, 28px);
  align-items: stretch;
}

.license-card {
  display: flex;
  flex-direction: column;
  padding: clamp(24px, 3vw, 28px);
  border-radius: 20px;
  background: #fff;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 24px rgba(15, 23, 42, 0.04);
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease;
}

.license-card:hover {
  transform: translateY(-4px);
  border-color: #cbd5e1;
  box-shadow: 0 12px 36px rgba(15, 23, 42, 0.08);
}

.license-card__icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 18px;
  border-radius: 14px;
  color: #0f766e;
  background: linear-gradient(145deg, #ecfdf5 0%, #d1fae5 100%);
  border: 1px solid rgba(16, 185, 129, 0.2);
}

.license-card__title {
  margin: 0 0 10px;
  font-size: 1.125rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #1e293b;
  line-height: 1.25;
}

.license-card__text {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: #475569;
  flex: 1;
}

.license-card--link {
  background: linear-gradient(180deg, #fff 0%, #f8fafc 100%);
}

.license-card__external {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  padding: 10px 0 2px;
  font-size: 0.875rem;
  font-weight: 700;
  color: #1e3a8a;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition:
    color 0.18s ease,
    gap 0.18s ease,
    border-color 0.18s ease;
}

.license-card__external:hover {
  color: #0f172a;
  gap: 12px;
  border-bottom-color: rgba(30, 58, 138, 0.35);
}

.license-card__external:focus-visible {
  outline: 2px solid #1e3a8a;
  outline-offset: 4px;
  border-radius: 4px;
}

.license-card__external svg {
  flex-shrink: 0;
  opacity: 0.85;
}

@media (max-width: 1023px) {
  .license-guide__grid {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin-inline: auto;
  }
}

@media (max-width: 639px) {
  .license-guide__header {
    text-align: left;
    margin-bottom: 28px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .license-card,
  .license-card__external {
    transition: none;
  }

  .license-card:hover {
    transform: none;
  }
}

/* ——— Blog ——— */
.section-intro--blog {
  padding-top: 48px;
  padding-bottom: 32px;
}

.blog {
  padding-bottom: 72px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.article-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid #f0f1f4;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.article-card__img {
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.article-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-card__body {
  padding: 22px 20px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.article-card__date {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 8px;
}

.article-card__title {
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.35;
  margin-bottom: 10px;
}

.article-card__excerpt {
  font-size: 0.88rem;
  color: var(--text-muted);
  font-weight: 500;
  line-height: 1.55;
  flex: 1;
}

.article-card__link {
  margin-top: 16px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
}

.article-card__link:hover {
  text-decoration: underline;
}

.article-card__link svg {
  width: 16px;
  height: 16px;
}

/* ——— Footer ——— */
.site-footer {
  background: linear-gradient(180deg, var(--footer-bg) 0%, #0a0e14 100%);
  color: #94a3b8;
  font-size: 0.9rem;
  border-top: 1px solid var(--footer-border);
}

.site-footer__main {
  padding: 64px 0 48px;
}

.site-footer a {
  color: #cbd5e1;
  text-decoration: none;
  transition: color 0.2s ease;
}

.site-footer a:hover {
  color: var(--accent);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.9fr 1.1fr;
  gap: 40px 32px;
  align-items: start;
}

.footer-logo {
  display: inline-block;
  margin-bottom: 16px;
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #f8fafc;
  transition: color 0.2s ease;
}

.footer-logo:hover {
  color: var(--accent);
}

.footer-about {
  margin: 0;
  max-width: 40ch;
  font-size: 0.9rem;
  line-height: 1.65;
  color: #94a3b8;
}

.footer-col__title {
  margin: 0 0 18px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #f1f5f9;
}

.footer-col__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-col__list li + li {
  margin-top: 12px;
}

.footer-col__list a {
  font-size: 0.9rem;
  font-weight: 500;
  color: #cbd5e1;
}

.footer-contact-list {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
  display: grid;
  gap: 14px;
}

.footer-contact-list__label {
  display: block;
  margin-bottom: 4px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #64748b;
}

.footer-contact-list a,
.footer-contact-list__value {
  font-size: 0.9rem;
  font-weight: 600;
  color: #e2e8f0;
}

.footer-contact-list a:hover {
  color: var(--accent);
}

.footer-payment-badge {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 0;
  padding: 14px 16px;
  border-radius: 10px;
  border: 1px solid rgba(110, 231, 183, 0.22);
  background: rgba(16, 185, 129, 0.08);
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.5;
  color: #a7f3d0;
}

.footer-payment-badge__icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 1px;
  color: #6ee7b7;
}

.footer-bar {
  border-top: 1px solid var(--footer-border);
  background: rgba(0, 0, 0, 0.2);
}

.footer-bar__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 0 28px;
}

.footer-copy {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: #64748b;
}

.footer-social {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--footer-surface);
  border: 1px solid var(--footer-border);
  display: grid;
  place-items: center;
  color: #94a3b8;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
}

.footer-social a:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  transform: translateY(-2px);
}

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

@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px 28px;
  }

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

  .footer-about {
    max-width: 52ch;
  }
}

@media (max-width: 640px) {
  .site-footer__main {
    padding: 48px 0 36px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

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

/* Car detail modal */
.car-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  overflow-y: auto;
  overscroll-behavior: contain;
  pointer-events: none;
}

.car-modal[hidden] {
  display: none !important;
}

.car-modal--open {
  pointer-events: auto;
}

body.car-modal-open {
  overflow: hidden;
}

.car-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.55);
  backdrop-filter: blur(4px);
}

.car-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 960px);
  max-height: min(94vh, 920px);
  overflow: auto;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 24px 64px rgba(15, 23, 42, 0.22);
  -webkit-overflow-scrolling: touch;
}

.car-modal__dialog--checkout {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: min(90vh, 880px);
  max-height: min(90vh, 880px);
}

@media (min-width: 1024px) {
  .car-modal__dialog {
    width: min(100%, 980px);
  }

  .car-modal__dialog--checkout {
    height: min(88vh, 860px);
    max-height: min(88vh, 860px);
  }

  .car-modal__checkout {
    grid-template-columns: minmax(0, 2fr) minmax(280px, 320px);
  }

  .car-modal__car-info,
  .car-modal__checkout-form {
    padding-left: 32px;
    padding-right: 32px;
  }
}

.car-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 3;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: #1f2937;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.12);
}

.car-modal__close:hover {
  background: #fff;
  color: var(--accent);
}

.car-modal__checkout {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(260px, 300px);
  flex: 1;
  min-height: 0;
  height: 100%;
}

.car-modal__main {
  overflow-x: hidden;
  overflow-y: auto;
  min-height: 0;
  padding: 0 0 28px;
  -webkit-overflow-scrolling: touch;
}

.car-modal__media {
  background: #f8fafc;
  overflow: hidden;
}

.car-modal__img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 240px;
  object-fit: contain;
  object-position: center;
}

.car-modal__gallery {
  display: flex;
  gap: 8px;
  padding: 10px 16px 12px;
  overflow-x: auto;
  background: #f8fafc;
}

.car-modal__gallery-thumb {
  flex: 0 0 72px;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 8px;
  background: #fff;
  cursor: pointer;
  overflow: hidden;
}

.car-modal__gallery-thumb.is-active {
  border-color: #059669;
}

.car-modal__gallery-thumb img {
  display: block;
  width: 72px;
  height: 48px;
  object-fit: cover;
}

.car-modal__car-info {
  padding: 20px 24px 0;
}

.car-modal__title {
  margin: 0 0 6px;
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1.3;
  color: #0f172a;
  padding-right: 36px;
  letter-spacing: -0.02em;
}

.car-modal__subtitle {
  margin: 0 0 16px;
  font-size: 0.9rem;
  color: #64748b;
  line-height: 1.45;
}

.car-modal__specs-heading {
  margin: 0 0 10px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #94a3b8;
}

.car-modal__specs {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
  gap: 6px 16px;
  margin: 0 0 20px;
  padding: 14px 16px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
}

.car-modal__specs dt {
  margin: 0;
  font-size: 0.84rem;
  color: #64748b;
}

.car-modal__specs dd {
  margin: 0;
  font-size: 0.84rem;
  font-weight: 600;
  color: #0f172a;
  text-align: right;
}

.car-modal__checkout-form {
  padding: 0 24px;
}

.checkout-step + .checkout-step {
  margin-top: 24px;
}

.checkout-step__head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.checkout-step__num {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #059669 0%, #047857 100%);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 800;
}

.checkout-step__title {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  color: #0f172a;
}

.checkout-step__fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.checkout-step__fields--dates {
  grid-template-columns: 1.4fr 1fr;
}

.checkout-step__fields--locations {
  margin-bottom: 12px;
}

.checkout-field--time {
  min-width: 0;
}

.checkout-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.checkout-field--full {
  grid-column: 1 / -1;
}

.checkout-field__label {
  font-size: 0.8rem;
  font-weight: 600;
  color: #475569;
}

.checkout-field__input {
  width: 100%;
  border: 1px solid #cbd5e1;
  border-radius: 10px;
  padding: 11px 12px;
  font: inherit;
  color: #0f172a;
  background: #fff;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.checkout-field__input:focus {
  outline: none;
  border-color: #059669;
  box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.15);
}

.checkout-field__input[aria-invalid="true"] {
  border-color: #dc2626;
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.12);
}

.car-modal__summary {
  background: linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
  color: #f8fafc;
  border-left: 1px solid rgba(255, 255, 255, 0.06);
  overflow-x: hidden;
  overflow-y: auto;
  min-height: 0;
}

.car-modal__summary-inner {
  padding: 24px 22px 28px;
  display: flex;
  flex-direction: column;
  gap: 0;
  min-height: 100%;
}

.car-modal__summary-title {
  margin: 0 0 18px;
  font-size: 1.05rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.01em;
}

.car-modal__summary-list {
  margin: 0 0 18px;
  padding: 0;
}

.car-modal__summary-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.4fr);
  gap: 8px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.car-modal__summary-row dt {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #94a3b8;
}

.car-modal__summary-row dd {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 600;
  color: #f1f5f9;
  text-align: right;
  line-height: 1.35;
}

.car-modal__summary-pricing {
  margin-bottom: 16px;
  padding: 16px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.car-modal__summary-rate {
  margin: 0 0 6px;
  font-size: 0.88rem;
  font-weight: 600;
  color: #a7f3d0;
}

.car-modal__summary-total {
  margin: 0;
  font-size: 1.65rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.car-modal__summary-total--muted {
  font-size: 0.88rem;
  font-weight: 500;
  color: #94a3b8;
}

.car-modal__summary-notice {
  margin: 0 0 18px;
  padding: 12px 14px;
  border-radius: 10px;
  background: rgba(5, 150, 105, 0.15);
  border: 1px solid rgba(110, 231, 183, 0.25);
  font-size: 0.8rem;
  line-height: 1.5;
  color: #d1fae5;
}

.car-modal__confirm {
  display: block;
  width: 100%;
  margin-top: auto;
  padding: 14px 18px;
  border: none;
  border-radius: 12px;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: #fff;
  font: inherit;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(16, 185, 129, 0.35);
  transition: transform 0.15s ease, box-shadow 0.15s ease, opacity 0.15s ease;
}

.car-modal__confirm:hover:not(:disabled) {
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(16, 185, 129, 0.45);
}

.car-modal__confirm:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.car-modal__feedback {
  min-height: 1.2em;
  margin-top: 12px;
  font-size: 0.82rem;
  text-align: center;
}

.car-modal__feedback.is-error {
  color: #fca5a5;
}

.car-modal__feedback.is-success {
  color: #6ee7b7;
}

@media (max-width: 768px) {
  .car-modal__dialog--checkout {
    height: auto;
    max-height: min(94vh, 920px);
    overflow: auto;
    display: block;
  }

  .car-modal__checkout {
    grid-template-columns: 1fr;
    height: auto;
  }

  .car-modal__main {
    max-height: none;
    overflow: visible;
  }

  .car-modal__summary {
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    overflow: visible;
  }

  .checkout-step__fields {
    grid-template-columns: 1fr;
  }

  .car-modal__img {
    max-height: 200px;
  }
}

/* ——— Car detail page (reuses the checkout popup design, rendered inline) ——— */
.car-page {
  padding: 28px 0 64px;
  background: linear-gradient(180deg, var(--bg-page) 0%, #fff 220px);
}

/* Neutralise the modal's fixed height / inner-scroll so the page flows naturally. */
.car-page__dialog.car-modal__dialog--checkout {
  display: block;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  height: auto;
  max-height: none;
  /* `clip` prevents horizontal scroll without creating a scroll container,
     so position:sticky descendants still work (unlike overflow:hidden). */
  overflow: clip;
  box-shadow: 0 24px 64px rgba(15, 23, 42, 0.16);
}

.car-page__dialog .car-modal__checkout {
  height: auto;
  min-height: 0;
}

.car-page__dialog .car-modal__main,
.car-page__dialog .car-modal__summary {
  overflow: visible;
  min-height: 0;
}

.car-page__dialog .car-modal__img {
  max-height: 360px;
}

/* The summary column stretches to the taller left column on desktop; keep the
   confirm button directly under the notice instead of pinned to the bottom. */
.car-page__dialog .car-modal__summary-inner {
  min-height: 0;
}

.car-page__dialog .car-modal__confirm {
  margin-top: 8px;
}

/* Keep the booking summary in view while scrolling the car details on desktop. */
@media (min-width: 1024px) {
  .car-page__dialog .car-modal__summary {
    align-self: start;
    position: sticky;
    top: 16px;
  }
}

/* ——— About page (matches homepage design system) ——— */
.hero-premium--about {
  min-height: clamp(560px, 82vh, 780px);
}

.hero-premium--about .hero-premium__layout {
  min-height: calc(clamp(480px, 68vh, 640px) - 96px);
}

.hero-glass__cta--link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

a.hero-glass__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.about-panel-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.about-panel-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.875rem;
  line-height: 1.55;
  color: #cbd5e1;
}

.about-panel-list svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--hero-accent);
}

.about-story {
  background: #fff;
}

.about-fleet .section-intro {
  padding-bottom: 28px;
}

.section-intro--center .section-intro__inner {
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.section-intro--center h2 {
  max-width: none;
}

.section-intro--center p {
  max-width: 560px;
}

.section-intro--center .license-guide__eyebrow {
  margin-bottom: 10px;
}

.about-faq {
  background: #f8fafc;
}

.about-faq__list {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.about-faq__item {
  background: #fff;
  border-radius: 20px;
  border: 1px solid #e2e8f0;
  padding: clamp(18px, 2.5vw, 22px) clamp(20px, 3vw, 24px);
  box-shadow: 0 4px 24px rgba(15, 23, 42, 0.04);
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.about-faq__item[open] {
  border-color: #cbd5e1;
  box-shadow: 0 8px 28px rgba(15, 23, 42, 0.06);
}

.about-faq__item summary {
  cursor: pointer;
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: -0.02em;
  color: #1e293b;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.about-faq__item summary::-webkit-details-marker {
  display: none;
}

.about-faq__item summary::after {
  content: "+";
  flex-shrink: 0;
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1;
  color: #94a3b8;
}

.about-faq__item[open] summary::after {
  content: "−";
  color: #0f766e;
}

.about-faq__item p {
  margin-top: 12px;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: #475569;
}

.about-contact .license-card a {
  color: #1e3a8a;
  font-weight: 700;
  text-decoration: none;
  transition: color 0.18s ease;
}

.about-contact .license-card a:hover {
  color: var(--accent);
}

@media (max-width: 560px) {
  .hero-premium--about {
    min-height: auto;
  }

  .hero-premium--about .hero-premium__layout {
    min-height: auto;
  }
}

@media (min-width: 640px) {
  .car-modal__dialog:not(.car-modal__dialog--checkout) {
    width: min(100%, 560px);
  }

  .car-modal__img {
    max-height: 320px;
  }
}

@media (max-width: 639px) {
  .car-modal {
    align-items: flex-start;
    padding-top: max(12px, env(safe-area-inset-top));
    padding-bottom: max(12px, env(safe-area-inset-bottom));
    padding-left: 12px;
    padding-right: 12px;
  }

  .car-modal__dialog {
    width: 100%;
    margin-block: auto;
    max-height: calc(100dvh - max(24px, env(safe-area-inset-top) + env(safe-area-inset-bottom)));
  }
}

@media (max-width: 1024px) {
  .blog-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin-inline: auto;
  }
}

@media (max-width: 960px) {
  .header-inner {
    flex-direction: column;
    text-align: center;
  }

  .nav-main {
    position: static;
    transform: none;
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 640px) {
  .section-intro__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .section-intro--center .section-intro__inner {
    align-items: center;
  }
}
