:root {
  --color-navy: #07162e;
  --color-navy-2: #0b2446;
  --color-blue: #1557a6;
  --color-blue-soft: #e8f1ff;
  --color-orange: #ff6b18;
  --color-orange-dark: #e95405;
  --color-ink: #111827;
  --color-muted: #5f6f86;
  --color-line: #dce5f2;
  --color-bg: #f4f7fb;
  --color-white: #ffffff;
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --shadow-soft: 0 22px 70px rgba(7, 22, 46, 0.14);
  --shadow-card: 0 14px 44px rgba(7, 22, 46, 0.10);
  --shadow-orange: 0 16px 34px rgba(255, 107, 24, 0.32);
  --container: 1180px;
  --section-padding: 96px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

#home,
#services,
#how-it-works,
#areas-we-serve,
#faq,
[id$="-overview"],
[id$="-situations"],
[id$="-services"],
[id$="-support"],
[id$="-help"],
[id$="-issues"],
[id$="-process"],
[id$="-coverage"],
[id$="-faq"],
#emergency-guidance,
#contact-details,
#recovery-form,
#contact-final-cta,
#who-we-are,
#what-we-do,
#how-we-work,
#trust-signals,
#about-coverage,
#nationwide-coverage,
#major-cities,
#area-service-links,
#areas-final-cta,
#service-overview,
#all-services,
#services-trust-signals,
#services-final-cta {
  scroll-margin-top: 110px;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--color-white);
  color: var(--color-ink);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
  padding-bottom: 0;
}

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

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

button,
input,
textarea {
  font: inherit;
}

::selection {
  background: rgba(255, 107, 24, 0.24);
}

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

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 9999;
  transform: translateY(-150%);
  background: var(--color-orange);
  color: var(--color-white);
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 800;
}

.skip-link:focus {
  transform: translateY(0);
}

.emergency-strip {
  position: relative;
  z-index: 60;
  background:
    linear-gradient(90deg, rgba(255, 107, 24, 0.96), rgba(229, 84, 5, 0.96)),
    var(--color-orange);
  color: var(--color-white);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
}

.emergency-strip .container-shell {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.strip-group {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.strip-group svg {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  color: var(--color-white);
  background: rgba(7, 22, 46, 0.78);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
  transition: background-color 240ms ease, border-color 240ms ease, box-shadow 240ms ease, color 240ms ease;
}

.site-header.header-scrolled {
  color: var(--color-navy);
  background: rgba(255, 255, 255, 0.94);
  border-color: rgba(7, 22, 46, 0.08);
  box-shadow: 0 14px 38px rgba(7, 22, 46, 0.10);
}

.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 25%;
}

.brand-logo {
  display: block;
  width: auto;
  height: 56px;
  max-width: 100%;
  object-fit: contain;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  flex: 0 0 50%;
  min-width: 0;
}

.nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 8px 11px;
  border-radius: 999px;
  color: currentColor;
  font-size: 14px;
  font-weight: 800;
  opacity: 0.86;
  transition: background-color 180ms ease, opacity 180ms ease, color 180ms ease;
}

.nav-item {
  position: relative;
}

.nav-dropdown-trigger {
  gap: 6px;
}

.nav-dropdown-trigger svg {
  width: 15px;
  height: 15px;
  transition: transform 180ms ease;
}

.nav-item:hover .nav-dropdown-trigger svg,
.nav-item:focus-within .nav-dropdown-trigger svg {
  transform: rotate(180deg);
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  z-index: 70;
  width: 340px;
  padding: 10px;
  border: 1px solid rgba(7, 22, 46, 0.08);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 26px 70px rgba(7, 22, 46, 0.18);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 8px);
  transition: opacity 180ms ease, transform 180ms ease;
  backdrop-filter: blur(18px);
}

.nav-dropdown::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 100%;
  height: 16px;
}

.nav-item:hover .nav-dropdown,
.nav-item:focus-within .nav-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.nav-dropdown-link {
  display: grid;
  grid-template-columns: 38px 1fr;
  align-items: center;
  gap: 11px;
  padding: 10px;
  border-radius: 16px;
  color: var(--color-navy);
  transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.nav-dropdown-link span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  color: var(--color-orange);
  background: rgba(255, 107, 24, 0.12);
}

.nav-dropdown-link svg {
  width: 18px;
  height: 18px;
}

.nav-dropdown-link strong {
  font-size: 14px;
  font-weight: 850;
}

.nav-dropdown-link:hover,
.nav-dropdown-link.is-active {
  color: var(--color-orange);
  background: rgba(255, 107, 24, 0.10);
  transform: translateX(3px);
}

.nav-link:hover,
.nav-link.is-active {
  opacity: 1;
  background: rgba(255, 107, 24, 0.14);
  color: var(--color-orange);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  flex: 0 0 25%;
}

.mobile-trigger {
  display: none;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  color: currentColor;
  background: rgba(255, 255, 255, 0.08);
}

.header-scrolled .mobile-trigger {
  border-color: rgba(7, 22, 46, 0.10);
  background: var(--color-bg);
}

.mobile-panel {
  position: fixed;
  inset: 0 0 0 auto;
  z-index: 90;
  display: none;
  width: min(420px, 100%);
  transform: translateX(100%);
  overflow-y: auto;
  background: var(--color-white);
  color: var(--color-navy);
  box-shadow: -26px 0 70px rgba(7, 22, 46, 0.25);
  transition: transform 280ms ease;
}

.mobile-panel-inner {
  min-height: 100%;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.mobile-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.mobile-close {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid var(--color-line);
  border-radius: 14px;
  background: var(--color-white);
  color: var(--color-navy);
}

.mobile-links {
  display: grid;
  gap: 8px;
}

.mobile-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--color-line);
  font-family: "Plus Jakarta Sans", "Inter", sans-serif;
  font-size: 20px;
  font-weight: 850;
  letter-spacing: 0;
}

.mobile-accordion {
  border-bottom: 1px solid var(--color-line);
}

.mobile-accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 0;
  color: var(--color-navy);
  background: transparent;
  font-family: "Plus Jakarta Sans", "Inter", sans-serif;
  font-size: 20px;
  font-weight: 850;
  letter-spacing: 0;
  text-align: left;
}

.mobile-accordion-trigger svg {
  width: 22px;
  height: 22px;
  color: var(--color-orange);
  transition: transform 200ms ease;
}

.mobile-accordion.is-open .mobile-accordion-trigger svg {
  transform: rotate(45deg);
}

.mobile-service-list {
  display: grid;
  max-height: 0;
  overflow: hidden;
  transition: max-height 260ms ease;
}

.mobile-service-list a {
  padding: 11px 0 11px 18px;
  color: var(--color-muted);
  font-size: 15px;
  font-weight: 800;
}

.menu-backdrop {
  position: fixed;
  inset: 0;
  z-index: 80;
  pointer-events: none;
  opacity: 0;
  background: rgba(7, 22, 46, 0.58);
  backdrop-filter: blur(5px);
  transition: opacity 240ms ease;
}

body.menu-open {
  overflow: hidden;
}

body.menu-open .mobile-panel {
  transform: translateX(0);
}

body.menu-open .menu-backdrop {
  pointer-events: auto;
  opacity: 1;
}

