/* ==========================================================================
   Cartrex Car & Truck Rentals — Design Tokens & Base Styles
   ========================================================================== */

:root {
  /* Brand colors (from Cartrex Looka brand kit) */
  --teal-900: #0b323b;
  --teal-800: #0d3d47;
  --teal-700: #155263; /* brand primary */
  --teal-600: #1d6b80;
  --teal-500: #26839c;
  --teal-100: #e3edef;
  --teal-50:  #f2f7f8;

  --gold-600: #e6ac1f;
  --gold-500: #ffc93c; /* brand accent */
  --gold-400: #ffd968;
  --gold-100: #fff4d9;

  --ink-900: #10201f;
  --ink-700: #33474a;
  --ink-500: #5c7175;
  --ink-300: #93a5a8;
  --muted: #5c7175;

  --surface: #ffffff;
  --surface-alt: #f8f6f2;
  --surface-sunk: #eef3f3;
  --border: #dde4e8;
  --footer-dark: #07202a;

  --success: #2f9e5b;
  --danger: #d64545;

  /* Typography */
  --font-heading: "Big Shoulders Display", "Segoe UI", system-ui, sans-serif;
  --font-body: "Inter", "Segoe UI", system-ui, sans-serif;
  --font-mono: "IBM Plex Mono", "Courier New", monospace;

  --fs-xs: 0.8125rem;
  --fs-sm: 0.9375rem;
  --fs-base: 1rem;
  --fs-md: 1.125rem;
  --fs-lg: 1.375rem;
  --fs-xl: clamp(1.5rem, 1.2rem + 1.2vw, 2rem);
  --fs-2xl: clamp(1.875rem, 1.4rem + 2vw, 2.75rem);
  --fs-3xl: clamp(2.375rem, 1.6rem + 3.2vw, 3.75rem);
  --fs-4xl: clamp(2.75rem, 1.7rem + 4.5vw, 4.75rem);

  /* Spacing (8px rhythm) */
  --sp-1: 0.25rem;
  --sp-2: 0.5rem;
  --sp-3: 0.75rem;
  --sp-4: 1rem;
  --sp-5: 1.5rem;
  --sp-6: 2rem;
  --sp-7: 3rem;
  --sp-8: 4rem;
  --sp-9: 6rem;
  --sp-10: 8rem;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-pill: 999px;

  --shadow-1: 0 1px 2px rgba(11, 50, 59, 0.06), 0 1px 3px rgba(11, 50, 59, 0.08);
  --shadow-2: 0 4px 12px rgba(11, 50, 59, 0.10), 0 2px 4px rgba(11, 50, 59, 0.08);
  --shadow-3: 0 16px 40px rgba(11, 50, 59, 0.16), 0 4px 12px rgba(11, 50, 59, 0.08);

  --duration-fast: 150ms;
  --duration-base: 220ms;
  --duration-slow: 400ms;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);

  --container-w: 1220px;
  --header-h: 84px;
}

/* ==========================================================================
   Reset
   ========================================================================== */

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--fs-base);
  line-height: 1.6;
  color: var(--ink-900);
  background: var(--surface);
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, p, figure { margin: 0; }

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

:focus-visible {
  outline: 3px solid var(--teal-600);
  outline-offset: 2px;
  border-radius: var(--radius-sm);
}

/* ==========================================================================
   Typography
   ========================================================================== */

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 800;
  letter-spacing: -0.005em;
  text-transform: uppercase;
  color: var(--teal-800);
  line-height: 0.98;
}
h1 { font-size: var(--fs-4xl); font-weight: 900; }
h2 { font-size: var(--fs-3xl); font-weight: 800; }
h3 { font-size: var(--fs-2xl); }
h4 { font-size: var(--fs-xl); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: var(--fs-xs);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal-600);
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 3px;
  border-radius: var(--radius-pill);
  background: var(--gold-500);
}

.lede {
  font-size: var(--fs-md);
  color: var(--ink-700);
  max-width: 56ch;
}

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

/* ==========================================================================
   Layout
   ========================================================================== */

.container {
  width: 100%;
  max-width: var(--container-w);
  margin-inline: auto;
  padding-inline: var(--sp-5);
}
@media (min-width: 768px) {
  .container { padding-inline: var(--sp-7); }
}

.section { padding-block: var(--sp-9); }
.section-alt { background: var(--surface-alt); }
.section-sunk { background: var(--surface-sunk); }

.section-head {
  max-width: 640px;
  margin-bottom: var(--sp-7);
  display: grid;
  gap: var(--sp-3);
}
.section-head.center { margin-inline: auto; text-align: center; }

.grid { display: grid; gap: var(--sp-5); }
.grid-2 { grid-template-columns: repeat(1, 1fr); }
.grid-3 { grid-template-columns: repeat(1, 1fr); }
.grid-4 { grid-template-columns: repeat(2, 1fr); }
@media (min-width: 640px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 860px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  min-height: 48px;
  padding: 0 var(--sp-6);
  border-radius: var(--radius-pill);
  border: 2px solid transparent;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--fs-sm);
  white-space: nowrap;
  transition: transform var(--duration-fast) var(--ease-out),
              box-shadow var(--duration-fast) var(--ease-out),
              background-color var(--duration-fast) var(--ease-out),
              border-color var(--duration-fast) var(--ease-out),
              color var(--duration-fast) var(--ease-out);
}
.btn:active { transform: scale(0.97); }

