/* TransPro Landing — mobile-first, zero dependencies */

:root {
  /* Darkened slightly to improve contrast on white backgrounds (Lighthouse). */
  --color-primary: #c84b12;
  --color-primary-dark: #a83c0e;
  --color-accent: #2b9be0;
  --color-accent-dark: #1c7cbb;
  --color-navy: #0b2640;
  --color-navy-light: #123a5c;
  --color-text: #010002;
  --color-text-muted: #656266;
  --color-bg: #ffffff;
  --color-bg-alt: #f7f7f7;
  --color-border: #e0e3e7;
  --font-sans: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(11, 38, 64, 0.08);
  --max-width: 1120px;
  --header-height: 72px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-bg);
}

/* ============================================================
   Cookie consent banner (EU analytics)
   ============================================================ */
.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 9999;
}

.cookie-banner__inner {
  display: grid;
  gap: 1rem;
  align-items: center;
  background: rgba(11, 38, 64, 0.98);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-lg);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.32);
  padding: 1rem 1rem;
}

.cookie-banner__text strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.cookie-banner__text p {
  margin: 0.25rem 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.95rem;
}

.cookie-banner__links a {
  color: rgba(255, 255, 255, 0.92);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: flex-start;
}

.cookie-btn {
  min-height: 44px;
  padding: 0.7rem 1.25rem;
  border-radius: 999px;
  font-weight: 800;
}

.cookie-btn--primary {
  background: var(--color-primary);
  color: #fff;
}

.cookie-btn--primary:hover {
  background: var(--color-primary-dark);
  color: #fff;
}

.cookie-btn--secondary {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.55);
}

.cookie-btn--secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

@media (min-width: 768px) {
  .cookie-banner {
    left: 1.5rem;
    right: 1.5rem;
    bottom: 1.5rem;
  }

  .cookie-banner__inner {
    grid-template-columns: 1fr auto;
    padding: 1.15rem 1.25rem;
  }

  .cookie-banner__actions {
    justify-content: flex-end;
  }
}

img,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: var(--color-primary);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--color-primary-dark);
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  z-index: 1000;
  padding: 0.75rem 1rem;
  background: var(--color-primary);
  color: #fff;
  border-radius: var(--radius);
  font-weight: 600;
}

.skip-link:focus {
  top: 1rem;
}

.container {
  width: min(100% - 2rem, var(--max-width));
  margin-inline: auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--color-border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-height);
  gap: 1rem;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 0;
  text-decoration: none;
  color: var(--color-navy);
  font-weight: 800;
  /* The wordmark logo already contains "TransPro", so we hide the adjacent
     text node (kept in the DOM for accessibility / alt text). */
  font-size: 0;
  line-height: 0;
}

.logo-link img {
  height: 46px;
  width: auto;
  object-fit: contain;
}

@media (max-width: 400px) {
  .logo-link img {
    height: 40px;
  }
}

.menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: var(--color-bg);
  cursor: pointer;
}

.menu-toggle__bar {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--color-navy);
  position: relative;
}

.menu-toggle__bar::before,
.menu-toggle__bar::after {
  content: "";
  position: absolute;
  left: 0;
  width: 20px;
  height: 2px;
  background: var(--color-navy);
}

.menu-toggle__bar::before {
  top: -6px;
}

.menu-toggle__bar::after {
  top: 6px;
}

.primary-nav {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--color-bg);
  border-bottom: 1px solid var(--color-border);
  padding: 1rem;
  flex-direction: column;
  gap: 0.5rem;
}

.primary-nav.is-open {
  display: flex;
}

.primary-nav a {
  display: block;
  padding: 0.75rem 1rem;
  color: var(--color-text);
  text-decoration: none;
  border-radius: var(--radius);
  font-weight: 600;
}

.primary-nav a:hover {
  background: var(--color-bg-alt);
  color: var(--color-primary);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 999px;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}