.btn {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  overflow: hidden;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.2;
  white-space: nowrap;
  transition: transform 220ms ease, box-shadow 220ms ease, background-color 220ms ease, border-color 220ms ease, color 220ms ease;
}

.btn svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

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

.btn-primary {
  background: var(--color-orange);
  color: var(--color-white);
  box-shadow: var(--shadow-orange);
}

.btn-primary:hover {
  background: var(--color-orange-dark);
}

.btn-primary::after {
  content: "";
  position: absolute;
  inset: -40% auto -40% -45%;
  z-index: -1;
  width: 42%;
  transform: rotate(18deg);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.42), transparent);
  animation: button-shine 4.5s ease-in-out infinite;
}

.btn-secondary {
  border-color: rgba(255, 255, 255, 0.34);
  color: var(--color-white);
  background: rgba(255, 255, 255, 0.08);
}

.btn-secondary:hover {
  background: var(--color-white);
  color: var(--color-navy);
}

.btn-dark {
  background: var(--color-navy);
  color: var(--color-white);
  box-shadow: 0 14px 32px rgba(7, 22, 46, 0.22);
}

.btn-ghost {
  border-color: var(--color-line);
  background: var(--color-white);
  color: var(--color-navy);
}

.btn-ghost:hover {
  border-color: rgba(255, 107, 24, 0.48);
  color: var(--color-orange-dark);
  box-shadow: 0 16px 34px rgba(7, 22, 46, 0.09);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  color: var(--color-orange);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.gradient-word {
  color: var(--color-orange);
}

.hero-shell {
  position: relative;
  overflow: hidden;
  color: var(--color-white);
  background:
    radial-gradient(circle at 78% 22%, rgba(255, 107, 24, 0.24), transparent 28%),
    radial-gradient(circle at 18% 12%, rgba(21, 87, 166, 0.48), transparent 34%),
    linear-gradient(135deg, #07162e 0%, #0b2446 48%, #07162e 100%);
}

#home.hero-shell {
  background-color: #07162e;
  background-image: url("/public/images/hero-section-background-image.webp");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.hero-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.22;
  background-image:
    linear-gradient(115deg, transparent 0 42%, rgba(255, 255, 255, 0.16) 42% 43%, transparent 43% 100%),
    linear-gradient(90deg, transparent 0 48%, rgba(255, 107, 24, 0.34) 48% 49%, transparent 49% 100%);
  background-size: 220px 220px, 130px 130px;
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 86%, transparent);
}

#home.hero-shell::before {
  opacity: 1;
  background-image:
    radial-gradient(circle at 78% 22%, rgba(255, 107, 24, 0.24), transparent 28%),
    radial-gradient(circle at 18% 12%, rgba(21, 87, 166, 0.48), transparent 34%),
    linear-gradient(135deg, rgba(7, 22, 46, 0.86) 0%, rgba(11, 36, 70, 0.76) 48%, rgba(7, 22, 46, 0.88) 100%),
    linear-gradient(115deg, transparent 0 42%, rgba(255, 255, 255, 0.035) 42% 43%, transparent 43% 100%),
    linear-gradient(90deg, transparent 0 48%, rgba(255, 107, 24, 0.08) 48% 49%, transparent 49% 100%);
  background-size: auto, auto, auto, 220px 220px, 130px 130px;
  mask-image: none;
}

.hero-shell::after {
  content: "";
  position: absolute;
  left: -12vw;
  right: -12vw;
  bottom: -1px;
  height: 90px;
  background: var(--color-white);
  clip-path: ellipse(54% 70% at 50% 100%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
  align-items: center;
  gap: 58px;
  min-height: 720px;
  padding: 78px 0 124px;
}

.hero-copy {
  max-width: 670px;
}

.hero-copy h1,
.page-heading {
  margin: 0;
  font-family: "Plus Jakarta Sans", "Inter", sans-serif;
  font-size: 76px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.98;
}

.hero-copy p {
  margin: 22px 0 0;
  max-width: 650px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 20px;
}

.hero-actions,
.section-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 30px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  font-size: 13px;
  font-weight: 800;
}

.trust-pill svg {
  width: 16px;
  height: 16px;
  color: var(--color-orange);
}

.hero-visual {
  position: relative;
  min-height: 520px;
}

.hero-image-card {
  position: absolute;
  inset: 42px 0 18px 30px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.26);
}

.hero-image-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(7, 22, 46, 0.72));
}

.hero-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.visual-glow {
  position: absolute;
  width: 300px;
  height: 300px;
  right: -58px;
  top: 26px;
  border-radius: 50%;
  background: rgba(255, 107, 24, 0.26);
  filter: blur(18px);
}

.float-card {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 11px;
  min-width: 164px;
  padding: 14px 15px;
  border: 1px solid rgba(255, 255, 255, 0.20);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--color-navy);
  box-shadow: 0 20px 44px rgba(7, 22, 46, 0.20);
  backdrop-filter: blur(15px);
  font-weight: 900;
  animation: float-card-drift 5.8s ease-in-out infinite;
  transition: box-shadow 220ms ease, border-color 220ms ease, background-color 220ms ease;
}

.float-card:hover {
  border-color: rgba(255, 107, 24, 0.30);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 26px 54px rgba(7, 22, 46, 0.26);
}

.float-card svg {
  width: 18px;
  height: 18px;
  color: var(--color-orange);
}

.float-card small {
  display: block;
  margin-top: 2px;
  color: var(--color-muted);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

.float-1 {
  top: 18px;
  left: 0;
  animation-delay: 0s;
}

.float-2 {
  top: 132px;
  right: -14px;
  animation-delay: 0.5s;
}

.float-3 {
  left: 6px;
  bottom: 62px;
  animation-delay: 1s;
}

.float-4 {
  right: 26px;
  bottom: 10px;
  animation-delay: 1.5s;
}

.section {
  padding: var(--section-padding) 0;
}

.section-soft {
  background:
    radial-gradient(circle at 12% 22%, rgba(21, 87, 166, 0.08), transparent 24%),
    var(--color-bg);
}

.section-dark {
  color: var(--color-white);
  background:
    radial-gradient(circle at 12% 22%, rgba(255, 107, 24, 0.18), transparent 28%),
    linear-gradient(135deg, #07162e, #0a1f3c 54%, #061225);
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 38px;
}

.section-head.centered {
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
  display: block;
}

.section-head.centered .eyebrow {
  justify-content: center;
}

.section-head.centered .eyebrow::before {
  display: none;
}

.section-title {
  margin: 0;
  max-width: 760px;
  color: var(--color-navy);
  font-family: "Plus Jakarta Sans", "Inter", sans-serif;
  font-size: 52px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.04;
}

.section-dark .section-title,
.section-dark .section-copy,
.section-dark .eyebrow {
  color: var(--color-white);
}

.section-copy {
  margin: 14px 0 0;
  max-width: 650px;
  color: var(--color-muted);
  font-size: 17px;
}

.answer-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  background: var(--color-white);
  box-shadow: var(--shadow-card);
}

.answer-panel::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 7px;
  background: linear-gradient(var(--color-orange), var(--color-blue));
}

.answer-grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 28px;
  padding: 30px;
}