.btn-gold {
  background: var(--gold-500);
  color: var(--teal-900);
  box-shadow: var(--shadow-2);
}
.btn-gold:hover { background: var(--gold-400); box-shadow: var(--shadow-3); }

.btn-teal {
  background: var(--teal-700);
  color: #fff;
}
.btn-teal:hover { background: var(--teal-800); }

.btn-outline {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.4);
  color: #fff;
}
.btn-outline:hover { border-color: var(--gold-500); color: var(--gold-500); }

.btn-outline-dark {
  background: transparent;
  border-color: var(--teal-700);
  color: var(--teal-700);
}
.btn-outline-dark:hover { background: var(--teal-700); color: #fff; }

.btn-block { width: 100%; }
.btn-sm { min-height: 40px; padding: 0 var(--sp-5); font-size: var(--fs-xs); }

/* ==========================================================================
   Hexagon brand motif
   ========================================================================== */

.hex-clip {
  clip-path: polygon(25% 3%, 75% 3%, 100% 50%, 75% 97%, 25% 97%, 0% 50%);
}

.hex-frame {
  position: relative;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
}
.hex-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--teal-700);
  clip-path: polygon(25% 3%, 75% 3%, 100% 50%, 75% 97%, 25% 97%, 0% 50%);
}
.hex-frame > * { position: relative; z-index: 1; }
.hex-frame.gold::before { background: var(--gold-500); }

.hex-bg-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.14) 1.5px, transparent 1.5px);
  background-size: 28px 28px;
  pointer-events: none;
}

/* ==========================================================================
   Header / Nav
   ========================================================================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(21, 82, 99, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 201, 60, 0.15);
  transition: background-color var(--duration-base) var(--ease-out),
              box-shadow var(--duration-base) var(--ease-out);
}
.site-header.is-scrolled { background: rgba(13, 61, 71, 0.99); box-shadow: var(--shadow-2); }

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-5);
}

.brand { display: flex; align-items: center; }
.brand img { height: 54px; width: auto; }

.nav-desktop {
  display: none;
  align-items: center;
  gap: var(--sp-6);
}
.nav-desktop a {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: var(--fs-sm);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.82);
  position: relative;
  padding: var(--sp-2) 0;
}
.nav-desktop a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: var(--gold-500);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--duration-base) var(--ease-out);
}
.nav-desktop a:hover::after,
.nav-desktop a[aria-current="page"]::after { transform: scaleX(1); }
.nav-desktop a:hover { color: #fff; }
.nav-desktop a[aria-current="page"] { color: var(--gold-500); }
.nav-phone {
  font-family: var(--font-mono) !important;
  font-size: var(--fs-xs) !important;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.6) !important;
  text-transform: none !important;
}
.nav-phone:hover { color: var(--gold-500) !important; }

.nav-actions { display: flex; align-items: center; gap: var(--sp-4); }
.nav-actions .btn-gold { display: none; }

.nav-toggle {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: none;
  background: transparent;
  border-radius: var(--radius-sm);
  color: #fff;
}
.nav-toggle svg { width: 24px; height: 24px; }

@media (min-width: 960px) {
  .nav-desktop { display: flex; }
  .nav-actions .btn-gold { display: inline-flex; }
  .nav-toggle { display: none; }
}

.nav-mobile {
  position: fixed;
  top: var(--header-h);
  right: 0;
  left: 0;
  height: calc(100vh - var(--header-h));
  background: var(--surface);
  padding: var(--sp-6) var(--sp-5);
  display: grid;
  gap: var(--sp-2);
  align-content: start;
  transform: translateY(-8px);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--duration-base) var(--ease-out),
              transform var(--duration-base) var(--ease-out),
              visibility var(--duration-base);
  z-index: 90;
}
.nav-mobile.is-open {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}
.nav-mobile a {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--fs-lg);
  color: var(--teal-800);
  padding: var(--sp-4) var(--sp-2);
  border-bottom: 1px solid var(--border);
  min-height: 44px;
  display: flex;
  align-items: center;
}
.nav-mobile .btn { margin-top: var(--sp-4); }

@media (min-width: 960px) {
  .nav-mobile { display: none; }
}

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
  background: var(--footer-dark);
  color: rgba(255, 255, 255, 0.82);
  padding-block: var(--sp-8) var(--sp-6);
  position: relative;
  overflow: hidden;
}
.footer-grid {
  display: grid;
  gap: var(--sp-7);
  grid-template-columns: 1fr;
}
@media (min-width: 760px) {
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; }
}
.footer-grid img { height: 34px; margin-bottom: var(--sp-4); }
.footer-grid p { color: rgba(255, 255, 255, 0.62); max-width: 34ch; }
.footer-col h4 {
  color: #fff;
  font-size: var(--fs-sm);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: var(--sp-4);
}
.footer-col a, .footer-col li {
  color: rgba(255, 255, 255, 0.72);
  font-size: var(--fs-sm);
  display: block;
  padding-block: var(--sp-1);
}
.footer-col a:hover { color: var(--gold-500); }
.footer-bottom {
  margin-top: var(--sp-8);
  padding-top: var(--sp-5);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
  justify-content: space-between;
  font-size: var(--fs-xs);
  color: rgba(255, 255, 255, 0.5);
}
.footer-bottom a:hover { color: var(--gold-500); }

/* ==========================================================================
   Cards
   ========================================================================== */

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--sp-6);
  box-shadow: var(--shadow-1);
  transition: box-shadow var(--duration-base) var(--ease-out),
              transform var(--duration-base) var(--ease-out);
}
.card:hover { box-shadow: var(--shadow-3); transform: translateY(-4px); }