.btn:focus-visible {
  outline: 3px solid var(--color-accent);
  outline-offset: 2px;
}

.btn--primary {
  background: var(--color-primary);
  color: #fff;
}

.btn--primary:hover {
  background: var(--color-primary-dark);
  color: #fff;
}

.btn--outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.6);
}

.btn--outline:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.store-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.store-badge {
  display: block;
  min-height: 44px;
  line-height: 0;
  border-radius: 10px;
  transition: transform 0.15s ease, box-shadow 0.2s ease, opacity 0.15s ease;
}

.store-badge img,
.store-badge svg {
  height: 48px;
  width: auto;
}

.store-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  opacity: 0.94;
}

.store-badge:focus-visible {
  outline: 3px solid var(--color-accent);
  outline-offset: 3px;
}

/* Hero */
.hero {
  background: linear-gradient(160deg, var(--color-navy) 0%, var(--color-navy-light) 100%);
  color: #fff;
  padding: 3rem 0 4rem;
}

.hero__grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

.hero__eyebrow {
  display: inline-block;
  margin-bottom: 1rem;
  padding: 0.35rem 0.85rem;
  background: rgba(242, 106, 33, 0.25);
  border: 1px solid rgba(242, 106, 33, 0.5);
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 600;
  color: #ffd9c2;
}

.hero h1 {
  margin: 0 0 1rem;
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  line-height: 1.15;
  font-weight: 800;
}

.hero__lead {
  margin: 0 0 1.5rem;
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.88);
  max-width: 36ch;
}

.hero__dual {
  display: grid;
  gap: 1rem;
  margin-bottom: 2rem;
}

.hero__dual-item {
  padding: 1rem 1.25rem;
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  border-left: 3px solid var(--color-accent);
}

.hero__dual-item strong {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--color-accent);
}

.hero__visual {
  display: flex;
  justify-content: center;
}

.phone-mockup {
  width: min(280px, 80vw);
  border-radius: 22px;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
}

/* Sections */
.section {
  padding: 4rem 0;
}

.section--alt {
  background: var(--color-bg-alt);
}

.section__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 2.5rem;
}

.section h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.5rem, 4vw, 2rem);
  color: var(--color-navy);
}

.section__subtitle {
  margin: 0;
  color: var(--color-text-muted);
  font-size: 1.0625rem;
}

/* Benefits */
.benefits-grid {
  display: grid;
  gap: 1.25rem;
}

.benefit-card {
  padding: 1.5rem;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.benefit-card__icon {
  width: 48px;
  height: 48px;
  margin-bottom: 1rem;
  background: rgba(242, 106, 33, 0.12);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.benefit-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.125rem;
  color: var(--color-navy);
}

.benefit-card p {
  margin: 0;
  color: var(--color-text-muted);
  font-size: 0.9375rem;
}

/* Screenshots */
.screenshots-grid {
  display: grid;
  gap: 2rem;
}

.screenshot-card {
  text-align: center;
}

.screenshot-card figure {
  margin: 0;
}

.screenshot-card img {
  margin: 0 auto 1rem;
  width: min(220px, 70vw);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.screenshot-card figcaption h3 {
  margin: 0 0 0.35rem;
  font-size: 1.0625rem;
  color: var(--color-navy);
}

.screenshot-card figcaption p {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--color-text-muted);
}

/* How it works tabs */
.how-tabs {
  max-width: 720px;
  margin: 0 auto;
}

.tab-list {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  padding: 0.35rem;
  background: var(--color-bg);
  border-radius: 999px;
  border: 1px solid var(--color-border);
  list-style: none;
}

.tab-list li {
  flex: 1;
}

.tab-btn {
  width: 100%;
  min-height: 44px;
  padding: 0.65rem 1rem;
  border: none;
  border-radius: 999px;
  background: transparent;
  font-family: inherit;
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--color-text-muted);
  cursor: pointer;
}