.answer-label {
  color: var(--color-orange);
  font-family: "Plus Jakarta Sans", "Inter", sans-serif;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.answer-panel p {
  margin: 0;
  color: var(--color-navy);
  font-size: 18px;
  font-weight: 650;
}

.emergency-strip-section {
  padding-top: 0;
}

.emergency-cta-card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 30px;
  padding: 30px;
  color: var(--color-white);
  background:
    radial-gradient(circle at 82% 18%, rgba(255, 107, 24, 0.32), transparent 28%),
    linear-gradient(135deg, #07162e, #0b2446 62%, #061225);
  box-shadow: var(--shadow-soft);
}

.emergency-cta-card::before {
  content: "";
  position: absolute;
  inset: auto -12% -42% 42%;
  height: 160px;
  background: rgba(255, 107, 24, 0.22);
  filter: blur(32px);
  transform: rotate(-8deg);
}

.emergency-cta-icon {
  position: relative;
  z-index: 1;
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  border-radius: 24px;
  color: var(--color-white);
  background: var(--color-orange);
  box-shadow: var(--shadow-orange);
}

.emergency-cta-icon svg {
  width: 32px;
  height: 32px;
}

.emergency-cta-copy,
.emergency-cta-actions {
  position: relative;
  z-index: 1;
}

.emergency-cta-copy h2 {
  margin: 0;
  font-family: "Plus Jakarta Sans", "Inter", sans-serif;
  font-size: 34px;
  font-weight: 950;
  line-height: 1.05;
}

.emergency-cta-copy p {
  margin: 9px 0 0;
  max-width: 620px;
  color: rgba(255, 255, 255, 0.78);
}

.emergency-mini-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 16px;
}

.emergency-mini-badges span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.88);
  font-size: 13px;
  font-weight: 850;
}

.emergency-mini-badges svg {
  width: 15px;
  height: 15px;
  color: var(--color-orange);
}

.emergency-cta-actions {
  display: grid;
  gap: 12px;
  min-width: 250px;
}

.about-preview {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 34px;
  align-items: stretch;
}

.about-preview-media {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  border-radius: 32px;
  background: var(--color-navy);
  box-shadow: var(--shadow-soft);
}

.about-preview-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 22, 46, 0.04), rgba(7, 22, 46, 0.72));
}

.about-preview-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-preview-badge {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 1;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.20);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.90);
  color: var(--color-navy);
  box-shadow: 0 20px 46px rgba(7, 22, 46, 0.20);
}

.about-preview-badge strong,
.about-preview-badge span {
  display: block;
}

.about-preview-badge strong {
  font-family: "Plus Jakarta Sans", "Inter", sans-serif;
  font-size: 22px;
  font-weight: 950;
}

.about-preview-badge span {
  margin-top: 4px;
  color: var(--color-muted);
}

.about-preview-card {
  position: relative;
  overflow: hidden;
  border-radius: 32px;
  padding: 42px;
  color: var(--color-white);
  background:
    radial-gradient(circle at 90% 16%, rgba(255, 107, 24, 0.24), transparent 28%),
    linear-gradient(135deg, #07162e, #0b2446);
  box-shadow: var(--shadow-soft);
}

.about-preview-card .section-actions {
  margin-top: 26px;
}

.about-preview-card h2 {
  margin: 0;
  font-family: "Plus Jakarta Sans", "Inter", sans-serif;
  font-size: 44px;
  font-weight: 950;
  line-height: 1.04;
}

.about-preview-card p {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.78);
}

.about-trust-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 26px;
}

.about-trust-grid span {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 13px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  font-weight: 850;
}

.about-trust-grid svg {
  width: 18px;
  height: 18px;
  color: var(--color-orange);
  flex: 0 0 auto;
}

.vehicle-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.vehicle-card,
.coverage-card {
  border: 1px solid rgba(220, 229, 242, 0.9);
  border-radius: var(--radius-md);
  background: var(--color-white);
  box-shadow: 0 12px 36px rgba(7, 22, 46, 0.07);
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
}

.vehicle-card:hover {
  transform: translateY(-7px);
  border-color: rgba(255, 107, 24, 0.42);
  box-shadow: var(--shadow-soft);
}

.vehicle-card {
  min-height: 230px;
  padding: 24px;
}

.vehicle-card h3,
.coverage-card h3 {
  margin: 0;
  color: var(--color-navy);
  font-family: "Plus Jakarta Sans", "Inter", sans-serif;
  font-size: 22px;
  font-weight: 900;
  line-height: 1.12;
}

.vehicle-card p,
.coverage-card p {
  margin: 12px 0 0;
  color: var(--color-muted);
}

.vehicle-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: center;
  margin-top: 32px;
  padding: 18px;
  border: 1px solid var(--color-line);
  border-radius: 999px;
  background: var(--color-white);
  box-shadow: var(--shadow-card);
}

.vehicle-cta p,
.vehicle-cta .text-link {
  margin: 0;
}

.coverage-visual-section {
  position: relative;
  overflow: hidden;
}

.coverage-visual-section::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.20;
  background-image:
    linear-gradient(115deg, transparent 0 42%, rgba(255, 255, 255, 0.18) 42% 43%, transparent 43% 100%),
    linear-gradient(90deg, transparent 0 48%, rgba(255, 107, 24, 0.34) 48% 49%, transparent 49% 100%);
  background-size: 240px 240px, 140px 140px;
}

.coverage-visual {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: 42px;
  align-items: center;
}

.coverage-visual-copy .section-title,
.coverage-visual-copy .section-copy {
  color: var(--color-white);
}

.coverage-visual-map {
  position: relative;
  min-height: 380px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 34px;
  overflow: hidden;
  background: url("/public/images/nationwide-coverage-section.webp");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.22);
}

.coverage-card-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.coverage-visual-section .eyebrow {
  color: var(--color-orange);
}

.coverage-card {
  padding: 24px;
  background: rgba(255, 255, 255, 0.92);
}

.coverage-city-tags {
  position: relative;
  z-index: 1;
  margin-top: 26px;
}

.help-personas {
  display: grid;
  gap: 24px;
}

.help-card {
  position: relative;
  border: 1px solid rgba(220, 229, 242, 0.95);
  border-radius: 26px;
  background: var(--color-white);
  box-shadow: 0 14px 36px rgba(7, 22, 46, 0.06);
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
}

.help-card:hover {
  transform: translateY(-7px);
  border-color: rgba(255, 107, 24, 0.36);
  box-shadow: 0 24px 62px rgba(7, 22, 46, 0.12);
}

.help-card h3 {
  margin: 0;
  color: var(--color-navy);
  font-family: "Plus Jakarta Sans", "Inter", sans-serif;
  font-size: 22px;
  font-weight: 900;
  line-height: 1.12;
}

.help-card p {
  margin: 12px 0 0;
  color: var(--color-muted);
}

.help-card-featured {
  display: grid;
  grid-template-columns: minmax(0, 45fr) minmax(360px, 55fr);
  gap: 0;
  align-items: stretch;
  min-height: 280px;
  overflow: hidden;
  padding: 0;
  border: 1px solid rgba(220, 229, 242, 0.8);
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(232, 241, 255, 0.7), var(--color-white) 48%);
  box-shadow: 0 30px 82px rgba(7, 22, 46, 0.13);
}