.badge {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-1);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--fs-xs);
  padding: var(--sp-1) var(--sp-3);
  border-radius: var(--radius-pill);
  background: var(--teal-100);
  color: var(--teal-700);
}
.badge.gold { background: var(--gold-100); color: #8a6410; }

/* ==========================================================================
   Placeholder media block (marked for real fleet photography)
   ========================================================================== */

.media-placeholder {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(135deg, var(--teal-700), var(--teal-900));
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.85);
  aspect-ratio: var(--ph-ratio, 4 / 3);
}
.media-placeholder::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.16) 1.5px, transparent 1.5px);
  background-size: 24px 24px;
}
.media-placeholder svg {
  width: 34%;
  height: auto;
  position: relative;
  opacity: 0.9;
}
.fleet-photo {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: var(--ph-ratio, 4 / 3);
}
.fleet-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-slow) var(--ease-out);
}
.card:hover .fleet-photo img { transform: scale(1.04); }

.media-placeholder .ph-label {
  position: absolute;
  bottom: var(--sp-3);
  left: var(--sp-3);
  right: var(--sp-3);
  font-family: var(--font-heading);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  border-top: 1px dashed rgba(255, 255, 255, 0.3);
  padding-top: var(--sp-2);
}

/* ==========================================================================
   Scroll reveal
   ========================================================================== */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity var(--duration-slow) var(--ease-out),
              transform var(--duration-slow) var(--ease-out);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity var(--duration-slow) var(--ease-out),
              transform var(--duration-slow) var(--ease-out);
}
.reveal-stagger.is-visible > * { opacity: 1; transform: translateY(0); }
.reveal-stagger.is-visible > *:nth-child(1) { transition-delay: 0ms; }
.reveal-stagger.is-visible > *:nth-child(2) { transition-delay: 60ms; }
.reveal-stagger.is-visible > *:nth-child(3) { transition-delay: 120ms; }
.reveal-stagger.is-visible > *:nth-child(4) { transition-delay: 180ms; }

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-stagger > * { opacity: 1; transform: none; }
}

/* ==========================================================================
   Forms
   ========================================================================== */

.field {
  display: grid;
  gap: var(--sp-2);
}
.field label {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 0.6875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.field .hint { font-size: var(--fs-xs); color: var(--ink-500); }
.field .error-msg {
  font-size: var(--fs-xs);
  color: var(--danger);
  display: none;
}
.field.has-error .error-msg { display: block; }
.field.has-error input,
.field.has-error select { border-color: var(--danger); }

input, select, textarea {
  width: 100%;
  min-height: 48px;
  padding: 0 var(--sp-4);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--surface);
  font-size: var(--fs-base);
  transition: border-color var(--duration-fast) var(--ease-out),
              box-shadow var(--duration-fast) var(--ease-out);
}
textarea { padding-block: var(--sp-3); min-height: 120px; resize: vertical; }
input:focus, select:focus, textarea:focus {
  border-color: var(--teal-600);
  box-shadow: 0 0 0 3px var(--teal-100);
  outline: none;
}
input::placeholder, textarea::placeholder { color: var(--ink-300); }

/* ==========================================================================
   Utilities
   ========================================================================== */

.skip-link {
  position: absolute;
  left: var(--sp-4);
  top: -60px;
  background: var(--teal-800);
  color: #fff;
  padding: var(--sp-3) var(--sp-5);
  border-radius: var(--radius-sm);
  z-index: 200;
  transition: top var(--duration-fast) var(--ease-out);
}
.skip-link:focus { top: var(--sp-4); }

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

/* ==========================================================================
   Hero
   ========================================================================== */

.hero {
  padding-block: var(--sp-9) var(--sp-8);
  background: linear-gradient(160deg, var(--teal-700) 0%, var(--teal-800) 50%, var(--teal-900) 100%);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.10) 1.5px, transparent 1.5px);
  background-size: 30px 30px;
}
.hero::after {
  content: "";
  position: absolute;
  top: 12%;
  right: 6%;
  width: 2px;
  height: 65%;
  background: linear-gradient(180deg, transparent, var(--gold-500) 30%, var(--gold-500) 70%, transparent);
  opacity: 0.45;
}
.hero .container { position: relative; z-index: 1; }
.hero-grid {
  display: grid;
  gap: var(--sp-8);
  align-items: center;
}
@media (min-width: 900px) {
  .hero-grid { grid-template-columns: 1.1fr 0.9fr; }
}
.hero-copy .eyebrow { color: var(--gold-500); }
.hero-copy h1 { margin-block: var(--sp-4); color: #fff; }
.hero-copy .lede { color: rgba(255, 255, 255, 0.72); }
.hero-actions { display: flex; flex-wrap: wrap; gap: var(--sp-4); margin-top: var(--sp-6); }
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3) var(--sp-7);
  margin-top: var(--sp-8);
  padding-top: var(--sp-6);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: var(--fs-sm);
  color: rgba(255, 255, 255, 0.65);
}
.hero-trust strong {
  display: block;
  font-family: var(--font-heading);
  font-size: var(--fs-xl);
  color: var(--gold-500);
}

/* ==========================================================================
   Fleet cards
   ========================================================================== */