.tab-btn[aria-selected="true"] {
  background: var(--color-primary);
  color: #fff;
}

.tab-btn:focus-visible {
  outline: 3px solid var(--color-accent);
  outline-offset: 2px;
}

.tab-panel {
  display: none;
}

.tab-panel.is-active {
  display: block;
}

.steps {
  display: grid;
  gap: 1rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1.25rem;
  background: var(--color-bg);
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
}

.step__num {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-navy);
  color: #fff;
  border-radius: 50%;
  font-weight: 800;
  font-size: 1rem;
}

.step h3 {
  margin: 0 0 0.25rem;
  font-size: 1.0625rem;
  color: var(--color-navy);
}

.step p {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--color-text-muted);
}

/* Counties */
.counties-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
}

.county-link {
  display: block;
  padding: 0.65rem 0.85rem;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  color: var(--color-text);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 600;
  transition: border-color 0.15s, color 0.15s;
}

.county-link:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.county-link small {
  display: block;
  font-weight: 400;
  color: var(--color-text-muted);
  font-size: 0.75rem;
}

.counties-cta {
  text-align: center;
  margin-top: 2rem;
}

/* CTA band */
.cta-band {
  background: var(--color-navy);
  color: #fff;
  text-align: center;
  padding: 3.5rem 0;
}

.cta-band h2 {
  margin: 0 0 0.75rem;
  color: #fff;
  font-size: clamp(1.5rem, 4vw, 2rem);
}

.cta-band p {
  margin: 0 0 1.5rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 48ch;
  margin-inline: auto;
}

.cta-band .store-badges {
  justify-content: center;
}

/* Footer */
.site-footer {
  background: #060f18;
  color: rgba(255, 255, 255, 0.75);
  padding: 3rem 0 2rem;
  font-size: 0.875rem;
}

.footer-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-brand p {
  margin: 0.75rem 0 0;
  max-width: 32ch;
}

.footer-nav h3 {
  margin: 0 0 0.75rem;
  font-size: 0.9375rem;
  color: #fff;
}

.footer-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-nav li {
  margin-bottom: 0.4rem;
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
}

.footer-nav a:hover {
  color: #fff;
}

.footer-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  text-align: center;
}

/* County page specifics */
.breadcrumb {
  padding: 1rem 0;
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

.breadcrumb a {
  color: var(--color-primary);
  text-decoration: none;
}

.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.breadcrumb li:not(:last-child)::after {
  content: "›";
  margin-left: 0.35rem;
  color: var(--color-text-muted);
}

.county-hero {
  padding: 2rem 0 3rem;
  background: linear-gradient(160deg, var(--color-navy) 0%, var(--color-navy-light) 100%);
  color: #fff;
}

.county-hero h1 {
  margin: 0 0 1rem;
  font-size: clamp(1.5rem, 4vw, 2.25rem);
}

.county-hero p {
  margin: 0 0 1.5rem;
  font-size: 1.0625rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 60ch;
}

.faq-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.faq-item {
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--color-border);
}

.faq-item h3 {
  margin: 0 0 0.5rem;
  font-size: 1.0625rem;
  color: var(--color-navy);
}

.faq-item p {
  margin: 0;
  color: var(--color-text-muted);
}

.zone-hub__group {
  margin-bottom: 2rem;
}

.zone-hub__group h3 {
  margin: 0 0 0.75rem;
  font-size: 1.125rem;
  color: var(--color-navy);
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--color-primary);
}

/* Legal pages */
.legal-page {
  padding: 2rem 0 3rem;
}

.legal-page h1 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.5rem, 4vw, 2rem);
  color: var(--color-navy);
}

.legal-page .legal-updated {
  margin: 0 0 2rem;
  color: var(--color-text-muted);
  font-size: 0.95rem;
}

.legal-page .legal-body {
  max-width: 720px;
}