.help-card-featured:hover {
  transform: translateY(-5px);
  box-shadow: 0 34px 92px rgba(7, 22, 46, 0.16);
}

.help-feature-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 34px 38px;
}

.help-feature-copy .icon-bubble {
  margin-bottom: 18px;
  width: 68px;
  height: 68px;
  border-radius: 22px;
}

.help-feature-copy h3::before {
  content: "";
  display: block;
  width: 52px;
  height: 4px;
  margin-bottom: 14px;
  border-radius: 999px;
  background: var(--color-orange);
}

.help-feature-copy h3 {
  font-size: clamp(30px, 3vw, 42px);
  letter-spacing: 0;
  line-height: 1.05;
}

.help-feature-copy p {
  max-width: 34ch;
  margin-top: 18px;
  font-size: 17px;
}

.help-feature-media {
  position: relative;
  min-height: 280px;
  overflow: hidden;
  border-radius: 0 28px 28px 0;
  isolation: isolate;
}

.help-feature-media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(7, 22, 46, 0.46), rgba(7, 22, 46, 0.04) 52%),
    linear-gradient(180deg, rgba(7, 22, 46, 0.06), rgba(7, 22, 46, 0.26));
  opacity: 0.82;
  transition: opacity 320ms ease;
}

.help-card-featured:hover .help-feature-media::after {
  opacity: 0.68;
}

.help-feature-media img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  transition: transform 520ms ease;
}

.help-card-featured:hover .help-feature-media img {
  transform: scale(1.05);
}

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

.help-audience-grid .help-card {
  min-height: 230px;
  padding: 24px;
  border-radius: 22px;
}

.help-audience-grid .icon-bubble {
  margin-bottom: 22px;
  background: linear-gradient(135deg, rgba(255, 107, 24, 0.14), rgba(232, 241, 255, 0.92));
  color: var(--color-orange);
  box-shadow: none;
  transition: transform 250ms ease;
}

.help-audience-grid .help-card:hover .icon-bubble {
  transform: translateY(-2px);
}

.help-distance-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  min-height: 124px;
  padding: 26px 30px;
  border-radius: 26px;
  background: var(--color-navy);
  color: var(--color-white);
  box-shadow: 0 28px 68px rgba(7, 22, 46, 0.18);
  transition: transform 250ms ease, box-shadow 250ms ease;
}

.help-distance-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 34px 76px rgba(7, 22, 46, 0.24);
}

.help-distance-card .icon-bubble {
  margin: 0;
  color: var(--color-orange);
  background: rgba(255, 255, 255, 0.09);
  box-shadow: none;
}

.help-distance-card h3 {
  margin: 0;
  color: var(--color-white);
  font-family: "Plus Jakarta Sans", "Inter", sans-serif;
  font-size: 24px;
  font-weight: 900;
  line-height: 1.12;
}

.help-distance-card p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.74);
}

.help-distance-mark {
  width: 44px;
  height: 44px;
  color: var(--color-orange);
  opacity: 0.9;
}

.floating-call {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 65;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 54px;
  padding: 14px 18px;
  border-radius: 999px;
  color: var(--color-white);
  background: var(--color-orange);
  box-shadow: var(--shadow-orange);
  font-weight: 950;
  transition: transform 220ms ease, background-color 220ms ease, box-shadow 220ms ease, opacity 220ms ease;
}

.floating-call:hover {
  transform: translateY(-3px);
  background: var(--color-orange-dark);
  box-shadow: 0 20px 44px rgba(255, 107, 24, 0.38);
}

.floating-call.is-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
}

.floating-call svg {
  width: 19px;
  height: 19px;
}

.quick-dock {
  position: fixed;
  right: 24px;
  top: calc(50% - 36px);
  z-index: 64;
  display: flex;
  flex-direction: column;
  gap: 9px;
  padding: 9px;
  border: 1px solid rgba(220, 229, 242, 0.72);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 20px 58px rgba(7, 22, 46, 0.16);
  backdrop-filter: blur(18px);
  transition: opacity 220ms ease, transform 220ms ease;
}

.quick-dock.is-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(14px);
}

.quick-dock-link {
  position: relative;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(220, 229, 242, 0.88);
  border-radius: 999px;
  color: var(--color-navy);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 8px 20px rgba(7, 22, 46, 0.06);
  transition: transform 250ms ease, color 250ms ease, background-color 250ms ease, border-color 250ms ease, box-shadow 250ms ease;
}

.quick-dock-link:hover,
.quick-dock-link:focus-visible,
.quick-dock-link.is-active {
  color: var(--color-white);
  background: var(--color-orange);
  border-color: rgba(255, 107, 24, 0.76);
  box-shadow: 0 14px 30px rgba(255, 107, 24, 0.28);
}

.quick-dock-link:hover {
  transform: translateY(-2px);
}

.quick-dock-link:focus-visible {
  outline: 3px solid rgba(255, 107, 24, 0.32);
  outline-offset: 3px;
}

.quick-dock-link svg {
  width: 20px;
  height: 20px;
}

.quick-dock-tooltip {
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translate(8px, -50%);
  opacity: 0;
  pointer-events: none;
  white-space: nowrap;
  padding: 7px 10px;
  border-radius: 10px;
  color: var(--color-white);
  background: var(--color-navy);
  box-shadow: 0 12px 26px rgba(7, 22, 46, 0.18);
  font-size: 13px;
  font-weight: 850;
  line-height: 1;
  transition: opacity 220ms ease, transform 220ms ease;
}

.quick-dock-link:hover .quick-dock-tooltip,
.quick-dock-link:focus-visible .quick-dock-tooltip {
  opacity: 1;
  transform: translate(0, -50%);
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.service-card,
.feature-card,
.related-card,
.safety-card {
  border: 1px solid rgba(220, 229, 242, 0.9);
  border-radius: var(--radius-md);
  background: var(--color-white);
  box-shadow: 0 12px 36px rgba(7, 22, 46, 0.07);
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
}

.service-card:hover,
.feature-card:hover,
.related-card:hover,
.safety-card:hover {
  transform: translateY(-7px);
  border-color: rgba(255, 107, 24, 0.42);
  box-shadow: var(--shadow-soft);
}

.service-card {
  position: relative;
  overflow: hidden;
  min-height: 250px;
  padding: 24px;
}

.service-card.featured {
  grid-column: span 2;
  min-height: 330px;
  color: var(--color-white);
  background:
    linear-gradient(180deg, rgba(7, 22, 46, 0.10), rgba(7, 22, 46, 0.86)),
    var(--card-image, linear-gradient(135deg, var(--color-navy), var(--color-blue)));
  background-size: cover;
  background-position: center;
}

.service-card.service-tall {
  grid-row: span 2;
}

.icon-bubble {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 17px;
  color: var(--color-orange);
  background: var(--color-blue-soft);
  margin-bottom: 26px;
}

.service-card.featured .icon-bubble {
  color: var(--color-white);
  background: rgba(255, 107, 24, 0.94);
}

.icon-bubble svg {
  width: 24px;
  height: 24px;
}

.service-card h3,
.feature-card h3,
.related-card h3,
.safety-card h3 {
  margin: 0;
  color: var(--color-navy);
  font-family: "Plus Jakarta Sans", "Inter", sans-serif;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.12;
}

.service-card.featured h3,
.service-card.featured p,
.service-card.featured .text-link {
  color: var(--color-white);
}

.service-card p,
.feature-card p,
.related-card p,
.safety-card p {
  margin: 12px 0 0;
  color: var(--color-muted);
}

.service-card.featured p {
  color: rgba(255, 255, 255, 0.84);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  color: var(--color-orange-dark);
  font-weight: 900;
}

.text-link svg {
  width: 16px;
  height: 16px;
}

.service-map {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.45fr) minmax(0, 0.9fr);
  grid-template-areas:
    "breakdown national towing"
    "battery national accident"
    "tyre national roadside";
  gap: 18px;
  align-items: stretch;
}