.fleet-card {
  display: grid;
  gap: var(--sp-3);
  color: var(--ink-900);
}
.fleet-card .media-placeholder { margin-bottom: var(--sp-2); }
.fleet-card h4 { margin: 0; }
.fleet-price {
  font-family: var(--font-heading);
  font-weight: 800;
  color: var(--teal-700);
  margin-top: auto;
}

/* ==========================================================================
   Why-us items / steps
   ========================================================================== */

.why-item, .step-item {
  display: grid;
  gap: var(--sp-3);
  justify-items: start;
}
.why-dark {
  background: var(--teal-900);
}
.why-dark .section-head .eyebrow { color: var(--gold-500); }
.why-dark .section-head h2 { color: #fff; }
.why-dark .section-head .lede { color: rgba(255, 255, 255, 0.6); }
.why-dark .why-item h4 { color: #fff; }
.why-dark .why-item .lede { color: rgba(255, 255, 255, 0.55); }
.why-dark .hex-frame::before { background: var(--gold-500); }
.step-item {
  padding: var(--sp-6);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  position: relative;
}
.step-num {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: var(--fs-2xl);
  color: var(--teal-100);
  -webkit-text-stroke: 1.5px var(--teal-600);
}

/* ==========================================================================
   Service area
   ========================================================================== */

.service-grid {
  display: grid;
  gap: var(--sp-8);
  align-items: center;
}
@media (min-width: 860px) {
  .service-grid { grid-template-columns: 1fr 1fr; }
}
.service-list { margin-top: var(--sp-5); display: grid; gap: var(--sp-3); }
.service-list li {
  padding-left: var(--sp-6);
  position: relative;
  color: var(--ink-700);
}
.service-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 8px;
  width: 10px; height: 10px;
  background: var(--gold-500);
  clip-path: polygon(25% 3%, 75% 3%, 100% 50%, 75% 97%, 25% 97%, 0% 50%);
}

/* ==========================================================================
   Testimonials
   ========================================================================== */

.testimonial { display: grid; gap: var(--sp-4); }
.testimonial p {
  font-size: var(--fs-md);
  color: var(--ink-700);
  font-style: italic;
}
.testimonial cite {
  font-style: normal;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--fs-xs);
  color: var(--teal-600);
}

/* ==========================================================================
   CTA banner
   ========================================================================== */

.cta-banner {
  background: linear-gradient(120deg, var(--teal-800), var(--teal-900));
  padding-block: var(--sp-8);
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: "";
  position: absolute;
  inset: -20% -10%;
  background-image: radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.10) 1.5px, transparent 1.5px);
  background-size: 32px 32px;
}
.cta-banner-inner {
  position: relative;
  display: grid;
  gap: var(--sp-6);
  align-items: center;
}
.cta-banner-inner h2 { color: #fff; }
@media (min-width: 860px) {
  .cta-banner-inner { grid-template-columns: 1fr auto; }
}

/* ==========================================================================
   Page hero (interior pages)
   ========================================================================== */

.page-hero {
  padding-block: var(--sp-8) var(--sp-6);
  background: linear-gradient(180deg, var(--teal-50), var(--surface) 85%);
}
.page-hero h1 { margin-block: var(--sp-3); }
.page-hero .lede { max-width: 62ch; }

/* ==========================================================================
   Filter tabs
   ========================================================================== */

.filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
}
.filter-tab {
  border: 1.5px solid var(--border);
  background: var(--surface);
  color: var(--teal-800);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--fs-xs);
  padding: var(--sp-3) var(--sp-5);
  border-radius: var(--radius-pill);
  min-height: 44px;
  transition: background-color var(--duration-fast) var(--ease-out),
              color var(--duration-fast) var(--ease-out),
              border-color var(--duration-fast) var(--ease-out);
}
.filter-tab:hover { border-color: var(--teal-600); }
.filter-tab[aria-selected="true"] {
  background: var(--teal-700);
  border-color: var(--teal-700);
  color: #fff;
}

/* ==========================================================================
   Vehicle cards (fleet page)
   ========================================================================== */

.vehicle-card { display: grid; gap: var(--sp-2); }
.vehicle-card .media-placeholder { margin-bottom: var(--sp-2); }
.spec-list {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
  margin-block: var(--sp-2);
}
.spec-list li {
  font-size: var(--fs-xs);
  color: var(--ink-700);
  background: var(--surface-alt);
  border: 1px solid var(--border);
  padding: var(--sp-1) var(--sp-3);
  border-radius: var(--radius-pill);
}
.vehicle-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: var(--sp-3);
  padding-top: var(--sp-3);
  border-top: 1px solid var(--border);
}
.fleet-note {
  margin-top: var(--sp-8);
  font-size: var(--fs-xs);
  color: var(--ink-500);
  max-width: 90ch;
}

/* ==========================================================================
   Booking page
   ========================================================================== */

.booking-layout {
  display: grid;
  gap: var(--sp-6);
  align-items: start;
}
@media (min-width: 960px) {
  .booking-layout { grid-template-columns: 1.6fr 1fr; }
}

.booking-card { padding: var(--sp-7); }

fieldset {
  border: none;
  padding: 0;
  margin: 0;
  min-width: 0;
}
legend {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: var(--fs-lg);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--teal-800);
  padding: 0;
  margin-bottom: var(--sp-5);
}