.legal-page .legal-body h2 {
  margin: 1.75rem 0 0.75rem;
  font-size: 1.125rem;
  color: var(--color-navy);
}

.legal-page .legal-body p,
.legal-page .legal-body li {
  color: var(--color-text);
  line-height: 1.7;
}

.legal-page .legal-body ul {
  margin: 0.5rem 0 1rem;
  padding-left: 1.25rem;
}

.legal-page .legal-body li {
  margin-bottom: 0.5rem;
}

/* Responsive */
@media (min-width: 480px) {
  .counties-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 768px) {
  .menu-toggle {
    display: none;
  }

  .primary-nav {
    display: flex;
    position: static;
    flex-direction: row;
    align-items: center;
    border: none;
    padding: 0;
    background: transparent;
    gap: 0.25rem;
  }

  .primary-nav a {
    padding: 0.5rem 0.85rem;
    font-size: 0.9375rem;
  }

  .hero__grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero__dual {
    grid-template-columns: 1fr 1fr;
  }

  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .screenshots-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .counties-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr;
  }

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

@media (min-width: 1024px) {
  .benefits-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ============================================================
   Feature showcase (competitor-safe, benefit-led)
   ============================================================ */
.feature-showcase {
  display: grid;
  gap: 1.25rem;
}

.feature-block {
  display: grid;
  gap: 1rem;
  align-items: center;
  padding: 1.75rem;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.feature-block__icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  background: linear-gradient(135deg, rgba(242, 106, 33, 0.16), rgba(43, 155, 224, 0.18));
}

.feature-block h3 {
  margin: 0 0 0.4rem;
  font-size: 1.1875rem;
  color: var(--color-navy);
}

.feature-block p {
  margin: 0;
  color: var(--color-text-muted);
  font-size: 0.9688rem;
}

@media (min-width: 768px) {
  .feature-showcase {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .feature-block {
    grid-template-columns: auto 1fr;
    align-items: start;
  }
}

/* ============================================================
   Service (category) pages
   ============================================================ */
.service-hero {
  background: linear-gradient(160deg, var(--color-navy) 0%, var(--color-navy-light) 100%);
  color: #fff;
  padding: 2.5rem 0 3rem;
}

.service-hero__grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.service-hero h1 {
  margin: 0 0 1rem;
  font-size: clamp(1.6rem, 4.5vw, 2.5rem);
  line-height: 1.15;
}

.service-hero p {
  margin: 0 0 1.5rem;
  font-size: 1.0625rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 54ch;
}

.service-hero__media img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.35);
}

.service-cards {
  display: grid;
  gap: 1.25rem;
}

.service-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  text-decoration: none;
  color: inherit;
  transition: transform 0.15s ease, box-shadow 0.2s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(11, 38, 64, 0.16);
  color: inherit;
}

.service-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.service-card__body {
  padding: 1.25rem 1.35rem 1.5rem;
}

.service-card__body h3 {
  margin: 0 0 0.4rem;
  font-size: 1.1875rem;
  color: var(--color-navy);
}

.service-card__body p {
  margin: 0 0 0.85rem;
  font-size: 0.9375rem;
  color: var(--color-text-muted);
}

.service-card__link {
  font-weight: 700;
  color: var(--color-primary);
}

.checklist {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.85rem;
}

.checklist li {
  position: relative;
  padding-left: 2rem;
  color: var(--color-text);
  line-height: 1.55;
}

.checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 1.35rem;
  height: 1.35rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(242, 106, 33, 0.14);
  color: var(--color-primary);
  border-radius: 50%;
  font-size: 0.8rem;
  font-weight: 800;
}

.prose {
  max-width: 68ch;
  margin: 0 auto;
}

.prose p {
  color: var(--color-text);
  line-height: 1.75;
  margin: 0 0 1rem;
}