.service-map-card {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-start;
  gap: 15px;
  min-height: 178px;
  padding: 22px;
  border: 1px solid rgba(220, 229, 242, 0.92);
  border-radius: var(--radius-md);
  background: var(--color-white);
  box-shadow: 0 14px 42px rgba(7, 22, 46, 0.08);
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
}

.service-map-card::before {
  content: "";
  position: absolute;
  inset: auto 18px 0 18px;
  height: 3px;
  border-radius: 999px 999px 0 0;
  background: var(--color-orange);
  opacity: 0;
  transition: opacity 220ms ease;
}

.service-map-card:hover {
  transform: translateY(-7px);
  border-color: rgba(255, 107, 24, 0.42);
  box-shadow: var(--shadow-soft);
}

.service-map-card:hover::before {
  opacity: 1;
}

.service-map-card > svg {
  position: absolute;
  right: 18px;
  top: 18px;
  width: 18px;
  height: 18px;
  color: var(--color-orange);
}

.service-map-icon {
  width: 48px;
  height: 48px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 16px;
  color: var(--color-orange);
  background: var(--color-blue-soft);
}

.service-map-icon svg {
  width: 23px;
  height: 23px;
}

.service-map-card strong {
  display: block;
  max-width: 190px;
  color: var(--color-navy);
  font-family: "Plus Jakarta Sans", "Inter", sans-serif;
  font-size: 21px;
  font-weight: 950;
  line-height: 1.08;
}

.service-map-card small {
  display: block;
  margin-top: 12px;
  color: var(--color-muted);
  font-size: 14px;
  font-weight: 650;
  line-height: 1.55;
}

.service-map-towing {
  grid-area: towing;
}

.service-map-breakdown {
  grid-area: breakdown;
}

.service-map-accident {
  grid-area: accident;
}

.service-map-battery {
  grid-area: battery;
}

.service-map-tyre {
  grid-area: tyre;
}

.service-map-roadside {
  grid-area: roadside;
}

.service-map-feature {
  grid-area: national;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  min-height: 594px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 30px;
  color: var(--color-white);
  background:
    linear-gradient(135deg, #07162e, #0b2446 58%, #061225);
  box-shadow: 0 28px 78px rgba(7, 22, 46, 0.20);
  transition: transform 280ms ease, box-shadow 280ms ease, border-color 280ms ease;
}

.service-map-feature:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 107, 24, 0.38);
  box-shadow: 0 34px 90px rgba(7, 22, 46, 0.28), 0 0 0 1px rgba(255, 107, 24, 0.10);
}

.service-map-feature::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 22, 46, 0.12) 18%, rgba(7, 22, 46, 0.50) 54%, rgba(7, 22, 46, 0.92)),
    radial-gradient(circle at 18% 14%, rgba(255, 107, 24, 0.34), transparent 28%);
}

.service-map-feature img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform 520ms ease;
}

.service-map-feature:hover img {
  transform: scale(1.055);
}

.service-map-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: var(--color-white);
  background: rgba(7, 22, 46, 0.66);
  backdrop-filter: blur(14px);
  font-size: 12px;
  font-weight: 850;
}

.service-map-badge svg {
  width: 16px;
  height: 16px;
  color: var(--color-orange);
}

.service-map-feature-content {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
}

.service-map-feature-content .eyebrow {
  color: var(--color-orange);
}

.service-map-feature-content strong {
  display: block;
  margin-top: 10px;
  color: var(--color-white);
  font-family: "Plus Jakarta Sans", "Inter", sans-serif;
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 950;
  line-height: 0.98;
  letter-spacing: 0;
}

.service-map-feature-content small {
  display: block;
  max-width: 520px;
  margin-top: 15px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.55;
}

.service-map-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 20px;
}

.service-map-highlights span {
  padding: 8px 11px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  color: var(--color-white);
  background: rgba(255, 255, 255, 0.10);
  font-size: 13px;
  font-weight: 850;
}

.service-map-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  padding: 13px 18px;
  border-radius: 999px;
  color: var(--color-white);
  background: var(--color-orange);
  box-shadow: var(--shadow-orange);
  font-weight: 950;
  transition: transform 220ms ease, background-color 220ms ease, box-shadow 220ms ease;
}

.service-map-feature:hover .service-map-cta {
  transform: translateY(-2px);
  background: var(--color-orange-dark);
  box-shadow: 0 18px 42px rgba(255, 107, 24, 0.32);
}

.service-map-cta svg {
  width: 17px;
  height: 17px;
}

.services-overview-map .service-map-card {
  min-height: 190px;
}

.services-overview-map .service-map-card .text-link {
  margin-top: 16px;
  font-size: 14px;
}

.services-overview-map .service-map-card:hover .text-link svg {
  transform: translateX(3px);
}

.services-overview-map .service-map-card .text-link svg {
  transition: transform 220ms ease;
}

.image-split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 52px;
  align-items: center;
}

.image-panel {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.image-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 38%, rgba(7, 22, 46, 0.76));
}

.image-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-panel-card {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.9);
  padding: 18px;
  color: var(--color-navy);
  box-shadow: 0 20px 46px rgba(7, 22, 46, 0.20);
}

.feature-list {
  display: grid;
  gap: 14px;
}

.feature-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: start;
  padding: 18px;
  border: 1px solid var(--color-line);
  border-radius: 18px;
  background: var(--color-white);
}

.feature-row strong {
  display: block;
  color: var(--color-navy);
  font-family: "Plus Jakarta Sans", "Inter", sans-serif;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0;
}

.feature-row p {
  margin: 4px 0 0;
  color: var(--color-muted);
}

.number-badge {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  color: var(--color-white);
  background: var(--color-navy);
  font-family: "Plus Jakarta Sans", "Inter", sans-serif;
  font-weight: 950;
}

.why-drivers-section .feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.why-drivers-section .why-drivers-card {
  align-items: start;
  padding: 15px 16px;
  border-color: rgba(7, 22, 46, 0.08);
  border-radius: 20px;
  box-shadow: 0 10px 24px rgba(7, 22, 46, 0.05);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.why-drivers-section .why-drivers-card:last-child {
  grid-column: 1 / -1;
}

.why-drivers-section .why-drivers-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 107, 24, 0.26);
  box-shadow: 0 16px 34px rgba(7, 22, 46, 0.12);
}

.why-drivers-section .why-drivers-card .number-badge {
  width: 40px;
  height: 40px;
  border-radius: 13px;
  background:
    linear-gradient(135deg, var(--color-navy), var(--color-navy-2));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.10);
}

.why-drivers-section .why-drivers-card strong {
  font-size: 16px;
  line-height: 1.25;
}