.form-grid {
  display: grid;
  gap: var(--sp-4);
  grid-template-columns: 1fr;
}
@media (min-width: 560px) {
  .form-grid { grid-template-columns: 1fr 1fr; }
}
.form-grid .field { margin-bottom: 0; }
fieldset > .field { margin-bottom: var(--sp-4); }

.booking-progress {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  margin-bottom: var(--sp-6);
}
.step-dot {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--fs-xs);
  background: var(--surface-alt);
  color: var(--ink-300);
  border: 1.5px solid var(--border);
  position: relative;
}
.step-dot:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 100%;
  top: 50%;
  width: var(--sp-5);
  height: 2px;
  background: var(--border);
}
.step-dot.is-active {
  background: var(--teal-700);
  border-color: var(--teal-700);
  color: #fff;
}
.step-dot.is-done {
  background: var(--gold-500);
  border-color: var(--gold-500);
  color: var(--teal-900);
}

.step-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: var(--sp-6);
  padding-top: var(--sp-5);
  border-top: 1px solid var(--border);
}

.booking-confirmation {
  text-align: left;
  padding-top: var(--sp-3);
}
.booking-confirmation h3 { margin-top: var(--sp-4); }

.booking-sidebar { display: grid; gap: var(--sp-5); align-content: start; }
.booking-sidebar .card { padding: var(--sp-6); }
.check-list { display: grid; gap: var(--sp-3); margin-top: var(--sp-4); }
.check-list li {
  padding-left: var(--sp-6);
  position: relative;
  font-size: var(--fs-sm);
  color: var(--ink-700);
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 4px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--teal-100);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23155263' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 11px;
}
.integration-note { border-style: dashed; border-color: var(--gold-500); background: var(--gold-100); }
.integration-note .badge { margin-bottom: var(--sp-3); }

/* ==========================================================================
   About page
   ========================================================================== */

.stats-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-6);
  padding-block: var(--sp-6);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
@media (min-width: 760px) {
  .stats-row { grid-template-columns: repeat(4, 1fr); }
}
.stat-item { display: grid; gap: var(--sp-1); text-align: center; }
.stat-num {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: var(--fs-2xl);
  color: var(--teal-700);
}
.stat-label { font-size: var(--fs-xs); color: var(--ink-500); text-transform: uppercase; letter-spacing: 0.06em; }

.about-grid {
  display: grid;
  gap: var(--sp-8);
  align-items: center;
}
@media (min-width: 860px) {
  .about-grid { grid-template-columns: 0.9fr 1.1fr; }
}

/* ==========================================================================
   Contact page
   ========================================================================== */

.contact-layout {
  display: grid;
  gap: var(--sp-6);
  align-items: start;
}
@media (min-width: 960px) {
  .contact-layout { grid-template-columns: 1.5fr 1fr; }
}
.contact-form { display: grid; gap: var(--sp-4); margin-top: var(--sp-5); }

/* ==========================================================================
   FAQ accordion
   ========================================================================== */

.faq-list {
  display: grid;
  gap: var(--sp-3);
  max-width: 800px;
  margin-inline: auto;
}
.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  padding: var(--sp-5);
  background: transparent;
  border: none;
  text-align: left;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--fs-md);
  color: var(--teal-800);
  min-height: 44px;
}
.faq-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform var(--duration-base) var(--ease-out);
}
.faq-item.is-open .faq-icon { transform: rotate(180deg); }
.faq-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--duration-base) var(--ease-out);
}
.faq-panel p {
  padding: 0 var(--sp-5) var(--sp-5);
  color: var(--ink-700);
  max-width: 65ch;
}

/* ==========================================================================
   Ticker (scrolling differentiator marquee)
   ========================================================================== */

.ticker-bar {
  background: var(--gold-500);
  padding-block: var(--sp-3);
  overflow: hidden;
}
.ticker-track {
  display: flex;
  width: max-content;
  animation: ticker-scroll 32s linear infinite;
}
.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-4);
  padding-inline: var(--sp-6);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--fs-sm);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--teal-900);
  white-space: nowrap;
}
.ticker-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--teal-900);
  opacity: 0.4;
  flex-shrink: 0;
}
@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .ticker-track { animation: none; }
}

/* ==========================================================================
   Watermark text (giant faint background word)
   ========================================================================== */

.watermark-section {
  position: relative;
  overflow: hidden;
}
.watermark-text {
  position: absolute;
  right: -0.05em;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: min(20vw, 260px);
  color: rgba(255, 255, 255, 0.03);
  text-transform: uppercase;
  letter-spacing: -0.04em;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
  z-index: 0;
}
.watermark-section > .container { position: relative; z-index: 1; }

/* ==========================================================================
   Comparison section (Cartrex vs. big-brand rentals)
   ========================================================================== */

.compare-grid {
  display: grid;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--surface);
}
.compare-row {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  align-items: center;
}
.compare-row:not(:last-child) { border-bottom: 1px solid var(--border); }
.compare-row.is-header {
  background: var(--teal-900);
}
.compare-row.is-header .compare-cell {
  font-family: var(--font-heading);
  font-weight: 700;
  text-transform: uppercase;
  font-size: var(--fs-xs);
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.85);
  padding-block: var(--sp-4);
}
.compare-row.is-header .compare-cell.is-us { color: var(--gold-500); }
.compare-cell {
  padding: var(--sp-4) var(--sp-5);
  font-size: var(--fs-sm);
  color: var(--ink-700);
}
.compare-cell.is-label { font-weight: 600; color: var(--teal-800); }
.compare-cell.is-us {
  background: var(--gold-100);
  font-weight: 700;
  color: var(--teal-800);
  text-align: center;
}
.compare-cell.is-them { text-align: center; color: var(--muted); }
.compare-icon { width: 16px; height: 16px; vertical-align: -3px; margin-right: 4px; }
.compare-note {
  margin-top: var(--sp-4);
  font-size: var(--fs-xs);
  color: var(--muted);
}

