* {
  box-sizing: border-box;
}

html {
  margin: 0;
  color: #202124;
  background: #FFFFFF;
  font-family: Roboto, Arial, sans-serif;
  scroll-behavior: smooth;
}

body {
  margin: 0;
}

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

.skip-link {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 10;
  padding: 10px 14px;
  color: #FFFFFF;
  background: #0B57D0;
  border-radius: 999px;
  transform: translateY(-140%);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 5;
  background: rgba(255,255,255,.95);
  border-bottom: 1px solid #E8EAED;
  backdrop-filter: blur(18px);
}

.nav {
  width: min(1180px, calc(100% - 32px));
  min-height: 82px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo img {
  display: block;
  width: 176px;
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 16px;
  color: #5F6368;
  font-size: 13px;
  font-weight: 700;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: #1A73E8;
}

.pill {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 18px;
  color: #FFFFFF;
  background: #1A73E8;
  border-radius: 999px;
  box-shadow: 0 10px 22px rgba(26,115,232,.18);
  font-weight: 700;
}

.pill:hover,
.pill:focus-visible {
  background: #0B57D0;
  color: #FFFFFF;
}

.ghost {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  color: #0B57D0;
  background: #FFFFFF;
  border: 1px solid #DADCE0;
  border-radius: 999px;
  font-weight: 700;
}

.ghost:hover,
.ghost:focus-visible {
  background: #F1F6FE;
}

.hero {
  padding: clamp(56px, 9vw, 102px) 20px clamp(46px, 7vw, 78px);
  background:
    linear-gradient(120deg, rgba(232,240,254,.92), rgba(255,255,255,.86) 44%, rgba(255,255,255,.98)),
    url("/assets/hero-vehicle.webp") right center / min(54vw, 720px) auto no-repeat;
  border-bottom: 1px solid #E8EAED;
}

.hero-inner,
.section-inner {
  width: min(1140px, 100%);
  margin: 0 auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 16px;
  padding: 8px 12px;
  color: #174EA6;
  background: #E8F0FE;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}

h1 {
  max-width: 760px;
  margin: 0;
  color: #202124;
  font-size: clamp(36px, 7vw, 70px);
  line-height: .98;
  letter-spacing: 0;
}

.lede {
  max-width: 720px;
  margin: 24px 0 0;
  color: #3C4043;
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.58;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

/* Filtered KZN directory items must stay hidden even when the card layout sets display:flex. */
.kzn-location-list li[hidden] { display: none !important; }

.featured-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin: 0 auto;
  padding: 18px 20px;
  color: #174EA6;
  background: linear-gradient(110deg, #E8F0FE, #F8FBFF 72%);
  border: 1px solid #C8DCF8;
  border-radius: 16px;
  box-shadow: 0 12px 28px rgba(26,115,232,.08);
}

.featured-link-copy { display: grid; gap: 4px; }
.featured-link-copy strong { color: #174EA6; font-size: 15px; }
.featured-link-copy span { color: #3C4043; font-size: 13px; line-height: 1.45; }
.featured-link-arrow {
  display: inline-flex;
  min-width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  background: #1A73E8;
  border-radius: 999px;
  font-size: 19px;
  transition: transform .2s ease, background .2s ease;
}
.featured-link:hover .featured-link-arrow,
.featured-link:focus-visible .featured-link-arrow { background: #0B57D0; transform: translateX(3px); }

.seo-route-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}
.seo-route-links a {
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 18px;
  color: #202124;
  background: #FFFFFF;
  border: 1px solid #DADCE0;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}
.seo-route-links a::after { content: '\2192'; flex: 0 0 auto; color: #1A73E8; font-size: 18px; }
.seo-route-links a:hover,
.seo-route-links a:focus-visible { border-color: #AECBFA; box-shadow: 0 10px 24px rgba(60,64,67,.1); transform: translateY(-2px); }

.proof-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: #DADCE0;
  border-top: 1px solid #DADCE0;
  border-bottom: 1px solid #DADCE0;
}

.proof-strip div {
  min-height: 94px;
  padding: 20px;
  background: #FFFFFF;
}

.proof-strip strong {
  display: block;
  margin-bottom: 6px;
  color: #202124;
  font-size: 14px;
}

.proof-strip span {
  color: #5F6368;
  font-size: 13px;
  line-height: 1.45;
}

.section {
  padding: clamp(46px, 7vw, 78px) 20px;
}

.section.alt {
  background: #F8FAFD;
}

h2 {
  margin: 0 0 16px;
  color: #202124;
  font-size: clamp(26px, 4vw, 38px);
  line-height: 1.1;
}

h3 {
  margin: 0;
  color: #202124;
  font-size: 18px;
  line-height: 1.25;
}

p {
  color: #5F6368;
  font-size: 15.5px;
  line-height: 1.75;
}

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

.card {
  padding: 22px;
  background: #FFFFFF;
  border: 1px solid #DADCE0;
  border-radius: 8px;
}

.card p {
  margin-bottom: 0;
}

.wide-copy {
  max-width: 880px;
}

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

.feature-list li {
  display: flex;
  gap: 10px;
  color: #3C4043;
  font-size: 15px;
  line-height: 1.55;
}

.feature-list li::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-top: 8px;
  flex: 0 0 auto;
  background: #1A73E8;
  border-radius: 50%;
}

.links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.links a {
  padding: 10px 14px;
  color: #0B57D0;
  background: #F1F6FE;
  border: 1px solid #D2E3FC;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
}

.links a:hover,
.links a:focus-visible {
  color: #FFFFFF;
  background: #1A73E8;
}

.graph {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  margin-top: 24px;
  counter-reset: graph-step;
}

.graph-step {
  position: relative;
  min-height: 142px;
  padding: 18px 16px;
  background: linear-gradient(160deg, #FFFFFF, #F7FAFE);
  border: 1px solid #D2E3FC;
  border-radius: 16px;
  box-shadow: 0 10px 24px rgba(26, 115, 232, .06);
}

.graph-step::before {
  display: grid;
  width: 30px;
  height: 30px;
  margin-bottom: 13px;
  place-items: center;
  color: #FFFFFF;
  background: #1A73E8;
  border-radius: 10px;
  content: counter(graph-step);
  counter-increment: graph-step;
  font-size: 13px;
  font-weight: 900;
}

.graph-step::after {
  position: absolute;
  top: 32px;
  right: -14px;
  color: #8AB4F8;
  content: "→";
  font-size: 22px;
  font-weight: 700;
}

.graph-step:last-child::after { display: none; }
.graph-step strong { display: block; color: #174EA6; font-size: 14px; line-height: 1.3; }
.graph-step span { display: block; margin-top: 7px; color: #5F6368; font-size: 13px; line-height: 1.5; }

.entity-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.entity {
  padding: 16px;
  border: 1px solid #DADCE0;
  border-radius: 14px;
  background: #FFFFFF;
}

.entity strong { display: block; color: #202124; font-size: 14px; line-height: 1.35; }
.entity span { display: block; margin-top: 6px; color: #5F6368; font-size: 12.5px; line-height: 1.5; }

.source-note {
  margin-top: 20px;
  padding: 14px 16px;
  color: #3C4043;
  background: #F8FAFD;
  border-left: 3px solid #1A73E8;
  font-size: 13px;
  line-height: 1.65;
}

@media (max-width: 860px) {
  .graph { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .graph-step::after { display: none; }
  .entity-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 520px) {
  .graph,
  .entity-grid { grid-template-columns: 1fr; }
}

.disclaimer {
  padding: 18px 20px;
  margin-top: 26px;
  color: #3C4043;
  background: #FEF7E0;
  border: 1px solid #FDE293;
  border-radius: 8px;
  font-size: 14px;
  line-height: 1.65;
}

.faq {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.faq details {
  padding: 18px 20px;
  background: #FFFFFF;
  border: 1px solid #DADCE0;
  border-radius: 8px;
}

.faq summary {
  cursor: pointer;
  color: #202124;
  font-weight: 800;
}

.faq p {
  margin: 12px 0 0;
}

.breadcrumbs {
  margin: 0 0 18px;
  color: #5F6368;
  font-size: 13px;
}

.breadcrumbs a {
  color: #0B57D0;
  font-weight: 700;
}

.site-footer {
  padding: 36px 20px 48px;
  color: #5F6368;
  background: #F8F9FA;
  border-top: 1px solid #DADCE0;
}

.footer-inner {
  width: min(1140px, 100%);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
}

.footer-inner p {
  max-width: 660px;
  margin: 0;
  font-size: 13px;
}

.footer-nav {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 13px;
  font-weight: 700;
}

.footer-nav a {
  color: #5F6368;
}

.footer-nav a:hover,
.footer-nav a:focus-visible {
  color: #1A73E8;
}

@media (max-width: 860px) {
  .nav {
    min-height: auto;
    padding: 14px 0;
    align-items: flex-start;
    flex-direction: column;
  }

  .logo img {
    width: 156px;
  }

  .nav-links {
    width: 100%;
    justify-content: flex-start;
    gap: 10px 14px;
  }

  .hero {
    background:
      linear-gradient(180deg, rgba(232,240,254,.94), rgba(255,255,255,.98)),
      url("/assets/hero-vehicle.webp") center bottom / 108% auto no-repeat;
    padding-bottom: 260px;
  }

  .proof-strip,
  .grid {
    grid-template-columns: 1fr;
  }

  .proof-strip div {
    min-height: auto;
  }

  .featured-link {
    align-items: flex-start;
  }

  .seo-route-links {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .nav-links .optional {
    display: none;
  }

  .cta-row {
    display: grid;
    grid-template-columns: 1fr;
  }

  .pill,
  .ghost {
    width: 100%;
  }

  .hero {
    padding-bottom: 210px;
  }
}