.why-drivers-section .why-drivers-card p {
  margin-top: 5px;
  font-size: 14px;
  line-height: 1.5;
}

.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 10%;
  right: 10%;
  top: 38px;
  height: 2px;
  background: linear-gradient(90deg, rgba(255, 107, 24, 0.20), rgba(255, 107, 24, 0.90), rgba(21, 87, 166, 0.28));
}

.timeline-step {
  position: relative;
  z-index: 1;
  padding: 0 10px;
}

.timeline-icon {
  width: 78px;
  height: 78px;
  display: grid;
  place-items: center;
  border: 8px solid var(--color-white);
  border-radius: 24px;
  color: var(--color-white);
  background: linear-gradient(135deg, var(--color-orange), var(--color-blue));
  box-shadow: 0 16px 32px rgba(7, 22, 46, 0.12);
  margin-bottom: 20px;
}

.timeline-icon svg {
  width: 28px;
  height: 28px;
}

.timeline-step span {
  display: block;
  color: var(--color-orange-dark);
  font-family: "Plus Jakarta Sans", "Inter", sans-serif;
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0;
}

.timeline-step h3 {
  margin: 8px 0 8px;
  color: var(--color-navy);
  font-family: "Plus Jakarta Sans", "Inter", sans-serif;
  font-size: 19px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.15;
}

.timeline-step p {
  margin: 0;
  color: var(--color-muted);
  font-size: 15px;
}

.coverage-shell {
  position: relative;
  overflow: hidden;
  border-radius: 34px;
  padding: 48px;
  background:
    linear-gradient(135deg, rgba(7, 22, 46, 0.90), rgba(6, 18, 37, 0.94)),
    var(--color-navy);
  color: var(--color-white);
  box-shadow: var(--shadow-soft);
}

.coverage-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.28;
  background-image:
    radial-gradient(circle at 28% 38%, rgba(255, 107, 24, 0.55) 0 3px, transparent 4px),
    radial-gradient(circle at 70% 26%, rgba(255, 255, 255, 0.42) 0 2px, transparent 3px),
    radial-gradient(circle at 64% 68%, rgba(255, 107, 24, 0.50) 0 3px, transparent 4px),
    linear-gradient(130deg, transparent 0 34%, rgba(255, 255, 255, 0.22) 34.4% 34.8%, transparent 35% 100%);
  background-size: 100% 100%, 100% 100%, 100% 100%, 180px 180px;
}

.coverage-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(0, 0.96fr);
  gap: 28px;
  align-items: start;
}

.service-coverage-shell .coverage-content {
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
}

.coverage-shell .section-title,
.coverage-shell .section-copy {
  color: var(--color-white);
}

.coverage-copy {
  padding-right: 8px;
}

.coverage-shell .section-actions {
  flex-wrap: nowrap;
  gap: 12px;
}

.coverage-location-stack {
  display: grid;
  gap: 16px;
}

.coverage-image-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.20);
}

.coverage-image-card img {
  width: 100%;
  height: 100%;
  min-height: 180px;
  object-fit: cover;
}

.coverage-tags-image {
  overflow: hidden;
  width: 100%;
  margin-bottom: 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.20);
}

.coverage-tags-image img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.coverage-popular-areas {
  position: relative;
  z-index: 1;
  margin-top: 28px;
}

.coverage-popular-head {
  margin-bottom: 16px;
}

.coverage-popular-head .eyebrow {
  margin-bottom: 0;
}

.coverage-popular-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.coverage-popular-card {
  display: grid;
  gap: 12px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 14px 34px rgba(7, 22, 46, 0.10);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.coverage-popular-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 107, 24, 0.22);
  box-shadow: 0 20px 42px rgba(7, 22, 46, 0.14);
}

.coverage-popular-top {
  display: flex;
  align-items: center;
  gap: 12px;
}

.coverage-popular-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 14px;
  color: var(--color-orange);
  background: rgba(255, 107, 24, 0.10);
}

.coverage-popular-icon svg {
  width: 18px;
  height: 18px;
}

.coverage-popular-card h3 {
  margin: 0;
  color: var(--color-navy);
  font-family: "Plus Jakarta Sans", "Inter", sans-serif;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.1;
}

.coverage-popular-card p {
  margin: 0;
  color: var(--color-muted);
  font-size: 14px;
  line-height: 1.5;
}

.coverage-popular-card .text-link {
  align-self: start;
  font-size: 14px;
}

.city-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.city-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 13px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.10);
  color: rgba(255, 255, 255, 0.90);
  font-weight: 850;
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 920px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--color-line);
  border-radius: 18px;
  background: var(--color-white);
  overflow: hidden;
}

.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 22px;
  border: 0;
  background: transparent;
  color: var(--color-navy);
  text-align: left;
  font-family: "Plus Jakarta Sans", "Inter", sans-serif;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0;
  cursor: pointer;
}

.faq-symbol {
  flex: 0 0 auto;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--color-orange);
  background: rgba(255, 107, 24, 0.12);
  font-size: 22px;
  font-weight: 900;
  line-height: 1;
}

.faq-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 260ms ease;
}

.faq-panel p {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--color-muted);
}

.faq-item.is-open .faq-symbol {
  color: var(--color-white);
  background: var(--color-orange);
}

.final-cta {
  position: relative;
  overflow: hidden;
  border-radius: 34px;
  padding: 48px;
  color: var(--color-white);
  background:
    radial-gradient(circle at 76% 22%, rgba(255, 107, 24, 0.34), transparent 30%),
    linear-gradient(135deg, #07162e, #0b2446);
  box-shadow: var(--shadow-soft);
}

.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background: repeating-linear-gradient(135deg, transparent 0 22px, rgba(255, 255, 255, 0.28) 23px 24px);
}

.final-cta-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
}

.final-cta h2 {
  margin: 0;
  font-family: "Plus Jakarta Sans", "Inter", sans-serif;
  font-size: 50px;
  font-weight: 950;
  letter-spacing: 0;
  line-height: 1.03;
}

.final-cta p {
  margin: 14px 0 0;
  max-width: 680px;
  color: rgba(255, 255, 255, 0.80);
}

.site-footer {
  background: #061225;
  color: var(--color-white);
  padding: 72px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 1fr);
  gap: 42px;
}

.footer-grid h2,
.footer-grid h3 {
  margin: 0 0 16px;
  font-family: "Plus Jakarta Sans", "Inter", sans-serif;
  font-size: 16px;
  font-weight: 950;
  letter-spacing: 0;
}

.footer-grid p,
.footer-grid li,
.footer-grid a {
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
}

.footer-links {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links a:hover {
  color: var(--color-orange);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 44px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.58);
  font-size: 14px;
}

.breadcrumb {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  font-weight: 800;
}

.breadcrumb a:hover {
  color: var(--color-orange);
}

.service-hero .hero-grid {
  min-height: 620px;
}

.service-hero .hero-copy h1 {
  font-size: 68px;
}

.info-band {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: start;
  padding: 22px;
  border-radius: 22px;
  background: #fff3eb;
  border: 1px solid rgba(255, 107, 24, 0.26);
  color: var(--color-navy);
}

.info-band svg {
  width: 30px;
  height: 30px;
  color: var(--color-orange);
}