/* ==========================================================================
   Business / B2B section (standalone GST billing differentiator)
   ========================================================================== */

.biz-section { background: var(--surface); }
.biz-inner {
  display: grid;
  gap: var(--sp-8);
  align-items: center;
}
@media (min-width: 900px) {
  .biz-inner { grid-template-columns: 1fr 1fr; }
}
.biz-card {
  background: var(--teal-900);
  border-radius: var(--radius-lg);
  padding: var(--sp-8);
  position: relative;
  overflow: hidden;
}
.biz-card::after {
  content: "";
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 160px;
  height: 160px;
  background: var(--gold-500);
  opacity: 0.08;
  border-radius: 50%;
}
.biz-card > * { position: relative; }
.biz-card h3 { color: #fff; margin-bottom: var(--sp-3); }
.biz-card .lede { color: rgba(255, 255, 255, 0.6); margin-bottom: var(--sp-6); }
.biz-list {
  display: grid;
  gap: var(--sp-3);
}
.biz-list li {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  font-size: var(--fs-sm);
  color: var(--ink-700);
}
.biz-list li::before {
  content: "";
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--gold-600);
  flex-shrink: 0;
}

/* ==========================================================================
   RCM live booking preview (simulated widget for marketing purposes)
   ========================================================================== */

.rcm-frame {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-2);
}
.rcm-frame-header {
  background: var(--teal-700);
  padding: var(--sp-4) var(--sp-5);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-3);
  flex-wrap: wrap;
}
.rcm-frame-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--fs-sm);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #fff;
}
.rcm-badge {
  background: var(--gold-500);
  color: var(--teal-900);
  font-family: var(--font-mono);
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  padding: var(--sp-1) var(--sp-3);
  border-radius: var(--radius-sm);
  text-transform: uppercase;
}
.rcm-body { padding: var(--sp-6); }
.rcm-steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-bottom: var(--sp-6);
}
@media (min-width: 640px) {
  .rcm-steps { grid-template-columns: repeat(4, 1fr); }
}
.rcm-step {
  padding: var(--sp-4);
  text-align: center;
  background: var(--surface-alt);
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  cursor: pointer;
  transition: background-color var(--duration-fast) var(--ease-out);
}
@media (min-width: 640px) {
  .rcm-step { border-bottom: none; }
}
.rcm-step.is-active { background: var(--teal-700); }
.rcm-step-num {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  color: var(--muted);
  letter-spacing: 0.1em;
  margin-bottom: var(--sp-1);
}
.rcm-step.is-active .rcm-step-num { color: var(--gold-500); }
.rcm-step-label { font-size: var(--fs-xs); font-weight: 600; color: var(--ink-700); }
.rcm-step.is-active .rcm-step-label { color: #fff; }

.rcm-vehicles {
  display: grid;
  gap: var(--sp-4);
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .rcm-vehicles { grid-template-columns: repeat(3, 1fr); }
}
.rcm-vehicle {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  transition: border-color var(--duration-fast) var(--ease-out),
              box-shadow var(--duration-fast) var(--ease-out);
}
.rcm-vehicle:hover { border-color: var(--teal-600); }
.rcm-vehicle.is-selected {
  border-color: var(--gold-500);
  box-shadow: 0 0 0 3px var(--gold-100);
}
.rcm-vehicle .media-placeholder { border-radius: 0; aspect-ratio: 16/10; }
.rcm-vehicle-info { padding: var(--sp-4); }
.rcm-vehicle-cat {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: var(--sp-1);
}
.rcm-vehicle-name { font-weight: 600; font-size: var(--fs-sm); color: var(--ink-900); margin-bottom: var(--sp-3); }
.rcm-vehicle-price { display: flex; align-items: baseline; gap: 3px; }
.rcm-vehicle-price .price-num {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--fs-lg);
  color: var(--teal-700);
}
.rcm-vehicle-price .price-unit { font-size: var(--fs-xs); color: var(--muted); font-family: var(--font-mono); }
.rcm-cta { margin-top: var(--sp-5); display: flex; justify-content: flex-end; }

/* ==========================================================================
   Booking widget (hero)
   ========================================================================== */