@media (min-width: 768px) {
  .service-hero__grid {
    grid-template-columns: 1.1fr 0.9fr;
  }

  .service-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .service-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ============================================================
   Driver acquisition funnels
   ============================================================ */
.driver-hero {
  background: linear-gradient(155deg, #0B2640 0%, #123a5c 100%);
  color: #fff;
  padding: 2.5rem 0 3.5rem;
}

.driver-hero__grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.driver-hero__eyebrow {
  display: inline-block;
  margin-bottom: 1rem;
  padding: 0.35rem 0.9rem;
  background: rgba(255, 132, 76, 0.2);
  border: 1px solid rgba(255, 132, 76, 0.55);
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 700;
  color: #ffd0b8;
}

.driver-hero h1 {
  margin: 0 0 1rem;
  font-size: clamp(1.7rem, 5vw, 2.85rem);
  line-height: 1.12;
  font-weight: 800;
}

.driver-hero__lead {
  margin: 0 0 1.75rem;
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 42ch;
}

.driver-hero__media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.4);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  align-items: center;
}

.btn--accent {
  background: var(--color-accent);
  color: #06121f;
}

.btn--accent:hover {
  background: #ff6b2c;
  color: #06121f;
}

.btn--lg {
  min-height: 54px;
  padding: 0.9rem 2rem;
  font-size: 1.0625rem;
}

.stats-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.stat {
  text-align: center;
}

.stat__num {
  display: block;
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 800;
  color: var(--color-accent);
}

.stat__label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
}

.advantage-grid {
  display: grid;
  gap: 1.25rem;
}

.advantage-card {
  padding: 1.5rem;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.advantage-card__icon {
  width: 52px;
  height: 52px;
  margin-bottom: 1rem;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  background: rgba(242, 106, 33, 0.12);
}

.advantage-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.125rem;
  color: var(--color-navy);
}

.advantage-card p {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--color-text-muted);
}

@media (min-width: 768px) {
  .driver-hero__grid {
    grid-template-columns: 1.05fr 0.95fr;
  }

  .advantage-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .advantage-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Registration / lead form */
.signup-card {
  max-width: 560px;
  margin: 0 auto;
  padding: 2rem;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.signup-card h2 {
  margin: 0 0 0.5rem;
  color: var(--color-navy);
}

.signup-card > p {
  margin: 0 0 1.5rem;
  color: var(--color-text-muted);
}

.signup-steps {
  margin: 0 0 1.5rem;
  padding-left: 1.35rem;
  display: grid;
  gap: 0.7rem;
}

.signup-steps li {
  color: var(--color-text);
  line-height: 1.55;
}

.signup-steps li::marker {
  color: var(--color-primary);
  font-weight: 700;
}

.form-field {
  margin-bottom: 1.1rem;
}

.form-field label {
  display: block;
  margin-bottom: 0.35rem;
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--color-navy);
}

.form-field input,
.form-field select {
  width: 100%;
  min-height: 48px;
  padding: 0.65rem 0.9rem;
  font-family: inherit;
  font-size: 1rem;
  color: var(--color-text);
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
}

.form-field input:focus,
.form-field select:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(242, 106, 33, 0.18);
}

.form-note {
  margin: 0.5rem 0 0;
  font-size: 0.8125rem;
  color: var(--color-text-muted);
}

.form-status {
  margin-top: 1rem;
  padding: 0.85rem 1rem;
  border-radius: var(--radius);
  background: rgba(242, 106, 33, 0.12);
  color: var(--color-primary-dark);
  font-weight: 600;
  font-size: 0.9375rem;
}

.form-status[hidden] {
  display: none;
}

/* Sub-navigation links (services / driver) reused in header */
.primary-nav a.is-cta-accent {
  color: var(--color-accent);
}

/* Cross-link chips */
.link-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
  margin-top: 1.5rem;
}

.link-chip {
  padding: 0.55rem 1rem;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  background: var(--color-bg);
  color: var(--color-text);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 600;
  transition: border-color 0.15s, color 0.15s;
}

.link-chip:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}