.info-band strong {
  display: block;
  font-family: "Plus Jakarta Sans", "Inter", sans-serif;
  font-size: 20px;
  font-weight: 950;
  letter-spacing: 0;
}

.info-band p {
  margin: 6px 0 0;
  color: var(--color-muted);
}

.content-card {
  padding: 28px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  background: var(--color-white);
  box-shadow: var(--shadow-card);
}

.content-card h2,
.content-card h3 {
  margin: 0;
  color: var(--color-navy);
  font-family: "Plus Jakarta Sans", "Inter", sans-serif;
  font-weight: 950;
  letter-spacing: 0;
  line-height: 1.08;
}

.content-card h2 {
  font-size: 42px;
}

.content-card h3 {
  font-size: 22px;
}

.content-card p {
  color: var(--color-muted);
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 10px;
  align-items: start;
  color: var(--color-navy);
  font-weight: 800;
}

.check-list svg {
  width: 21px;
  height: 21px;
  margin-top: 2px;
  color: var(--color-orange);
}

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

.feature-card,
.related-card,
.safety-card {
  padding: 24px;
}

.feature-card .icon-bubble,
.related-card .icon-bubble,
.safety-card .icon-bubble {
  margin-bottom: 20px;
}

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

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

.contact-hero .contact-hero-grid {
  grid-template-columns: minmax(0, 0.82fr) minmax(520px, 1.18fr);
  gap: 42px;
  min-height: 860px;
  padding-top: 58px;
}

.contact-hero .hero-copy h1 {
  font-size: 58px;
}

.contact-hero-form {
  position: relative;
  z-index: 1;
  margin: 30px 0 48px;
  padding: 26px;
  color: var(--color-navy);
}

.contact-form-heading h2 {
  margin-top: 8px;
  font-size: 34px;
}

.contact-form-heading p,
.contact-prep-card > p {
  margin: 10px 0 0;
  color: var(--color-muted);
}

.contact-form-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 13px 14px;
  margin-top: 18px;
}

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

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 28px;
  align-items: start;
}

.contact-box {
  padding: 28px;
  border-radius: var(--radius-lg);
  background: var(--color-navy);
  color: var(--color-white);
  box-shadow: var(--shadow-soft);
}

.contact-box h2,
.contact-form-card h2 {
  margin: 0;
  font-family: "Plus Jakarta Sans", "Inter", sans-serif;
  font-size: 40px;
  font-weight: 950;
  letter-spacing: 0;
  line-height: 1.05;
}

.contact-box p {
  color: rgba(255, 255, 255, 0.78);
}

.contact-box .check-list li,
.contact-box .check-list span,
.contact-box .check-list a {
  color: var(--color-white);
}

.contact-box .check-list a:hover {
  color: var(--color-orange);
}

.contact-form-card {
  padding: 28px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  background: var(--color-white);
  box-shadow: var(--shadow-card);
}

.form-grid {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.field label {
  display: block;
  margin-bottom: 7px;
  color: var(--color-navy);
  font-weight: 900;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  border: 1px solid var(--color-line);
  border-radius: 14px;
  background: var(--color-bg);
  color: var(--color-navy);
  padding: 14px 15px;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.field textarea {
  min-height: 136px;
  resize: vertical;
}

.contact-hero-form .field textarea {
  min-height: 96px;
}

.field input::placeholder,
.field textarea::placeholder {
  color: #7d8796;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: rgba(255, 107, 24, 0.70);
  background: var(--color-white);
  box-shadow: 0 0 0 4px rgba(255, 107, 24, 0.12);
}

.consent-field {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--color-muted);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.45;
  cursor: pointer;
}

.consent-field input {
  width: 18px;
  height: 18px;
  margin: 1px 0 0;
  flex: 0 0 auto;
  accent-color: var(--color-orange);
}

.contact-form-grid .btn {
  justify-content: center;
  width: 100%;
}

.contact-form-grid .btn:disabled {
  cursor: wait;
  opacity: 0.7;
}

.form-status {
  min-height: 24px;
  margin: 12px 0 0;
  color: var(--color-muted);
  font-size: 14px;
}

.contact-prep-card {
  min-height: 100%;
}

.contact-prep-list {
  margin-top: 22px;
}

.safety-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.mobile-bottom-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 70;
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 10px 12px max(10px, env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, 0.95);
  border-top: 1px solid var(--color-line);
  box-shadow: 0 -14px 38px rgba(7, 22, 46, 0.12);
  backdrop-filter: blur(18px);
}

.mobile-bottom-bar .btn {
  min-height: 48px;
  padding-inline: 12px;
  font-size: 14px;
}

.mobile-quick-links {
  display: none;
}

.mobile-quick-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 44px;
  border: 1px solid rgba(220, 229, 242, 0.9);
  border-radius: 999px;
  color: var(--color-navy);
  background: var(--color-white);
  font-size: 13px;
  font-weight: 900;
  transition: color 220ms ease, background-color 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.mobile-quick-links a.is-active,
.mobile-quick-links a:focus-visible,
.mobile-quick-links a:hover {
  color: var(--color-white);
  background: var(--color-orange);
  border-color: rgba(255, 107, 24, 0.72);
  box-shadow: 0 10px 24px rgba(255, 107, 24, 0.22);
}

.mobile-quick-links a:focus-visible {
  outline: 3px solid rgba(255, 107, 24, 0.28);
  outline-offset: 2px;
}

.mobile-quick-links svg {
  width: 16px;
  height: 16px;
}