.booking-widget {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: var(--sp-6);
  box-shadow: var(--shadow-3);
  border-top: 3px solid var(--gold-500);
}
.widget-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--fs-lg);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--teal-900);
  margin-bottom: var(--sp-5);
}
.widget-tabs {
  display: flex;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-bottom: var(--sp-5);
}
.widget-tab {
  flex: 1;
  padding: var(--sp-3) var(--sp-2);
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: none;
  background: transparent;
  color: var(--muted);
  transition: all var(--duration-fast) var(--ease-out);
}
.widget-tab.is-active { background: var(--teal-700); color: #fff; }
.widget-note {
  text-align: center;
  font-size: 0.6875rem;
  font-family: var(--font-mono);
  letter-spacing: 0.03em;
  color: var(--muted);
  margin-top: var(--sp-3);
}

/* ==========================================================================
   Media tags (absolute badge over placeholder image)
   ========================================================================== */

.media-tag {
  position: absolute;
  top: var(--sp-3);
  left: var(--sp-3);
  z-index: 1;
  background: var(--teal-800);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 0.625rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: var(--sp-1) var(--sp-3);
  border-radius: var(--radius-sm);
}

/* ==========================================================================
   Area tag pills (service area)
   ========================================================================== */

.area-tags-v2 {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
  margin-top: var(--sp-5);
}
.area-pill {
  padding: var(--sp-2) var(--sp-4);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-pill);
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--ink-700);
  background: var(--surface);
  transition: all var(--duration-fast) var(--ease-out);
}
.area-pill:hover { border-color: var(--teal-600); color: var(--teal-700); background: var(--teal-50); }
.area-pill.is-primary { background: var(--teal-700); color: #fff; border-color: var(--teal-700); }

.depot-callout {
  background: var(--teal-700);
  border-radius: var(--radius-sm);
  padding: var(--sp-4) var(--sp-5);
  margin-top: var(--sp-5);
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}
.depot-dot { width: 10px; height: 10px; background: var(--gold-500); border-radius: 50%; flex-shrink: 0; }
.depot-label {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.depot-name { font-weight: 600; font-size: var(--fs-sm); color: #fff; }

/* ==========================================================================
   Review cards v2 (Google-review style, sample content clearly labeled)
   ========================================================================== */

.review-grid-v2 { display: grid; gap: var(--sp-5); grid-template-columns: 1fr; }
@media (min-width: 860px) {
  .review-grid-v2 { grid-template-columns: repeat(3, 1fr); }
}
.review-card-v2 {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--sp-6);
}
.review-stars { display: flex; gap: 2px; margin-bottom: var(--sp-4); color: var(--gold-600); font-size: var(--fs-sm); }
.review-text {
  font-size: var(--fs-sm);
  line-height: 1.7;
  color: var(--ink-700);
  font-style: italic;
  margin-bottom: var(--sp-5);
}
.reviewer { display: flex; align-items: center; gap: var(--sp-3); }
.reviewer-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--teal-700);
  display: grid;
  place-items: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--fs-md);
  color: var(--gold-500);
  flex-shrink: 0;
}
.reviewer-name { font-weight: 600; font-size: var(--fs-sm); color: var(--ink-900); }
.reviewer-meta { font-family: var(--font-mono); font-size: 0.6875rem; color: var(--muted); letter-spacing: 0.03em; }

/* ==========================================================================
   Legal document (Terms & Conditions)
   ========================================================================== */

.legal-meta {
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  color: var(--muted);
  margin-top: var(--sp-3);
}

.legal-layout {
  display: grid;
  gap: var(--sp-8);
  align-items: start;
}
@media (min-width: 960px) {
  .legal-layout { grid-template-columns: 260px 1fr; }
}

.legal-toc {
  position: sticky;
  top: calc(var(--header-h) + var(--sp-5));
  display: grid;
  gap: var(--sp-1);
  padding: var(--sp-5);
  background: var(--surface-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  max-height: calc(100vh - var(--header-h) - var(--sp-8));
  overflow-y: auto;
}
.legal-toc a {
  font-size: var(--fs-sm);
  color: var(--ink-700);
  padding: var(--sp-1) var(--sp-2);
  border-radius: var(--radius-sm);
}
.legal-toc a:hover { background: var(--teal-100); color: var(--teal-700); }
.legal-toc .toc-num { font-family: var(--font-mono); color: var(--muted); margin-right: var(--sp-2); }

.legal-body { min-width: 0; }
.legal-section {
  padding-block: var(--sp-6);
  border-bottom: 1px solid var(--border);
  scroll-margin-top: calc(var(--header-h) + var(--sp-4));
}
.legal-section:first-child { padding-top: 0; }
.legal-section h2 {
  font-size: var(--fs-2xl);
  display: flex;
  align-items: baseline;
  gap: var(--sp-3);
}
.legal-section h2 .sec-num { color: var(--gold-600); }
.legal-sub {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--fs-md);
  text-transform: none;
  color: var(--teal-800);
  margin-top: var(--sp-5);
  margin-bottom: var(--sp-2);
}
.legal-notice {
  display: flex;
  gap: var(--sp-3);
  background: var(--gold-100);
  border: 1px solid var(--gold-500);
  border-radius: var(--radius-sm);
  padding: var(--sp-4);
  margin: var(--sp-4) 0;
  font-size: var(--fs-sm);
  color: var(--ink-700);
}
.legal-notice svg { flex-shrink: 0; width: 20px; height: 20px; color: #8a6410; margin-top: 2px; }
.legal-notice strong { color: var(--ink-900); }

.legal-list { display: grid; gap: var(--sp-2); margin: var(--sp-2) 0; }
.legal-list p { margin: 0; color: var(--ink-700); font-size: var(--fs-sm); }
.legal-list .lvl-a { padding-left: var(--sp-6); position: relative; }
.legal-list .lvl-i { padding-left: var(--sp-9); position: relative; }
.legal-list .lvl-a .mark, .legal-list .lvl-i .mark {
  position: absolute;
  left: 0;
  font-family: var(--font-mono);
  color: var(--muted);
}
.legal-list .lvl-a .mark { left: var(--sp-2); }
.legal-list .lvl-i .mark { left: calc(var(--sp-6) + var(--sp-2)); }

.legal-body p { color: var(--ink-700); font-size: var(--fs-sm); margin: var(--sp-2) 0; }
.legal-body > .legal-section > p:first-of-type { margin-top: 0; }

.legal-definitions { display: grid; gap: var(--sp-4); margin-top: var(--sp-3); }
.legal-definitions dt {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--teal-800);
  font-size: var(--fs-sm);
}
.legal-definitions dd { margin: var(--sp-1) 0 0; color: var(--ink-700); font-size: var(--fs-sm); }