.js .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms ease, transform 700ms ease;
  transition-delay: var(--delay, 0ms);
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes float-card-drift {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

@keyframes button-shine {
  0%,
  42% {
    left: -45%;
  }

  58%,
  100% {
    left: 120%;
  }
}

@media (max-width: 1120px) {
  .brand {
    flex: 0 0 auto;
  }

  .desktop-nav,
  .header-cta {
    display: none;
  }

  .mobile-trigger {
    display: grid;
  }

  .mobile-panel {
    display: block;
  }

  .floating-call {
    display: none;
  }

  .quick-dock {
    display: none;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    min-height: 0;
    padding-top: 62px;
    gap: 34px;
  }

  .contact-hero .contact-hero-grid {
    grid-template-columns: 1fr;
    min-height: 0;
    padding-top: 62px;
    gap: 28px;
  }

  .contact-hero .hero-copy {
    max-width: 760px;
  }

  .contact-hero-form {
    margin: 0 0 48px;
  }

  .hero-visual {
    min-height: 460px;
  }

  .hero-image-card {
    inset: 30px 0 34px 0;
  }

  .bento-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-map {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-areas:
      "national national"
      "breakdown towing"
      "battery accident"
      "tyre roadside";
  }

  .service-map-feature {
    min-height: 500px;
  }

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

  .timeline::before {
    left: 39px;
    right: auto;
    top: 0;
    bottom: 0;
    width: 2px;
    height: auto;
  }

  .timeline-step {
    display: grid;
    grid-template-columns: 82px 1fr;
    gap: 18px;
    padding: 0;
  }

  .timeline-icon {
    margin: 0;
  }

  .image-split,
  .about-preview,
  .coverage-visual,
  .coverage-content,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .service-coverage-shell .coverage-content {
    grid-template-columns: 1fr;
  }

  .emergency-cta-card {
    grid-template-columns: auto 1fr;
  }

  .emergency-cta-actions {
    grid-column: 1 / -1;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .vehicle-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .help-card-featured {
    grid-template-columns: minmax(0, 0.9fr) minmax(280px, 1.1fr);
    gap: 0;
  }

  .help-audience-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .coverage-popular-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .coverage-shell .section-actions {
    flex-wrap: wrap;
  }

  .safety-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 68px;
  }

  body {
    padding-bottom: 132px;
  }

  .container-shell {
    width: min(100% - 24px, var(--container));
  }

  .emergency-strip .container-shell {
    min-height: 38px;
  }

  .strip-group span.optional {
    display: none;
  }

  .header-inner {
    min-height: 68px;
  }

  .brand-logo {
    height: 46px;
  }

  .hero-shell::after {
    height: 54px;
  }

  #home.hero-shell {
    background-position: center top;
  }

  .hero-grid {
    padding: 44px 0 84px;
  }

  .hero-copy h1,
  .page-heading {
    font-size: 48px;
  }

  .service-hero .hero-copy h1 {
    font-size: 42px;
  }

  .contact-hero .contact-hero-grid {
    padding: 44px 0 84px;
  }

  .contact-hero .hero-copy h1 {
    font-size: 42px;
  }

  .contact-hero-form {
    margin-bottom: 30px;
    padding: 20px;
    border-radius: 24px;
  }

  .contact-form-grid {
    grid-template-columns: 1fr;
  }

  .field-full {
    grid-column: auto;
  }

  .section-title {
    font-size: 36px;
  }

  .why-drivers-section .feature-list {
    grid-template-columns: 1fr;
  }

  .why-drivers-section .why-drivers-card:last-child {
    grid-column: auto;
  }

  .final-cta h2,
  .content-card h2,
  .contact-box h2,
  .contact-form-card h2 {
    font-size: 32px;
  }

  .hero-copy p {
    font-size: 16px;
  }

  .hero-actions,
  .section-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .coverage-shell .section-actions {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .coverage-shell .section-actions .btn {
    width: auto;
    flex: 1 1 210px;
  }

  .emergency-cta-card {
    grid-template-columns: 1fr;
    padding: 24px;
    border-radius: 24px;
  }

  .emergency-cta-icon {
    width: 58px;
    height: 58px;
    border-radius: 20px;
  }

  .emergency-cta-icon svg {
    width: 27px;
    height: 27px;
  }

  .emergency-cta-copy h2,
  .about-preview-card h2 {
    font-size: 32px;
  }

  .emergency-cta-actions {
    grid-template-columns: 1fr;
    min-width: 0;
  }

  .about-preview-media {
    min-height: 380px;
    border-radius: 24px;
  }

  .about-preview-card {
    padding: 28px;
    border-radius: 24px;
  }

  .about-trust-grid,
  .vehicle-grid,
  .help-audience-grid {
    grid-template-columns: 1fr;
  }

  .help-card-featured {
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 0;
    border-radius: 28px;
  }

  .help-feature-copy {
    padding: 28px 24px;
  }

  .help-feature-copy h3 {
    font-size: 34px;
  }

  .help-feature-media,
  .help-feature-media img {
    min-height: 250px;
  }

  .help-feature-media {
    border-radius: 0 0 28px 28px;
  }

  .help-audience-grid .help-card {
    min-height: 0;
  }

  .help-distance-card {
    grid-template-columns: auto minmax(0, 1fr);
    padding: 24px;
  }

  .help-distance-mark {
    grid-column: 1 / -1;
    width: 34px;
    height: 34px;
  }

  .vehicle-cta {
    display: grid;
    justify-items: center;
    text-align: center;
    border-radius: 24px;
  }

  .coverage-visual-map {
    min-height: 300px;
    border-radius: 24px;
  }

  .trust-row {
    gap: 8px;
  }

  .trust-pill {
    width: 100%;
    justify-content: center;
  }

  .hero-visual {
    min-height: 390px;
  }

  .hero-image-card {
    inset: 48px 0 20px;
    border-radius: 24px;
  }

  .float-card {
    min-width: auto;
    padding: 11px 12px;
    font-size: 13px;
  }

  .float-1 {
    left: 0;
    top: 10px;
  }

  .float-2 {
    right: 0;
    top: 86px;
  }

  .float-3 {
    left: 0;
    bottom: 18px;
  }

  .float-4 {
    display: none;
  }

  .section-head {
    display: block;
    margin-bottom: 28px;
  }

  .answer-grid,
  .two-column,
  .service-grid,
  .related-grid,
  .bento-grid,
  .service-map {
    grid-template-columns: 1fr;
  }

  .service-map {
    grid-template-areas:
      "national"
      "breakdown"
      "battery"
      "tyre"
      "towing"
      "accident"
      "roadside";
  }

  .service-map-card {
    min-height: 0;
  }

  .service-map-feature {
    min-height: 460px;
    padding: 22px;
  }

  .answer-grid {
    gap: 12px;
    padding: 24px;
  }

  .service-card.featured {
    grid-column: auto;
  }

  .image-panel {
    min-height: 380px;
  }

  .coverage-shell,
  .final-cta {
    padding: 28px;
    border-radius: 24px;
  }

  .coverage-content {
    grid-template-columns: 1fr;
  }

  .coverage-copy {
    padding-right: 0;
  }

  .coverage-popular-grid {
    grid-template-columns: 1fr;
  }

  .final-cta-content {
    grid-template-columns: 1fr;
  }

  .safety-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    display: grid;
  }

  .mobile-bottom-bar {
    display: grid;
  }

  .mobile-quick-links {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .js .reveal {
    transition-delay: 0ms !important;
  }
}

@media (max-width: 420px) {
  .float-card small {
    display: none;
  }

  .float-card {
    gap: 8px;
  }

  .mobile-panel-inner {
    padding: 18px;
  }

  .why-drivers-section .feature-list {
    gap: 10px;
  }

  .why-drivers-section .why-drivers-card {
    padding: 14px;
  }
}

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

.error-page {
  min-height: 100vh;
  padding: 0;
  color: var(--color-white);
  background:
    radial-gradient(circle at 75% 20%, rgba(255, 107, 24, 0.24), transparent 30%),
    linear-gradient(135deg, #07162e, #0b2446 55%, #07162e);
}

.error-page-shell {
  display: grid;
  place-items: center;
  min-height: 100vh;
  padding: 88px 24px;
}

.error-brand {
  position: absolute;
  top: 28px;
  left: 32px;
}

.error-brand img {
  display: block;
  width: 64px;
  height: 64px;
  object-fit: contain;
}

.error-card {
  width: min(720px, 100%);
  padding: 48px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px);
}

.error-card h1 {
  margin: 14px 0 0;
  font-family: "Plus Jakarta Sans", "Inter", sans-serif;
  font-size: clamp(42px, 7vw, 74px);
  line-height: 0.98;
}

.error-card p {
  max-width: 620px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
}

@media (max-width: 768px) {
  .error-page-shell {
    padding: 96px 12px 40px;
  }

  .error-brand {
    top: 18px;
    left: 20px;
  }

  .error-brand img {
    width: 54px;
    height: 54px;
  }

  .error-card {
    padding: 30px 22px;
    border-radius: 24px;
  }
}