.back-to-top {
  display: inline-flex;
  margin-top: var(--sp-6);
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  color: var(--teal-600);
}

/* ==========================================================================
   Modal (fleet enquiry, etc.)
   ========================================================================== */

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(11, 50, 59, 0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--sp-5);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--duration-base) var(--ease-out), visibility var(--duration-base);
}
.modal-overlay.is-open { opacity: 1; visibility: visible; }

.modal-box {
  background: var(--surface);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 600px;
  max-height: 88vh;
  overflow-y: auto;
  border-top: 4px solid var(--gold-500);
  box-shadow: var(--shadow-3);
  transform: translateY(16px) scale(0.98);
  transition: transform var(--duration-base) var(--ease-out);
}
.modal-overlay.is-open .modal-box { transform: translateY(0) scale(1); }
@media (prefers-reduced-motion: reduce) {
  .modal-box { transition: none; transform: none; }
}

.modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--sp-5) var(--sp-6);
  border-bottom: 1px solid var(--border);
}
.modal-head h3 { margin: 0; }
.modal-close {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  background: transparent;
  color: var(--ink-700);
  transition: border-color var(--duration-fast) var(--ease-out), color var(--duration-fast) var(--ease-out);
}
.modal-close svg { width: 18px; height: 18px; }
.modal-close:hover { border-color: var(--teal-600); color: var(--teal-700); }

.modal-body { padding: var(--sp-6); }
.modal-confirmation { text-align: left; }

/* ==========================================================================
   Business hours table
   ========================================================================== */

.hours-table {
  margin-top: var(--sp-3);
  border-collapse: collapse;
  font-size: var(--fs-sm);
}
.hours-table th {
  text-align: left;
  font-family: var(--font-mono);
  font-weight: 500;
  color: var(--muted);
  padding: var(--sp-1) var(--sp-4) var(--sp-1) 0;
}
.hours-table td { color: var(--ink-700); padding: var(--sp-1) 0; font-variant-numeric: tabular-nums; }

.footer-hours {
  margin-top: var(--sp-2);
  font-size: var(--fs-sm);
}
.footer-hours th {
  text-align: left;
  font-family: var(--font-mono);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
  padding: 1px var(--sp-3) 1px 0;
}
.footer-hours td { color: rgba(255, 255, 255, 0.72); padding: 1px 0; font-variant-numeric: tabular-nums; }

/* ==========================================================================
   Excess protection options
   ========================================================================== */

.excess-options {
  display: grid;
  gap: var(--sp-3);
  grid-template-columns: 1fr;
  margin-top: var(--sp-2);
}
@media (min-width: 700px) {
  .excess-options { grid-template-columns: repeat(3, 1fr); }
}
.excess-option {
  position: relative;
  display: block;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--sp-4);
  cursor: pointer;
  transition: border-color var(--duration-fast) var(--ease-out), background-color var(--duration-fast) var(--ease-out);
}
.excess-option:hover { border-color: var(--teal-600); }
.excess-option.is-selected { border-color: var(--teal-600); background: var(--teal-50); }
.excess-option input {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
}
.excess-option input:focus-visible ~ .excess-option-body { outline: 3px solid var(--teal-600); outline-offset: 3px; border-radius: var(--radius-sm); }
.excess-option-body { display: grid; gap: 4px; }
.excess-option-name { font-family: var(--font-heading); font-weight: 700; color: var(--teal-800); }
.excess-option-price { font-family: var(--font-mono); font-size: var(--fs-xs); color: var(--gold-600); font-weight: 600; }
.excess-option-desc { font-size: var(--fs-xs); color: var(--ink-500); }

/* ==========================================================================
   Price breakdown
   ========================================================================== */

.price-breakdown {
  background: var(--surface-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--sp-5);
  margin-bottom: var(--sp-5);
}
.price-breakdown h4 { margin-bottom: var(--sp-3); }
.price-row {
  display: flex;
  justify-content: space-between;
  gap: var(--sp-3);
  padding-block: var(--sp-2);
  font-size: var(--fs-sm);
  color: var(--ink-700);
  font-variant-numeric: tabular-nums;
}
.price-row-total {
  border-top: 1px solid var(--border);
  margin-top: var(--sp-2);
  padding-top: var(--sp-3);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: var(--fs-lg);
  color: var(--teal-800);
}
.price-breakdown .hint { margin-top: var(--sp-3); }

/* ==========================================================================
   Weekly deal cards
   ========================================================================== */

.deal-card { display: grid; gap: var(--sp-2); }
.deal-price {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: var(--sp-2);
  margin-block: var(--sp-1) var(--sp-2);
}
.deal-now {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: var(--fs-2xl);
  color: var(--teal-700);
  line-height: 1;
}
.deal-unit { font-size: var(--fs-sm); color: var(--ink-500); }
.deal-was {
  font-size: var(--fs-xs);
  color: var(--ink-300);
  text-decoration: line-through;
  margin-left: auto;
}
