/* =========================
   Elite MOT Ltd
   style.css (refactored)
   ========================= */

/* =========================
   1) Design tokens
   ========================= */
:root {
  --brand-primary: #ff9900;
  --brand-primary-rgb: 255, 153, 0;
  --brand-primary-2: #ffb84d;

  --ink: #111;
  --muted: #6c757d;

  --surface: #ffffff;
  --surface-2: #f6f7f9;

  --radius-sm: .5rem;
  --radius-md: .75rem;
  --radius-lg: 1rem;

  --shadow-sm: 0 8px 22px rgba(0, 0, 0, .06);
  --shadow-md: 0 12px 34px rgba(0, 0, 0, .08);

  /* Services page scroll alignment (JS sets exact value) */
  --scroll-mt: 96px;
  --scroll-anchor-offset: calc(var(--scroll-mt) + 0px);
  --toc-section-pad-y: 2.6rem;
  --toc-section-pad-y-sm: 3rem;
  --content-section-pad-y: 5.5rem;
  --content-section-pad-y-sm: 4rem;

  /* Services card tokens */
  --card-radius: 16px;
  --card-shadow-a: 0 10px 26px rgba(0, 0, 0, .08);
  --card-bg: #fff;
}

/* =========================
   2) Base
   ========================= */
html {
  scroll-behavior: smooth;
}

.toc-page [id] {
  scroll-margin-top: var(--scroll-anchor-offset);
}

body {
  font-family: "IBM Plex Sans", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 1rem;
  color: var(--ink);
  background: var(--surface-2);
  line-height: 1.55;
}

.service-card .card-text,
.service-card li {
  line-height: 1.6;
}


a {
  color: inherit;
  text-decoration-thickness: .08em;
  text-underline-offset: .18em;
}

/* Larger links only where intended */
footer a,
.find-us a {
  font-size: 1.05rem;
  font-weight: 600;
  text-decoration: none;
}

hr {
  border-top: 1rem solid var(--brand-primary);
}

.toc-page section {
  padding-top: var(--content-section-pad-y);
  padding-bottom: var(--content-section-pad-y);
}

.toc-page .mot-cta{
  padding-top: 0;
  padding-bottom: var(--content-section-pad-y);
}

.toc-page .services-page section .row.g-4.align-items-start > .col-lg-4,
.toc-page .services-page section .row.g-4.align-items-start > .col-lg-8{
  flex: 0 0 100%;
  max-width: 100%;
}

.toc-page .services-page section .row.g-4.align-items-start > .col-lg-4{
  margin-bottom: 0.4rem;
}

.toc-page .services-page section .row.g-4{
  --bs-gutter-y: 0.5rem;
}

@media (max-width: 767.98px){
  .toc-page section {
    padding-top: var(--content-section-pad-y-sm);
    padding-bottom: var(--content-section-pad-y-sm);
    padding-left: 0.85rem;
    padding-right: 0.85rem;
  }

  .toc-page .services-page section{
    padding-top: var(--content-section-pad-y-sm);
    padding-bottom: var(--content-section-pad-y-sm);
  }

  .toc-page .mot-cta{
    padding-top: 0;
    padding-bottom: var(--content-section-pad-y-sm);
  }
}

/* Scroll-to-top button */
.scroll-top-btn {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  width: 52px;
  height: 52px;
  border-radius: 999px;
  border: none;
  background: var(--brand-primary);
  color: #111;
  box-shadow: 0 12px 26px rgba(0, 0, 0, .18);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease, box-shadow .2s ease;
  z-index: 1050;
}

.scroll-top-btn.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.scroll-top-btn:hover {
  box-shadow: 0 16px 32px rgba(0, 0, 0, .22);
}

.scroll-top-btn:focus-visible {
  outline: 3px solid rgba(0, 0, 0, .2);
  outline-offset: 2px;
}

.fw-bolder {
  font-weight: 900 !important;
}

ul {
  font-size: 1.05rem;
  list-style-type: square;
}

/* =========================
   4) Forms
   ========================= */
.form-control {
  font-size: 1rem;
  line-height: 1.5;
  color: #000;
  background-color: #ffffff00;
  background-clip: padding-box;
  border: 1px solid #707070;
  border-radius: 0.25rem;
}

.form-control:focus {
  font-size: 1rem;
  line-height: 1.5;
  color: #000;
  background-color: #ffffff00;
  background-clip: padding-box;
  border: .5px solid;
  border-radius: 0.25rem;
  box-shadow: 0 0 0 0.1rem rgb(219, 219, 219);
  border-color: var(--brand-primary);
}

/* =========================
   5) Buttons
   ========================= */
.btn {
  border-radius: .75rem;
  font-weight: 700;
  letter-spacing: .01em;
}

/* Brand outline primary */
.btn-outline-primary {
  --bs-btn-color: var(--brand-primary);
  --bs-btn-border-color: var(--brand-primary);
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: var(--brand-primary);
  --bs-btn-hover-border-color: var(--brand-primary);
  --bs-btn-active-bg: var(--brand-primary);
  --bs-btn-active-border-color: var(--brand-primary);
  --bs-btn-focus-shadow-rgb: 255, 153, 0;
  --bs-btn-disabled-color: var(--brand-primary);
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: var(--brand-primary);
  --bs-gradient: none;
}

/* Alt Primary Button (solid to outline on hover) */
.btn-primary-alt {
  --bs-btn-color: #fff;
  --bs-btn-bg: var(--brand-primary);
  --bs-btn-border-color: var(--brand-primary);
  --bs-btn-hover-color: var(--brand-primary);
  --bs-btn-hover-bg: #fff;
  --bs-btn-hover-border-color: var(--brand-primary);
  --bs-btn-focus-shadow-rgb: 255, 153, 0;
  --bs-btn-active-color: var(--brand-primary);
  --bs-btn-active-bg: #fff;
  --bs-btn-active-border-color: var(--brand-primary);
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: var(--brand-primary);
  --bs-btn-disabled-border-color: var(--brand-primary);
  --bs-gradient: none;
}

/* Book online CTA (dark grey -> black on hover) */
.btn-primary-alt[href*="setmore.com"] {
  --bs-btn-color: #fff;
  --bs-btn-bg: #444;
  --bs-btn-border-color: #444;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #000;
  --bs-btn-hover-border-color: #000;
  --bs-btn-focus-shadow-rgb: 0, 0, 0;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #000;
  --bs-btn-active-border-color: #000;
}

/* Custom Dark Button */
.btn-dark {
  --bs-btn-color: #fff;
  --bs-btn-bg: #242424;
  --bs-btn-border-color: #080808;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #000;
  --bs-btn-hover-border-color: #000;
  --bs-btn-focus-shadow-rgb: 85, 85, 85;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #000;
  --bs-btn-active-border-color: #000;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #555;
  --bs-btn-disabled-border-color: #555;
}

/* Outline dark (as currently used) */
.btn-outline-dark {
  --bs-btn-color: #212529;
  --bs-btn-border-color: #212529;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #212529;
  --bs-btn-hover-border-color: #212529;
  --bs-btn-focus-shadow-rgb: 33, 37, 41;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #212529;
  --bs-btn-active-border-color: #212529;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #212529;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #212529;
  --bs-gradient: none;
}

.btn-lg,
.btn-group-lg>.btn {
  --bs-btn-padding-y: 0.5rem;
  --bs-btn-padding-x: 1rem;
  --bs-btn-font-size: 1.25rem;
  --bs-btn-border-radius: 0.5rem;
}

/* Primary booking button (homepage + key CTAs) */
.btn-book-primary {
  --bs-btn-color: #fff;
  --bs-btn-bg: #444;
  --bs-btn-border-color: #444;

  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #000;
  --bs-btn-hover-border-color: #000;

  --bs-btn-focus-shadow-rgb: 0, 0, 0;
  --bs-btn-active-bg: #000;
  --bs-btn-active-border-color: #000;

  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Override the global .btn icon tweak for this button only */
.btn-book-primary .fa-arrow-up-right-from-square {
  margin-left: 0;         /* gap handles spacing */
  line-height: 1;         /* fixes vertical centering */
  vertical-align: middle; /* neutralise global offset */
  font-size: 1.05em;      /* scales nicely with text */
}

/* Primary booking button (homepage + key CTAs) */
.btn-call {
  color: #000;
  --bs-btn-bg: #fff;
  --bs-btn-border-color: #444;

  --bs-btn-hover-color: var(--brand-primary);
  --bs-btn-hover-bg: #fff;
  --bs-btn-hover-border-color: #fff;

  --bs-btn-focus-shadow-rgb: 0, 0, 0;
  --bs-btn-active-bg: #000;
  border-color: #fff;

  font-weight: 800;
}

/* Call button refinements */
.btn-call:hover {
  color: var(--brand-primary);

}

/* Contact hero call button (orange outline -> solid) */
.btn-call--contact {
  color: var(--brand-primary);
  --bs-btn-bg: transparent;
  --bs-btn-border-color: var(--brand-primary);

  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: var(--brand-primary);
  --bs-btn-hover-border-color: var(--brand-primary);

  --bs-btn-focus-shadow-rgb: 255, 153, 0;
  --bs-btn-active-bg: var(--brand-primary);
  border-color: var(--brand-primary);
}

.btn-call--contact:hover {
  color: #fff;
}

.call-icon {
  color: var(--brand-primary);
}

.btn-call:hover .call-icon {
  color: var(--brand-primary);
}

/* Button icon spacing */
.btn .fa-arrow-up-right-from-square {
  margin-left: .35rem;
  font-size: 1rem;
  line-height: 0;
  vertical-align: -1px;
}

.fleet-teaser-actions .btn {
  font-weight: 600;
}

/* Section spacing – reduced vertical rhythm */
.section-tight {
  padding-top: 1rem !important;
  padding-bottom: 2.5rem !important;
}

@media (min-width: 768px) {
  .section-tight {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
}

.section-last {
  padding-bottom: 4rem !important;
}

@media (min-width: 768px) {
  .section-last {
    padding-bottom: 5rem !important;
  }
}

@media (min-width: 768px) {
}


/* =========================
   7) Navbar
   ========================= */
.navbar {
  padding-top: 0;
  padding-bottom: 0;
}

.nav-elite {
  background: linear-gradient(90deg, #1b1c1f 0%, #232428 100%);
  border-bottom-color: rgba(255, 255, 255, 0.08) !important;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.nav-elite .navbar-brand {
  padding: .4rem 0;
}

.nav-elite .navbar-nav {
  gap: .25rem;
}

.nav-elite .navbar-nav .nav-link {
  position: relative;
  padding: .85rem 1rem;
  font-size: .92rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
}

.nav-elite .navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  left: .9rem;
  right: .9rem;
  bottom: .5rem;
  height: 2px;
  background: var(--brand-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .2s ease;
}

.nav-elite .navbar-nav .nav-link:hover,
.nav-elite .navbar-nav .nav-link:focus {
  color: #fff;
}

.nav-elite .navbar-nav .nav-link.active {
  color: #fff;
}

.nav-elite .navbar-nav .nav-link:hover::after,
.nav-elite .navbar-nav .nav-link:focus::after {
  transform: scaleX(1);
}

.nav-elite .navbar-nav .nav-link.active::after {
  transform: scaleX(1);
}

.nav-elite .dropdown-menu {
  background: #1a1b1e;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: .75rem;
  padding: .4rem;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.35);
}

.nav-elite .dropdown-item {
  color: rgba(255, 255, 255, 0.88);
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  font-size: .82rem;
  border-radius: .5rem;
  padding: .55rem .9rem;
}

.nav-elite .dropdown-item:hover,
.nav-elite .dropdown-item:focus {
  background: rgba(255, 153, 0, 0.2);
  color: #fff;
}

.nav-elite .dropdown-item.active,
.nav-elite .dropdown-item:active {
  background: rgba(255, 153, 0, 0.3);
  color: #fff;
}

@media (min-width: 1200px) {
  .nav-elite--hover .dropdown-menu {
    display: block;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
    pointer-events: none;
  }

  .nav-elite--hover .dropdown:hover .dropdown-menu,
  .nav-elite--hover .dropdown .dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }
}

@media (max-width: 1199.98px) {
  .nav-elite .navbar-nav .nav-link {
    padding: .6rem .75rem;
    letter-spacing: .04em;
  }

  .nav-elite .navbar-nav .nav-link::after {
    left: .75rem;
    right: .75rem;
  }
}

/* Navbar labels and actions: default desktop state */
.book-label-full {
  display: inline;
}

.book-label-short {
  display: none;
}

.phone-label-number {
  display: inline;
}

.phone-label-icon {
  display: none;
}

.nav-elite-actions {
  gap: .85rem;
}

.nav-more-wrap,
.nav-burger-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.nav-burger-wrap {
  margin-left: auto;
}

.nav-more-toggle,
.nav-burger-toggle {
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: .75rem;
  padding: .35rem .65rem;
  color: #fff;
  background: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  line-height: 1;
}

.nav-more-toggle:focus,
.nav-burger-toggle:focus {
  box-shadow: 0 0 0 .2rem rgba(255, 153, 0, 0.25);
}

.nav-more-toggle .nav-more-icon,
.nav-more-toggle .navbar-toggler-icon,
.nav-burger-toggle .nav-burger-icon,
.nav-burger-toggle .navbar-toggler-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.1rem;
  height: 1.1rem;
}

.nav-more-toggle .nav-more-icon .fa-bars,
.nav-burger-toggle .nav-burger-icon .fa-bars {
  font-size: .98rem;
  line-height: 1;
}

.nav-more-toggle:hover,
.nav-burger-toggle:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.35);
}

.nav-more-menu .nav-link {
  padding: .55rem .75rem;
}

.nav-more-menu .nav-link::after {
  display: none;
}

.nav-more-menu .dropdown-toggle::after {
  display: none;
}

.nav-more-menu .dropdown-toggle {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.nav-more-menu .nav-item + .nav-item {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: .35rem;
  padding-top: .35rem;
}

.nav-more-menu .dropdown-menu {
  position: static;
  display: block;
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: .15rem 0 0 .75rem;
  margin: 0;
}

.nav-more-menu .dropdown-item {
  padding: .4rem .75rem .4rem .8rem;
  font-size: .82rem;
  letter-spacing: .02em;
  text-transform: none;
  color: rgba(255, 255, 255, 0.78);
}

.nav-more-menu .dropdown-item:hover,
.nav-more-menu .dropdown-item:focus {
  background: rgba(255, 153, 0, 0.16);
  color: #fff;
}

.nav-more-menu .dropdown-item.active,
.nav-more-menu .dropdown-item:active {
  background: rgba(255, 153, 0, 0.3);
  color: #fff;
}

.nav-more-arrow {
  margin-right: .5rem;
  color: #fff;
  font-size: .8rem;
}

.nav-phone .fa-phone {
  font-size: 1rem;
  line-height: 1;
  color: var(--brand-primary);
}

.nav-phone.btn-outline-primary:hover,
.nav-phone.btn-outline-primary:focus,
.nav-phone.btn-outline-primary:active {
  background-color: var(--brand-primary);
  border-color: var(--brand-primary);
  color: #fff;
}

.nav-phone.btn-outline-primary:hover .fa-phone,
.nav-phone.btn-outline-primary:focus .fa-phone,
.nav-phone.btn-outline-primary:active .fa-phone {
  color: #fff;
}

/* ============================================================
   Navbar Responsive Matrix (validated manually)
   - 375x667 portrait
   - 414x896 portrait
   - 430x932 portrait
   - 540x720 portrait
   - 667x375 landscape
   - 740x360 landscape
   - 720x540 landscape
   - 844x390 landscape
   - 896x414 landscape
   - 829x690 landscape
   - 1024x1366 portrait/tablet
   - 1368x912 desktop
   ============================================================ */

/* Sub-xl base: labels, overflow handling, and dropdown panel baseline */
@media (max-width: 1199.98px) {
  .book-label-full {
    display: none;
  }

  .book-label-short {
    display: inline;
  }

  .phone-label-number {
    display: none;
  }

  .phone-label-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .nav-guides-item {
    display: none !important;
  }

  .nav-more-guides {
    display: block;
  }

  .nav-more-wrap .nav-more-collapse.navbar-collapse {
    position: absolute;
    top: calc(100% + .5rem);
    right: auto;
    left: 0;
    width: max-content;
    min-width: min(280px, calc(100vw - 1.25rem));
    max-width: calc(100vw - 1.25rem);
    background: #1a1b1e;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: .75rem;
    padding: .4rem;
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.35);
    z-index: 1050;
  }

  .nav-burger-wrap .nav-burger-collapse.navbar-collapse {
    position: absolute;
    top: calc(100% + .5rem);
    right: 0;
    left: auto;
    width: max-content;
    min-width: min(280px, calc(100vw - 1.25rem));
    max-width: calc(100vw - 1.25rem);
    background: #1a1b1e;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: .75rem;
    padding: .4rem;
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.35);
    z-index: 1050;
  }

  .nav-more-wrap .nav-more-menu,
  .nav-burger-wrap .navbar-nav {
    width: 100%;
  }

  /* Make the mobile burger list match the More... dropdown style */
  .nav-burger-collapse .navbar-nav .nav-link {
    padding: .55rem .75rem;
  }

  .nav-burger-collapse .navbar-nav .nav-link::after {
    display: none;
  }

  .nav-burger-collapse .navbar-nav .nav-item + .nav-item {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: .35rem;
    padding-top: .35rem;
  }

  /* Tidy: remove divider on Guides block in burger menu */
  .nav-burger-collapse .navbar-nav .nav-item.dropdown {
    border-top: 0;
    margin-top: 0;
    padding-top: 0;
  }

  /* Keep a divider between Contact and Guides after reordering */
  .nav-burger-collapse .navbar-nav > .nav-item:nth-child(4) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: .35rem;
    padding-bottom: .35rem;
  }

  .nav-burger-collapse .navbar-nav .dropdown-toggle {
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
  }

  .nav-burger-collapse .navbar-nav .dropdown-toggle::after {
    display: none;
  }

  /* Keep Guides expanded inside burger menu */
  .nav-burger-collapse .navbar-nav .dropdown-menu {
    position: static;
    display: block;
    background: transparent;
    border: 0;
    box-shadow: none;
    padding: .15rem 0 0 .75rem;
    margin: 0;
  }

  .nav-burger-collapse .navbar-nav .dropdown-item {
    padding: .4rem .75rem .4rem .8rem;
    font-size: .82rem;
    letter-spacing: .02em;
    text-transform: none;
    color: rgba(255, 255, 255, 0.78);
  }

  .nav-burger-collapse .navbar-nav .dropdown-item:hover,
  .nav-burger-collapse .navbar-nav .dropdown-item:focus {
    background: rgba(255, 153, 0, 0.16);
    color: #fff;
  }

  .nav-burger-collapse .navbar-nav .dropdown-item.active,
  .nav-burger-collapse .navbar-nav .dropdown-item:active {
    background: rgba(255, 153, 0, 0.3);
    color: #fff;
  }
}

/* Full book/phone labels for sub-xl landscape and larger tablets */
@media (max-width: 1199.98px) and (orientation: landscape),
  (min-width: 1024px) and (max-width: 1199.98px) {
  .nav-burger-wrap .nav-burger-collapse.navbar-collapse {
    right: 0;
    left: auto;
  }

  .book-label-full {
    display: inline;
  }

  .book-label-short {
    display: none;
  }

  .phone-label-number {
    display: inline;
  }

  .phone-label-icon {
    display: none;
  }
}

/* XL desktop: canonical nav ordering and full labels */
@media (min-width: 1200px) {
  .book-label-full {
    display: inline;
  }

  .book-label-short {
    display: none;
  }

  .phone-label-number {
    display: inline;
  }

  .phone-label-icon {
    display: none;
  }

  /* xl nav order: Services, Repairs, Guides, Fleet, Contact */
  .nav-elite-primary > .nav-item:nth-child(4) {
    order: 5;
  }

  .nav-elite-primary > .nav-item:nth-child(5) {
    order: 3;
  }

  .nav-elite-primary > .nav-item:nth-child(6) {
    order: 4;
  }
}

/* XL compact desktop tuning */
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .nav-elite-primary .nav-link {
    white-space: nowrap;
  }

  .nav-elite-actions {
    gap: .65rem;
    flex-wrap: nowrap;
  }

  .nav-elite-actions .btn {
    white-space: nowrap;
    padding: .42rem .68rem;
    font-size: .86rem;
  }

  .nav-elite-actions .btn-book-primary {
    justify-content: center;
  }

  .nav-phone {
    white-space: nowrap;
  }
}

/* Tablet band (md-xl): keep top row stable and actions compact */
@media (min-width: 768px) and (max-width: 1199.98px) {

  .nav-elite .container {
    flex-wrap: nowrap;
  }

  .nav-elite-primary {
    gap: .9rem;
    flex-wrap: nowrap;
  }

  .nav-elite-primary .nav-link {
    padding: .55rem .45rem;
    font-size: .78rem;
    letter-spacing: .02em;
    white-space: nowrap;
  }

  .nav-elite .navbar-brand img.brand-logo {
    height: 44px;
  }

  .nav-more-wrap {
    margin-left: .9rem;
  }

  .nav-more-wrap .navbar-collapse {
    position: absolute;
    top: calc(100% + .5rem);
    right: auto;
    left: 0;
    min-width: 272px;
    background: #1a1b1e;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: .75rem;
    padding: .5rem;
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.35);
    z-index: 1050;
  }

  .nav-guides-item {
    position: relative;
  }

  .nav-guides-toggle {
    background: transparent;
    border: 0;
    cursor: pointer;
  }

  .nav-guides-toggle:focus {
    box-shadow: 0 0 0 .2rem rgba(255, 153, 0, 0.25);
  }

  .nav-guides-collapse {
    position: absolute;
    top: calc(100% + .5rem);
    left: 0;
    min-width: 240px;
    background: #1a1b1e;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: .75rem;
    padding: .4rem;
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.35);
    z-index: 1050;
  }

  .nav-more-menu {
    gap: .2rem;
  }

  .nav-more-menu .nav-link {
    border-radius: 999px;
    font-size: .9rem;
    padding: .68rem .9rem;
  }

  .nav-more-menu .dropdown-item {
    font-size: .96rem;
    padding: .56rem .9rem .56rem .95rem;
  }

  .nav-elite-actions {
    gap: 1rem;
    flex-wrap: nowrap;
  }

  .nav-elite-actions .btn {
    white-space: nowrap;
    padding: .4rem .55rem;
    font-size: .72rem;
  }

  .nav-elite-utilities {
    flex-wrap: nowrap;
  }

  .nav-elite .navbar-toggler {
    padding: .35rem .5rem;
  }
}

@media (min-width: 768px) and (max-width: 1199.98px) and (orientation: landscape) {
  .nav-burger-wrap .nav-burger-collapse.navbar-collapse {
    right: 0;
    left: auto;
  }
}

@media (max-width: 575.98px) {
  .nav-more-label {
    display: none;
  }

  .nav-elite-actions {
    width: 100%;
    justify-content: flex-end;
    margin-top: .4rem;
    gap: .6rem;
  }

  .nav-elite-actions .btn {
    padding: .4rem .55rem;
    font-size: .74rem;
  }

  .nav-burger-wrap {
    margin-left: auto;
  }

  .nav-burger-wrap .nav-burger-collapse.navbar-collapse {
    right: 0;
    left: auto;
  }

  .nav-elite .navbar-brand img.brand-logo {
    height: 40px;
  }
}

@media (max-width: 767.98px) {
  .nav-elite .container {
    padding-top: .14rem;
    padding-bottom: .14rem;
  }

  .nav-elite .navbar-brand {
    padding: .55rem 0;
  }
}

/* Small portrait phones: single-row utility layout */
@media (max-width: 767.98px) and (orientation: portrait) {
  .nav-elite .container {
    flex-wrap: nowrap;
    align-items: center;
    column-gap: .4rem;
  }

  .nav-elite-actions {
    order: 2 !important;
    width: auto;
    margin-top: 0;
    margin-left: auto !important;
    justify-content: flex-end;
    gap: .55rem;
    flex-wrap: nowrap;
  }

  .nav-elite-actions .btn-book-primary {
    flex: 0 1 auto;
    min-width: 0;
    max-width: 10.8rem;
    padding: .4rem .55rem;
    font-size: .72rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .nav-elite-actions .nav-phone {
    flex: 0 0 auto;
    min-width: 2.35rem;
    padding: .4rem .5rem;
  }

  .nav-elite-actions .btn .fa-arrow-up-right-from-square {
    margin-left: .25rem;
    font-size: .95rem;
  }

  .nav-burger-wrap {
    order: 3 !important;
    margin-left: .25rem;
    flex: 0 0 auto;
  }

  .nav-more-label {
    display: none;
  }

  .nav-burger-toggle {
    min-width: 2.35rem;
    padding: .4rem .5rem;
    border-radius: .75rem;
    justify-content: center;
    gap: 0;
  }

  .nav-burger-toggle .nav-burger-icon,
  .nav-burger-toggle .navbar-toggler-icon {
    width: 1rem;
    height: 1rem;
  }

  .nav-burger-toggle .nav-burger-icon .fa-bars {
    font-size: .92rem;
  }

  .nav-elite .navbar-brand img.brand-logo {
    height: 38px;
  }
}

/* Small landscape phones: compact inline layout */
@media (max-width: 767.98px) and (orientation: landscape) {
  .nav-elite .container {
    flex-wrap: nowrap;
    align-items: center;
    column-gap: .45rem;
  }

  .nav-elite-actions {
    order: 2 !important;
    width: auto;
    flex: 1 1 auto;
    min-width: 0;
    margin-top: 0;
    margin-left: auto !important;
    justify-content: flex-end;
    gap: .45rem;
    flex-wrap: nowrap;
  }

  .nav-elite-actions .btn {
    padding: .36rem .5rem;
    font-size: .7rem;
    white-space: nowrap;
  }

  .nav-elite-actions .btn-book-primary {
    flex: 1 1 auto;
    min-width: 0;
    max-width: none;
    justify-content: flex-start;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .nav-elite-actions .nav-phone {
    flex: 0 0 auto;
  }

  .nav-burger-wrap {
    order: 3 !important;
    margin-left: .35rem;
    flex: 0 0 auto;
  }

  .nav-burger-wrap .nav-burger-collapse.navbar-collapse {
    right: 0;
    left: auto;
  }

  .nav-more-label {
    display: none;
  }

  .nav-burger-toggle {
    min-width: 2.25rem;
    padding: .36rem .5rem;
    border-radius: .75rem;
    justify-content: center;
    gap: 0;
  }

  .nav-burger-toggle .nav-burger-icon,
  .nav-burger-toggle .navbar-toggler-icon {
    width: .95rem;
    height: .95rem;
  }

  .nav-burger-toggle .nav-burger-icon .fa-bars {
    font-size: .88rem;
  }

  .nav-elite .navbar-brand img.brand-logo {
    height: 34px;
  }
}

/* Phone/tablet micro-tuning (specific edge viewport fixes) */
@media (max-width: 667px) and (max-height: 375px) and (orientation: landscape) {
  .nav-burger-wrap .nav-burger-collapse.navbar-collapse {
    right: 0;
    left: auto;
  }

  .nav-elite-actions .btn-book-primary {
    flex: 0 1 auto;
    max-width: 18.8rem;
    padding: .34rem .45rem .34rem .5rem;
  }
}

@media (min-width: 540px) and (max-width: 575.98px) and (orientation: portrait) {
  .book-label-full {
    display: inline;
  }

  .book-label-short {
    display: none;
  }

  .nav-elite-actions .btn-book-primary {
    max-width: 11.6rem;
    padding: .4rem .68rem .4rem .66rem;
  }
}

@media (min-width: 668px) and (max-width: 767.98px) and (min-height: 391px) and (orientation: landscape) {
  .nav-elite-actions .btn-book-primary {
    flex: 0 1 auto;
    max-width: 19.8rem;
    padding: .36rem .52rem .36rem .54rem;
  }
}

@media (min-width: 668px) and (max-width: 767.98px) and (max-height: 390px) and (orientation: landscape) {
  .nav-elite-actions .btn-book-primary {
    flex: 0 1 auto;
    max-width: 20rem;
    padding: .35rem .5rem .35rem .52rem;
  }
}

@media (min-width: 768px) and (max-width: 1199.98px) and (max-height: 430px) and (orientation: landscape) {
  .nav-burger-wrap .nav-burger-collapse.navbar-collapse {
    right: 0;
    left: auto;
  }

  .nav-burger-wrap {
    margin-right: .45rem;
  }

  .nav-elite-actions {
    gap: .65rem;
  }
}

/* 829x690 class landscape tuning */
@media (min-width: 800px) and (max-width: 900px) and (max-height: 390px) and (orientation: landscape) {
  .phone-label-number {
    display: none;
  }

  .phone-label-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
}

@media (min-width: 800px) and (max-width: 900px) and (min-height: 600px) and (max-height: 760px) and (orientation: landscape) {
  .book-label-full {
    display: none;
  }

  .book-label-short {
    display: inline;
  }

  .phone-label-number {
    display: none;
  }

  .phone-label-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
}

/* Placeholder helper */
.brand-logo {
  width: 200px;
  height: 100px;
  object-fit: contain;
}

.navbar-brand img.brand-logo {
  height: 60px;
  width: auto;
  object-fit: contain;
}

/* Any sticky content should sit below the sticky navbar */
.sticky-top{ z-index: 1035; }

/* =========================
   8) Components
   ========================= */

/* =========================
   Homepage – Trust band (full-width)
   ========================= */

.trust-band {
  padding: 2.25rem 0;
  background: #111;
  color: #fff;
}

@media (min-width: 768px) {
  .trust-band {
    padding: 2.75rem 0;
  }
}

.trust-item {
  padding: 1rem 1rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.10);
}

.trust-item .fw-bolder {
  color: #000;
}

.trust-item .text-muted {
  color: rgba(86, 86, 86, 0.75) !important;
}

.trust-band .trust-icon {
  font-size: 1.5rem;
  color: var(--brand-primary);
}

/* =========================
   Homepage – service entry cards
   ========================= */

.home-service-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 18px;
  box-shadow: var(--card-shadow-a);
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
}

.home-service-card:hover {
  box-shadow:
    0 0 0 .2rem rgba(var(--brand-primary-rgb), .14),
    0 10px 26px rgba(0, 0, 0, .08);
}

.home-service-top {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.home-service-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 153, 0, 0.15);
  color: #111;
  flex: 0 0 52px;
  font-size: 1.35rem;
}

.home-service-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .75rem;
  margin: 0 0 1.1rem 0;
}

.home-meta-item {
  background: rgba(0, 0, 0, 0.03);
  border-radius: 14px;
  padding: .75rem .8rem;
}

.home-meta-item dt {
  font-size: .82rem;
  color: rgba(17, 17, 17, 0.65);
  font-weight: 600;
  margin-bottom: .15rem;
}

.home-meta-item dd {
  margin: 0;
  font-weight: 900;
  color: #111;
  line-height: 1.1;
}

.home-service-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  margin-top: auto;
  align-items: stretch;
}


.home-service-actions .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-height: 44px;
  padding: 0.55rem 0.95rem;
  line-height: 1;
  border-radius: 12px;
  white-space: nowrap;
}

.home-service-note {
  margin-top: 0.9rem;
  font-size: .95rem;
  color: rgba(17, 17, 17, 0.72);
}

/* Mobile tightening */
@media (max-width: 575.98px) {
  .home-service-card {
    padding: 1.05rem;
  }

  .home-service-meta {
    grid-template-columns: 1fr;
  }
}


/* =========================
   Fleet teaser – standard
   ========================= */

.fleet-teaser {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 18px;
  box-shadow: var(--card-shadow-a);
  padding: 1.25rem;

  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
}

.fleet-teaser-main {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  max-width: 70ch;
}

.fleet-teaser-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 153, 0, 0.15);
  color: #111;
  flex: 0 0 48px;
  font-size: 1.25rem;
}

.fleet-teaser-actions {
  flex-shrink: 0;
}

/* =========================
   Homepage – pass/fail reassurance block
   ========================= */

.home-reassurance {
  background: #fffaf3;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 18px;
  box-shadow: var(--card-shadow-a);
  padding: 1.25rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1rem;
}

@media (min-width: 992px) {
  .home-reassurance {
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 1.25rem;
    padding: 1.5rem;
  }
}

.home-reassurance-body {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
}

.home-reassurance-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 153, 0, 0.15);
  color: #111;
  flex: 0 0 52px;
  font-size: 1.35rem;
}

.home-reassurance-aside {
  background: transparent;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  padding: 1rem;
}

.home-reassurance-aside-title {
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
  color: rgba(17, 17, 17, 0.7);
  margin-bottom: 0.75rem;
}


/* Decision ladder */
.drive-status{
  display: grid;
  gap: 1rem;
}

.drive-status-item{
  display: grid;
  grid-template-columns: 2.25rem 1fr auto;
  gap: .9rem;
  align-items: start;

  padding: 1.25rem 1.25rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: rgba(255, 255, 255, 0.92);
}

.drive-status-title{
  font-size: 1rem;
  line-height: 1.45;
  margin-bottom: .15rem;
}

.drive-status-desc{
  color: var(--text-muted, #6c757d);
  font-size: .95rem;
  line-height: 1.35;
}

.drive-status-note{
  margin-top: .4rem;
  font-size: .95rem;
  line-height: 1.4;
  color: var(--text-muted, #6c757d);
}

.drive-status-icon{
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;

  background: rgba(0, 0, 0, 0.04);
  color: #111;
  margin-top: .05rem;
}

.drive-status-tag{
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .02em;
  text-transform: uppercase;

  padding: .35rem .6rem;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: rgba(0, 0, 0, 0.03);
  color: #111;
  white-space: nowrap;
}

/* Severity styling */
.drive-status-item.is-ok{ border-left: 4px solid rgba(25, 135, 84, 0.55); }
.drive-status-item.is-ok .drive-status-icon{ background: rgba(25, 135, 84, 0.10); color: rgb(25, 135, 84); }
.drive-status-item.is-ok .drive-status-tag{ border-color: rgba(25, 135, 84, 0.28); background: rgba(25, 135, 84, 0.08); }

.drive-status-item.is-minor{ border-left: 4px solid rgba(108, 117, 125, 0.45); }
.drive-status-item.is-minor .drive-status-icon{ background: rgba(108, 117, 125, 0.10); color: #111; }
.drive-status-item.is-minor .drive-status-tag{ border-color: rgba(108, 117, 125, 0.22); background: rgba(108, 117, 125, 0.06); }

.drive-status-item.is-major{ border-left: 4px solid rgba(255, 193, 7, 0.70); }
.drive-status-item.is-major .drive-status-icon{ background: rgba(255, 193, 7, 0.16); color: rgb(214, 153, 0); }
.drive-status-item.is-major .drive-status-tag{ border-color: rgba(255, 193, 7, 0.40); background: rgba(255, 193, 7, 0.12); }

.drive-status-item.is-danger{
  border-left: 4px solid rgba(220, 53, 69, 0.90);
  border-color: rgba(220, 53, 69, 0.22);
  background: rgba(220, 53, 69, 0.06);
  box-shadow: var(--shadow-sm);
}
.drive-status-item.is-danger .drive-status-icon{ background: rgba(220, 53, 69, 0.14); color: rgb(220, 53, 69); }
.drive-status-item.is-danger .drive-status-tag{ border-color: rgba(220, 53, 69, 0.34); background: rgba(220, 53, 69, 0.10); }

@media (min-width: 992px){
  .drive-status-item{
    min-height: 96px;
  }
}

/* Right column: decision ladder (sticky on desktop) */
.drive-split-right{
  position: sticky;
  top: 5.25rem; /* below sticky nav */
}

/* Responsive: stack + disable sticky */
@media (max-width: 991.98px){

  .drive-split-right{
    position: static;
  }
}

@media (max-width: 575.98px){
  .drive-status-item{
    grid-template-columns: 2.25rem 1fr;
  }
  .drive-status-tag{
    grid-column: 2;
    justify-self: start;
    margin-top: .5rem;
  }
}


/* Pass/Fail — Advisories */
.advisories-grid{
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 1.5rem;
  align-items: start;
}

.advisories-guidance{
  display: grid;
  gap: .9rem;
}

.advisories-rule{
  padding: 1.1rem 1.15rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: rgba(0, 0, 0, 0.02);
}

.advisories-rule-title{
  font-weight: 800;
  margin-bottom: .35rem;
}

.advisories-rule-text{
  color: var(--text-muted, #6c757d);
  font-size: 1rem;
  line-height: 1.45;
}

.advisories-rule-approach{
  border-style: dashed;
  background: rgba(0, 0, 0, 0.015);
}

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

.advisories-item{
  display: grid;
  grid-template-columns: .75rem 1fr;
  gap: .65rem;
  align-items: start;
  padding: .65rem 0;
}

.advisories-item + .advisories-item{
  border-top: 1px dotted rgba(108, 117, 125, 0.45);
}

.advisories-dot{
  width: .55rem;
  height: .55rem;
  border-radius: 999px;
  margin-top: .5rem;
  align-self: start;
  background: rgba(var(--brand-primary-rgb), .9);
}

@media (max-width: 991.98px){
  .advisories-grid{
    grid-template-columns: 1fr;
  }
}

@media (max-width: 991.98px){
}

/* Thin card (lightweight, used on info pages) */
.thin-card{
  background: var(--surface);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: var(--shadow-sm);
  font-size: 1.05rem;
  line-height: 1.55;
}

/* Glass effect for legal pages (privacy/warranty) */
.toc-page .thin-card{
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
}

.toc-page .thin-card p + p,
.toc-page .thin-card li + li{
  margin-top: 0.55rem;
}

.toc-page .services-page section{
  background: rgba(255, 255, 255, 0.38);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 1.5rem;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(10px) saturate(120%);
  -webkit-backdrop-filter: blur(10px) saturate(120%);
  padding-left: 1.1rem;
  padding-right: 1.1rem;
  padding-top: var(--content-section-pad-y);
  padding-bottom: var(--content-section-pad-y);
}

.toc-page .services-page section + section{
  margin-top: 2rem;
}

/* Tighten legal page card spacing (privacy + warranty) */
.legal-page .services-page section{
  padding-top: 1.6rem;
  padding-bottom: 1.6rem;
}

.legal-page .services-page section + section{
  margin-top: 2rem;
}

.warranty-contact-card{
  display: flex;
  gap: 0.85rem;
  padding: 1rem 1.1rem;
  border-radius: 1rem;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: #f5f2ec;
  box-shadow: 0 12px 22px rgba(0, 0, 0, 0.08);
}

.warranty-contact-card-icon{
  width: 2.4rem;
  height: 2.4rem;
  flex: 0 0 2.4rem;
  border-radius: 0.85rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #111;
  color: #fff;
  font-size: 0.95rem;
}

.warranty-contact-card-title{
  font-weight: 700;
  margin-bottom: 0.2rem;
}

.warranty-contact-card-text{
  font-size: 0.92rem;
  color: rgba(17, 17, 17, 0.72);
}

.warranty-contact-card-text a{
  color: #111;
  text-decoration: none;
  font-weight: 600;
}

.warranty-contact-card-actions{
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.65rem;
}

@media (max-width: 767.98px){
  .warranty-contact-card{
    flex-direction: column;
    align-items: flex-start;
  }
}

.warranty-cta{
  padding: 1.6rem 1.75rem;
}

@media (min-width: 768px){
  .warranty-cta{
    padding: 1.9rem 2.1rem;
  }
}

.warranty-cta-section{
  position: relative;
  border-radius: 1.5rem;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(247, 244, 239, 0.98));
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.12);
  overflow: hidden;
}

.toc-page .services-page section.warranty-cta-section{
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(247, 244, 239, 0.98));
  border-color: rgba(0, 0, 0, 0.08);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.12);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  padding: 0;
}

.warranty-cta-section::before{
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 15% 0%, rgba(var(--brand-primary-rgb), 0.12), transparent 55%);
  pointer-events: none;
}

.mot-guides-cta{
  border-color: rgba(0, 0, 0, 0.12);
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.98), rgba(241, 236, 226, 0.98));
  margin-top: 4rem;
}

.mot-guides-cta::before{
  background: radial-gradient(circle at 12% 10%, rgba(var(--brand-primary-rgb), 0.18), transparent 55%);
}

.mot-guides-cta::after{
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 85% 80%, rgba(0, 0, 0, 0.06), transparent 45%);
  pointer-events: none;
}

.mot-guides-eyebrow{
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  font-weight: 700;
  color: rgba(0, 0, 0, 0.55);
  margin-bottom: 0.35rem;
}

.mot-guides-cta .mot-guides-lead{
  color: rgba(0, 0, 0, 0.7);
  font-weight: 500;
  max-width: 36rem;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.mot-guides-grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
}

.mot-guide-card{
  background: rgba(255, 255, 255, 0.62);
  border-radius: 1.2rem;
  padding: 1.4rem;
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.mot-guide-card-link{
  text-decoration: none;
  color: inherit;
}

.mot-guide-card-link:hover{
  text-decoration: none;
  color: inherit;
}

.mot-guide-card-body{
  flex: 1;
}

.mot-guide-card-title{
  font-size: 1rem;
  line-height: 1.2;
  font-weight: 700;
  color: #111;
}

.mot-guide-card-text{
  font-size: 1rem;
  font-weight: 400;
  color: #4f4b44;
}

.mot-guide-card-text a{
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.mot-guide-card-icon{
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  border-radius: 0.9rem;
  background: #111;
  color: #fff;
  font-size: 1.3rem;
  flex: 0 0 auto;
}

@media (max-width: 991.98px){
  .mot-guides-grid{
    grid-template-columns: 1fr;
  }

  .mot-guide-card{
    padding: 1.2rem 1.25rem;
  }
}

@media (max-width: 575.98px){
  .mot-guides-cta{
    margin-top: 2.25rem;
  }

  .mot-guides-eyebrow{
    margin-bottom: 0.2rem;
  }

  .mot-guides-grid{
    gap: 0.75rem;
  }

  .mot-guide-card{
    padding: 0.9rem 1rem;
    border-radius: 1rem;
    gap: 0.75rem;
    box-shadow: 0 10px 18px rgba(0, 0, 0, 0.08);
  }

  .mot-guide-card-icon{
    width: 2.4rem;
    height: 2.4rem;
    border-radius: 0.75rem;
    font-size: 1.05rem;
  }

  .mot-guide-card-text{
    font-size: 0.95rem;
  }
}

.warranty-cta > *,
.warranty-cta-section > *{
  position: relative;
  z-index: 1;
}

.warranty-cta .btn-book-primary{
  min-width: 180px;
}

@media (max-width: 991.98px){
  .warranty-cta .btn-book-primary{
    width: 100%;
  }
}

@media (max-width: 767.98px){
  .toc-page .services-page section{
    padding-left: 0.85rem;
    padding-right: 0.85rem;
  }

  .legal-page .services-page section{
    padding-top: 1.2rem;
    padding-bottom: 1.2rem;
  }
}

/* =========================
   Homepage – MOT fail driving clarification (merged)
   ========================= */

.fail-drive-note {
  margin-top: 1rem;
  padding-top: 0.9rem;
  border-top: 1px dashed rgba(0, 0, 0, 0.15);
}

.fail-drive-note p {
  margin: 0.35rem 0 0.4rem 0;
  color: rgba(17, 17, 17, 0.75);
}

.fail-drive-link {
  font-weight: 600;
  text-decoration: none;
}

.fail-drive-link:hover {
  text-decoration: underline;
}

/* =========================
   What the MOT Covers – What the MOT covers (grouped accordions)
   ========================= */

/* What the MOT Covers – reusable dot list */
.mot-list{
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.mot-list li{
  position: relative;
  padding-left: 1.1rem;
  margin-bottom: .5rem;
}

.mot-list li:last-child{
  margin-bottom: 0;
}

.mot-list li::before{
  content: "";
  width: .45rem;
  height: .45rem;
  border-radius: 50%;
  background: rgba(var(--brand-primary-rgb), .9);
  position: absolute;
  left: 0;
  top: .55rem;
}

.mot-group-card{
  box-shadow: 0 .25rem 1rem rgba(0,0,0,.04);
}

.mot-group-icon{
  width: 2.75rem;
  height: 2.75rem;
  border-radius: .9rem;
  background: rgb(255 153 0 / 84%);

  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 2.75rem;
}

.mot-group-icon i{
  font-size: 1.1rem;
  color: #fff;
}

/* =========================
   What the MOT Covers – section themes
   ========================= */

.mot-section{
  position: relative;
}

@media (min-width: 768px){
}

/* Optional: keep heights aligned on desktop for a cleaner comparison */
@media (min-width: 768px){
}

.mot-compare-label{
  font-size: .85rem;
  font-weight: 700;
  color: rgba(0,0,0,.55);
  text-transform: uppercase;
  letter-spacing: .02em;
}

/* =========================
   What the MOT Covers – MOT vs Servicing comparison grid
   ========================= */

.mot-compare-grid{
  box-shadow: 0 .25rem 1rem rgba(0,0,0,.03);
}

.mot-compare-cards{
  display: none;
}

.mot-compare-card{
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 1.25rem;
  background: #fff;
  box-shadow: 0 .25rem 1rem rgba(0,0,0,.03);
  padding: 1rem 1.1rem;
}

.mot-compare-card__head{
  padding-bottom: .75rem;
  margin-bottom: .75rem;
  border-bottom: 1px solid rgba(0,0,0,.08);
}

.mot-compare-list{
  margin: 0;
  display: grid;
  gap: .6rem;
}

.mot-compare-item{
  margin: 0;
  display: grid;
  gap: .2rem;
}

.mot-compare-item dt{
  font-size: .78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .02em;
  color: rgba(0,0,0,.55);
  margin: 0;
}

.mot-compare-item dd{
  margin: 0;
  color: rgba(0,0,0,.85);
}

/* Header */
.mot-compare-head{
  display: grid;
  grid-template-columns: 6.5rem 1fr 1fr;
  gap: 0;
  padding: 1.25rem 1.25rem 1rem;
  border-bottom: 1px solid rgba(0,0,0,.08);
  background: rgba(0,0,0,.015);
}

/* What the MOT Covers – comparison header: stack title, pill, sub */
.mot-compare-head__col{
  display: grid;
  grid-template-rows: auto auto auto;
  align-content: start;
  gap: .25rem;
}

.mot-compare-title{
  margin: 0;
}

.mot-compare-sub{
  margin-top: .1rem;      /* subtle breathing room */
}

@media (max-width: 767.98px){
  .mot-compare-head__col{
    gap: .35rem;
  }
}

.mot-compare-title{
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 1.1;
}

.mot-compare-sub{
  margin-top: .05rem;
  font-size: .95rem;
  line-height: 1.35;
}

/* Rows */
.mot-compare-row2{
  display: grid;
  grid-template-columns: 6.5rem 1fr 1fr;
  gap: 0;
  padding: .95rem 1.25rem;
  border-top: 1px solid rgba(0,0,0,.08);
}

/* Alternating row tint */
.mot-compare-row2:nth-child(even){
  background: rgba(0,0,0,.012);
}

/* Hover highlights the entire row (both columns) */
.mot-compare-row2:hover{
  background: rgba(var(--brand-primary-rgb), .06);
}

/* MOT vs Servicing: bottom summary row */
.mot-compare-row2--summary{
  background: rgba(var(--brand-primary-rgb), .04);
}

.mot-compare-row2--summary:hover{
  background: rgba(var(--brand-primary-rgb), .07);
}

/* Small tag styling (not a pill in the header) */
.mot-compare-tag{
  display: inline-flex;
  align-items: center;
  padding: .2rem .55rem;
  border-radius: 999px;
  font-size: .85rem;
  font-weight: 600;
  background: rgba(var(--brand-primary-rgb), .08);
  border: 1px solid rgba(var(--brand-primary-rgb), .18);
  color: rgba(0,0,0,.75);
  white-space: nowrap;
}

/* Label vs value distinction */
.mot-compare-label{
  font-size: .82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .02em;
  color: rgba(0,0,0,.55);
  padding-right: .35rem; /* tighter than before */
}

.mot-compare-cell{
  color: rgba(0,0,0,.85);
  padding-left: .35rem; /* reduce whitespace between label and value */
}

/* Column separator (subtle) */
.mot-compare-cell:nth-child(3){
  border-left: 1px solid rgba(0,0,0,.06);
}

/* Responsive */
@media (max-width: 767.98px){
  .mot-compare-grid{
    display: none;
  }

  .mot-compare-cards{
    display: grid;
    gap: .85rem;
  }

  .mot-compare-head,
  .mot-compare-row2{
    grid-template-columns: 1fr;
  }

  .mot-compare-head{
    gap: .75rem;
  }

  .mot-compare-head__spacer{
    display: none;
  }

  .mot-compare-cell{
    padding-left: 0;
  }

  .mot-compare-cell:nth-child(3){
    border-left: 0;
    padding-top: .5rem;
  }

  .mot-compare-label{
    margin-bottom: .25rem;
  }
}

/* Typography inside dark section */
.mot-section--dark .text-muted{
  color: rgba(255,255,255,.80) !important;
}

.mot-section--dark .mot-section-intro{
  color: rgba(255,255,255,.85) !important;
}

/* Cards inside dark section */
.mot-section--dark .border{
  border-color: rgba(255,255,255,.12) !important;
}

.mot-section--dark .bg-white{
  background: rgba(255,255,255,.06) !important;
  color: #fff;
}

/* Dot list inside dark section */
.mot-section--dark .mot-list li{
  color: rgba(255,255,255,.90);
}

.mot-section--dark .mot-list li::before{
  background: rgba(var(--brand-primary-rgb), .85);
}

/* Note component inside dark section */
.mot-section--dark .mot-note{
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.12);
  box-shadow: none;
}

.mot-section--dark .mot-note__text{
  color: rgba(255,255,255,.78);
}

.mot-section--dark .mot-note__icon{
  background: linear-gradient(180deg, rgba(255,255,255,.12) 0%, rgba(255,255,255,.06) 100%);
}

.mot-section--dark .mot-note__icon i{
  color: rgba(255,255,255,.85);
}

.mot-key-card{
  box-shadow: 0 .25rem 1rem rgba(0,0,0,.03);
}

/* Remove Bootstrap “blue” accordion styling */
.mot-accordion{
  --bs-accordion-btn-color: #111;
  --bs-accordion-active-color: #111;
  --bs-accordion-btn-bg: #fff;
  --bs-accordion-active-bg: rgba(0,0,0,.02);
  --bs-accordion-border-color: rgba(0,0,0,.12);
  --bs-accordion-btn-focus-border-color: rgba(var(--brand-primary-rgb), .35);
  --bs-accordion-btn-focus-box-shadow: 0 0 0 .2rem rgba(var(--brand-primary-rgb), .18);
}

/* Keep buttons “brand neutral” */
.mot-accordion .accordion-button{
  box-shadow: none;
}

/* Subtle hover affordance using brand orange */
.mot-accordion .accordion-button:hover{
  background: rgba(var(--brand-primary-rgb), .06);
  color: #111;
}

/* MOT accordion hover state – unified orange language */
.mot-accordion .accordion-item{
  border-color: rgba(0,0,0,.12);
}


/* Bullet styling: override your global square bullets */
.mot-accordion .accordion-body ul{
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.mot-accordion .accordion-body li{
  position: relative;
  padding-left: 1.1rem;
  margin-bottom: .5rem;
}

.mot-accordion .accordion-body li:last-child{
  margin-bottom: 0;
}

/* Brand dot bullet */
.mot-accordion .accordion-body li::before{
  content: "";
  width: .45rem;
  height: .45rem;
  border-radius: 50%;
  background: rgba(var(--brand-primary-rgb), .9);

  position: absolute;
  left: 0;
  top: .55rem;
}

/* =========================
   What the MOT Covers – Note component
   ========================= */

.mot-note{
  display: flex;
  gap: 1rem;
  align-items: flex-start;

  padding: 1rem 1.25rem;
  border-radius: 1.25rem;

  background: rgba(0,0,0,.02);
  border: 1px solid rgba(0,0,0,.10);

  box-shadow: 0 .25rem 1rem rgba(0,0,0,.03);
}

/* What the MOT Covers – Note icon (neutral variant) */
.mot-note__icon{
  width: 2.75rem;
  height: 2.75rem;
  flex: 0 0 2.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 1rem;
  background: linear-gradient(
    180deg,
    #ffffff 0%,
    #f2f3f4 100%
  );
}

.mot-note__icon i{
  font-size: 1.1rem;
  line-height: 1;
  color: #555;
}

.mot-cover-notes{
  display: grid;
  gap: 1rem;
}

.toc-page .mot-note__link,
.services-page .mot-note__link{
  text-decoration: none;
  font-weight: 600;
}

.toc-page .mot-note__link:hover,
.toc-page .mot-note__link:focus,
.services-page .mot-note__link:hover,
.services-page .mot-note__link:focus{
  color: #000;
  text-decoration: underline;
  text-decoration-thickness: .08em;
  text-underline-offset: calc(.18em + 2px);
}



@media (max-width: 575.98px){
  .mot-note{
    padding: .9rem 1rem;
    gap: .85rem;
  }

  .mot-note__icon{
    width: 2rem;
    height: 2rem;
    flex: 0 0 2rem;
  }
}

/* What the MOT Covers – section intro (standfirst) */
.mot-section-intro{
  font-size: 1.1rem;
  line-height: 1.65;
  color: rgba(0,0,0,.72); /* slightly richer than Bootstrap text-muted */
}

@media (max-width: 575.98px){
  .mot-section-intro{
    font-size: 1.05rem;
  }
}

/* =========================
   What the MOT Covers – bottom CTA
   ========================= */

.mot-cta-card{
  box-shadow: 0 .25rem 1rem rgba(0,0,0,.03);
}

.mot-cta-inner{
  background:
    linear-gradient(
      180deg,
      rgba(var(--brand-primary-rgb), .06) 0%,
      rgba(var(--brand-primary-rgb), .02) 100%
    );
}

.mot-cta-grid{
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.25rem;
  align-items: center;
}

@media (min-width: 992px){
  .mot-cta-grid{
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 2rem;
  }
}

.mot-cta-eyebrow{
  font-size: .78rem;
  letter-spacing: .08em;
  font-weight: 800;
  color: rgba(0,0,0,.55);
  margin-bottom: .5rem;
}

.mot-cta-actions{
  display: grid;
  gap: .75rem;
}

.mot-cta-actions .btn-cta-contact{
  background: #fff;
  border-color: #fff;
  color: #0a0a0a;
}

.mot-cta-actions .btn-cta-contact:hover,
.mot-cta-actions .btn-cta-contact:focus{
  background: #fff;
  border-color: #fff;
  color: var(--brand-primary);
}

/* =========================
   9) Services page
   ========================= */

/* Mobile dropdown nav */
.sticky-mobile-nav-wrap--sticky{
  width: 100%;
  background: var(--brand-primary);
  border-radius: 0;
  padding: 0;
  transition: opacity 0.2s ease, transform 0.2s ease;
  position: fixed;
  top: calc(var(--scroll-mt) - 72px);
  left: 0;
  right: 0;
  z-index: 1034;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
}

.sticky-mobile-nav-wrap--sticky.is-visible{
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.jump-to-service-inline{
  width: 100%;
}

.jump-to-service-inline .jump-to-service-btn{
  font-size: 1.15rem;
}

.sticky-mobile-nav{
  background: transparent;
}

.sticky-mobile-nav .dropdown{
  width: 100%;
}

.sticky-mobile-nav .dropdown-menu{
  display: block;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform-origin: top center;
  will-change: opacity, transform;
  backface-visibility: hidden;
}

.sticky-mobile-nav .dropdown-menu{
  transform: translate3d(0, -4px, 0);
  transition:
    opacity .18s ease,
    transform .24s cubic-bezier(.16, 1, .3, 1),
    visibility 0s linear .24s;
}

.sticky-mobile-nav .dropdown-menu.show{
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.sticky-mobile-nav .dropdown-menu .dropdown-item{
  transition:
    background-color .15s ease,
    color .15s ease;
}

.sticky-mobile-nav .dropdown-menu.show{
  transform: translate3d(0, 0, 0);
  transition:
    opacity .18s ease,
    transform .24s cubic-bezier(.16, 1, .3, 1),
    visibility 0s linear 0s;
}

.sticky-mobile-nav .dropdown-menu{
  margin-top: -1px;
  border-top: 0;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  border-color: rgba(17, 17, 17, 0.08);
  background: rgba(255, 255, 255, 0.98);
  /* Covers mobile sub-pixel seams between the sticky bar and menu while scrolling. */
  box-shadow:
    0 -2px 0 0 var(--bs-dropdown-bg, #fff),
    0 12px 22px rgba(0, 0, 0, 0.08);
  max-height: 60vh;
  overflow-y: auto;
}

.jump-to-service-btn{
  --bs-btn-color: #fff;
  --bs-btn-bg: var(--brand-primary);
  --bs-btn-border-color: var(--brand-primary);
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: var(--brand-primary);
  --bs-btn-hover-border-color: var(--brand-primary);
  --bs-btn-focus-shadow-rgb: 255, 153, 0;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: var(--brand-primary);
  --bs-btn-active-border-color: var(--brand-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .35rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  border-radius: 0.85rem !important;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
  background: var(--brand-primary);
  border-color: var(--brand-primary);
  color: #fff;
  text-align: center;
  transition: background-color .2s ease, border-color .2s ease, color .2s ease, box-shadow .2s ease;
}

.jump-to-service-btn.dropdown-toggle::after{
  display: none;
}

.jump-to-service-btn-icon{
  transition: transform .28s cubic-bezier(.16, 1, .3, 1), opacity .2s ease;
  transform-origin: center;
}

.jump-to-service-btn[aria-expanded="true"] .jump-to-service-btn-icon{
  transform: rotate(180deg) translateY(1px) scale(1.03);
}

.jump-to-service-btn:hover,
.jump-to-service-btn:focus,
.jump-to-service-btn:active,
.jump-to-service-btn.show,
.show > .jump-to-service-btn.dropdown-toggle{
  background: var(--brand-primary);
  border-color: var(--brand-primary);
  color: #fff;
}

@media (prefers-reduced-motion: reduce){
  .jump-to-service-btn,
  .jump-to-service-btn-icon,
  .sticky-mobile-nav .dropdown-menu,
  .sticky-mobile-nav .dropdown-menu .dropdown-item{
    transition: none;
  }
}

.jump-to-service-btn--sticky{
  border-radius: 0 !important;
  box-shadow: none;
  border: 0;
  background: transparent;
  color: #fff;
  min-height: 2.5rem;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.01em;
  justify-content: space-between;
  padding: 0.25rem 0.95rem;
}

.sticky-mobile-nav .dropdown-toggle{
  width: 100%;
}

.sticky-mobile-nav{
  border-bottom: 0 !important;
}

.sticky-mobile-nav .dropdown-menu .dropdown-item{
  position: relative;
  padding: 0.58rem 0.95rem 0.58rem 1.05rem;
  color: rgba(17, 17, 17, 0.86);
  font-weight: 500;
  font-size: 0.98rem;
  line-height: 1.2;
  border-bottom: 1px solid rgba(17, 17, 17, 0.05);
}

.sticky-mobile-nav .dropdown-menu li:last-child .dropdown-item{
  border-bottom: 0;
}

.sticky-mobile-nav .dropdown-menu .dropdown-item::before{
  content: "";
  position: absolute;
  left: 0.5rem;
  top: 50%;
  transform: translateY(-50%);
  width: 0.28rem;
  height: 0.28rem;
  border-radius: 999px;
  background: rgba(17, 17, 17, 0.2);
}

.sticky-mobile-nav .jump-to-service-btn--sticky .jump-to-service-btn-icon{
  font-size: 0.9rem;
}

.sticky-mobile-nav .dropdown-menu .dropdown-item:hover,
.sticky-mobile-nav .dropdown-menu .dropdown-item:focus{
  background: rgba(17, 17, 17, 0.03);
  color: #111;
}

.sticky-mobile-nav .dropdown-menu .dropdown-item.active,
.sticky-mobile-nav .dropdown-menu .dropdown-item:active{
  background: rgba(var(--brand-primary-rgb), 0.08);
  color: #111;
}

.sticky-mobile-nav .dropdown-menu .dropdown-item.active::before,
.sticky-mobile-nav .dropdown-menu .dropdown-item:active::before{
  background: rgba(var(--brand-primary-rgb), 1);
}

.services-hero .jump-to-service-inline .jump-to-service-btn{
  background: var(--brand-primary);
  border-color: var(--brand-primary);
  color: #fff;
}

.services-hero .jump-to-service-inline .jump-to-service-btn:hover,
.services-hero .jump-to-service-inline .jump-to-service-btn:focus,
.services-hero .jump-to-service-inline .jump-to-service-btn:active,
.services-hero .jump-to-service-inline .jump-to-service-btn.show,
.services-hero .show > .jump-to-service-btn.dropdown-toggle{
  background: var(--brand-primary);
  border-color: var(--brand-primary);
  color: #fff;
}

.sticky-mobile-nav .jump-to-service-btn--sticky{
  color: #fff;
}

.sticky-mobile-nav .jump-to-service-btn--sticky,
.sticky-mobile-nav .jump-to-service-btn--sticky:hover,
.sticky-mobile-nav .jump-to-service-btn--sticky:focus,
.sticky-mobile-nav .jump-to-service-btn--sticky:active,
.sticky-mobile-nav .jump-to-service-btn--sticky.show,
.sticky-mobile-nav .show > .jump-to-service-btn--sticky.dropdown-toggle{
  background: transparent;
  color: #fff;
}

/* Sidebar */
.service-sidebar {
  position: sticky;
  top: var(--scroll-mt);
  max-height: calc(100dvh - var(--scroll-mt));
}

.service-sidebar .nav-link {
  color: #3a3a3a;
}

.service-sidebar .nav-link.active {
  color: var(--brand-primary);
  background: rgba(255, 153, 0, .08);
  border-radius: .5rem;
  font-weight: 600;
}

@media (max-width: 991.98px){
  .service-sidebar {
    position: static;
    max-height: none;
  }
}

/* Services cards: Crisp */
.service-card {
  background: var(--card-bg);
  border-radius: var(--card-radius);
  color: var(--ink);
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, .08);
  box-shadow: var(--card-shadow-a);
  font-size: 1.05rem;
  line-height: 1.55;
}

.service-card:hover {
  box-shadow:
    0 0 0 .2rem rgba(var(--brand-primary-rgb), .18),
    0 10px 26px rgba(0, 0, 0, .08);
}
/* =========================
   Pass/Fail page – hover control (only fault categories hover)
   ========================= */

/* In the Pass vs Fail section, keep most cards static */
#pass-fail .service-card:hover{
  box-shadow: var(--card-shadow-a);
}

/* Re-enable hover only where we explicitly opt in */
#pass-fail .service-card.pf-hover:hover{
  box-shadow:
    0 0 0 .2rem rgba(var(--brand-primary-rgb), .18),
    0 10px 26px rgba(0, 0, 0, .08);
}

/* Repairs page: keep cards static */
.repairs-page .service-card:hover{
  box-shadow: var(--card-shadow-a);
}

/* Fault category cards: slightly smaller icon than the default 52px */
#pass-fail .fault-category .home-reassurance-icon{
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  border-radius: 14px;
  font-size: 1.1rem;
}


.service-card .card-body {
  padding: 1.25rem;
}

.service-card .card-text,
.service-card li {
  color: rgba(17, 17, 17, .78);
}

/* Service details: two-column layout */
.service-details-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 400px);
  gap: 2rem;
  align-items: start;
}

@media (max-width: 991.98px) {
  .service-details-grid {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 992px) {
  .service-details-grid {
    grid-template-columns: minmax(0, 52ch) minmax(0, 420px);
    gap: 2.5rem;
  }
}

.service-details h4 {
  letter-spacing: normal;
  color: rgba(17, 17, 17, .9);
}

.service-includes-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, .08);
  border-radius: 18px;
  padding: 1.1rem 1.1rem;
  box-shadow: 0 10px 26px rgba(0, 0, 0, .06);
}

@media (min-width: 992px) {
  .service-includes-card {
    position: relative;
  }

  .service-includes-card::before {
    content: "";
    position: absolute;
    left: -1.25rem;
    top: .5rem;
    bottom: .5rem;
    width: 1px;
    background: rgba(0, 0, 0, .08);
  }
}

@media (max-width: 1024px) {
  .services-page .service-includes-card::before {
    display: none;
  }
}

/* =========================
   Pass/Fail – severity icon colours
   ========================= */

/* "If your vehicle fails" header icon: neutral grey (header, not severity) */
#pass-fail .row.g-4 > .col-lg-6:nth-child(2) > .service-card > .d-flex > .home-reassurance-icon{
  background: rgba(0, 0, 0, 0.06) !important;
  color: #555 !important;
}

/* Fault categories mapping
   1) Dangerous = red (leave as-is)
   2) Major = orange (brand primary)
   3) Minor = yellow (Bootstrap warning)
*/

/* Major faults icon = orange */
#pass-fail .row.g-4 > .col-lg-6:nth-child(2) .mt-3 .row.g-3 > .col-12:nth-child(2) .home-reassurance-icon{
  background: rgba(var(--brand-primary-rgb), 0.16) !important;
  color: var(--brand-primary) !important;
}

/* Minor faults icon = yellow */
#pass-fail .row.g-4 > .col-lg-6:nth-child(2) .mt-3 .row.g-3 > .col-12:nth-child(3) .home-reassurance-icon{
  background: var(--bs-warning-bg-subtle) !important;
  color: var(--bs-warning-text-emphasis) !important;
}

/* =========================
   Pass/Fail – PASS card polish
   ========================= */

/* Give the pass checklist a warm, structured container */
#pass-fail .pf-panel-pass .pf-pass-checklist{
  margin-top: 0.9rem;
  padding: 1rem 1.05rem;
  border-radius: 16px;
  background: transparent;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

/* Make the confirmation list feel more deliberate */
#pass-fail .pf-panel-pass .tick-list li{
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  padding-bottom: 0.6rem;
  margin-bottom: 0.6rem;
}

#pass-fail .pf-panel-pass .tick-list li:last-child{
  border-bottom: 0;
  padding-bottom: 0;
  margin-bottom: 0;
}

#pass-fail .pf-panel-pass .tick-list .drive-status-icon{
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(25, 135, 84, 0.10);
  color: rgb(25, 135, 84);
  margin-top: 0.15rem;
}

#pass-fail .pf-panel-pass .tick-list .drive-status-icon i{
  color: inherit;
  margin-top: 0;
}

/* =========================
   Checklist component (reusable)
   ========================= */


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

.tick-list li {
  display: flex;
  gap: .6rem;
  align-items: flex-start;
  padding-bottom: .55rem;
  margin-bottom: .55rem;
  border-bottom: 1px dashed rgba(0, 0, 0, .08);
}

.tick-list li:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.tick-list i {
  margin-top: .25rem;
  color: var(--brand-primary);
}

#repairs-help .tick-list li{
  align-items: center;
}

#repairs-help .tick-list i{
  margin-top: 0;
}

/* Repairs: use brand dot bullets instead of tick icons */
#repairs-included .tick-list li {
  display: block;
  position: relative;
  padding-left: 1.1rem;
}

#repairs-included .tick-list {
  position: relative;
  padding-top: 1.5rem;
  margin-top: .75rem;
}

#repairs-included .tick-list::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 35%;
  height: 2px;
  background: rgba(0, 0, 0, .35);
}

#repairs-included .tick-list li::before {
  content: "";
  width: .55rem;
  height: .55rem;
  border-radius: 50%;
  background: rgba(var(--brand-primary-rgb), .9);
  position: absolute;
  left: 0;
  top: .55rem;
}

#repairs-included .tick-list i {
  display: none;
}

/* Compact variant (cards, reassurance blocks, homepage) */
.tick-list.is-compact li {
  padding-bottom: .4rem;
  margin-bottom: .4rem;
  font-size: .95rem;
}

/* Service micro-label */
.service-badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  margin-top: -.15rem;
  margin-bottom: .75rem;
  padding: .25rem .6rem;
  border-radius: 999px;
  font-size: .85rem;
  font-weight: 600;
  background: rgba(var(--brand-primary-rgb), .12);
  color: #111;
}

.service-badge i {
  color: var(--brand-primary);
  font-size: .9rem;
}

@media (max-width: 575.98px){
  .service-card--free-mot{
    position: relative;
  }

  .service-card--free-mot::after{
    content: "Free MOT";
    position: absolute;
    top: 0;
    right: 0;
    padding: 0.3rem 0.65rem;
    border-bottom-left-radius: 0.85rem;
    border-top-right-radius: var(--card-radius);
    background: #ffcc80;
    color: #111;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
  }

  .service-card--free-mot .service-badge{
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }

  .service-card--free-mot::after{
    padding: 0.3rem 0.65rem;
    font-size: 0.65rem;
  }
}

/* =========================
   Services – card content layout
   ========================= */

.service-summary {
  max-width: 52ch;
  margin-bottom: 1rem;
  color: rgba(17, 17, 17, .85);
}

.service-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  align-items: center;
}

/* Base layout: desktop + tablet */
.service-card-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 1rem;
  align-items: start;
}

.service-main {
  min-width: 0;
}

.service-meta {
  display: flex;
  justify-content: flex-start;
}

.service-meta-tiles {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .6rem;
  width: 100%;
}

.meta-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: center;
  padding: .65rem .5rem;
  aspect-ratio: 1 / 1;
  border-radius: 16px;
  background: #fff;
}

.service-meta-tiles .bi {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 153, 0, .15);
  color: #111;
  font-size: 1.6rem;
  margin-bottom: .5rem;
  flex: 0 0 56px;
}

/* Service meta tiles – Font Awesome icon styling (restore Bootstrap look) */
.service-meta-tiles .fa-solid {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 153, 0, .15);
  color: #111;
  font-size: 1.6rem;
  margin-bottom: .5rem;
  flex: 0 0 56px;
}

@media (min-width: 576px) and (max-width: 991.98px) {
  .service-meta-tiles .fa-solid {
    width: 52px;
    height: 52px;
    font-size: 1.5rem;
    flex: 0 0 52px;
  }
}

@media (max-width: 575.98px) {
  .service-meta-tiles .fa-solid {
    width: 46px;
    height: 46px;
    font-size: 1.35rem;
    flex: 0 0 46px;
  }
}

.meta-tile-value {
  font-size: 1.1rem;
  font-weight: 800;
  line-height: 1.1;
  white-space: nowrap;
}

.meta-tile-label {
  font-size: .85rem;
  color: rgba(17, 17, 17, .65);
}


/* Tablet: keep tiles on the right, slightly smaller */
@media (min-width: 576px) and (max-width: 991.98px) {
  .service-card-layout {
    grid-template-columns: minmax(0, 1fr) 240px;
    gap: 1rem;
  }

  .meta-tile {
    padding: .65rem .5rem;
  }

  .service-meta-tiles .bi {
    width: 52px;
    height: 52px;
    font-size: 1.5rem;
    flex: 0 0 52px;
  }

  .meta-tile-label {
    font-size: .82rem;
  }
}

/* Mobile: compact cards + inline meta row */
@media (max-width: 575.98px) {
  .service-card{
    border-radius: 14px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.06);
    font-size: 0.98rem;
  }

  .service-card .card-body{
    padding: 1.05rem;
  }

  .service-card-layout{
    display: grid;
    grid-template-columns: 1fr;
    grid-template-areas:
      "title"
      "meta"
      "summary"
      "actions";
    gap: 0.45rem;
  }

  .service-main{
    display: contents;
  }

  .service-main .card-title{
    grid-area: title;
    font-size: 1.1rem;
    margin-bottom: 0;
  }

  .services-page .service-card .card-title.mb-2{
    margin-bottom: 0 !important;
  }

  .service-meta{
    grid-area: meta;
    margin-top: 0;
  }

  .service-summary{
    grid-area: summary;
    margin-bottom: 0;
    font-size: 0.98rem;
    color: rgba(17, 17, 17, 0.8);
  }

  .service-actions{
    margin-top: 0.35rem;
  }

  .service-actions{
    grid-area: actions;
    flex-direction: row;
    align-items: center;
    gap: 0.9rem;
  }

  .service-book-btn{
    padding: 0.55rem 0.95rem;
    border-radius: 0.7rem;
    background: #3f3f3f;
    border-color: #3f3f3f;
    color: #fff;
    font-weight: 700;
  }

  .service-book-btn:hover,
  .service-book-btn:focus{
    background: #2f2f2f;
    border-color: #2f2f2f;
    color: #fff;
  }

  .details-toggle{
    padding: 0;
    font-weight: 700;
    color: #111;
  }

  .service-meta-tiles{
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.9rem;
  }

  .meta-tile{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 0.7rem;
    padding: 0;
    border-radius: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
    aspect-ratio: auto;
    text-align: left;
  }

  .service-meta-tiles .bi,
  .service-meta-tiles .fa-solid{
    width: 2.4rem;
    height: 2.4rem;
    border-radius: 999px;
    background: #fdebd3;
    color: #111;
    font-size: 1.1rem;
    margin-bottom: 0;
    flex: 0 0 2.4rem;
  }

  .meta-tile-value{
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0;
    white-space: nowrap;
    display: inline-block;
  }

  .meta-tile-label{
    display: none;
  }

  .service-details{
    padding: 0.9rem 0.95rem;
    background: #f7f6f4;
  }

  .service-details-footer{
    display: flex;
    justify-content: flex-end;
    margin-top: 0.6rem;
    padding-top: 0.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
  }

  .service-details h4{
    font-size: 0.95rem;
    margin-bottom: 0.35rem;
  }

  .service-details p{
    margin-bottom: 0.6rem;
    line-height: 1.45;
  }

  .service-details p:last-child{
    margin-bottom: 0;
  }

  .service-details .tick-list li{
    padding-bottom: 0.35rem;
    margin-bottom: 0.35rem;
    line-height: 1.4;
  }

  .service-details .tick-list li:last-child{
    padding-bottom: 0;
    margin-bottom: 0;
  }

  .service-ref-pill{
    padding: 0.35rem 0.6rem 0.35rem 0.4rem;
    gap: 0.25rem;
    font-size: 0.82rem;
  }
}

/* Details panel */
.service-details {
    border-top: 1px solid rgba(0, 0, 0, .08);
    background: #f2f2f2;
    padding: 1.25rem 1.5rem;
}

/* Keep padding only for regular lists inside details */
.service-details ul:not(.tick-list) {
  padding-left: 1.25rem;
}

/* Ensure tick list stays flush */
.service-details .tick-list {
  padding-left: 0;
}

.service-details li {
  margin-bottom: .5rem;
  line-height: 1.5;
}

/* Jump highlight */
.card-jump-highlight {
  border-color: var(--brand-primary) !important;
  box-shadow: 0 0 0 .15rem rgba(255, 153, 0, .25), 0 6px 18px rgba(0, 0, 0, .08);
  background-color: #fffaf3;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .service-card {
    transition: none;
  }

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

/* Trust strip icons */
.trust-icon {
  font-size: 1.6rem;
}

@media (min-width: 992px) {
}

/* Hero option rows (not primary CTAs) */
.hero-picks .btn {
  padding-top: 0.45rem;
  padding-bottom: 0.45rem;
  min-height: 40px;
  display: flex;
  align-items: center;
  font-weight: 600;
  border-radius: 10px;
  width: 100%;
}


.hero-section .hero-picks .btn {
  justify-content: flex-start;
  text-align: left;
  padding-left: 1.1rem;
  min-height: 44px;
  font-weight: 600;
}

.hero-picks-note,
.hero-meta--note {
  margin-top: 0.9rem;
  font-size: 0.95rem;
  color: rgba(17, 17, 17, 0.72);
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.services-hero .hero-picks-note,
.services-hero .hero-meta--note {
  color: rgba(255, 255, 255, 0.86);
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 0.55rem 0.75rem;
  border-radius: 12px;
}

.hero-section .btn-primary-alt.is-featured {
  background: rgba(255, 153, 0, 0.28);
  border-color: var(--brand-primary);
}

.hero-picks,
.services-hero .hero-actions {
  max-width: 420px;
  display: grid;
  gap: 0.5rem;
  justify-items: start;
}

.hero-picks-note-text,
.hero-meta-text {
  line-height: 1.4;
}

.hero-note-icon,
.hero-meta-icon {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #111;
  color: #fff;
  font-size: 0.7rem;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  flex: 0 0 auto;     /* stop flexbox shrinking the icon */
  position: relative;
  top: 3px;
}

.services-hero .hero-note-icon,
.services-hero .hero-meta-icon {
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.24);
}

/* Hero card service buttons */
.hero-section .btn-primary-alt {
  background: rgba(255, 153, 0, 0.18);
  color: #111;
  border: none;
}

.hero-section .btn-primary-alt:hover {
  background: var(--brand-primary);
  color: #fff;
}

.hero-section .rounded-4.bg-white {
  box-shadow:
    0 6px 18px rgba(0, 0, 0, 0.08),
    0 1px 3px rgba(0, 0, 0, 0.06)!important;
}

/* Homepage hero – tighter vertical rhythm on mobile */
@media (max-width: 575.98px) {

  .hero-section .btn {
    --bs-btn-padding-y: 0.45rem;
    --bs-btn-padding-x: 0.9rem;
  }
}

/* =========================
   Services – section dividers
   ========================= */

.service-section-divider{
  position: relative;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  padding: 0 10px;
  overflow: hidden;
  background: transparent;
}

/* Brand orange left -> transparent right */
.service-section-divider::before{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(var(--brand-primary-rgb), .94) 0%,
    rgba(var(--brand-primary-rgb), .72) 38%,
    rgba(var(--brand-primary-rgb), 0) 100%
  );
}

/* Label text inside the bar */
.service-section-label{
  position: relative;
  z-index: 1;
  color: #fff;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .78rem;
  line-height: 1;
  margin: 0;
  padding-left: 6px; /* tiny breathing room off the accent bar */
}

/* Slightly tighter on mobile */
@media (max-width: 575.98px){
  .service-section-divider{
    height: 40px;
    border-radius: 12px;
    padding: 0 12px;
  }

  .service-section-label{
    font-size: .75rem;
    letter-spacing: .07em;
  }
}

/* =========================
   Repairs – section backgrounds
   ========================= */

.repairs-page .repairs-section{
  position: relative;
  padding: var(--content-section-pad-y) 0;
  margin-bottom: 0;
  border-radius: 0;
  border: none;
  box-shadow: none;
  background: #f6f2ea;
  overflow: hidden;
}

.repairs-page .repairs-section + .repairs-section{
  border-top: 1px solid #ece4d7;
}

.repairs-page .repairs-section:last-child{
  margin-bottom: 0;
}

.repairs-page .repairs-section--warm{
  background: #f6f2ea;
}

.repairs-page .repairs-section--mist{
  background: #fff6e8;
}

.repairs-page #repairs-diagnostics .thin-card,
.repairs-page #repairs-mot .thin-card{
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.66), rgba(255, 246, 236, 0.58));
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow: 0 12px 22px rgba(22, 16, 10, 0.05);
  backdrop-filter: blur(7px) saturate(110%);
  -webkit-backdrop-filter: blur(7px) saturate(110%);
}

.repairs-page .repairs-section--sand{
  background: #f6f2ea;
}

.repairs-page .repairs-section--ivory{
  background: #fff;
}

.repairs-page .repairs-section--cta{
  background: #0b0b0b;
  color: #fff;
}

.repairs-page #repairs-cta h2,
.repairs-page #repairs-cta .h4{
  color: #fff !important;
}

.repairs-page .repairs-section--cta .text-muted{
  color: rgba(255, 255, 255, 0.78) !important;
}


.repairs-page .repairs-section h2,
.repairs-page .repairs-section .h4{
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #14120f;
}

.repairs-page .repairs-section .mot-section-intro{
  color: #4a453f;
}

.repairs-page #repairs-help .service-card h3{
  margin-bottom: 0.6rem;
  padding-bottom: 0.4rem;
}

.repairs-page #repairs-not .home-reassurance-icon{
  font-size: 1.6rem;
  color: #fff;
}

@media (max-width: 767.98px){
  .repairs-page .repairs-section{
    padding: var(--content-section-pad-y-sm) 0;
    margin-bottom: 0;
    border-radius: 0;
  }
}

.repairs-page .section-tight{
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

/* =========================
   10) Responsive adjustments
   ========================= */
@media (min-width: 375px) {
}

@media (min-width: 576px) {
}

@media (min-width: 768px) {
}

@media (min-width: 992px) {
}

@media (min-width: 1200px) {
}

@media (min-width: 1400px) {
}


/* Tablet: keep tiles on the right, slightly smaller than desktop */
@media (min-width: 576px) and (max-width: 991.98px) {
  .service-card-layout {
    grid-template-columns: minmax(0, 1fr) 210px;
    gap: 1rem;
  }

  .meta-tile {
    padding: .68rem .5rem;
  }

  .service-meta-tiles .bi {
    width: 52px;
    height: 52px;
    font-size: 1.5rem;
    flex: 0 0 52px;
  }

  .meta-tile-label {
    font-size: .82rem;
  }
}

.service-includes-card {
  border-color: rgba(0, 0, 0, .10);
}

.includes-divider {
  border: 0;
  border-top: 1px solid rgba(0, 0, 0, .08);
  opacity: 1;
}

/* Service reference pill (e.g. MOT scope link) */
.service-ref {
  margin-top: 2rem;
}

.service-ref-pill {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  padding: .35rem .6rem;
  font-size: .8rem;
  font-weight: 600;
  color: #111;
  text-decoration: none;
  border: 1px solid rgba(0, 0, 0, .2);
  border-radius: 999px;
  background: transparent;
}

.service-ref-pill:hover {
  background: rgba(0, 0, 0, .04);
  border-color: rgba(0, 0, 0, .35);
  text-decoration: none;
}

.service-ref-pill i {
  font-size: .8rem;
  line-height: 0;
  margin-left: -0.15rem;
}

.service-includes-card .text-uppercase {
  letter-spacing: 0;
}

.service-includes-card .tick-list i {
  width: 1.4rem;
  height: 1.4rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid var(--brand-primary);
  color: var(--brand-primary);
  font-size: 0.7rem;
  margin-top: 0.15rem;
  flex: 0 0 1.4rem;
}

/* De-emphasise fractional duration */
.meta-tile-value .duration-fraction {
  font-weight: 500;
  font-size: 1em;
  vertical-align: baseline;
  opacity: 0.85;
}

/* Service details: paragraph rhythm (override Bootstrap mb-* utilities) */
.service-details p{
  margin-bottom: 1.5rem !important;
}

.service-details p:last-child{
  margin-bottom: 0 !important;
}

/* Left column: grouped soft blocks (heading + content) */
.detail-block {
    background: rgb(255 255 255);
    padding: 0.85rem 0.9rem;
    border-radius: 0.6rem;
    margin-bottom: 1rem;
}

.detail-block:last-child{
  margin-bottom: 0;
}

.detail-block p{
  margin-bottom: 0 !important;
}

.detail-block p + p{
  margin-top: 0.5rem;
}

/* Details toggle button */
.details-toggle{
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  padding: 0;
  font-weight: 600;
  color: #444;
  text-decoration: none;
}

.details-toggle:hover{
  color: #111;
  text-decoration: none;
}

.details-toggle:focus{
  box-shadow: none;
  color: #444;
  outline: none;
}

.details-toggle:active,
.details-toggle:focus-visible{
  color: var(--brand-primary);
}

.details-toggle-icon{
  font-size: .9rem;
  transition: transform .2s ease;
}

/* When expanded, rotate chevron */
.details-toggle[aria-expanded="true"] .details-toggle-icon{
  transform: rotate(180deg);
}

/* =========================
   Services – sidebar nav (scoped)
   ========================= */

/* Default: unhighlighted */
.services-page .service-sidebar #servicesNav .nav-link{
  position: relative;
  padding: 0.6rem 0.75rem 0.6rem 1.2rem;
  border-radius: 0.75rem;
  font-weight: 500;
  color: rgba(17, 17, 17, 0.82);
  background: transparent;
  border: 1px solid transparent;
  text-decoration: none;
  white-space: nowrap;
  overflow: visible;
  text-overflow: clip;
  line-height: 1.25;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

/* Hover: subtle lift without card chrome */
.services-page .service-sidebar #servicesNav .nav-link:hover{
  box-shadow: none;
  border-color: rgba(0, 0, 0, 0.05);
  background: rgba(17, 17, 17, 0.03);
  color: #111;
}

/* Active: restrained highlight + thin accent */
.services-page .service-sidebar #servicesNav .nav-link.is-selected,
.services-page .service-sidebar .nav-link.active{
  font-weight: 600;
  color: #111;
  border-color: rgba(0, 0, 0, 0.08);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: none;
}

/* Leading marker: lightweight dot instead of button chrome */
.services-page .service-sidebar #servicesNav .nav-link::before{
  content: "";
  position: absolute;
  left: 0.45rem;
  top: 50%;
  transform: translateY(-50%);
  width: 0.32rem;
  height: 0.32rem;
  border-radius: 999px;
  background: rgba(17, 17, 17, 0.25);
}

.services-page .service-sidebar #servicesNav .nav-link:hover::before{
  background: rgba(var(--brand-primary-rgb), 0.8);
}

/* Selected marker */
.services-page .service-sidebar #servicesNav .nav-link.is-selected::before{
  background: rgba(var(--brand-primary-rgb), 1);
}

.services-page .service-sidebar #servicesNav .nav-link.active::before{
  background: rgba(var(--brand-primary-rgb), 1);
}

.services-page .service-sidebar #servicesNav .nav-link::after{
  content: "";
  position: absolute;
  left: -0.85rem;
  top: 0.35rem;
  bottom: 0.35rem;
  width: 2px;
  border-radius: 999px;
  background: transparent;
}

.services-page .service-sidebar #servicesNav .nav-link.is-selected::after,
.services-page .service-sidebar #servicesNav .nav-link.active::after{
  background: rgba(var(--brand-primary-rgb), 1);
}

.policy-section-title{
  position: relative;
  padding-bottom: 0.5rem;
}

.policy-section-title::after{
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 3.5rem;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(var(--brand-primary-rgb), 0.95), rgba(var(--brand-primary-rgb), 0.2));
}



/* What the MOT Covers: grouped accordion grid */
.mot-accordion-grid .accordion-compact .accordion-button{
  padding: .85rem 1rem;
  font-size: .98rem;
}

.mot-accordion-grid .accordion-compact .accordion-body{
  padding: 1rem;
}

/* =========================
   Fleet contracts page
   ========================= */


.fleet-page{
  background: #f6f2ea;
}

.fleet-hero{
  position: relative;
  overflow: hidden;
  overflow-x: clip;
  padding: 4rem 0 3.5rem;
  background: linear-gradient(120deg, #0b0b0b 0%, #1e1e1e 45%, #2b1a00 100%);
  color: #fff;
}

@media (min-width: 992px){
  .fleet-hero{
    padding: 5.5rem 0 4.5rem;
  }
}

@media (max-width: 767.98px){
  .fleet-hero{
    padding-top: 1rem;
  }
}

.fleet-hero-bg{
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.fleet-hero-orb{
  position: absolute;
  border-radius: 999px;
  filter: blur(0);
  opacity: 0.7;
}

.fleet-hero-orb.orb-1{
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(255, 153, 0, 0.45), rgba(255, 153, 0, 0));
  top: -120px;
  right: -80px;
}

.fleet-hero-orb.orb-2{
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0));
  bottom: -220px;
  left: -140px;
}

.fleet-hero-orb.orb-3{
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0));
  top: 35%;
  left: 20%;
}

/* Fleet hero orb variant */
.fleet-hero-bg--smoke .fleet-hero-orb{
  opacity: 0.85;
}

.fleet-hero-bg--smoke .fleet-hero-orb.orb-1{
  width: 1700px;
  height: 1700px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0));
  bottom: -420px;
  left: -720px;
  top: auto;
  right: auto;
}

.fleet-hero-bg--smoke .fleet-hero-orb.orb-2{
  width: 1500px;
  height: 1500px;
  background: radial-gradient(circle, rgba(255, 153, 0, 0.52), rgba(255, 153, 0, 0));
  top: -640px;
  left: calc(50% - 750px);
  bottom: auto;
  right: auto;
}

.fleet-hero-bg--smoke .fleet-hero-orb.orb-3{
  width: 1150px;
  height: 1150px;
  background: radial-gradient(circle, rgba(90, 90, 90, 0.42), rgba(90, 90, 90, 0));
  top: 8%;
  right: -220px;
  left: auto;
  --pf-orb-scale-from: 0.78;
}

.fleet-hero-bg--smoke .fleet-hero-grid{
  opacity: 0.22;
}

/* Fleet hero orb variant - amber sweep */
.fleet-hero-bg--amber .fleet-hero-orb{
  opacity: 0.85;
}

.fleet-hero-bg--amber .fleet-hero-orb.orb-1{
  width: 1400px;
  height: 1100px;
  background: radial-gradient(circle, rgba(255, 153, 0, 0.6), rgba(255, 153, 0, 0));
  top: -420px;
  right: -480px;
}

.fleet-hero-bg--amber .fleet-hero-orb.orb-2{
  width: 1200px;
  height: 1200px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0));
  bottom: -420px;
  left: -360px;
}

.fleet-hero-bg--amber .fleet-hero-orb.orb-3{
  width: 1100px;
  height: 900px;
  background: radial-gradient(circle, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0));
  top: -3%;
  left: 14%;
}

.fleet-hero-bg--amber .fleet-hero-grid{
  opacity: 0.18;
}

.fleet-hero-grid{
  position: absolute;
  inset: -20% -10%;
  background-image: linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.35;
}

.fleet-kicker{
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1rem;
}

.hero-eyebrow{
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1rem;
}

.fleet-lead{
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 36rem;
}

.hero-lead{
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 36rem;
}

.fleet-badges{
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.hero-meta--pills{
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.fleet-badge{
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  border: 1px solid #575757;
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.85rem;
  color: #f8f8f8;
}

.hero-pill{
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  border: 1px solid #575757;
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.85rem;
  color: #f8f8f8;
}

.fleet-badge i{
  color: var(--brand-primary);
}

.hero-pill i{
  color: var(--brand-primary);
}

.fleet-hero-rail{
  position: relative;
  padding: 1.75rem;
  border-radius: 1.5rem;
  background: #fff;
  color: #111;
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.35);
}

.fleet-hero .hero-side-card{
  position: relative;
}

.fleet-hero-rail-header{
  display: grid;
  gap: 0.25rem;
  margin-bottom: 1.25rem;
}

.fleet-hero .hero-side-card-header{
  display: grid;
  gap: 0.25rem;
  margin-bottom: 1.25rem;
}

.fleet-hero-rail-title{
  font-weight: 700;
  font-size: 1.15rem;
}

.fleet-hero .hero-side-card-title{
  font-weight: 700;
  font-size: 1.15rem;
}

.fleet-hero-rail-subtitle{
  font-size: 0.85rem;
  color: #6c6c6c;
}

.fleet-hero .hero-side-card-subtitle{
  font-size: 0.85rem;
  color: #6c6c6c;
}

.fleet-hero-rail-list{
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  display: grid;
  gap: 1rem;
  color: #222;
  font-size: 0.98rem;
}

.hero-side-list--steps{
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  display: grid;
  gap: 1rem;
  color: #222;
  font-size: 0.98rem;
}

.fleet-hero-rail-list li{
  position: relative;
  padding: 0.65rem 0.85rem;
  line-height: 1.4;
  border-radius: 0.85rem;
  background: #f5f2ec;
}

.hero-side-list--steps li{
  position: relative;
  display: grid;
  grid-template-columns: 1.6rem minmax(0, 1fr);
  align-items: start;
  column-gap: 0.6rem;
  padding: 0.65rem 0.85rem;
  line-height: 1.4;
  border-radius: 0.85rem;
  background: #f5f2ec;
}

.fleet-hero-rail-step{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.6rem;
  height: 1.6rem;
  margin-right: 0.6rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid #111;
  color: #111;
  font-size: 0.8rem;
}

.hero-side-list-step{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.6rem;
  height: 1.6rem;
  margin-right: 0.6rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid #111;
  color: #111;
  font-size: 0.8rem;
}

.hero-side-list--steps .hero-side-list-step{
  margin-right: 0;
}

.fleet-hero-rail-actions{
  display: grid;
  gap: 0.65rem;
  padding-top: 1.25rem;
  border-top: 1px solid #ece7df;
}

.hero-side-actions{
  display: grid;
  gap: 0.65rem;
  padding-top: 1.25rem;
  border-top: 1px solid #ece7df;
}

.fleet-hero .btn-fleet-call{
  border: 1px solid var(--brand-primary);
  color: var(--brand-primary);
  background: transparent;
}

.fleet-hero .btn-fleet-call:hover,
.fleet-hero .btn-fleet-call:focus,
.fleet-hero .btn-fleet-call:active{
  background: var(--brand-primary);
  border-color: var(--brand-primary);
  color: #fff;
}

.fleet-hero-card .btn-book-primary{
  background: linear-gradient(135deg, #111 0%, #2b2b2b 100%);
  border-color: #111;
  color: #fff;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.25);
}

.fleet-hero-card .btn-book-primary:hover{
  background: #000;
  border-color: #000;
  color: #fff;
}

.fleet-section{
  padding: var(--content-section-pad-y) 0;
  background: #f6f2ea;
}

.fleet-section-alt{
  background: #fff6e8;
}

#fleet-how{
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(60% 80% at 15% 10%, rgba(255, 250, 245, 0.85), rgba(255, 250, 245, 0) 60%),
    radial-gradient(70% 90% at 85% 90%, rgba(231, 242, 240, 0.75), rgba(231, 242, 240, 0) 65%),
    linear-gradient(135deg, #fff2e1 0%, #f5f1ea 50%, #e9f2f1 100%);
}

.fleet-eyebrow{
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.9rem;
  color: #7a6f64;
  margin-bottom: 0.75rem;
}

.fleet-title{
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #14120f;
}

.fleet-body{
  color: #4a453f;
  margin-bottom: 0;
}

.fleet-feature-grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

@media (max-width: 767.98px){
  .fleet-feature-grid{
    grid-template-columns: 1fr;
  }
}

.fleet-card{
  background: #fff;
  border-radius: 1.2rem;
  padding: 1.4rem;
  border: 1px solid #ebe3d7;
  box-shadow: 0 14px 24px rgba(0, 0, 0, 0.07);
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  opacity: 0;
  transform: translateY(14px);
}

.fleet-card.is-visible{
  animation: fleet-reveal 0.6s ease forwards;
}

.fleet-card-icon{
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 0.9rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #111;
  color: #fff;
  margin-bottom: 0;
  flex: 0 0 auto;
}

.fleet-card-title{
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.fleet-card-text{
  margin-bottom: 0;
  color: #4f4b44;
}

#repairs-diagnostics .tick-list i,
#repairs-help .tick-list i,
.fleet-list i{
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid var(--brand-primary);
  color: var(--brand-primary);
  font-size: 0.8rem;
  -webkit-text-stroke: 0.6px currentColor;
  text-shadow: 0 0 0.9px currentColor;
}

#repairs-help .tick-list i{
  border: 0;
}

.fleet-note{
  margin-top: 1rem;
  color: #6a635a;
  font-size: 0.9rem;
}

.fleet-audience-grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

@media (max-width: 767.98px){
  .fleet-audience-grid{
    grid-template-columns: 1fr;
  }
}

.fleet-audience-card{
  display: flex;
  gap: 1rem;
  padding: 1.4rem;
  border-radius: 1.2rem;
  background: #fff;
  border: 1px solid #ebe3d7;
  box-shadow: 0 14px 24px rgba(0, 0, 0, 0.07);
}

.fleet-audience-icon{
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #111;
  color: #fff;
  flex: 0 0 auto;
}

.fleet-steps{
  display: grid;
  gap: 1rem;
}

.fleet-step{
  display: flex;
  gap: 1rem;
  padding: 1.25rem;
  border-radius: 1.2rem;
  background: #fff;
  border: 1px solid #ece4d7;
  box-shadow: 0 14px 24px rgba(0, 0, 0, 0.06);
  opacity: 0;
  transform: translateY(16px);
}

.fleet-step.is-visible{
  animation: fleet-reveal 0.65s ease forwards;
}

.fleet-step-index{
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #111;
  color: #fff;
  font-weight: 700;
  flex: 0 0 auto;
}

.fleet-feature-grid .fleet-card:nth-child(1),
.fleet-steps .fleet-step:nth-child(1){
  animation-delay: 0.05s;
}

.fleet-feature-grid .fleet-card:nth-child(2),
.fleet-steps .fleet-step:nth-child(2){
  animation-delay: 0.15s;
}

.fleet-feature-grid .fleet-card:nth-child(3),
.fleet-steps .fleet-step:nth-child(3){
  animation-delay: 0.25s;
}

.fleet-feature-grid .fleet-card:nth-child(4),
.fleet-steps .fleet-step:nth-child(4){
  animation-delay: 0.35s;
}

@keyframes fleet-reveal{
  from{
    opacity: 0;
    transform: translateY(16px);
  }
  to{
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce){
  .fleet-card,
  .fleet-step{
    opacity: 1;
    transform: none;
    animation: none;
  }
}

.fleet-enquiry-shell{
  background: linear-gradient(135deg, #101010 0%, #1e1e1e 55%, #2b1a00 100%);
  border-radius: 2rem;
  padding: 2.5rem;
  color: #fff;
}

#fleet-enquiry{
  scroll-margin-top: 2rem;
}

.fleet-contact-card{
  margin-top: 2rem;
  padding: 1.5rem;
  border-radius: 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.fleet-contact-line{
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  color: rgba(255, 255, 255, 0.9);
}

.fleet-contact-line:last-child{
  margin-bottom: 0;
}

.fleet-contact-line a{
  color: #fff;
  font-weight: 600;
  text-decoration: none;
}

.fleet-contact-cta{
  display: none;
}

.fleet-form-card{
  background: #fff;
  border-radius: var(--card-radius);
  padding: 1.5rem;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: var(--card-shadow-a);
  color: #111;
}

.fleet-form-card .form-label{
  font-weight: 600;
  color: #2e2b27;
}

.fleet-form-card .form-control,
.fleet-form-card .form-select{
  border-radius: 0.6rem;
  border-color: rgba(0, 0, 0, 0.14);
}

.fleet-form-card .form-control:focus,
.fleet-form-card .form-select:focus{
  box-shadow: 0 0 0 0.2rem rgba(255, 153, 0, 0.2);
  border-color: rgba(255, 153, 0, 0.6);
}

@media (max-width: 767.98px){

  .fleet-section{
    padding: var(--content-section-pad-y-sm) 0;
  }

  .fleet-enquiry-shell{
    padding: 2rem 1.5rem;
  }
}

/* =========================
   Fleet – What's included (meta cards)
   ========================= */

.fleet-included-meta{
  display: grid;
  gap: 0.85rem;
}

.fleet-included-meta-card{
  display: flex;
  gap: 0.95rem;
  padding: 1.1rem 1.15rem;
  border-radius: 1.2rem;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 12px 22px rgba(0, 0, 0, 0.06);
}

.fleet-included-meta-icon{
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 0.9rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #111;
  color: #fff;
  flex: 0 0 auto;
  margin-top: 0.05rem;
}

.fleet-included-meta-title{
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
  color: #14120f;
}

.fleet-included-meta-text{
  color: #4f4b44;
}

/* =========================
   Fleet – Top strategic cards (flat glass)
   ========================= */

.fleet-included-topcards{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 1.75rem;
}

@media (max-width: 991.98px){
  .fleet-included-topcards{
    grid-template-columns: 1fr;
  }
}

.fleet-included-topcard{
  text-align: center;
  padding: 1.4rem 1.25rem;
  border-radius: 1.25rem;

  /* Flat glass feel */
  background: #fff;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);

  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.04);
}

/* Fleet structured section colors */
.fleet-included-topcard:nth-child(1){
  background: #ffffff;
}

.fleet-included-topcard:nth-child(2){
  background: #fff6e8;
}

.fleet-included-topcard:nth-child(3){
  background: #f6f2ea;
}

.fleet-included-topcard-icon{
  width: 3rem;
  height: 3rem;
  margin: 0 auto 0.85rem auto;
  border-radius: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;

  background: #111;
  color: #fff;
  font-size: 1.05rem;
}

.fleet-included-topcard-title{
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.45rem;
  color: #14120f;
}

.fleet-included-topcard-text{
  font-size: 0.9rem;
  color: #4f4b44;
  line-height: 1.5;
}

@media (max-width: 991.98px){
}

@media (max-width: 991.98px){
}

/* Right: scope container (no panel box) */
.fleet-included-scope{
  padding: 1.1rem 1.2rem;
  margin: 0;
  border-radius: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.fleet-scope-head{
  display: grid;
  gap: 0.35rem;
  margin-bottom: 1.1rem;
}

.fleet-scope-head-title{
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1.05rem;
  font-weight: 800;
  color: #14120f;
}

.fleet-scope-head-title i{
  width: 2.05rem;
  height: 2.05rem;
  border-radius: 0.85rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #111;
  color: #fff;
  font-size: 0.95rem;
}

.fleet-scope-head .fleet-note{
  font-size: 0.9rem;
  line-height: 1.5;
}

/* Group grid: two columns on desktop */
.fleet-scope-grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.1rem 1.25rem;
}

@media (max-width: 991.98px){
  .fleet-scope-grid{
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

/* Individual groups: mini cards for clearer separation */
.fleet-scope-group{
  display: grid;
  gap: 0.45rem;
  padding: 0.85rem 0.95rem;
  margin: 0;
  border-radius: 0.95rem;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.fleet-scope-card{
  display: grid;
  grid-template-rows: none;
  gap: 1rem;
  padding: 1.1rem 1.2rem;
  border-radius: 1.1rem;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 12px 22px rgba(0, 0, 0, 0.06);
}

@media (max-width: 767.98px){
  .fleet-scope-card{
    grid-template-rows: none;
    gap: 0.85rem;
    padding: 1rem 1.05rem;
  }
}

.fleet-scope-title{
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.95rem;
  font-weight: 900;
  margin: 0 0 0.6rem 0;
  color: #14120f;
}

.fleet-scope-title i{
  width: 2.05rem;
  height: 2.05rem;
  border-radius: 0.85rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #111;
  color: #fff;
  font-size: 0.95rem;
}

/* Clean bullet list (no pill rows, minimal visual noise) */
.fleet-included-scope .tick-list li{
  align-items: flex-start;
  color: #4f4b44;
  font-size: 0.92rem;
  line-height: 1.45;
  border-bottom: 0;
  margin-bottom: 0.45rem;
  padding-bottom: 0.45rem;
  position: relative;
}

.fleet-included-scope .tick-list li:last-child{
  margin-bottom: 0;
  padding-bottom: 0;
}

.fleet-included-scope .tick-list li::after{
  content: "";
  position: absolute;
  left: var(--tick-divider-indent, 1.6rem);
  right: 0;
  bottom: 0;
  border-bottom: 1px dotted rgba(0, 0, 0, 0.18);
}

.fleet-included-scope .tick-list li:last-child::after{
  content: none;
}

.fleet-included-scope .tick-list i{
  margin-top: 0.2rem;
  font-size: 0.85rem;
}

.fleet-included-scope .tick-list{
  display: grid;
  gap: 0.5rem;
  --tick-divider-indent: 1.6rem;
}

.fleet-scope-group + .fleet-scope-group{
  margin-top: 0.75rem;
}

/* =========================
   What the MOT Covers page
   ========================= */
.mot-guide-page{
  background: #f5f2ea;
}

.mot-hero{
  position: relative;
  overflow: hidden;
  overflow-x: clip;
  padding: 4rem 0 3.5rem;
  background: linear-gradient(135deg, #0e0e0f 0%, #1f1f22 45%, #1b2a24 100%);
  color: #fff;
}

@media (min-width: 992px){
  .mot-hero{
    padding: 5.5rem 0 4.5rem;
  }
}

@media (max-width: 767.98px){
  .mot-hero{
    padding-top: 1rem;
  }
}

.mot-hero-bg{
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.mot-hero-orb{
  position: absolute;
  border-radius: 999px;
  opacity: 0.75;
}

.mot-hero-orb.orb-1 {
    width: 1200px;
    height: 900px;
    background: radial-gradient(circle, rgb(255 180 76 / 80%), rgba(255, 180, 76, 0));
    top: -140px;
    right: -400px;
}

.mot-hero-orb.orb-2{
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0));
  bottom: -230px;
  left: -160px;
}

.mot-hero-orb.orb-3{
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0));
  top: 32%;
  left: 18%;
}

/* What the MOT Covers hero orb variant */
.mot-hero-bg--halo .mot-hero-orb{
  opacity: 0.85;
}

.mot-hero-bg--halo .mot-hero-orb.orb-1{
  width: 1100px;
  height: 1100px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0) 60%, rgba(255, 153, 0, 0.35) 61%, rgba(255, 153, 0, 0) 75%);
  top: -240px;
  right: -320px;
}

.mot-hero-bg--halo .mot-hero-orb.orb-2{
  width: 900px;
  height: 900px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0) 58%, rgba(255, 255, 255, 0.25) 59%, rgba(255, 255, 255, 0) 72%);
  bottom: -280px;
  left: -300px;
}

.mot-hero-bg--halo .mot-hero-orb.orb-3{
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(0, 0, 0, 0) 55%, rgba(0, 0, 0, 0.35) 56%, rgba(0, 0, 0, 0) 70%);
  top: 18%;
  left: 30%;
}

.mot-hero-bg--halo .mot-hero-grid{
  opacity: 0.2;
}

/* What the MOT Covers hero orb variant - smoke */
.mot-hero-bg--smoke .mot-hero-orb{
  opacity: 0.85;
}

.mot-hero-bg--smoke .mot-hero-orb.orb-1{
  width: 1500px;
  height: 1500px;
  background: radial-gradient(circle, rgba(255, 153, 0, 0.52), rgba(255, 153, 0, 0));
  top: -640px;
  right: -220px;
}

.mot-hero-bg--smoke .mot-hero-orb.orb-2{
  width: 1700px;
  height: 1700px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0));
  bottom: -420px;
  left: -720px;
}

.mot-hero-bg--smoke .mot-hero-orb.orb-3{
  width: 1150px;
  height: 1150px;
  background: radial-gradient(circle, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0));
  top: 8%;
  left: 46%;
}

.mot-hero-bg--smoke .mot-hero-grid{
  opacity: 0.22;
}

.mot-hero-grid{
  position: absolute;
  inset: -20% -10%;
  background-image: linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 64px 64px;
  opacity: 0.35;
}

.mot-kicker{
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1rem;
}

.mot-lead{
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 36rem;
}

.mot-hero-actions{
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.75rem;
}

.hero-actions{
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.75rem;
}

.hero-side-card{
  background: #fff;
  color: #111;
  border-radius: 1.5rem;
  padding: 1.75rem;
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.35);
}

.hero-side-card-header{
  display: flex;
  gap: 1rem;
}

.hero-side-card-title{
  font-weight: 700;
}

.hero-side-card-subtitle{
  line-height: 1.35;
}

.hero-side-list{
  display: grid;
  gap: 0.65rem;
  margin-bottom: 1.25rem;
}

.hero-side-list-item{
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.55rem 0.75rem;
  border-radius: 0.85rem;
  text-decoration: none;
  color: #222;
  background: #f5f2ec;
}

.hero-side-list-item{
  transition: box-shadow 0.2s ease;
}

.mot-hero .hero-side-list-item,
.pf-hero .hero-side-list-item{
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.mot-hero .hero-side-list-item:hover,
.pf-hero .hero-side-list-item:hover{
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
  background: rgba(var(--brand-primary-rgb), 0.12);
  color: #111;
}


.mot-hero .hero-side-list-icon,
.pf-hero .hero-side-list-icon{
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 0.65rem;
  background: #424242;
  color: #fff;
  font-size: 0.7rem;
}

.mot-hero .hero-side-card--repairs .hero-side-list-item,
.pf-hero .hero-side-card--repairs .hero-side-list-item,
.repairs-page .hero-side-card--repairs .hero-side-list-item{
  transition: box-shadow 0.2s ease;
}

.mot-hero .hero-side-card--repairs .hero-side-list-item:hover,
.pf-hero .hero-side-card--repairs .hero-side-list-item:hover,
.repairs-page .hero-side-card--repairs .hero-side-list-item:hover{
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
  color: #111;
  background: #f5f2ec;
  transform: none;
}


.mot-hero .hero-side-card--repairs .hero-side-list-icon,
.pf-hero .hero-side-card--repairs .hero-side-list-icon,
.services-hero .hero-side-card--repairs .hero-side-list-icon{
  background: rgba(255, 255, 255, 0.9);
  color: #111;
  border-radius: 999px;
}

.hero-side-list-icon{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: #111;
}

@media (min-width: 992px){
  .hero-side-list-icon{
    width: 1.95rem;
    height: 1.95rem;
    flex: 0 0 1.95rem;
    font-size: 0.58rem;
  }
}

.mot-section{
  padding: var(--content-section-pad-y) 0;
  background: #f5f2ea;
}

.mot-section-alt{
  background: #fff6e8;
}

.mot-eyebrow{
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.9rem;
  color: #7a6f64;
  margin-bottom: 0.75rem;
}

.mot-title{
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #14120f;
}

.mot-body{
  color: #4a453f;
  margin-bottom: 0;
}

.mot-section-sticky{
  position: sticky;
  top: 6rem;
}

.mot-guide-stack{
  display: grid;
  gap: 1.25rem;
}

.mot-guide-card{
  background: #fff;
  border-radius: 1.4rem;
  padding: 1.75rem;
  border: 1px solid #ece4d7;
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.06);
}

.mot-guide-page .mot-guide-card{
  display: block;
}

.mot-panel-card{
  height: 100%;
  padding: 1.1rem 1.2rem;
  border-radius: 1.1rem;
  background: #fff;
  border: 1px solid #efe1cf;
  box-shadow: 0 12px 22px rgba(0, 0, 0, 0.08);
}

.mot-panel-title{
  display: inline-block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #7a6f64;
  padding-bottom: 0.35rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.mot-panel-list{
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.mot-panel-list li{
  position: relative;
  padding: 0.55rem 0 0.55rem 1.6rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.mot-panel-list li:last-child{
  border-bottom: 0;
  padding-bottom: 0;
}

.mot-panel-list li::before{
  content: "";
  position: absolute;
  left: 0;
  top: 0.95rem;
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 999px;
  background: #11111180;
  box-shadow: 0 0 0 4px rgba(var(--brand-primary-rgb), 0.12);
}

.mot-key-grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

@media (max-width: 767.98px){
  .mot-key-grid{
    grid-template-columns: 1fr;
  }
}

.mot-key-card{
  display: flex;
  gap: 1rem;
  padding: 1.4rem;
  border-radius: 1.2rem;
  background: #fff;
  border: 1px solid #ebe3d7;
  box-shadow: 0 14px 24px rgba(0, 0, 0, 0.07);
}

.mot-key-card--link{
  text-decoration: none;
  color: inherit;
}

.mot-key-card--link:hover{
  border-color: rgba(var(--brand-primary-rgb), 0.7);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.09);
}

.mot-key-icon{
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 0.9rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #111;
  color: #fff;
  flex: 0 0 auto;
}

.mot-key-title{
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.mot-key-text{
  margin-bottom: 0;
  color: #4f4b44;
}

.mot-compare-shell{
  display: grid;
  gap: 1.5rem;
}

.mot-compare-note{
  max-width: 32rem;
}

.mot-guide-page .mot-compare-note{
  max-width: none;
  width: 100%;
}

.mot-cta{
  padding: 0 0 var(--content-section-pad-y);
}

.mot-cta-card{
  background: linear-gradient(135deg, #101010 0%, #1e1e1e 55%, #2b1a00 100%);
  border-radius: 2rem;
  padding: 2.5rem;
  color: #fff;
}

.mot-cta-card.mot-cta-inner{
  background:
    linear-gradient(rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.04)),
    linear-gradient(135deg, #101010 0%, #1e1e1e 55%, #2b1a00 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.mot-cta-inner{
  background: rgba(255, 255, 255, 0.04);
  border-radius: 1.6rem;
  padding: 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.mot-cta-grid{
  display: grid;
  gap: 2rem;
  align-items: center;
}

.mot-cta-body .mot-body{
  color: rgba(255, 255, 255, 0.8);
}

.mot-cta-eyebrow{
  letter-spacing: 0.2em;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 0.75rem;
}

.mot-cta-actions{
  display: grid;
  gap: 0.75rem;
}

@media (min-width: 992px){
  .mot-cta-grid{
    grid-template-columns: 1.3fr 0.7fr;
  }
}

@media (max-width: 767.98px){
  .mot-guide-page .hero-side-card{
    margin-top: 1.5rem;
  }

  .mot-section{
    padding: var(--content-section-pad-y-sm) 0;
  }

  .mot-section-sticky{
    position: static;
  }

  .mot-cta-card,
  .mot-cta-inner{
    padding: 1.75rem;
  }

  .mot-cta{
    padding: 0 0 var(--content-section-pad-y-sm);
  }
}

/* =========================
   Pass/Fail page
   ========================= */
.pass-fail-page{
  background: #f6f3ee;
}

.pf-hero{
  position: relative;
  overflow: hidden;
  padding: 4rem 0 3.5rem;
  background: linear-gradient(135deg, #0f0f10 0%, #1d1f24 45%, #241a12 100%);
  color: #fff;
}

.mot-guide-page .hero-actions--guides,
.pass-fail-page .hero-actions--guides{
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-items: flex-start;
  gap: .35rem;
}

.mot-guide-page .hero-actions--guides .hero-eyebrow--other-guides,
.pass-fail-page .hero-actions--guides .hero-eyebrow--other-guides{
  margin: 0;
  font-size: .68rem;
  letter-spacing: .16em;
  color: rgba(255, 255, 255, 0.72);
}

.mot-guide-page .hero-guide-link,
.pass-fail-page .hero-guide-link{
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  color: rgba(255, 255, 255, 0.92);
  text-decoration: none;
  font-weight: 500;
  line-height: 1.25;
  transition: color .18s ease;
}

.mot-guide-page .hero-guide-link::before,
.pass-fail-page .hero-guide-link::before{
  content: "";
  width: .38rem;
  height: .38rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  flex: 0 0 auto;
  transition: background-color .18s ease, transform .18s ease;
}

.mot-guide-page .hero-guide-link:hover,
.mot-guide-page .hero-guide-link:focus-visible,
.pass-fail-page .hero-guide-link:hover,
.pass-fail-page .hero-guide-link:focus-visible{
  color: var(--brand-primary, #f28c28);
}

.mot-guide-page .hero-guide-link:hover::before,
.mot-guide-page .hero-guide-link:focus-visible::before,
.pass-fail-page .hero-guide-link:hover::before,
.pass-fail-page .hero-guide-link:focus-visible::before{
  background: var(--brand-primary, #f28c28);
  transform: scale(1.08);
}

@media (min-width: 992px){
  .pf-hero{
    padding: 5.5rem 0 4.5rem;
  }
}

@media (max-width: 767.98px){
  .pf-hero{
    padding-top: 1rem;
  }
}

.pf-hero-bg{
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.pf-hero-orb{
  position: absolute;
  border-radius: 999px;
  opacity: 0.75;
}

.pf-hero-orb.orb-1 {
    width: 2000px;
    height: 1200px;
    background: radial-gradient(circle, rgb(255 153 0), rgba(255, 153, 0, 0));
    top: -140px;
    right: -80px;
}

.pf-hero-orb.orb-2 {
    width: 1500px;
    height: 1500px;
    background: radial-gradient(circle, rgb(255 255 255 / 63%), rgba(255, 255, 255, 0));
    bottom: -20px;
    left: -160px;
}

.pf-hero-orb.orb-3 {
    width: 2000px;
    height: 1500px;
    background: radial-gradient(circle, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0));
    top: 1%;
    left: 20%;
}

/* Pass/Fail hero orb variants (swap by adding class to .pf-hero-bg) */
.pf-hero-bg--amber .pf-hero-orb.orb-1{
  width: 1600px;
  height: 1100px;
  background: radial-gradient(circle, rgba(255, 153, 0, 0.65), rgba(255, 153, 0, 0));
  top: -320px;
  right: -520px;
}

.pf-hero-bg--amber .pf-hero-orb.orb-2{
  width: 1200px;
  height: 1200px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0));
  bottom: -360px;
  left: -320px;
}

.pf-hero-bg--amber .pf-hero-orb.orb-3{
  width: 1400px;
  height: 1200px;
  background: radial-gradient(circle, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0));
  top: 8%;
  left: 8%;
}

.pf-hero-bg--amber .pf-hero-grid{
  opacity: 0.25;
}

.pf-hero-bg--halo .pf-hero-orb{
  opacity: 0.85;
}

.pf-hero-bg--halo .pf-hero-orb.orb-1{
  width: 1100px;
  height: 1100px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0) 62%, rgba(255, 153, 0, 0.35) 63%, rgba(255, 153, 0, 0) 76%);
  top: -220px;
  right: -280px;
}

.pf-hero-bg--halo .pf-hero-orb.orb-2{
  width: 900px;
  height: 900px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0) 58%, rgba(255, 255, 255, 0.28) 59%, rgba(255, 255, 255, 0) 72%);
  bottom: -260px;
  left: -260px;
}

.pf-hero-bg--halo .pf-hero-orb.orb-3{
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(0, 0, 0, 0) 55%, rgba(0, 0, 0, 0.35) 56%, rgba(0, 0, 0, 0) 70%);
  top: 18%;
  left: 32%;
}

.pf-hero-bg--halo .pf-hero-grid{
  opacity: 0.18;
}

.pf-hero-bg--smoke .pf-hero-orb{
  opacity: 0.85;
}

.pf-hero-bg--smoke .pf-hero-orb.orb-1{
  width: 1420px;
  height: 1660px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0));
  bottom: -500px;
  left: -860px;
}

.pf-hero-bg--smoke .pf-hero-orb.orb-2{
  width: 1780px;
  height: 1320px;
  background: radial-gradient(circle, rgba(255, 153, 0, 0.52), rgba(255, 153, 0, 0));
  top: -560px;
  left: 34%;
}

.pf-hero-bg--smoke .pf-hero-orb.orb-3{
  width: 980px;
  height: 1460px;
  background: radial-gradient(circle, rgba(90, 90, 90, 0.42), rgba(90, 90, 90, 0));
  top: -22%;
  right: -340px;
  --pf-orb-scale-from: 0.78;
}

.pf-hero-bg--smoke .pf-hero-grid{
  opacity: 0.22;
}

/* Pass/Fail hero orb variants - smoke family */
.pf-hero-bg--smoke2 .pf-hero-orb.orb-1{
  width: 1900px;
  height: 1300px;
  background: radial-gradient(circle, rgba(255, 180, 76, 0.28), rgba(255, 180, 76, 0));
  top: -520px;
  right: -620px;
}

.pf-hero-bg--smoke2 .pf-hero-orb.orb-2{
  width: 1700px;
  height: 1400px;
  background: radial-gradient(circle, rgba(70, 70, 70, 0.32), rgba(70, 70, 70, 0));
  bottom: -520px;
  left: -520px;
}

.pf-hero-bg--smoke2 .pf-hero-orb.orb-3{
  width: 1400px;
  height: 1200px;
  background: radial-gradient(circle, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0));
  top: -120px;
  left: 12%;
}

.pf-hero-bg--smoke2 .pf-hero-grid{
  opacity: 0.18;
}

.pf-hero-bg--smoke3 .pf-hero-orb.orb-1{
  width: 1500px;
  height: 1100px;
  background: radial-gradient(circle, rgba(255, 153, 0, 0.22), rgba(255, 153, 0, 0));
  top: -420px;
  right: -520px;
}

.pf-hero-bg--smoke3 .pf-hero-orb.orb-2{
  width: 2100px;
  height: 1600px;
  background: radial-gradient(circle, rgba(92, 92, 92, 0.3), rgba(92, 92, 92, 0));
  bottom: -640px;
  left: -620px;
}

.pf-hero-bg--smoke3 .pf-hero-orb.orb-3{
  width: 1500px;
  height: 1300px;
  background: radial-gradient(circle, rgba(0, 0, 0, 0.62), rgba(0, 0, 0, 0));
  top: 12%;
  left: 18%;
}

.pf-hero-bg--smoke3 .pf-hero-grid{
  opacity: 0.26;
}

.pf-hero-bg--smoke4 .pf-hero-orb.orb-1{
  width: 1700px;
  height: 1250px;
  background: radial-gradient(circle, rgba(255, 180, 76, 0.2), rgba(255, 180, 76, 0));
  top: -480px;
  right: -540px;
}

.pf-hero-bg--smoke4 .pf-hero-orb.orb-2{
  width: 1600px;
  height: 1400px;
  background: radial-gradient(circle, rgba(120, 120, 120, 0.28), rgba(120, 120, 120, 0));
  bottom: -520px;
  left: -520px;
}

.pf-hero-bg--smoke4 .pf-hero-orb.orb-3{
  width: 1600px;
  height: 1300px;
  background: radial-gradient(circle, rgba(0, 0, 0, 0.68), rgba(0, 0, 0, 0));
  top: -40px;
  left: 6%;
}

.pf-hero-bg--smoke4 .pf-hero-grid{
  opacity: 0.2;
}

.pf-hero-grid{
  position: absolute;
  inset: -20% -10%;
  background-image: linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 64px 64px;
  opacity: 0.35;
}

.pf-kicker{
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1rem;
}

.pf-lead{
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 36rem;
}

.pf-hero-actions{
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.75rem;
}

.pf-section{
  padding: var(--content-section-pad-y) 0;
  background: #f6f3ee;
}

.pf-section-alt{
  background: #fff6e8;
}

.pf-eyebrow{
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.9rem;
  color: #7a6f64;
  margin-bottom: 0.75rem;
}

.pf-title{
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #14120f;
}

.pf-body{
  color: #4a453f;
  margin-bottom: 0;
}

.pf-duo-grid{
  display: grid;
  gap: 1.25rem;
}

.pf-panel{
  background: #fff;
  border-radius: 1.4rem;
  padding: 1.75rem;
  border: 1px solid #ece4d7;
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.06);
}

.pf-panel-pass{
  border-color: rgba(25, 135, 84, 0.25);
  box-shadow: 0 16px 28px rgba(25, 135, 84, 0.08);
}

.pf-drive-shell{
  display: grid;
  gap: 1.5rem;
}

.pf-key-rule{
  padding: 1.25rem 1.4rem;
  border-radius: 1.25rem;
  background: rgba(var(--brand-primary-rgb), 0.12);
  border: 1px solid rgba(var(--brand-primary-rgb), 0.25);
  box-shadow: 0 14px 24px rgba(0, 0, 0, 0.08);
}

.pf-key-rule-kicker{
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.7rem;
  color: rgba(17, 17, 17, 0.6);
  margin-bottom: 0.5rem;
}

.pf-key-rule-title{
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #111;
}

.pf-key-rule-text{
  color: rgba(17, 17, 17, 0.75);
}

.pf-paths{
  display: grid;
  gap: 1rem;
  margin-top: 1rem;
}

.pf-path-card{
  display: flex;
  gap: 1rem;
  padding: 1.1rem 1.25rem;
  border-radius: 1.1rem;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.05);
}

.pass-fail-page .pf-pass-notes{
  display: grid;
  gap: 0.75rem;
}

.pf-note-heading{
  display: none;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.pf-path-icon{
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.85rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #111;
  color: #fff;
  flex: 0 0 auto;
}

.pf-path-title{
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.pf-path-text{
  color: rgba(17, 17, 17, 0.7);
}

@media (min-width: 992px){
  .pf-duo-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767.98px){
  .pass-fail-page .hero-side-card{
    margin-top: 1.5rem;
  }

  .pf-section{
    padding: var(--content-section-pad-y-sm) 0;
  }
}

/* =========================
   Services page
   ========================= */
.services-page{
  background: #f2f4f6;
  padding-top: 1rem;
}

@media (max-width: 575.98px){
  .services-page{
    padding-top: 0.5rem;
  }
}

@media (min-width: 768px){
  .services-page{
    padding-top: var(--toc-section-pad-y);
  }
}

.services-hero{
  position: relative;
  overflow: hidden;
  padding: 4rem 0 3.5rem;
  background: linear-gradient(135deg, #0f0f10 0%, #1d1f24 45%, #1b211b 100%);
  color: #fff;
}

.services-hero .row.align-items-center{
  align-items: flex-start !important;
}

@media (min-width: 992px){
  .services-hero{
    padding: 5.5rem 0 4.5rem;
  }
}

@media (max-width: 767.98px){
  .services-hero{
    padding-top: 1rem;
  }
}

.services-hero-bg{
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.services-hero-orb{
  position: absolute;
  border-radius: 999px;
  opacity: 0.75;
}

.services-hero-orb.orb-1{
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(255, 153, 0, 0.35), rgba(255, 153, 0, 0));
  top: -140px;
  right: -80px;
}

.services-hero-orb.orb-2{
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0));
  bottom: -230px;
  left: -160px;
}

.services-hero-orb.orb-3{
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0));
  top: 32%;
  left: 18%;
}

.services-hero-grid{
  position: absolute;
  inset: -20% -10%;
  background-image: linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 64px 64px;
  opacity: 0.35;
}

/* Services hero orb variant - smoke 2 */
.services-hero-bg--smoke2 .services-hero-orb.orb-1{
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(255, 170, 70, 0.24), rgba(255, 170, 70, 0));
  top: -210px;
  right: -140px;
}

.services-hero-bg--smoke2 .services-hero-orb.orb-2{
  width: 540px;
  height: 540px;
  background: radial-gradient(circle, rgba(95, 95, 95, 0.3), rgba(95, 95, 95, 0));
  bottom: -300px;
  left: -220px;
}

.services-hero-bg--smoke2 .services-hero-orb.orb-3{
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0));
  top: 18%;
  left: 10%;
}

.services-hero-bg--smoke2 .services-hero-grid{
  opacity: 0.22;
}

/* Services hero orb variant - smoke 3 (fleet-inspired amber sweep) */
.services-hero-bg--smoke3 .services-hero-orb{
  opacity: 0.82;
}

.services-hero-bg--smoke3 .services-hero-orb.orb-1{
  width: 1300px;
  height: 1050px;
  background: radial-gradient(circle, rgba(255, 153, 0, 0.6), rgba(255, 153, 0, 0));
  top: -520px;
  left: -360px;
}

.services-hero-bg--smoke3 .services-hero-orb.orb-2{
  width: 1900px;
  height: 1500px;
  background: radial-gradient(circle, rgba(110, 110, 110, 0.32), rgba(110, 110, 110, 0));
  bottom: -620px;
  right: -640px;
}

.services-hero-bg--smoke3 .services-hero-orb.orb-3{
  width: 1100px;
  height: 1100px;
  background: radial-gradient(circle, rgba(0, 0, 0, 0.68), rgba(0, 0, 0, 0));
  top: 6%;
  left: 28%;
}

.services-hero-bg--smoke3 .services-hero-grid{
  opacity: 0.2;
}

.services-hero-bg--homeclone .services-hero-orb{
  opacity: 0.85;
}

.services-hero-bg--homeclone .services-hero-orb.orb-1{
  width: 1500px;
  height: 1500px;
  background: radial-gradient(circle, rgba(255, 153, 0, 0.52), rgba(255, 153, 0, 0));
  top: -520px;
  right: -520px;
}

.services-hero-bg--homeclone .services-hero-orb.orb-2{
  width: 1700px;
  height: 1700px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0));
  bottom: -460px;
  left: -640px;
}

.services-hero-bg--homeclone .services-hero-orb.orb-3{
  width: 1150px;
  height: 1150px;
  background: radial-gradient(circle, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0));
  top: -6%;
  left: 36%;
}

.services-hero-bg--homeclone .services-hero-grid{
  opacity: 0.2;
}

.services-page .services-hero-bg--homeclone .services-hero-orb.orb-1{
  top: -420px;
  right: -360px;
}

.services-page .services-hero-bg--homeclone .services-hero-orb.orb-2{
  bottom: -560px;
  left: -760px;
}

.services-page .services-hero-bg--homeclone .services-hero-orb.orb-3{
  top: 12%;
  left: 46%;
}

.services-hero-bg--homeclone.services-hero-bg--animate .services-hero-orb{
  animation-duration: 1.6s;
}

.services-hero-bg--homeclone.services-hero-bg--animate .services-hero-orb.orb-1{
  --hero-orb-x: 160px;
  --hero-orb-y: 110px;
}

.services-hero-bg--homeclone.services-hero-bg--animate .services-hero-orb.orb-2{
  --hero-orb-x: -220px;
  --hero-orb-y: -140px;
}

.services-hero-bg--homeclone.services-hero-bg--animate .services-hero-orb.orb-3{
  --hero-orb-x: 95px;
  --hero-orb-y: 210px;
}

.repairs-page .services-hero-bg--smoke3 .services-hero-orb.orb-1{
  top: -420px;
  right: -520px;
  left: auto;
}

.repairs-page .services-hero-bg--smoke3 .services-hero-orb.orb-2{
  bottom: -520px;
  left: -460px;
  right: auto;
}

.repairs-page .services-hero-bg--smoke3 .services-hero-orb.orb-3{
  top: 14%;
  left: 52%;
}

.repairs-page .services-hero-bg--homeclone .services-hero-orb.orb-1{
  top: -520px;
  right: -520px;
}

.repairs-page .services-hero-bg--homeclone .services-hero-orb.orb-2{
  bottom: -640px;
  left: -220px;
}

.repairs-page .services-hero-bg--homeclone .services-hero-orb.orb-3{
  top: -8%;
  left: 12%;
}

.repairs-page .services-hero-bg--animate .services-hero-orb{
  animation-duration: 1.6s;
}

.repairs-page .services-hero-bg--animate .services-hero-orb.orb-1{
  --hero-orb-x: -95px;
  --hero-orb-y: -70px;
}

.repairs-page .services-hero-bg--animate .services-hero-orb.orb-2{
  --hero-orb-x: 110px;
  --hero-orb-y: 85px;
}

.repairs-page .services-hero-bg--animate .services-hero-orb.orb-3{
  --hero-orb-x: -70px;
  --hero-orb-y: 85px;
}

.services-kicker{
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1rem;
}

.services-lead{
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 36rem;
}

.services-hero .hero-actions,
.mot-hero .hero-actions{
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.75rem;
}

.services-hero .hero-action-stack,
.mot-hero .hero-action-stack{
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  justify-items: stretch;
  width: 100%;
  max-width: 36rem;
}

.services-hero .hero-action-stack > .btn,
.services-hero .hero-action-stack > .jump-to-service-inline,
.mot-hero .hero-action-stack > .btn,
.mot-hero .hero-action-stack > .jump-to-service-inline{
  width: 100%;
}

.services-hero .hero-meta,
.mot-hero .hero-meta{
  max-width: 36rem;
}

.services-hero .hero-meta--pills,
.mot-hero .hero-meta--pills{
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  max-width: 36rem;
}

.services-hero .hero-pill,
.mot-hero .hero-pill{
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  border: 1px solid #575757;
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.85rem;
  color: #f8f8f8;
}

.services-hero .hero-pill i,
.mot-hero .hero-pill i{
  color: var(--brand-primary);
}

.hero-side-card--rail{
  position: relative;
}

.hero-side-card-pill{
  position: absolute;
  top: 1.1rem;
  right: 1.1rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.1);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #111;
}

@media (max-width: 991.98px){
  .hero-side-card-pill{
    top: 0.85rem;
    right: 0.85rem;
    padding: 0.25rem 0.55rem;
    font-size: 0.68rem;
    letter-spacing: 0.01em;
  }
}

.services-hero .hero-side-card-header,
.mot-hero .hero-side-card-header,
.pf-hero .hero-side-card-header{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 0.25rem;
  margin-bottom: 1.1rem;
}

.services-hero .hero-side-card-title,
.mot-hero .hero-side-card-title,
.pf-hero .hero-side-card-title{
  font-weight: 700;
}

.services-hero .hero-side-card-subtitle,
.mot-hero .hero-side-card-subtitle,
.pf-hero .hero-side-card-subtitle{
  font-size: 0.9rem;
  color: rgba(17, 17, 17, 0.6);
  font-weight: 500;
  line-height: 1.35;
}

@media (max-width: 575.98px){
  .services-page .hero-side-card{
    border-radius: 1.2rem;
    padding: 1.15rem;
    border: 1px solid #ebe3d7;
    box-shadow: 0 14px 24px rgba(0, 0, 0, 0.07);
  }

  .services-page .hero-side-card-header{
    margin-bottom: 0.8rem;
  }

  .services-page .hero-side-card-title{
    font-size: 1rem;
  }

  .services-page .hero-side-card-subtitle{
    font-size: 0.82rem;
    color: #4f4b44;
  }
}

.hero-side-note{
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.75rem 0.9rem;
  border-radius: 1rem;
  background: #fff4e2;
  border: 1px solid #f2d6ad;
}

.hero-side-card--rail .hero-side-note{
  align-items: flex-start;
  background: #f5f2ec;
  border-color: transparent;
  border-radius: 0.85rem;
  padding: 0.65rem 0.85rem;
}

.hero-side-note-icon{
  width: 2.25rem;
  height: 2.25rem;
  min-width: 2.25rem;
  min-height: 2.25rem;
  flex: 0 0 auto;
  border-radius: 0.6rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #111;
  color: #fff;
}

.hero-side-card--rail .hero-side-note-icon{
  margin-top: 0.1rem;
}

.hero-side-panel{
  border-radius: 1.25rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: #f6f7fb;
  padding: 1rem 1.1rem 1.05rem;
}

.hero-side-card--rail .hero-side-panel{
  border: none;
  background: transparent;
  padding: 0;
}

.hero-side-panel-title{
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  font-weight: 700;
  color: rgba(17, 17, 17, 0.65);
  margin-bottom: 0.65rem;
}

.hero-side-panel-list{
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.55rem;
  font-size: 0.95rem;
  color: #111;
}

.hero-side-card--rail .hero-side-panel-list{
  gap: 0.75rem;
  margin-top: 0.1rem;
}

.hero-side-panel-list li{
  position: relative;
  padding-left: 1.6rem;
  line-height: 1.45;
}

.hero-side-card--rail .hero-side-panel-list li{
  background: #f5f2ec;
  padding: 0.65rem 0.85rem 0.65rem 3.1rem;
  border-radius: 0.85rem;
}

.hero-side-panel-list li::before{
  content: "\f061";
  font: var(--fa-font-solid);
  position: absolute;
  left: 0;
  top: 50%;
  font-size: 1.15rem;
  line-height: 1.1;
  transform: translateY(-50%);
  text-shadow: 0 4px 10px rgba(0, 0, 0, 0.12);
  color: var(--brand-primary);
}

.hero-side-card--rail .hero-side-panel-list li::before{
  content: "\f054";
  font: var(--fa-font-solid);
  left: 0.8rem;
  width: 1.6rem;
  height: 1.6rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #fff;
  border: 1px solid #111;
  color: #111;
  font-size: 0.75rem;
  line-height: 1;
  text-shadow: none;
  top: 0.7rem;
  transform: none;
}

.legal-page .hero-side-card--rail .hero-side-panel-list li::before{
  content: "\f061";
  color: #111;
  background: transparent;
  border: none;
  width: auto;
  height: auto;
  border-radius: 0;
  font-size: 0.9rem;
  position: static;
  transform: none;
  line-height: 1;
  margin-top: 0.2rem;
}

.legal-page .hero-side-card--rail .hero-side-panel-list .hero-side-panel-list-item--info::before{
  content: "\f05a";
  font-size: 0.92rem;
}

.legal-page .hero-side-card--rail .hero-side-panel-list .hero-side-panel-list-item--info{
  color: rgba(17, 17, 17, 0.72);
  background: rgba(245, 242, 236, 0.55);
}

.legal-page .hero-side-card--rail .hero-side-panel-list li{
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  padding: 0.6rem 0.85rem;
  border-radius: 0.8rem;
}

.legal-page .hero-side-note-icon{
  background: transparent;
  color: #111;
  border: none;
}

.legal-page .hero-side-card--rail{
  padding: 1.4rem;
}

.legal-page .hero-side-card--rail .hero-side-card-header{
  margin-bottom: 0.85rem;
}

.legal-page .hero-side-card--rail .hero-side-card-subtitle{
  font-size: 0.88rem;
}

.legal-page .hero-side-card--rail .hero-side-panel{
  margin-top: 0.75rem;
}

.legal-page .hero-side-card--rail .hero-side-panel-list{
  gap: 0.6rem;
  font-size: 0.92rem;
}

@media (max-width: 991.98px){
  .legal-page .hero-side-card--rail{
    padding: 1.2rem;
  }

  .legal-page .hero-side-card--rail .hero-side-card-title{
    font-size: 1.05rem;
  }

  .legal-page .hero-side-card--rail .hero-side-card-subtitle{
    font-size: 0.82rem;
  }

  .legal-page .hero-side-card--rail .hero-side-panel-list{
    gap: 0.55rem;
    font-size: 0.9rem;
  }

  .legal-page .hero-side-card--rail .hero-side-panel-list li{
    padding: 0.55rem 0.65rem;
    gap: 0.4rem;
  }

  .legal-page .hero-side-card--rail .hero-side-note{
    padding: 0.55rem 0.75rem;
    gap: 0.6rem;
  }
}

@media (max-width: 575.98px){
  .legal-page .hero-side-card--rail{
    padding: 1rem;
    border-radius: 1.1rem;
  }

  .legal-page .hero-side-card--rail .hero-side-panel-list{
    font-size: 0.88rem;
  }

  .legal-page .hero-side-card--rail .hero-side-panel-list li{
    padding: 0.5rem 0.7rem;
  }

  .legal-page .hero-side-card--rail .hero-side-note{
    font-size: 0.88rem;
  }

  .legal-page .hero-side-note-icon{
    width: 1.35rem;
    height: 1.35rem;
    min-width: 1.35rem;
    min-height: 1.35rem;
  }

  .legal-page .hero-side-note-icon i{
    font-size: 0.95rem;
  }
}

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

.hero-side-list--grid .hero-side-list-item{
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  padding: 0.95rem 0.95rem;
  align-items: center;
  text-align: center;
  border: none;
  background: #fafafa;
  box-shadow: none;
  min-height: 124px;
}

.hero-side-list--grid .hero-side-list-icon{
  width: 56px;
  height: 56px;
  aspect-ratio: 1 / 1;
  border-radius: 16px;
  background: #000;
  color: #fff;
  font-size: 1.5rem;
  margin-top: 0;
  flex: 0 0 auto;
}

@media (max-width: 575.98px){
  .services-page .hero-side-list{
    gap: 0.5rem;
    margin-bottom: 0.9rem;
  }

  .services-page .hero-side-list--grid{
    grid-template-columns: 1fr;
  }

  .services-page .hero-side-list--grid .hero-side-list-item{
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
    padding: 0.85rem;
    gap: 0.75rem;
    min-height: auto;
  }

  .services-page .hero-side-list--grid .hero-side-list-icon{
    width: 2.6rem;
    height: 2.6rem;
    border-radius: 0.9rem;
    font-size: 1rem;
    flex: 0 0 auto;
  }
}

.hero-side-list--grid .fw-bold{
  font-size: 1rem;
  line-height: 1.25;
  margin-bottom: 0.25rem;
}

.hero-side-list--grid .hero-side-card-subtitle{
  font-size: 0.86rem;
  line-height: 1.45;
  color: rgba(17, 17, 17, 0.65);
}

@media (max-width: 767.98px){
  .hero-side-list--grid{
    grid-template-columns: 1fr;
  }
}

@media (max-width: 575.98px) and (orientation: portrait){
  .services-hero .hero-side-card{
    border-radius: 1.2rem;
    padding: 1.15rem;
    border: 1px solid #ebe3d7;
    box-shadow: 0 14px 24px rgba(0, 0, 0, 0.07);
  }

  .services-hero .hero-side-card-header{
    margin-bottom: 0.8rem;
  }

  .services-hero .hero-side-card-title{
    font-size: 1rem;
  }

  .services-hero .hero-side-card-subtitle{
    font-size: 0.82rem;
    color: #4f4b44;
  }

  .services-hero .hero-side-list{
    gap: 0.5rem;
    margin-bottom: 0.9rem;
  }

  .services-hero .hero-side-list--grid{
    grid-template-columns: 1fr;
  }

  .services-hero .hero-side-list--grid .hero-side-list-item{
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
    padding: 0.85rem;
    gap: 0.75rem;
    min-height: auto;
  }

  .services-hero .hero-side-list--grid .hero-side-list-icon{
    width: 2.6rem;
    height: 2.6rem;
    border-radius: 0.9rem;
    font-size: 1rem;
    flex: 0 0 auto;
  }

  .services-hero .services-lead{
    font-size: 1.1rem;
    margin-bottom: 0.6rem;
  }

  .repairs-page .services-hero .services-hero-actions{
    margin-bottom: 1rem;
  }

  .repairs-page #repairs-help,
  .repairs-page #repairs-diagnostics,
  .repairs-page #repairs-mot,
  .repairs-page #repairs-not{
    scroll-margin-top: calc(var(--scroll-anchor-offset) * 0.34);
  }

  .repairs-page .repairs-section{
    padding-top: var(--content-section-pad-y-sm);
    padding-bottom: var(--content-section-pad-y-sm);
  }

  .repairs-page .hero-side-card,
  .hero-side-card--repairs{
    margin-top: 1rem;
    padding: .95rem;
    border-radius: 1rem;
    box-shadow: 0 14px 24px rgba(0, 0, 0, 0.16);
  }

  .repairs-page .hero-side-card-header,
  .hero-side-card--repairs .hero-side-card-header{
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: .15rem;
    margin-bottom: .55rem;
  }

  .repairs-page .hero-side-card-title,
  .hero-side-card--repairs .hero-side-card-title{
    font-size: .95rem;
  }

  .repairs-page .hero-side-card-subtitle,
  .hero-side-card--repairs .hero-side-card-subtitle{
    font-size: .78rem;
    line-height: 1.2;
    color: #4f4b44;
  }

  .repairs-page .hero-side-list,
  .hero-side-card--repairs .hero-side-list{
    gap: .4rem;
    margin-bottom: .6rem;
  }

  .repairs-page .hero-side-list-item,
  .hero-side-card--repairs .hero-side-list-item{
    padding: .42rem .55rem;
    gap: .45rem;
    border-radius: .7rem;
    font-size: .82rem;
    line-height: 1.2;
  }

  .repairs-page .hero-side-list-icon,
  .hero-side-card--repairs .hero-side-list-icon{
    width: 1.35rem;
    height: 1.35rem;
    border-radius: 999px;
    font-size: .55rem;
    flex: 0 0 1.35rem;
  }

  .repairs-page .services-hero .services-hero-actions .btn-call.btn-lg{
    width: 100%;
  }

  .repairs-page #repairs-help .row.g-4{
    --bs-gutter-y: 1rem;
  }

  .repairs-page #repairs-help .mot-eyebrow{
    font-size: .72rem;
    letter-spacing: .14em;
    margin-bottom: .25rem;
  }

  .repairs-page #repairs-help .h4{
    font-size: 1.2rem;
    margin-bottom: .45rem !important;
  }

  .repairs-page #repairs-help .mot-section-intro{
    font-size: 1rem;
    line-height: 1.35;
  }

  .repairs-page #repairs-help .mot-note{
    margin-top: .85rem !important;
    padding: .65rem .75rem;
    border-radius: .8rem;
  }

  .repairs-page #repairs-help .mot-note__icon{
    width: 1.9rem;
    height: 1.9rem;
    min-width: 1.9rem;
    min-height: 1.9rem;
    border-radius: .55rem;
    font-size: .75rem;
  }

  .repairs-page #repairs-help .row.g-3{
    --bs-gutter-x: .65rem;
    --bs-gutter-y: .65rem;
  }

  .repairs-page #repairs-help .service-card{
    border-radius: 1rem;
    box-shadow: 0 10px 18px rgba(0, 0, 0, 0.06);
  }

  .repairs-page #repairs-help .service-card .card-body{
    padding: .8rem .85rem;
  }

  .repairs-page #repairs-help .service-card .d-flex{
    gap: .65rem !important;
  }

  .repairs-page #repairs-help .home-reassurance-icon{
    width: 2.15rem;
    height: 2.15rem;
    flex: 0 0 2.15rem;
    border-radius: .7rem;
    font-size: .9rem;
  }

  .repairs-page #repairs-help .service-card h3{
    font-size: .9rem;
    margin-bottom: .35rem !important;
    padding-bottom: .2rem;
  }

  .repairs-page #repairs-help .tick-list.is-compact li{
    font-size: .82rem;
    line-height: 1.25;
    padding-bottom: .25rem;
    margin-bottom: .25rem;
    gap: .45rem;
  }

  .repairs-page #repairs-help .tick-list i{
    width: 1rem;
    height: 1rem;
    min-width: 1rem;
    min-height: 1rem;
    flex: 0 0 1rem;
    font-size: .6rem;
    line-height: 1;
  }

  .repairs-page #repairs-help .service-card .btn.btn-sm{
    --bs-btn-font-size: .76rem;
    --bs-btn-padding-y: .22rem;
    --bs-btn-padding-x: .5rem;
  }

  .repairs-page #repairs-diagnostics .row.g-4,
  .repairs-page #repairs-mot .row.g-4,
  .repairs-page #repairs-not .row.g-4{
    --bs-gutter-y: 1rem;
  }

  .repairs-page #repairs-diagnostics .mot-eyebrow,
  .repairs-page #repairs-mot .mot-eyebrow,
  .repairs-page #repairs-not .mot-eyebrow{
    font-size: .72rem;
    letter-spacing: .14em;
    margin-bottom: .25rem;
  }

  .repairs-page #repairs-diagnostics .h4,
  .repairs-page #repairs-mot .h4,
  .repairs-page #repairs-not .h4{
    font-size: 1.2rem;
    margin-bottom: .45rem !important;
  }

  .repairs-page #repairs-diagnostics .mot-section-intro,
  .repairs-page #repairs-mot .mot-section-intro,
  .repairs-page #repairs-not .mot-section-intro{
    font-size: 1rem;
    line-height: 1.35;
  }

  .repairs-page #repairs-help .mot-note,
  .repairs-page #repairs-diagnostics .mot-note,
  .repairs-page #repairs-mot .mot-note{
    font-size: .9rem;
    line-height: 1.35;
  }

  .repairs-page #repairs-diagnostics .mot-note,
  .repairs-page #repairs-mot .mot-note{
    margin-top: .85rem !important;
    padding: .65rem .75rem;
    border-radius: .8rem;
    gap: .65rem;
  }

  .repairs-page #repairs-diagnostics .mot-note__icon,
  .repairs-page #repairs-mot .mot-note__icon{
    width: 1.9rem;
    height: 1.9rem;
    min-width: 1.9rem;
    min-height: 1.9rem;
    flex: 0 0 1.9rem;
    border-radius: .55rem;
  }

  .repairs-page #repairs-diagnostics .mot-note__icon i,
  .repairs-page #repairs-mot .mot-note__icon i{
    font-size: .75rem;
  }

  .repairs-page #repairs-diagnostics .row.g-4 .row.g-4,
  .repairs-page #repairs-mot .row.g-3,
  .repairs-page #repairs-not .row.g-3{
    --bs-gutter-x: .65rem;
    --bs-gutter-y: .65rem;
  }

  .repairs-page #repairs-diagnostics .thin-card,
  .repairs-page #repairs-mot .thin-card{
    border-radius: 1rem;
    box-shadow: 0 10px 18px rgba(0, 0, 0, 0.06);
    padding: .8rem .85rem !important;
  }

  .repairs-page #repairs-diagnostics .thin-card .d-flex,
  .repairs-page #repairs-mot .thin-card .d-flex,
  .repairs-page #repairs-not .service-card .d-flex{
    gap: .65rem !important;
  }

  .repairs-page #repairs-diagnostics .home-reassurance-icon,
  .repairs-page #repairs-mot .home-reassurance-icon,
  .repairs-page #repairs-not .home-reassurance-icon{
    width: 2.15rem;
    height: 2.15rem;
    flex: 0 0 2.15rem;
    border-radius: .7rem;
    font-size: .9rem;
  }

  .repairs-page #repairs-diagnostics .fw-bolder.mb-1,
  .repairs-page #repairs-mot .fw-bolder.mb-1{
    font-size: .88rem;
    line-height: 1.15;
    margin-bottom: .15rem !important;
  }

  .repairs-page #repairs-diagnostics .text-muted.small,
  .repairs-page #repairs-mot .text-muted.small{
    font-size: .8rem;
    line-height: 1.25;
  }

  .repairs-page #repairs-not .service-card{
    border-radius: 1rem;
    box-shadow: 0 10px 18px rgba(0, 0, 0, 0.06);
  }

  .repairs-page #repairs-not .service-card .card-body{
    padding: .8rem .85rem;
  }

  .repairs-page #repairs-not .service-card h3{
    font-size: .9rem;
    line-height: 1.2;
    margin-bottom: .3rem !important;
  }

  .repairs-page #repairs-not .service-card p.text-muted.small{
    font-size: .8rem;
    line-height: 1.25;
  }
}

@media (max-width: 767.98px) and (orientation: portrait){
  .services-hero .hero-picks{
    justify-items: stretch;
  }

  .services-hero .hero-picks > .btn,
  .services-hero .hero-picks > .jump-to-service-inline,
  .services-hero .hero-picks .jump-to-service-btn,
  .services-hero .services-hero-actions > .btn,
  .services-hero .hero-actions > .btn{
    width: 100%;
  }
}

.services-page .service-card{
  border-radius: 1.2rem;
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.06);
  border-color: rgba(0, 0, 0, 0.08);
  margin-bottom: 2rem !important;
}

.services-page .service-book-btn{
  padding: 0.35rem 0.7rem;
  font-size: 0.9rem;
  border-radius: 0.4rem;
}

.services-page .service-section-divider{
  height: auto;
  padding: 0;
  margin: 2.5rem 0 1.5rem;
  border-top: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 0;
  background: transparent;
  overflow: visible;
}

.services-page .service-card + .service-section-divider{
  margin-top: 3.75rem !important;
}

.services-page .service-section-divider::before{
  content: none;
}

.services-page .service-section-label{
  position: relative;
  top: -0.65rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
  color: #111;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
}

.services-page .service-sidebar{
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
  overflow: visible;
}

.services-page .service-sidebar #servicesNav{
  gap: 0.3rem !important;
  padding-left: 0.9rem;
  border-left: 1px solid rgba(17, 17, 17, 0.1);
}

.services-page .service-sidebar .small.text-uppercase{
  color: rgba(17, 17, 17, 0.46);
  letter-spacing: 0.18em;
  font-size: 0.66rem;
  margin-top: 1rem !important;
  margin-bottom: 0.3rem !important;
  padding-left: 0.15rem;
}

.services-page .service-sidebar #servicesNav > .small.text-uppercase:first-child{
  margin-top: 0 !important;
}

.services-page .service-details{
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  background: #fafafa;
}

.services-page .meta-tile{
  background: #f8f9fb;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: none;
}

.services-page .service-meta-tiles .fa-solid{
  background: rgba(var(--brand-primary-rgb), 0.14);
}

@media (max-width: 575.98px){
  .services-page .meta-tile{
    background: transparent;
    border: 0;
    box-shadow: none;
    padding: 0;
  }

  .services-page .service-meta-tiles .fa-solid{
    background: #fdebd3;
  }
}

@media (max-width: 767.98px){
  .services-hero .hero-side-card{
    margin-top: 1.5rem;
  }
}

/* =========================
   Homepage
   ========================= */
.home-page{
  background: #f6f3ee;
}

.affiliates-logos img{
  height: 75px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  display: block;
}

.affiliates-logos{
  justify-content: flex-end;
}

@media (max-width: 991.98px){
  .affiliates-logos{
    justify-content: center;
    flex-wrap: nowrap;
    gap: 0.75rem;
  }

  .affiliates-logos img{
    height: 56px;
  }
}

@media (max-width: 767.98px) and (max-height: 420px){
  .affiliates-logos{
    flex-wrap: nowrap;
    gap: 0.5rem;
  }

  .affiliates-logos img{
    height: 44px;
  }
}

@media (max-width: 575.98px){
  .affiliates-logos{
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-items: start;
    gap: 0.75rem 1rem;
  }

  .affiliates-logos img{
    height: 56px;
    justify-self: start;
  }

  .affiliates-logos img[alt="Trust My Garage"]{
    padding-left: 5px;
  }

  .home-page [aria-label="Certifications and standards"] .row.g-3.align-items-center{
    padding: 1rem 0;
  }

}

@media (max-width: 575.98px) and (orientation: portrait){
  .home-page [aria-label="Certifications and standards"]{
    margin: .6rem .85rem .65rem;
    border: 1px solid #ece4d7 !important;
    border-radius: 1rem;
    background: #fff !important;
    box-shadow: 0 10px 18px rgba(0, 0, 0, 0.06);
    overflow: hidden;
  }

  .home-page [aria-label="Certifications and standards"] .container{
    padding-left: .9rem;
    padding-right: .9rem;
  }

  .home-page [aria-label="Certifications and standards"] .row.g-3.align-items-center{
    padding: .7rem 0;
  }

  .home-page [aria-label="Certifications and standards"] .small.text-uppercase{
    font-size: .68rem;
    letter-spacing: .12em;
    margin-bottom: .25rem !important;
  }

  .home-page [aria-label="Certifications and standards"] p{
    font-size: .9rem;
    line-height: 1.35;
  }

  .home-page [aria-label="Certifications and standards"] .affiliates-logos{
    gap: .65rem !important;
  }
}

@media (min-width: 992px){
  .affiliates-logos{
    flex-wrap: nowrap;
  }
}

.home-hero-wrap{
  display: flex;
  flex-direction: column;
}

.home-hero-wrap .trust-band{
  margin-top: auto;
}

.home-hero{
    position: relative;
    overflow: hidden;
    overflow-x: clip;
    padding: 1.5rem 0 3.5rem;
    background: linear-gradient(120deg, #0b0b0b 0%, #1e1e1e 45%, #2b1a00 100%);
    color: #fff;
}

@media (min-width: 992px){
  .trust-band{
    padding: 1.5rem 0;
  }

  .home-hero{
    padding: 2rem 0 3rem;
  }

  .home-hero-wrap{
    min-height: calc(100vh - 72px);
  }

  .home-hero{
    flex: 1;
    display: flex;
    align-items: center;
  }

  .home-hero > .container{
    width: 100%;
  }
}

.home-hero-bg{
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.home-hero-orb{
  position: absolute;
  border-radius: 999px;
  opacity: 0.75;
  transform: scale(var(--home-hero-orb-scale, 1));
  transform-origin: center;
}

.home-hero-bg--animate .home-hero-orb{
  animation: home-hero-orb-in 1.6s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.home-hero-bg--animate .home-hero-orb.orb-1{
  --home-hero-orb-x: 160px;
  --home-hero-orb-y: 110px;
  animation-delay: 0.05s;
}

.home-hero-bg--animate .home-hero-orb.orb-2{
  --home-hero-orb-x: -220px;
  --home-hero-orb-y: -140px;
  animation-delay: 0.12s;
}

.home-hero-bg--animate .home-hero-orb.orb-3{
  --home-hero-orb-x: 95px;
  --home-hero-orb-y: 210px;
  animation-delay: 0.2s;
}

@keyframes home-hero-orb-in{
  from{
    transform: translate3d(var(--home-hero-orb-x, 0), var(--home-hero-orb-y, 0), 0)
      scale(calc(var(--home-hero-orb-scale, 1) * 1.1));
  }
  to{
    transform: translate3d(0, 0, 0) scale(var(--home-hero-orb-scale, 1));
  }
}

@media (prefers-reduced-motion: reduce){
  .home-hero-bg--animate .home-hero-orb{
    animation: none;
  }
}

.services-hero-bg--animate .services-hero-orb,
.mot-hero-bg--animate .mot-hero-orb,
.pf-hero-bg--animate .pf-hero-orb,
.fleet-hero-bg--animate .fleet-hero-orb{
  animation: hero-orb-in 1.6s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.services-hero-bg--animate .services-hero-orb.orb-1,
.mot-hero-bg--animate .mot-hero-orb.orb-1,
.pf-hero-bg--animate .pf-hero-orb.orb-1,
.fleet-hero-bg--animate .fleet-hero-orb.orb-1{
  --hero-orb-x: 80px;
  --hero-orb-y: -60px;
  animation-delay: 0.05s;
}

.services-hero-bg--animate .services-hero-orb.orb-2,
.mot-hero-bg--animate .mot-hero-orb.orb-2,
.pf-hero-bg--animate .pf-hero-orb.orb-2,
.fleet-hero-bg--animate .fleet-hero-orb.orb-2{
  --hero-orb-x: -90px;
  --hero-orb-y: 70px;
  animation-delay: 0.12s;
}

.services-hero-bg--animate .services-hero-orb.orb-3,
.mot-hero-bg--animate .mot-hero-orb.orb-3,
.pf-hero-bg--animate .pf-hero-orb.orb-3,
.fleet-hero-bg--animate .fleet-hero-orb.orb-3{
  --hero-orb-x: 55px;
  --hero-orb-y: 65px;
  animation-delay: 0.2s;
}

@keyframes hero-orb-in{
  from{
    transform: translate3d(var(--hero-orb-x, 0), var(--hero-orb-y, 0), 0) scale(1.1);
  }
  to{
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@media (prefers-reduced-motion: reduce){
  .services-hero-bg--animate .services-hero-orb,
  .mot-hero-bg--animate .mot-hero-orb,
  .pf-hero-bg--animate .pf-hero-orb,
  .fleet-hero-bg--animate .fleet-hero-orb{
    animation: none;
  }
}

.mot-guide-page .mot-hero-bg--animate .mot-hero-orb{
  animation: mot-hero-orb-settle 1.6s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.mot-guide-page .mot-hero-bg--animate .mot-hero-orb.orb-1{
  --hero-orb-x: 95px;
  --hero-orb-y: -70px;
  animation-delay: 0.03s;
}

.mot-guide-page .mot-hero-bg--animate .mot-hero-orb.orb-2{
  --hero-orb-x: -110px;
  --hero-orb-y: 85px;
  animation-delay: 0.14s;
}

.mot-guide-page .mot-hero-bg--animate .mot-hero-orb.orb-3{
  --hero-orb-x: 70px;
  --hero-orb-y: 85px;
  animation-delay: 0.24s;
}

.pass-fail-page .pf-hero-bg--animate .pf-hero-orb{
  animation: pf-hero-orb-settle 1.6s cubic-bezier(0.18, 1, 0.32, 1) both;
}

.fleet-page .fleet-hero-bg--animate .fleet-hero-orb{
  animation: pf-hero-orb-settle 1.6s cubic-bezier(0.18, 1, 0.32, 1) both;
}

.pass-fail-page .pf-hero-bg--animate .pf-hero-orb.orb-1{
  --hero-orb-x: 160px;
  --hero-orb-y: 110px;
  animation-delay: 0.01s;
}

.fleet-page .fleet-hero-bg--animate .fleet-hero-orb.orb-1{
  --hero-orb-x: 95px;
  --hero-orb-y: -70px;
  animation-delay: 0.02s;
}

.pass-fail-page .pf-hero-bg--animate .pf-hero-orb.orb-2{
  --hero-orb-x: -220px;
  --hero-orb-y: -140px;
  animation-delay: 0.17s;
}

.fleet-page .fleet-hero-bg--animate .fleet-hero-orb.orb-2{
  --hero-orb-x: -110px;
  --hero-orb-y: 85px;
  animation-delay: 0.12s;
}

.pass-fail-page .pf-hero-bg--animate .pf-hero-orb.orb-3{
  --hero-orb-x: 95px;
  --hero-orb-y: 210px;
  animation-delay: 0.27s;
}

.fleet-page .fleet-hero-bg--animate .fleet-hero-orb.orb-3{
  --hero-orb-x: 70px;
  --hero-orb-y: 85px;
  animation-delay: 0.22s;
}

@keyframes mot-hero-orb-settle{
  from{
    transform: translate3d(var(--hero-orb-x, 0), var(--hero-orb-y, 0), 0) scale(1.06);
    opacity: 0.55;
  }
  to{
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.85;
  }
}

@keyframes pf-hero-orb-settle{
  from{
    transform: translate3d(var(--hero-orb-x, 0), var(--hero-orb-y, 0), 0) scale(var(--pf-orb-scale-from, 1.08));
    opacity: 0.5;
  }
  to{
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.85;
  }
}

@media (prefers-reduced-motion: reduce){
  .mot-guide-page .mot-hero-bg--animate .mot-hero-orb,
  .pass-fail-page .pf-hero-bg--animate .pf-hero-orb,
  .fleet-page .fleet-hero-bg--animate .fleet-hero-orb{
    animation: none;
  }
}

.home-hero-orb.orb-1{
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(255, 153, 0, 0.35), rgba(255, 153, 0, 0));
  top: -140px;
  right: -80px;
}

.home-hero-orb.orb-2{
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0));
  bottom: -230px;
  left: -160px;
}

.home-hero-orb.orb-3{
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0));
  top: 32%;
  left: 18%;
}

/* Homepage hero orb variant */
.home-hero-bg--halo .home-hero-orb{
  opacity: 0.85;
}

.home-hero-bg--halo .home-hero-orb.orb-1{
  width: 1200px;
  height: 1200px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0) 60%, rgba(255, 153, 0, 0.35) 61%, rgba(255, 153, 0, 0) 75%);
  top: -260px;
  right: -360px;
}

.home-hero-bg--halo .home-hero-orb.orb-2{
  width: 900px;
  height: 900px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0) 58%, rgba(255, 255, 255, 0.25) 59%, rgba(255, 255, 255, 0) 72%);
  bottom: -280px;
  left: -300px;
}

.home-hero-bg--halo .home-hero-orb.orb-3{
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(0, 0, 0, 0) 55%, rgba(0, 0, 0, 0.35) 56%, rgba(0, 0, 0, 0) 70%);
  top: 18%;
  left: 30%;
}

.home-hero-bg--halo .home-hero-grid{
  opacity: 0.2;
}

.home-hero-sub{
  font-size: 1.25rem;
  margin-bottom: 2rem;
}

/* Homepage hero orb variant - smoke */
.home-hero-bg--smoke .home-hero-orb.orb-1{
  width: 1700px;
  height: 1700px;
  background: radial-gradient(circle, rgba(255, 180, 76, 0.32), rgba(255, 180, 76, 0));
  top: -420px;
  right: -560px;
}

.home-hero-bg--smoke .home-hero-orb.orb-2{
  width: 1900px;
  height: 1900px;
  background: radial-gradient(circle, rgba(90, 90, 90, 0.32), rgba(90, 90, 90, 0));
  bottom: -520px;
  left: -520px;
}

.home-hero-bg--smoke .home-hero-orb.orb-3{
  width: 1500px;
  height: 1500px;
  background: radial-gradient(circle, rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0));
  top: -40px;
  left: 10%;
}

.home-hero-bg--smoke .home-hero-grid{
  opacity: 0.22;
}

/* Homepage hero orb variant - smoke 2 */
.home-hero-bg--smoke2 .home-hero-orb{
  filter: blur(6px);
  opacity: 0.78;
}

.home-hero-bg--smoke2 .home-hero-orb.orb-1{
  width: 1800px;
  height: 1800px;
  background: radial-gradient(circle, rgba(255, 176, 88, 0.28), rgba(255, 176, 88, 0));
  top: -520px;
  right: -640px;
}

.home-hero-bg--smoke2 .home-hero-orb.orb-2{
  width: 2000px;
  height: 2000px;
  background: radial-gradient(circle, rgba(70, 70, 70, 0.3), rgba(70, 70, 70, 0));
  bottom: -620px;
  left: -560px;
}

.home-hero-bg--smoke2 .home-hero-orb.orb-3{
  width: 1400px;
  height: 1400px;
  background: radial-gradient(circle, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0));
  top: -120px;
  left: 18%;
}

.home-hero-bg--smoke2 .home-hero-grid{
  opacity: 0.16;
}

/* Homepage hero orb variant - amber sweep (fleet-inspired) */
.home-hero-bg--amber2 .home-hero-orb{
  opacity: 0.85;
}

.home-hero-bg--amber2 .home-hero-orb.orb-1{
  width: 1400px;
  height: 1400px;
  background: radial-gradient(circle, rgba(255, 153, 0, 0.55), rgba(255, 153, 0, 0));
  top: -520px;
  right: -520px;
}

.home-hero-bg--amber2 .home-hero-orb.orb-2{
  width: 1600px;
  height: 1600px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0));
  bottom: -620px;
  left: -520px;
}

.home-hero-bg--amber2 .home-hero-orb.orb-3{
  width: 1100px;
  height: 1100px;
  background: radial-gradient(circle, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0));
  top: -200px;
  left: 24%;
}

.home-hero-bg--amber2 .home-hero-grid{
  opacity: 0.2;
}

/* Homepage hero orb variant - amber sweep 2 */
.home-hero-bg--amber3 .home-hero-orb{
  opacity: 0.85;
}

.home-hero-bg--amber3 .home-hero-orb.orb-1{
  width: 1500px;
  height: 1500px;
  background: radial-gradient(circle, rgba(255, 153, 0, 0.52), rgba(255, 153, 0, 0));
  top: -640px;
  right: -220px;
}

.home-hero-bg--amber3 .home-hero-orb.orb-2{
  width: 1700px;
  height: 1700px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0));
  bottom: -420px;
  left: -720px;
}

.home-hero-bg--amber3 .home-hero-orb.orb-3{
  width: 1150px;
  height: 1150px;
  background: radial-gradient(circle, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0));
  top: 8%;
  left: 46%;
}

/* Contact hero orb layout: shift positions for a distinct look */
.contact-hero .home-hero-bg--amber3 .home-hero-orb.orb-1{
  top: -520px;
  right: -520px;
}

.contact-hero .home-hero-bg--amber3 .home-hero-orb.orb-2{
  bottom: -640px;
  left: -220px;
}

.contact-hero .home-hero-bg--amber3 .home-hero-orb.orb-3{
  top: -8%;
  left: 12%;
}

.home-hero-bg--amber3 .home-hero-grid{
  opacity: 0.18;
}

.home-hero-grid{
  position: absolute;
  inset: -20% -10%;
  background-image: linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 64px 64px;
  opacity: 0.35;
}

.home-lead{
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 36rem;
}

.home-hero-actions{
  display: grid;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
  max-width: 420px;
}

.home-hero-actions .btn{
  width: 100%;
  font-weight: 600;
  letter-spacing: 0;
}

.home-hero-actions .btn-dark .fa-arrow-up-right-from-square{
  position: relative;
  top: -2px;
}

.home-hero-reassurance{
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1.5rem;
  font-size: 1.3rem;
}

@media (max-width: 991.98px){
  .home-hero{
    --home-hero-orb-scale: 0.7;
  }

  .home-hero{
    padding: 1rem 0 2.25rem;
  }

  .home-hero-sub{
    margin-bottom: 1.25rem;
    font-size: 1.1rem;
  }

  .home-hero-actions{
    gap: 0.35rem;
    margin-bottom: 1rem;
  }

  .home-hero-reassurance{
    margin-bottom: 1rem;
    font-size: 1.1rem;
  }

  .trust-band{
    padding: 1.75rem 0;
  }

  .home-hero-reassurance-line{
    display: block;
  }
}

@media (max-width: 767.98px){
  .home-hero-reassurance{
    display: none;
  }
}

@media (max-width: 991.98px) and (max-height: 450px){
  .home-hero .row{
    flex-wrap: nowrap;
    align-items: flex-start !important;
  }

  .home-hero .row > .col-lg-7{
    flex: 0 0 56%;
    max-width: 56%;
  }

  .home-hero .row > .col-lg-5{
    flex: 0 0 44%;
    max-width: 44%;
  }

  .home-hero .display-5{
    font-size: 2rem;
    line-height: 1.15;
  }

  .home-hero-sub{
    font-size: 1rem;
    margin-bottom: 1rem;
  }

  .home-lead{
    font-size: 1rem;
    margin-bottom: 1rem;
  }

  .home-hero-actions{
    grid-template-columns: 1fr;
    max-width: 100%;
  }

  .home-hero-actions .btn{
    padding: 0.55rem 0.75rem;
    font-size: 0.9rem;
  }

  .home-hero-reassurance{
    font-size: 1rem;
    margin-bottom: 1rem;
  }

  .home-hero .rounded-4.bg-white{
    padding: 1rem !important;
  }

  .home-hero .rounded-4.bg-white .fw-bolder{
    font-size: 1rem;
  }

  .home-hero .hero-picks .btn{
    font-size: 0.86rem;
    padding-left: 0.5rem;
    padding-right: 0.55rem;
    gap: 0.15rem;
  }

  .hero-section .hero-picks .btn{
    padding-left: 0.6rem;
  }

  .home-hero .hero-picks .hero-pick-icon{
    margin-right: 0;
  }

  .home-hero .hero-picks .btn{
    gap: 0.2rem;
  }

  .home-hero .hero-picks-note{
    font-size: 0.85rem;
  }

  .home-page [aria-label="Certifications and standards"] .col-lg-4{
    text-align: center;
  }

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

@media (min-width: 992px) and (max-width: 1199.98px) and (max-height: 800px){
  .home-hero .row{
    align-items: flex-start !important;
  }

  .home-hero .display-5{
    font-size: 2.6rem;
    line-height: 1.12;
  }

  .home-hero .rounded-4.bg-white{
    padding: 1.25rem !important;
  }

  .home-hero .rounded-4.bg-white .fw-bolder{
    font-size: 1.1rem;
  }

  .home-hero .hero-picks{
    justify-items: start;
  }

  .home-hero .hero-picks .btn{
    font-size: 0.92rem;
    padding-left: 0.7rem;
    padding-right: 0.7rem;
    gap: 0.2rem;
    justify-content: flex-start;
    text-align: left;
  }

  .hero-section .hero-picks .btn{
    padding-left: 0.7rem;
  }

  .home-hero .hero-picks .hero-pick-icon{
    margin-right: 0.15rem;
  }

  .home-hero .hero-picks-note{
    font-size: 0.9rem;
  }

  .home-page [aria-label="Certifications and standards"] .row{
    flex-direction: column;
    align-items: center;
  }

  .home-page [aria-label="Certifications and standards"] .col-lg-4,
  .home-page [aria-label="Certifications and standards"] .col-lg-8{
    width: 100%;
    max-width: 100%;
  }

  .home-page [aria-label="Certifications and standards"] .col-lg-4{
    text-align: center;
  }

  .home-page [aria-label="Certifications and standards"] .affiliates-logos{
    justify-content: center;
  }

  .site-footer--premium .footer-links{
    row-gap: 0.3rem;
    margin-bottom: 0.6rem;
  }

  .site-footer--premium .footer-links .footer-link{
    padding: 0.15rem 0.35rem;
    gap: 0.4rem;
    font-size: 0.86rem;
    line-height: 1.2;
  }

  .site-footer--premium .footer-links .footer-link .footer-link-dot{
    width: 0.9rem;
    font-size: 0.85rem;
  }

  .site-footer--premium .footer-links + .footer-heading{
    margin-top: 0.5rem;
    padding-top: 0.5rem;
  }

  .site-footer--premium .footer-col{
    padding: 0.85rem;
  }

  .site-footer--premium .footer-heading{
    margin-bottom: 0.6rem;
    font-size: 0.92rem;
  }

  .home-hero-wrap .trust-band .col-lg-3{
    flex: 0 0 50%;
    max-width: 50%;
  }

  .site-footer--premium .footer-legal-inline{
    display: block !important;
  }

  .site-footer--premium .footer-col--legal{
    display: none !important;
  }
}

@media (min-width: 768px) and (max-width: 991.98px){
  .home-hero .row{
    flex-wrap: nowrap;
    align-items: flex-start !important;
  }

  .home-hero .row > .col-lg-7{
    flex: 0 0 58.333%;
    max-width: 58.333%;
  }

  .home-hero .row > .col-lg-5{
    flex: 0 0 41.667%;
    max-width: 41.667%;
  }

  .home-hero .display-5{
    font-size: 2.1rem;
    line-height: 1.15;
  }

  .home-hero-sub{
    font-size: 1.05rem;
    margin-bottom: 1rem;
  }

  .home-lead{
    font-size: 1.05rem;
    margin-bottom: 1.1rem;
  }

  .home-hero-actions{
    gap: 0.4rem;
    margin-bottom: 1rem;
  }

  .home-hero-actions .btn{
    padding: 0.65rem 0.9rem;
    font-size: 0.98rem;
  }

  .home-hero-reassurance{
    font-size: 1.05rem;
    margin-bottom: 1rem;
  }

  .home-hero .rounded-4.bg-white{
    padding: 1.25rem !important;
  }

  .home-hero .rounded-4.bg-white .fw-bolder{
    font-size: 1.1rem;
  }

  .home-hero .hero-picks .btn{
    font-size: 0.82rem !important;
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
    gap: 0.1rem !important;
    justify-content: flex-start !important;
    text-align: left;
  }

  .hero-section .hero-picks .btn{
    padding-left: 0.5rem;
  }

  .home-hero .hero-picks .hero-pick-icon{
    margin-right: 0 !important;
  }

  .home-hero .hero-picks{
    justify-items: start !important;
  }

  .home-hero .hero-picks-note-text{
    font-size: 0.85rem;
  }

  .home-page [aria-label="Certifications and standards"] .col-lg-4{
    text-align: center;
    margin-bottom: 0.5rem;
  }
}

@media (max-width: 767.98px){
  .home-hero{
    --home-hero-orb-scale: 0.55;
  }
}

@media (max-width: 575.98px){
  .home-hero{
    --home-hero-orb-scale: 0.45;
  }
}

@media (max-width: 419.98px){
  .home-hero{
    --home-hero-orb-scale: 0.4;
  }
}

/* Homepage hero typography by device/orientation */
@media (max-width: 767.98px) and (orientation: portrait){
  .home-hero .display-5{
    font-size: clamp(1.85rem, 6.3vw, 2.2rem);
    line-height: 1.12;
  }

  .home-hero-sub{
    font-size: 1rem;
    line-height: 1.3;
    margin-bottom: 0.9rem;
  }

  .home-lead{
    font-size: 0.98rem;
    line-height: 1.45;
    margin-bottom: 1rem;
  }
}

@media (max-width: 932px) and (max-height: 450px) and (orientation: landscape){
  .home-hero .display-5{
    font-size: clamp(1.65rem, 4.4vw, 1.95rem);
    line-height: 1.1;
  }

  .home-hero-sub{
    font-size: 0.96rem;
    line-height: 1.25;
    margin-bottom: 0.75rem;
  }

  .home-lead{
    font-size: 0.93rem;
    line-height: 1.4;
    margin-bottom: 0.9rem;
  }
}

@media (max-width: 767.98px) and (max-height: 430px) and (orientation: landscape){
  .home-hero .display-5{
    font-size: clamp(1.5rem, 4vw, 1.75rem);
  }

  .home-hero-sub{
    font-size: 0.9rem;
    margin-bottom: 0.6rem;
  }

  .home-lead{
    font-size: 0.88rem;
    margin-bottom: 0.75rem;
  }
}

@media (min-width: 768px) and (max-width: 991.98px) and (orientation: portrait){
  .home-hero .display-5{
    font-size: 2.3rem;
    line-height: 1.12;
  }

  .home-hero-sub{
    font-size: 1.08rem;
    line-height: 1.3;
  }

  .home-lead{
    font-size: 1.03rem;
    line-height: 1.45;
  }
}

@media (min-width: 768px) and (max-width: 991.98px) and (orientation: landscape){
  .home-hero .display-5{
    font-size: 1.95rem;
    line-height: 1.1;
  }

  .home-hero-sub{
    font-size: 1rem;
    line-height: 1.25;
    margin-bottom: 0.9rem;
  }

  .home-lead{
    font-size: 0.98rem;
    line-height: 1.4;
    margin-bottom: 1rem;
  }
}

/* =========================
   Contact hero
   ========================= */
.contact-hero{
  padding: 0.5rem 0 4rem;
  min-height: calc(100vh - 72px);
  min-height: calc(100dvh - 72px);
}

.contact-hero-card{
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.35);
}

.contact-hero-card .text-muted{
  color: rgba(17, 17, 17, 0.65) !important;
}

.form-feedback-banner{
  margin: 0 0 1rem;
  padding: 0.85rem 1rem;
  border: 1px solid transparent;
  border-radius: 0.85rem;
  font-size: 0.95rem;
  line-height: 1.4;
}

.form-feedback-banner[hidden]{
  display: none !important;
}

.form-feedback-banner.is-success{
  background: #edf8f1;
  border-color: #98c9a9;
  color: #134427;
}

.form-feedback-banner.is-error{
  background: #fff2f1;
  border-color: #e2aaa4;
  color: #71201b;
}

.form-feedback-banner-title{
  display: block;
  font-weight: 700;
  margin-bottom: 0.2rem;
}

.form-feedback-banner-text{
  display: block;
}

.contact-hero-map{
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.01em;
  font-size: 1.05rem;
}

.contact-hero-map:hover{
  color: #fff;
}

.contact-hero-map-logo{
  height: 80px;
  width: auto;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.35));
}

.contact-hero-map-icon{
  display: none;
}

.contact-hero-map-text-short{
  display: none;
}

.contact-hero .mot-note{
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.85);
}

.contact-hero .mot-note__icon{
  background: rgba(255, 255, 255, 0.15);
}

.contact-hero .mot-note__icon i{
  color: #f4f4f4;
}

@media (max-width: 991.98px){
  .contact-hero{
    padding: 0 0 3rem;
  }

  .contact-hero-card .card-body{
    padding: 1.5rem !important;
  }

  .contact-hero-card .text-muted{
    margin-bottom: 1rem !important;
  }

  .contact-hero-card .row{
    --bs-gutter-y: 0.5rem;
    --bs-gutter-x: 0.75rem;
  }

  .contact-hero-map{
    width: 100%;
    max-width: 420px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.85rem 1rem;
    border-radius: 0.75rem;
    background: linear-gradient(135deg, #6f6f6f, #424242);
    border: none;
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    text-align: center;
  }

  .contact-hero-map:hover{
    color: #fff;
    background: linear-gradient(135deg, #7b7b7b, #4f4f4f);
  }

  .contact-hero-map-logo{
    display: none;
  }

  .contact-hero-map-icon{
    display: inline-flex;
    color: #fff;
    font-size: 1.05rem;
    transform: translateX(3px);
  }

  .contact-hero-map-text-full,
  .contact-hero-map-text-short{
    margin-left: 0 !important;
  }

  .contact-hero-cta{
    display: grid;
    gap: 0.5rem;
  }

  .contact-hero-cta .home-hero-actions{
    max-width: 100%;
    margin-bottom: 0;
  }

  .contact-hero-cta .btn-call--contact{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-align: center;
  }

  .contact-hero-cta .btn-call--contact,
  .contact-hero-cta .contact-hero-map{
    width: 100%;
    min-height: 52px;
  }

  .contact-hero-cta .contact-hero-map{
    margin-top: 0 !important;
  }

  .contact-hero-phone-icon{
    font-size: 1rem;
  }

  .contact-hero-map-text-full{
    display: none;
  }

  .contact-hero-map-text-short{
    display: inline-flex;
  }
}

@media (max-width: 767.98px) and (orientation: portrait){
  .home-hero-actions{
    gap: 0.5rem;
    margin-bottom: 0.5rem;
  }

  .form-feedback-banner{
    margin-bottom: 0.75rem;
    padding: 0.75rem 0.85rem;
    font-size: 0.88rem;
    line-height: 1.35;
  }

  .contact-hero-cta{
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
  }
}

@media (max-width: 932px) and (max-height: 450px) and (orientation: landscape){
  .home-hero-reassurance{
    display: none;
  }

  .contact-hero .row{
    flex-wrap: wrap;
  }

  .contact-hero-left{
    width: 100%;
    max-width: 100%;
    order: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
    column-gap: 1rem;
    row-gap: 0.5rem;
    align-items: start;
  }

  .contact-hero-left .display-5,
  .contact-hero-left .home-lead{
    grid-column: 1;
  }

  .contact-hero-left .display-5{
    grid-row: 1;
  }

  .contact-hero-left .home-lead{
    grid-row: 2;
  }

  .contact-hero-cta{
    grid-column: 2;
    grid-row: 1 / span 2;
    justify-self: end;
    align-self: start;
  }

  .contact-hero-form-col{
    width: 100%;
    max-width: 100%;
    order: 2;
    margin-top: 0.5rem;
  }

  .contact-hero-cta{
    width: 100%;
    max-width: 320px;
  }

}

@media (min-width: 768px) and (max-width: 991.98px) and (orientation: portrait){
  .contact-hero .row{
    flex-wrap: wrap;
  }

  .contact-hero-left{
    width: 100%;
    max-width: 100%;
    order: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
    column-gap: 1rem;
    row-gap: 0.75rem;
    align-items: start;
  }

  .contact-hero-left .display-5,
  .contact-hero-left .home-lead{
    grid-column: 1;
  }

  .contact-hero-left .display-5{
    grid-row: 1;
  }

  .contact-hero-left .home-lead{
    grid-row: 2;
  }

  .contact-hero-cta{
    grid-column: 2;
    grid-row: 1 / span 2;
    justify-self: end;
    align-self: start;
    max-width: 320px;
  }

  .contact-hero-form-col{
    width: 100%;
    max-width: 100%;
    order: 2;
    margin-top: 0.75rem;
  }
}

@media (min-width: 740px) and (max-width: 932px) and (max-height: 450px) and (orientation: landscape){
  .contact-hero-left{
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    column-gap: 0.75rem;
  }

  .contact-hero-cta{
    max-width: 100%;
    justify-self: stretch;
    justify-items: stretch;
  }
}

@media (min-width: 992px){
  .contact-hero > .container{
    padding-top: 0.5rem;
    padding-bottom: 1.5rem;
  }

  .contact-hero-phone-icon{
    display: none;
  }
}

@media (min-width: 992px) and (max-width: 1024px) and (max-height: 768px) and (orientation: landscape){
  .contact-hero-phone-icon{
    display: inline-flex;
  }
}

@media (min-width: 992px) and (max-width: 1024px) and (max-height: 768px) and (orientation: landscape){
  .contact-hero-cta .contact-hero-map{
    margin-top: 0 !important;
  }

  .contact-hero-cta{
    display: grid;
    gap: 1rem;
    max-width: 420px;
  }

  .contact-hero-cta .home-hero-actions{
    margin-bottom: 0;
    max-width: 100%;
  }

  .contact-hero-cta .btn-call--contact{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    min-height: 52px;
    padding-left: 0;
    padding-right: 0;
    text-align: center;
  }

  .contact-hero-map{
    width: 100%;
    max-width: 420px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.85rem 1rem;
    border-radius: 0.75rem;
    background: linear-gradient(135deg, #6f6f6f, #424242);
    border: none;
    color: #fff;
    font-size: 1.25rem;
    font-weight: 700;
    text-decoration: none;
    text-align: center;
  }

  .contact-hero-map:hover{
    color: #fff;
    background: linear-gradient(135deg, #7b7b7b, #4f4f4f);
  }

  .contact-hero-map-logo{
    display: none;
  }

  .contact-hero-map-icon{
    display: inline-flex;
    color: #fff;
    font-size: 1.05rem;
    transform: translateX(3px);
  }

  .contact-hero-map-text-full{
    display: none;
  }

  .contact-hero-map-text-short{
    display: inline-flex;
    margin-left: 0 !important;
  }

  .contact-hero-map-text-full,
  .contact-hero-map-text-short{
    margin-left: 0 !important;
  }

  .contact-hero-card .card-body{
    padding: 1.5rem !important;
  }

  .contact-hero-card .text-muted{
    margin-bottom: 1rem !important;
  }

  .contact-hero-card .row{
    --bs-gutter-y: 0.5rem;
    --bs-gutter-x: 0.75rem;
  }
}

.home-hero .hero-picks .btn{
  background: rgba(255, 153, 0, 0.18);
  color: #111;
  border: 1px solid rgba(255, 153, 0, 0.35);
}

.home-hero .hero-picks .hero-pick-icon{
  color: #777;
  font-size: 0.7rem;
  margin-right: 0.55rem;
}

.home-hero .hero-picks .btn:hover{
  background: var(--brand-primary);
  border-color: var(--brand-primary);
  color: #fff;
}

  .home-hero-badges{
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
  }

.home-hero-badge{
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.85rem;
  color: #f8f8f8;
}


.home-hero-wrap .trust-band{
  background: #212529;
  color: #f7f4ef;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.home-hero-wrap .trust-item{
  background: #141414;
  border-radius: 1rem;
  padding: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.25);
}

.home-hero-wrap .trust-item .text-muted{
  color: rgba(247, 244, 239, 0.7) !important;
}

.home-hero-wrap .trust-item .fw-bolder{
  color: #fff;
}

.home-hero-wrap .trust-item .trust-icon{
  color: #ff9900;
}

/* =========================
   Footer
   ========================= */
.site-footer{
  background: #0f0f10;
  color: #f7f4ef;
  padding: 4rem 0 2.5rem;
}

.site-footer .footer-card{
  background: #151515;
  border-radius: 1.4rem;
  padding: 1.75rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 18px 32px rgba(0, 0, 0, 0.35);
  height: 100%;
}

.site-footer .footer-card-title{
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.site-footer .footer-logo{
  width: 110px;
  height: auto;
}

.site-footer .footer-map-logo{
  width: 78px;
  height: auto;
  display: block;
}

.site-footer .footer-brand{
  display: grid;
  grid-template-columns: auto 1fr auto;
  grid-template-areas:
    "logo . map"
    "location location location";
  align-items: center;
  column-gap: 1rem;
  row-gap: 0.75rem;
  width: 100%;
  margin-bottom: 1.5rem;
}

.site-footer .footer-logo{
  grid-area: logo;
}

.site-footer .footer-location{
  grid-area: location;
  line-height: 1.5;
  color: rgba(247, 244, 239, 0.88);
  max-width: 32ch;
}

.site-footer .footer-map-block{
  grid-area: map;
  display: grid;
  justify-items: center;
  justify-self: end;
  text-align: center;
  gap: 0.35rem;
}

.site-footer .footer-map-logo-link{
  display: inline-block;
  line-height: 0;
}

.site-footer .footer-map-heading{
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-gray-100, #f1f1f1);
}

.site-footer .footer-contact{
  display: grid;
  gap: 1.1rem;
  margin-bottom: 1.5rem;
}

.site-footer .footer-contact-item{
  display: grid;
  gap: 0.25rem;
}

.site-footer .footer-contact-item--with-icon{
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 0.75rem;
  align-items: center;
}

.site-footer .footer-contact-icon{
  color: rgba(247, 244, 239, 0.7);
  font-size: 2rem;
  line-height: 1;
}

.site-footer .footer-contact-text{
  display: grid;
  gap: 0.25rem;
}

.site-footer .footer-contact-label{
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.65rem;
  color: rgba(247, 244, 239, 0.6);
}

.site-footer .footer-link{
  color: #fff;
  text-decoration: none;
  font-weight: 400;
}

.site-footer .footer-link:hover{
  color: var(--brand-primary);
}

.site-footer .footer-map-link{
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.6rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.06);
}

.site-footer .footer-map-link:hover{
  border-color: var(--brand-primary);
  color: var(--brand-primary);
}

.site-footer .footer-address{
  display: block;
  line-height: 1.5;
  color: rgba(247, 244, 239, 0.8);
  max-width: 18rem;
}

.site-footer .footer-hours-grid{
  display: grid;
  gap: 0.85rem;
  margin-top: 0.6rem;
  margin-bottom: 1.5rem;
}

.site-footer .footer-hours-row{
  display: flex;
  justify-content: space-between;
  color: rgba(247, 244, 239, 0.8);
}

.site-footer .footer-badges{
  margin-top: auto;
}

.site-footer .footer-badge{
  filter: grayscale(1) brightness(1.4);
}

.site-footer .footer-note{
  color: rgba(247, 244, 239, 0.75);
  margin-bottom: 1.25rem;
}

.site-footer .footer-form .form-label{
  color: rgba(247, 244, 239, 0.8);
  font-weight: 600;
}

.site-footer .footer-form .form-control{
  background: #0f0f10;
  border-color: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.site-footer .footer-form .form-control::placeholder{
  color: rgba(247, 244, 239, 0.5);
}

.site-footer .footer-form .form-control:focus{
  border-color: rgba(255, 153, 0, 0.7);
  box-shadow: 0 0 0 0.2rem rgba(255, 153, 0, 0.2);
}

.site-footer .footer-bottom{
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(247, 244, 239, 0.7);
  text-align: center;
}

.site-footer .company-label-short{
  display: none;
}

@media (max-width: 767.98px){
  .site-footer{
    padding: 3rem 0 2rem;
  }

  .site-footer .footer-location{
    font-size: clamp(0.9rem, 3.4vw, 0.98rem);
    line-height: 1.45;
  }
}

@media (min-width: 768px) and (max-width: 820px) and (orientation: portrait){
  .site-footer .footer-location{
    font-size: 0.9rem;
    line-height: 1.4;
  }
}

.home-page .home-service-card{
  border-radius: 1.3rem;
  border: 1px solid #ece4d7;
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.06);
}

.home-page .fleet-teaser{
  border-radius: 1.4rem;
  border: 1px solid #ece4d7;
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.06);
}

.home-page .home-reassurance{
  border-radius: 1.4rem;
  border: 1px solid #ece4d7;
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.06);
}

@media (max-width: 767.98px){
}

.mot-accordion-grid .accordion-compact .accordion-item{
  border-radius: 1rem;
}

.mot-accordion-grid .accordion-compact .accordion-button:not(.collapsed){
  box-shadow: none;
}

@media (max-width: 575.98px){
  .mot-accordion-grid .accordion-compact .accordion-button{
    padding: .8rem .9rem;
    font-size: .96rem;
  }

  .site-footer--premium .footer-bottom{
    text-align: left;
    font-size: .85rem;
    padding-right: 4.5rem;
  }
}

/* =========================
   Pass/Fail – after-fail timeline
   ========================= */

#after-fail .pf-timeline{
  margin: 0;
  padding: 0;
}

#after-fail .pf-timeline-item{
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding-bottom: 1.5rem;
}

#after-fail .pf-timeline-item:last-child{
  padding-bottom: 0;
}

/* Vertical spine */
#after-fail .pf-timeline-item:not(:last-child)::before{
  content: "";
  position: absolute;
  left: 1.125rem;
  top: 2.5rem;
  bottom: 0;
  width: 2px;
  background: linear-gradient(
    to bottom,
    rgba(var(--brand-primary-rgb), 0.18),
    rgba(0, 0, 0, 0.07)
  );
}

/* Numbered marker */
#after-fail .pf-timeline-marker{
  position: relative;
  z-index: 1;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  background: var(--surface);
  color: #111;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.08), inset 0 0 0 3px rgba(var(--brand-primary-rgb), 0.14);
  flex: 0 0 auto;
}

/* Step panel */
#after-fail .pf-timeline-body{
  width: 100%;
  background: var(--surface);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-lg);
  padding: 1rem 1.25rem;
  box-shadow: var(--shadow-sm);
}

#after-fail .pf-timeline-title{
  font-weight: 800;
  margin-bottom: .25rem;
}

#after-fail .pf-timeline-body .mot-list{
  margin-bottom: 0;
}

/* =========================
   Repairs – process timeline
   ========================= */

#repairs-process .pf-timeline{
  margin: 0;
  padding: 0;
}

#repairs-process .pf-timeline-item{
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding-bottom: 1.5rem;
}

#repairs-process .pf-timeline-item:last-child{
  padding-bottom: 0;
}

/* Vertical spine */
#repairs-process .pf-timeline-item:not(:last-child)::before{
  content: "";
  position: absolute;
  left: 1.125rem;
  top: 2.5rem;
  bottom: 0;
  width: 2px;
  background: linear-gradient(
    to bottom,
    rgba(var(--brand-primary-rgb), 0.18),
    rgba(0, 0, 0, 0.07)
  );
}

/* Numbered marker */
#repairs-process .pf-timeline-marker{
  position: relative;
  z-index: 1;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  background: var(--surface);
  color: #111;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.08), inset 0 0 0 3px rgba(var(--brand-primary-rgb), 0.14);
  flex: 0 0 auto;
}

/* Step panel */
#repairs-process .pf-timeline-body{
  width: 100%;
  background: var(--surface);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-lg);
  padding: 1rem 1.25rem;
  box-shadow: var(--shadow-sm);
}

#repairs-process .pf-timeline-title{
  font-weight: 800;
  margin-bottom: .25rem;
}

#repairs-process .pf-timeline-body .mot-list{
  margin-bottom: 0;
}

/* =========================
   Premium footer v2
   ========================= */

.site-footer--premium{
  background:
    radial-gradient(900px 420px at 15% -10%, rgba(var(--brand-primary-rgb), .16), transparent 60%),
    radial-gradient(700px 340px at 85% 0%, rgba(255,255,255,.08), transparent 55%),
    linear-gradient(to bottom, #0b0b0c, #070708);
  padding: 3.5rem 0 2rem;
}

.site-footer--premium .footer-cta{
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;

  padding: 1.1rem 1.25rem;
  border-radius: 1.25rem;

  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 10px 30px rgba(0,0,0,.25);

  margin-bottom: 2rem;
}

.site-footer--premium .footer-cta__title{
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: .01em;
  color: rgba(255,255,255,.95);
}

.site-footer--premium .footer-cta__sub{
  color: rgba(247, 244, 239, 0.72);
  margin-top: .2rem;
}

.site-footer--premium .footer-cta__actions{
  display: flex;
  gap: .6rem;
  flex-wrap: wrap;
}

.site-footer--premium .footer-grid{
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: start;
}

@media (max-width: 991.98px) and (min-width: 576px){
  .site-footer--premium .footer-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 575.98px){
  .site-footer--premium .footer-grid{
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767.98px) and (max-height: 420px){
  .site-footer--premium .footer-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
  }

  .site-footer--premium .footer-col{
    padding: .95rem;
    overflow: hidden;
  }

  .site-footer .footer-contact a[href^="mailto:"]{
    font-size: .9rem;
  }

  .site-footer .footer-address{
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .site-footer--premium .footer-heading{
    font-size: .9rem;
  }

  .site-footer--premium .footer-heading--with-status{
    gap: .4rem;
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .site-footer--premium .footer-heading--with-status > span:first-child{
    flex: 1 1 auto;
    min-width: 0;
  }

  .site-footer--premium .footer-status{
    font-size: .62rem;
    padding: .28rem .5rem;
    max-width: 100%;
    margin-left: auto;
  }

  .site-footer--premium .footer-hours-row{
    grid-template-columns: minmax(4.75rem, 6rem) 1fr;
    gap: .4rem;
    padding: .35rem .5rem;
  }

  .site-footer--premium .footer-hours-row span:first-child{
    font-size: .72rem;
    letter-spacing: .06em;
  }

  .site-footer--premium .footer-hours-row span:last-child{
    font-size: .85rem;
  }

  .site-footer--premium .footer-links{
    row-gap: .2rem;
    margin-bottom: .75rem;
  }

  .site-footer--premium .footer-links .footer-link{
    padding: .15rem .35rem;
    gap: .45rem;
    font-size: .9rem;
    line-height: 1.2;
  }

  .site-footer--premium .footer-links .footer-link .footer-link-dot{
    width: .9rem;
    font-size: .85rem;
  }

  .site-footer--premium .footer-bottom{
    text-align: left;
    font-size: .82rem;
    padding-right: 4.5rem;
    white-space: nowrap;
  }

  .site-footer .company-label-full{
    display: none;
  }

  .site-footer .company-label-short{
    display: inline;
  }

}

@media (max-width: 767.98px) and (max-height: 420px){
  .home-hero .hero-picks{
    justify-items: start;
  }

  .home-hero .hero-picks .btn{
    text-align: left;
  }
}

/* Services page landscape compact pass (phones/tablets through iPad mini) */
@media (min-width: 668px) and (max-width: 1024px) and (max-height: 768px) and (orientation: landscape){
  .services-page > .container > .row.g-4{
    --bs-gutter-x: 1.25rem;
  }

  .services-page > .container > .row.g-4 > aside.col-lg-4{
    flex: 0 0 29%;
    max-width: 29%;
  }

  .services-page > .container > .row.g-4 > section.col-lg-8{
    flex: 0 0 71%;
    max-width: 71%;
  }

  .services-page .service-sidebar{
    top: calc(var(--scroll-mt) + 0.35rem);
  }

  .services-page .service-sidebar #servicesNav{
    padding-left: 0.7rem;
  }

  .services-page .service-sidebar .small.text-uppercase{
    font-size: 0.6rem;
    letter-spacing: 0.16em;
    margin-top: 0.85rem !important;
    margin-bottom: 0.2rem !important;
  }

  .services-page .service-sidebar #servicesNav .nav-link{
    padding: 0.5rem 0.55rem 0.5rem 0.95rem;
    font-size: 0.92rem;
    border-radius: 0.65rem;
  }

  .services-page .service-sidebar #servicesNav .nav-link::before{
    left: 0.3rem;
    width: 0.28rem;
    height: 0.28rem;
  }

  .services-page .service-sidebar #servicesNav .nav-link::after{
    left: -0.65rem;
  }

  .services-hero{
    padding: 2.9rem 0 3.25rem;
  }

  .services-hero .row{
    flex-wrap: nowrap;
    align-items: flex-start !important;
    --bs-gutter-x: 1rem;
    --bs-gutter-y: .85rem;
  }

  .services-hero .row > .col-lg-7{
    flex: 0 0 58%;
    max-width: 58%;
  }

  .services-hero .row > .col-lg-5{
    flex: 0 0 42%;
    max-width: 42%;
  }

  .services-hero .display-5{
    font-size: 2rem;
    line-height: 1.12;
    margin-bottom: .55rem !important;
  }

  .services-kicker{
    font-size: .72rem;
    letter-spacing: .16em;
    margin-bottom: .35rem;
  }

  .services-lead{
    font-size: .95rem;
    line-height: 1.35;
    margin-bottom: .7rem !important;
  }

  .services-hero .hero-lead,
  .services-hero .hero-action-stack,
  .services-hero .hero-meta,
  .services-hero .hero-meta--pills{
    max-width: 29rem;
  }

  .services-hero .hero-lead{
    margin-bottom: 1.2rem !important;
  }

  .services-hero .hero-picks{
    gap: .5rem;
  }

  .services-hero .hero-picks .btn{
    font-size: .88rem;
    padding: .52rem .7rem;
    min-height: auto;
  }

  .services-hero .hero-picks-note{
    font-size: .82rem;
    line-height: 1.25;
  }

  .services-hero .hero-side-card{
    margin-top: 0 !important;
    padding: 1rem;
    border-radius: 1rem;
    max-height: none;
    overflow: visible;
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.24);
  }

  .services-hero .hero-side-card-header{
    margin-bottom: .55rem;
  }

  .services-hero .hero-side-list{
    gap: .4rem;
    margin-bottom: .55rem;
  }

  .services-hero .hero-side-list--grid{
    grid-template-columns: 1fr;
  }

  .services-hero .hero-side-list--grid .hero-side-list-item{
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
    min-height: auto;
    padding: .65rem .7rem;
    gap: .6rem;
    border-radius: .75rem;
  }

  .services-hero .hero-side-list--grid .hero-side-list-icon{
    width: 2.2rem;
    height: 2.2rem;
    border-radius: .7rem;
    font-size: .82rem;
    flex: 0 0 auto;
  }

  .services-hero .hero-side-list--grid .fw-bold{
    font-size: .88rem;
    line-height: 1.15;
    margin-bottom: .1rem;
  }

  .services-hero .hero-side-list--grid .hero-side-card-subtitle{
    font-size: .74rem;
    line-height: 1.25;
  }

  .services-page .service-card{
    font-size: .98rem;
    line-height: 1.45;
    margin-bottom: 1.5rem !important;
  }

  .services-page .service-card .card-body{
    padding: 1rem 1.05rem;
  }

  .services-page .service-card-layout{
    grid-template-columns: minmax(0, 1fr) 212px;
    gap: .85rem;
  }

  .services-page .service-card .card-title{
    font-size: 1.08rem;
    line-height: 1.15;
    margin-bottom: .4rem !important;
  }

  .services-page .service-summary{
    font-size: .92rem;
    line-height: 1.36;
    margin-bottom: .7rem;
    max-width: none;
  }

  .services-page .service-actions{
    gap: .6rem;
  }

  .services-page .service-book-btn{
    padding: .45rem .75rem;
    font-size: .84rem;
    border-radius: .6rem;
  }

  .services-page .details-toggle{
    font-size: .84rem;
  }

  .services-page #service-repairs .service-actions{
    gap: .5rem;
  }

  .services-page #service-repairs .service-actions .btn{
    padding: .43rem .68rem;
    font-size: .82rem;
    border-radius: .6rem;
    line-height: 1.2;
  }

  .services-page .service-meta-tiles{
    gap: .5rem;
  }

  .services-page .meta-tile{
    padding: .5rem .38rem;
    border-radius: 13px;
  }

  .services-page .service-meta-tiles .bi,
  .services-page .service-meta-tiles .fa-solid{
    width: 46px;
    height: 46px;
    border-radius: 13px;
    font-size: 1.2rem;
    margin-bottom: .35rem;
    flex: 0 0 46px;
  }

  .services-page .meta-tile-value{
    font-size: .9rem;
    line-height: 1.08;
    white-space: normal;
    text-wrap: balance;
    margin-bottom: .18rem;
  }

  .services-page .meta-tile-label{
    font-size: .7rem;
    line-height: 1.1;
  }

  .services-page .service-details{
    padding: .95rem 1rem;
    border-top-color: rgba(0, 0, 0, 0.06);
  }

  .services-page .service-details-grid{
    gap: 1rem;
  }

  .services-page .detail-block{
    padding: .65rem .75rem;
    border-radius: .5rem;
    margin-bottom: .65rem;
  }

  .services-page .service-details h4{
    font-size: .9rem;
    line-height: 1.2;
    margin-bottom: .3rem !important;
  }

  .services-page .service-details h4 .fa-solid{
    font-size: .82rem;
  }

  .services-page .service-details p{
    font-size: .84rem;
    line-height: 1.35;
    margin-bottom: .65rem !important;
  }

  .services-page .detail-block p + p{
    margin-top: .4rem;
  }

  .services-page .service-details .tick-list{
    margin-bottom: .65rem !important;
  }

  .services-page .service-details .tick-list li{
    font-size: .84rem;
    line-height: 1.3;
    margin-bottom: .32rem;
    padding-top: .08rem;
    padding-bottom: .28rem;
    align-items: flex-start;
  }

  .services-page .service-details .tick-list i{
    width: 1.18rem;
    height: 1.18rem;
    min-width: 1.18rem;
    min-height: 1.18rem;
    flex: 0 0 1.18rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    font-size: .68rem;
    margin-top: .08rem;
  }

  .services-page .service-ref-pill{
    font-size: .76rem;
    padding: .26rem .48rem;
    border-radius: .55rem;
  }

  .services-page .service-details-footer{
    margin-top: .5rem;
    padding-top: .45rem;
  }

  .services-page .warranty-cta-section.mot-guides-cta{
    margin-top: 2rem;
    border-radius: 1.1rem;
  }

  .services-page .warranty-cta{
    padding: 1rem 1.05rem;
  }

  .services-page #service-mot-guides .row{
    --bs-gutter-x: .9rem;
    --bs-gutter-y: .7rem;
  }

  .services-page #service-mot-guides .h4{
    font-size: 1.06rem;
    line-height: 1.15;
  }

  .services-page .mot-guides-eyebrow{
    font-size: .66rem;
    letter-spacing: .15em;
    margin-bottom: .2rem;
  }

  .services-page .mot-guides-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .6rem;
  }

  .services-page .mot-guide-card{
    padding: .8rem .85rem;
    border-radius: .9rem;
    gap: .6rem;
    box-shadow: 0 10px 18px rgba(0, 0, 0, 0.08);
  }

  .services-page .mot-guide-card-icon{
    width: 2.15rem;
    height: 2.15rem;
    border-radius: .65rem;
    font-size: .84rem;
  }

  .services-page .mot-guide-card-text{
    font-size: .82rem;
    line-height: 1.28;
  }

  .services-page .mot-guide-card-title{
    font-size: .86rem;
    line-height: 1.18;
    margin-bottom: .28rem !important;
  }

  .services-page .mot-cta{
    padding-bottom: 1.2rem;
  }

  .services-page .mot-cta-card,
  .services-page .mot-cta-inner{
    padding: 1rem;
    border-radius: 1.1rem;
  }

  .services-page .mot-cta-grid{
    gap: .95rem;
  }

  .services-page .mot-cta-eyebrow{
    font-size: .62rem;
    letter-spacing: .15em;
    margin-bottom: .25rem;
  }

  .services-page .mot-cta .h3{
    font-size: 1.02rem;
    line-height: 1.15;
    margin-bottom: .3rem !important;
  }

  .services-page .mot-cta-body .mot-body{
    font-size: .82rem;
    line-height: 1.28;
  }

  .services-page .mot-cta-actions{
    gap: .5rem;
  }

  .services-page .mot-cta-actions .btn{
    --bs-btn-padding-y: .45rem;
    --bs-btn-padding-x: .7rem;
    font-size: .84rem;
    border-radius: .6rem;
  }

  .services-page .mot-cta-actions .btn .fa-solid{
    font-size: .74rem;
  }
}

/* Services page portrait tablet layout (iPad mini 768x1024) */
@media (min-width: 768px) and (max-width: 991.98px){
  .services-hero,
  .fleet-hero,
  .mot-guide-page .mot-hero,
  .pass-fail-page .pf-hero{
    padding-top: 2.5rem;
  }

  .services-hero .row,
  .fleet-hero .row,
  .mot-guide-page .mot-hero .row,
  .pass-fail-page .pf-hero .row{
    flex-wrap: nowrap;
    align-items: flex-start !important;
  }

  .services-hero .row > .col-lg-7,
  .fleet-hero .row > .col-lg-7,
  .mot-guide-page .mot-hero .row > .col-lg-7,
  .pass-fail-page .pf-hero .row > .col-lg-7{
    flex: 0 0 58.333%;
    max-width: 58.333%;
  }

  .services-hero .row > .col-lg-5,
  .fleet-hero .row > .col-lg-5,
  .mot-guide-page .mot-hero .row > .col-lg-5,
  .pass-fail-page .pf-hero .row > .col-lg-5{
    flex: 0 0 41.667%;
    max-width: 41.667%;
  }

  .services-hero .hero-picks{
    gap: 0.5rem;
  }

  .services-hero .hero-picks .btn{
    font-size: 0.95rem;
    padding: 0.6rem 0.85rem;
  }

  .services-hero .hero-side-card,
  .fleet-hero .hero-side-card{
    padding: 1.2rem;
    border-radius: 1.2rem;
    box-shadow: 0 20px 36px rgba(0, 0, 0, 0.26);
  }

  .services-hero .hero-side-card-header,
  .fleet-hero .hero-side-card-header{
    margin-bottom: 0.7rem;
  }

  .fleet-hero .hero-side-card{
    padding: 1rem;
    border-radius: 1rem;
  }

  .fleet-hero .hero-side-card-title{
    font-size: 1rem;
    line-height: 1.15;
  }

  .fleet-hero .hero-side-card-subtitle{
    font-size: 0.8rem;
    line-height: 1.22;
  }

  .fleet-hero .hero-side-list--steps{
    gap: 1rem;
    margin-bottom: 0.75rem;
    font-size: 0.88rem;
  }

  .fleet-hero .hero-side-list--steps li{
    display: grid;
    grid-template-columns: 1.25rem minmax(0, 1fr);
    align-items: start;
    column-gap: 0.5rem;
    padding: 0.5rem 0.6rem;
    border-radius: 0.75rem;
    line-height: 1.28;
  }

  .fleet-hero .hero-side-list-step{
    width: 1.25rem;
    height: 1.25rem;
    margin-right: 0;
    font-size: 0.62rem;
  }

  .fleet-hero .hero-side-actions{
    gap: 0.5rem;
    padding-top: 0.75rem;
  }

  .fleet-hero .hero-side-actions .btn{
    --bs-btn-padding-y: 0.5rem;
    --bs-btn-padding-x: 0.75rem;
    font-size: 0.88rem;
    line-height: 1.2;
  }

  .services-hero .hero-side-list{
    gap: 0.4rem;
    margin-bottom: 0.55rem;
  }

  .services-hero .hero-side-list--grid{
    grid-template-columns: 1fr;
  }

  .services-hero .hero-side-list--grid .hero-side-list-item{
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
    min-height: auto;
    padding: 0.65rem 0.7rem;
    gap: 0.6rem;
    border-radius: 0.75rem;
  }

  .services-hero .hero-side-list--grid .hero-side-list-icon{
    width: 2.2rem;
    height: 2.2rem;
    border-radius: 0.7rem;
    font-size: 0.82rem;
    flex: 0 0 auto;
  }

  .services-hero .hero-side-list--grid .fw-bold{
    font-size: 0.88rem;
    line-height: 1.15;
    margin-bottom: 0.1rem;
  }

  .services-hero .hero-side-list--grid .hero-side-card-subtitle{
    font-size: 0.74rem;
    line-height: 1.25;
  }

  .services-page .service-card{
    font-size: 1rem;
    line-height: 1.45;
  }

  .services-page .service-card .card-body{
    padding: 1.05rem 1.1rem;
  }

  .services-page .service-card-layout{
    grid-template-columns: minmax(0, 1fr) 220px;
    gap: 0.8rem;
  }

  .services-page .service-card .card-title{
    font-size: 1.05rem;
    margin-bottom: 0.35rem !important;
  }

  .services-page .service-summary{
    font-size: 0.95rem;
    line-height: 1.4;
    margin-bottom: 0.7rem;
  }

  .services-page .service-actions{
    gap: 0.6rem;
  }

  .services-page .service-book-btn{
    padding: 0.5rem 0.8rem;
    font-size: 0.86rem;
    border-radius: 999px;
  }

  .services-page .details-toggle{
    font-size: 0.86rem;
  }

  .services-page .service-meta-tiles{
    gap: 0.5rem;
  }

  .services-page .meta-tile{
    padding: 0.55rem 0.45rem;
    border-radius: 14px;
  }

  .services-page .service-meta-tiles .bi,
  .services-page .service-meta-tiles .fa-solid{
    width: 48px;
    height: 48px;
    border-radius: 14px;
    font-size: 1.3rem;
    margin-bottom: 0.35rem;
    flex: 0 0 48px;
  }

  .services-page .meta-tile-value{
    font-size: 0.98rem;
    line-height: 1.1;
  }

  .services-page .meta-tile-label{
    font-size: 0.78rem;
  }

  .services-page .service-details{
    padding: 0.95rem 1rem;
    border-top-color: rgba(0, 0, 0, 0.06);
  }

  .services-page .service-details-grid{
    gap: 1rem;
  }

  .services-page .detail-block{
    padding: 0.65rem 0.75rem;
    border-radius: 0.5rem;
    margin-bottom: 0.65rem;
  }

  .services-page .service-details h4{
    font-size: 0.9rem;
    line-height: 1.2;
    margin-bottom: 0.3rem !important;
  }

  .services-page .service-details h4 .fa-solid{
    font-size: 0.82rem;
  }

  .services-page .service-details p{
    font-size: 0.84rem;
    line-height: 1.35;
    margin-bottom: 0.65rem !important;
  }

  .services-page .detail-block p + p{
    margin-top: 0.4rem;
  }

  .services-page .service-details .tick-list{
    margin-bottom: 0.65rem !important;
  }

  .services-page .service-details .tick-list li{
    font-size: 0.84rem;
    line-height: 1.3;
    margin-bottom: 0.32rem;
    padding-top: 0.08rem;
    padding-bottom: 0.28rem;
    align-items: flex-start;
  }

  .services-page .service-details .tick-list i{
    width: 1.18rem;
    height: 1.18rem;
    min-width: 1.18rem;
    min-height: 1.18rem;
    flex: 0 0 1.18rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    font-size: 0.68rem;
    margin-top: 0.08rem;
  }

  .services-page .service-ref-pill{
    font-size: 0.76rem;
    padding: 0.26rem 0.48rem;
    border-radius: 0.55rem;
  }

  .services-page .service-details-footer{
    margin-top: 0.5rem;
    padding-top: 0.45rem;
  }

  .services-page .service-includes-card{
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    grid-template-rows: auto 1fr;
    column-gap: 1.2rem;
    row-gap: 0.35rem;
  }

  .services-page .service-includes-card > :nth-child(1),
  .services-page .service-includes-card > :nth-child(2){
    grid-column: 1;
    grid-row: 1;
  }

  .services-page .service-includes-card > :nth-child(2){
    grid-row: 2;
  }

  .services-page .service-includes-card > :nth-child(3){
    display: none;
  }

  .services-page .service-includes-card > :nth-child(4){
    grid-column: 2;
    grid-row: 1;
  }

  .services-page .service-includes-card > :nth-child(5){
    grid-column: 2;
    grid-row: 2;
  }

  .services-page .service-includes-card .tick-list{
    margin-top: 0;
  }

  .services-page .warranty-cta-section.mot-guides-cta{
    margin-top: 2.5rem;
    border-radius: 1.2rem;
  }

  .services-page .warranty-cta{
    padding: 1.25rem 1.35rem;
  }

  .services-page .mot-guides-eyebrow{
    font-size: 0.7rem;
    letter-spacing: 0.16em;
    margin-bottom: 0.25rem;
  }

  .services-page .mot-guides-cta .mot-guides-lead{
    gap: 0.6rem;
  }

  .services-page .mot-guides-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.8rem;
  }

  .services-page .mot-guide-card{
    padding: 1rem 1.05rem;
    border-radius: 1rem;
    gap: 0.75rem;
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.08);
  }

  .services-page .mot-guide-card-icon{
    width: 2.4rem;
    height: 2.4rem;
    border-radius: 0.75rem;
    font-size: 0.95rem;
  }

  .services-page .mot-guide-card-text{
    font-size: 0.9rem;
    line-height: 1.3;
  }
}

@media (min-width: 768px) and (max-width: 991.98px) and (orientation: portrait){
  /* Legal page hero rail cards (privacy + warranty) */
  .services-hero .hero-side-card--rail{
    padding: 0.95rem;
    border-radius: 1rem;
  }

  .services-hero .hero-side-card--rail .hero-side-card-header{
    margin-bottom: 0.45rem;
  }

  .services-hero .hero-side-card--rail .hero-side-card-title{
    font-size: 0.95rem;
    line-height: 1.15;
  }

  .services-hero .hero-side-card--rail .hero-side-card-subtitle{
    font-size: 0.78rem;
    line-height: 1.22;
  }

  .services-hero .hero-side-card--rail .hero-side-note{
    gap: 0.6rem;
    padding: 0.55rem 0.7rem;
    border-radius: 0.75rem;
    font-size: 0.84rem;
    line-height: 1.28;
  }

  .services-hero .hero-side-card--rail .hero-side-note-icon{
    width: 1.85rem;
    height: 1.85rem;
    min-width: 1.85rem;
    min-height: 1.85rem;
    border-radius: 0.55rem;
    font-size: 0.78rem;
  }

  .services-hero .hero-side-card--rail .hero-side-panel.mt-4{
    margin-top: 0.65rem !important;
  }

  .services-hero .hero-side-card--rail .hero-side-panel-title{
    margin-bottom: 0.45rem;
    font-size: 0.66rem;
    letter-spacing: 0.14em;
  }

  .services-hero .hero-side-card--rail .hero-side-panel-list{
    gap: 0.5rem;
    margin-top: 0;
    font-size: 0.84rem;
  }

  .services-hero .hero-side-card--rail .hero-side-panel-list li{
    padding: 0.5rem 0.65rem 0.5rem 2.55rem;
    border-radius: 0.75rem;
    line-height: 1.25;
  }

  .services-hero .hero-side-card--rail .hero-side-panel-list li::before{
    left: 0.75rem;
    font-size: 0.95rem;
  }

  .legal-page .services-hero .hero-side-card--rail .hero-side-panel-list{
    gap: 0.5rem;
    font-size: 0.9rem;
  }

  .legal-page .services-hero .hero-side-card--rail .hero-side-panel-list li{
    padding: 0.55rem 0.65rem;
    gap: 0.4rem;
  }

  .legal-page .services-hero .hero-side-card--rail .hero-side-panel-list li::before{
    position: static;
    left: auto;
    width: auto;
    height: auto;
    background: transparent;
    border: none;
    font-size: 0.9rem;
    margin-top: 0.15rem;
  }
}

/* MOT guide + Pass/Fail landscape compact pass (phones/tablets through iPad mini) */
@media (min-width: 576px) and (max-width: 1024px) and (max-height: 768px) and (orientation: landscape){
  .mot-guide-page .mot-hero{
    padding: 2.9rem 0 3.25rem;
  }

  .pass-fail-page .pf-hero{
    padding: 2.9rem 0 3.25rem;
  }

  .mot-guide-page .mot-hero .row,
  .pass-fail-page .pf-hero .row{
    flex-wrap: nowrap;
    align-items: flex-start !important;
    --bs-gutter-x: 1rem;
    --bs-gutter-y: .85rem;
  }

  .mot-guide-page .mot-hero .row > .col-lg-7,
  .pass-fail-page .pf-hero .row > .col-lg-7{
    flex: 0 0 58%;
    max-width: 58%;
  }

  .mot-guide-page .mot-hero .row > .col-lg-5,
  .pass-fail-page .pf-hero .row > .col-lg-5{
    flex: 0 0 42%;
    max-width: 42%;
  }

  .mot-guide-page .mot-hero .display-5,
  .pass-fail-page .pf-hero .display-5{
    font-size: 2rem;
    line-height: 1.12;
    margin-bottom: .55rem !important;
  }

  .mot-guide-page .mot-kicker,
  .pass-fail-page .pf-kicker,
  .mot-guide-page .hero-eyebrow,
  .pass-fail-page .hero-eyebrow{
    font-size: .72rem;
    letter-spacing: .16em;
    margin-bottom: .35rem;
  }

  .mot-guide-page .mot-lead,
  .pass-fail-page .pf-lead,
  .mot-guide-page .hero-lead,
  .pass-fail-page .hero-lead{
    font-size: .95rem;
    line-height: 1.35;
    margin-bottom: .7rem !important;
  }

  .mot-guide-page .mot-hero-actions,
  .pass-fail-page .pf-hero-actions,
  .mot-guide-page .hero-actions,
  .pass-fail-page .hero-actions{
    gap: .45rem;
    margin-bottom: .75rem;
  }

  .mot-guide-page .mot-hero-actions .btn,
  .pass-fail-page .pf-hero-actions .btn{
    font-size: .86rem;
    padding: .48rem .68rem;
  }

  .mot-guide-page .hero-side-card,
  .pass-fail-page .hero-side-card{
    margin-top: 0 !important;
    padding: 1rem;
    border-radius: 1rem;
    max-height: none;
    overflow: visible;
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.24);
  }

  .mot-guide-page .hero-side-card-header,
  .pass-fail-page .hero-side-card-header{
    margin-bottom: .6rem;
    gap: .35rem;
  }

  .mot-guide-page .hero-side-card-title,
  .pass-fail-page .hero-side-card-title{
    font-size: .96rem;
  }

  .mot-guide-page .hero-side-card-subtitle,
  .pass-fail-page .hero-side-card-subtitle{
    font-size: .78rem;
    line-height: 1.2;
  }

  .mot-guide-page .hero-side-list,
  .pass-fail-page .hero-side-list{
    gap: .45rem;
    margin-bottom: .6rem;
  }

  .mot-guide-page .hero-side-list-item,
  .pass-fail-page .hero-side-list-item{
    gap: .55rem;
    padding: .45rem .6rem;
    border-radius: .7rem;
    font-size: .84rem;
    line-height: 1.2;
  }

  .mot-guide-page .hero-side-list-icon,
  .pass-fail-page .hero-side-list-icon{
    width: 1.45rem;
    height: 1.45rem;
    border-radius: 999px;
    font-size: .58rem;
  }

  .mot-guide-page .mot-section,
  .pass-fail-page .pf-section{
    padding: 3rem 0;
  }

  .mot-guide-page .mot-compare-shell{
    gap: 0.9rem;
  }

  .mot-guide-page .mot-compare-head{
    grid-template-columns: 5rem 1fr 1fr;
    padding: 0.85rem 0.9rem 0.7rem;
  }

  .mot-guide-page .mot-compare-row2{
    grid-template-columns: 5rem 1fr 1fr;
    padding: 0.65rem 0.9rem;
  }

  .mot-guide-page .mot-compare-title{
    font-size: 1.05rem;
  }

  .mot-guide-page .mot-compare-sub{
    font-size: 0.85rem;
    line-height: 1.3;
  }

  .mot-guide-page .mot-compare-label{
    font-size: 0.76rem;
  }

  .mot-guide-page .mot-compare-cell{
    font-size: 0.9rem;
    line-height: 1.32;
  }

  .mot-guide-page .mot-compare-tag{
    font-size: 0.78rem;
    padding: 0.15rem 0.45rem;
  }

  .mot-guide-page .mot-eyebrow,
  .pass-fail-page .pf-eyebrow{
    font-size: .72rem;
    letter-spacing: .14em;
    margin-bottom: .35rem;
  }

  .mot-guide-page .mot-title,
  .pass-fail-page .pf-title{
    font-size: 1.2rem;
    margin-bottom: .55rem;
  }

  .mot-guide-page .mot-body,
  .pass-fail-page .pf-body{
    font-size: .88rem;
    line-height: 1.35;
  }

  .mot-guide-page .mot-note,
  .pass-fail-page .mot-note{
    font-size: .85rem;
    line-height: 1.3;
  }

  .mot-guide-page .mot-note,
  .pass-fail-page .mot-note{
    gap: .6rem;
    padding: .65rem .8rem;
    border-radius: 1rem;
  }

  .mot-guide-page .mot-note .mot-note__icon,
  .pass-fail-page .mot-note .mot-note__icon{
    width: 2.1rem;
    height: 2.1rem;
    flex: 0 0 2.1rem;
    border-radius: .8rem;
  }

  .mot-guide-page .mot-note .mot-note__icon i,
  .pass-fail-page .mot-note .mot-note__icon i{
    font-size: .89rem;
  }

  .mot-guide-page .mot-guide-stack{
    gap: 0.9rem;
  }

  .mot-guide-page .mot-guide-card{
    padding: 1.25rem;
    border-radius: 1.1rem;
  }

  .mot-guide-page .mot-group-icon{
    width: 2.4rem;
    height: 2.4rem;
    flex: 0 0 2.4rem;
  }

  .mot-guide-page .mot-group-icon i{
    font-size: 0.95rem;
  }

  .mot-guide-page .mot-section-sticky{
    position: static;
  }

  .mot-guide-page .mot-guide-stack{
    gap: .75rem;
  }

  .mot-guide-page .mot-guide-card{
    border-radius: 1rem;
    padding: .95rem 1rem;
    box-shadow: 0 12px 22px rgba(0, 0, 0, 0.06);
  }

  .mot-guide-page .mot-guide-card .d-flex.mb-3{
    margin-bottom: .65rem !important;
  }

  .mot-guide-page .mot-guide-card .h5{
    font-size: 0.98rem;
  }

  .mot-guide-page .mot-guide-card .small{
    font-size: 0.8rem;
    line-height: 1.25;
  }

  .mot-guide-page .mot-accordion .accordion-button{
    padding: 0.6rem 0.75rem;
    font-size: 0.9rem;
  }

  .mot-guide-page .mot-accordion .accordion-body{
    padding: 0.75rem 0.85rem;
  }

  .mot-guide-page .mot-accordion .accordion-body li{
    margin-bottom: 0.4rem;
    font-size: 0.85rem;
  }

  .mot-guide-page .mot-panel-card{
    padding: .8rem .85rem;
    border-radius: .85rem;
  }

  .mot-guide-page .mot-panel-title{
    font-size: .72rem;
    padding-bottom: .25rem;
  }

  .mot-guide-page .mot-panel-list li{
    padding: .4rem 0 .4rem 1.2rem;
    font-size: .88rem;
    line-height: 1.32;
  }

  .mot-guide-page .mot-panel-list li::before{
    top: .68rem;
    width: .45rem;
    height: .45rem;
    box-shadow: 0 0 0 3px rgba(var(--brand-primary-rgb), 0.12);
  }

  .mot-guide-page .mot-key-grid{
    gap: .7rem;
  }

  .mot-guide-page .mot-key-card{
    gap: .75rem;
    padding: .9rem;
    border-radius: .95rem;
  }

  .mot-guide-page .mot-key-icon{
    width: 2rem;
    height: 2rem;
    border-radius: .7rem;
    font-size: .82rem;
    flex: 0 0 2rem;
  }

  .mot-guide-page .mot-key-title{
    font-size: .88rem;
    margin-bottom: .15rem;
  }

  .mot-guide-page .mot-key-text{
    font-size: .82rem;
    line-height: 1.25;
  }

  .mot-guide-page .mot-compare-shell{
    gap: .9rem;
  }

  .pass-fail-page .pf-duo-grid,
  .pass-fail-page .pf-drive-shell{
    gap: .8rem;
  }

  .pass-fail-page .pf-panel{
    border-radius: 1rem;
    padding: .95rem 1rem;
    box-shadow: 0 12px 22px rgba(0, 0, 0, 0.06);
  }

  /* Extra compaction for the Pass vs Fail duo cards at 1024x768 landscape */
  .pass-fail-page #pass-fail .pf-duo-grid{
    gap: .65rem;
  }

  .pass-fail-page #pass-fail .pf-panel > .d-flex.mb-3{
    gap: .55rem !important;
    margin-bottom: .55rem !important;
  }

  .pass-fail-page #pass-fail .pf-panel > .d-flex .home-reassurance-icon{
    width: 2rem;
    height: 2rem;
    flex: 0 0 2rem;
    border-radius: .65rem;
    font-size: .82rem;
  }

  .pass-fail-page #pass-fail .pf-panel .h5{
    font-size: .92rem;
    line-height: 1.15;
  }

  .pass-fail-page #pass-fail .pf-panel > .d-flex .text-secondary{
    font-size: .82rem;
    line-height: 1.22;
  }

  .pass-fail-page #pass-fail .pf-panel > .d-flex + .mt-4{
    margin-top: .9rem !important;
  }

  .pass-fail-page #pass-fail .pf-panel .mt-4{
    margin-top: .55rem !important;
  }

  .pass-fail-page #pass-fail .pf-panel .row.g-3{
    --bs-gutter-x: .5rem;
    --bs-gutter-y: .5rem;
  }

  .pass-fail-page #pass-fail .fault-category{
    padding: .6rem .7rem !important;
    border-radius: .75rem;
    line-height: 1.3;
  }

  .pass-fail-page #pass-fail .fault-category .d-flex{
    gap: .55rem !important;
  }

  .pass-fail-page #pass-fail .fault-category .home-reassurance-icon{
    width: 1.9rem;
    height: 1.9rem;
    flex: 0 0 1.9rem;
    border-radius: .6rem;
    font-size: .76rem;
  }

  .pass-fail-page #pass-fail .fault-category .fw-semibold{
    font-size: .82rem;
    margin-bottom: .1rem !important;
    line-height: 1.15;
  }

  .pass-fail-page #pass-fail .fault-category .small{
    font-size: .78rem !important;
    line-height: 1.2;
  }

  .pass-fail-page #pass-fail .pf-panel .small.text-uppercase{
    font-size: .68rem !important;
    margin-bottom: .35rem !important;
    letter-spacing: .12em;
  }

  .pass-fail-page #pass-fail .mot-note.mt-3{
    margin-top: .55rem !important;
  }

  .pass-fail-page #after-fail .row.g-4{
    --bs-gutter-x: 1rem;
    --bs-gutter-y: .95rem;
  }

  .pass-fail-page #after-fail .pf-timeline-item{
    gap: .8rem;
    padding-bottom: .95rem;
  }

  .pass-fail-page #after-fail .pf-timeline-item:not(:last-child)::before{
    left: .92rem;
    top: 2.05rem;
    width: 1px;
  }

  .pass-fail-page #after-fail .pf-timeline-marker{
    width: 1.85rem;
    height: 1.85rem;
    font-size: .82rem;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.06), inset 0 0 0 2px rgba(var(--brand-primary-rgb), 0.12);
  }

  .pass-fail-page #after-fail .pf-timeline-body{
    border-radius: .85rem;
    padding: .82rem .95rem;
  }

  .pass-fail-page #after-fail .pf-timeline-title{
    font-size: .9rem;
    margin-bottom: .2rem;
    line-height: 1.15;
  }

  .pass-fail-page #after-fail .pf-timeline-body > p.text-secondary{
    font-size: .82rem;
    line-height: 1.26;
    margin-bottom: .45rem !important;
  }

  .pass-fail-page #after-fail .pf-timeline-body .mot-list li{
    padding-left: .95rem;
    margin-bottom: .35rem;
    font-size: .8rem;
    line-height: 1.23;
  }

  .pass-fail-page #after-fail .pf-timeline-body .mot-list li::before{
    width: .38rem;
    height: .38rem;
    top: .48rem;
  }

  .pass-fail-page #advisories .row.g-4{
    --bs-gutter-x: 1rem;
    --bs-gutter-y: .95rem;
  }

  .pass-fail-page #advisories .pf-panel{
    padding: .95rem 1rem;
  }

  .pass-fail-page #advisories .advisories-grid{
    grid-template-columns: 1.02fr .98fr;
    gap: 1rem;
  }

  .pass-fail-page #advisories .advisories-guidance{
    gap: .65rem;
  }

  .pass-fail-page #advisories .advisories-rule{
    padding: .85rem .9rem;
    border-radius: .8rem;
  }

  .pass-fail-page #advisories .advisories-rule-title{
    font-size: .94rem;
    margin-bottom: .22rem;
    line-height: 1.15;
  }

  .pass-fail-page #advisories .advisories-rule-text{
    font-size: .87rem;
    line-height: 1.28;
  }

  .pass-fail-page #advisories .advisories-examples .h6{
    font-size: .88rem;
    margin-bottom: .55rem !important;
  }

  .pass-fail-page #advisories .advisories-list{
    margin-top: .1rem;
  }

  .pass-fail-page #advisories .advisories-item{
    grid-template-columns: .65rem 1fr;
    gap: .45rem;
    padding: .6rem 0;
    font-size: .81rem;
    line-height: 1.24;
  }

  .pass-fail-page #advisories .advisories-item + .advisories-item{
    border-top-color: rgba(108, 117, 125, 0.42);
  }

  .pass-fail-page #advisories .advisories-dot{
    width: .42rem;
    height: .42rem;
    margin-top: .4rem;
  }

  .pass-fail-page #retest .col-lg-4 .mot-note{
    gap: .6rem;
    padding: .65rem .8rem;
    border-radius: 1rem;
  }

  .pass-fail-page #retest .col-lg-4 .mot-note .mot-note__icon{
    width: 2.1rem;
    height: 2.1rem;
    flex: 0 0 2.1rem;
    border-radius: .8rem;
  }

  .pass-fail-page #retest .col-lg-4 .mot-note .mot-note__icon i{
    font-size: .89rem;
  }

  

  .pass-fail-page .pf-key-rule{
    padding: .8rem .9rem;
    border-radius: .9rem;
  }

  .pass-fail-page .pf-key-rule-kicker{
    font-size: .6rem;
    letter-spacing: .12em;
    margin-bottom: .2rem;
  }

  .pass-fail-page .pf-key-rule-title{
    font-size: .98rem;
    margin-bottom: .2rem;
  }

  .pass-fail-page .pf-key-rule-text{
    font-size: .84rem;
    line-height: 1.3;
  }

  .pass-fail-page .pf-paths{
    gap: .6rem;
    margin-top: .65rem;
  }

  .pass-fail-page .pf-path-card{
    gap: .65rem;
    padding: .7rem .8rem;
    border-radius: .8rem;
  }

  .pass-fail-page .pf-path-icon{
    width: 1.9rem;
    height: 1.9rem;
    border-radius: .6rem;
    font-size: .76rem;
    flex: 0 0 1.9rem;
  }

  .pass-fail-page .pf-path-title{
    font-size: .86rem;
    margin-bottom: .1rem;
  }

  .pass-fail-page .pf-path-text{
    font-size: .8rem;
    line-height: 1.25;
  }

  .pass-fail-page .pf-panel .tick-list li{
    gap: .5rem;
    padding-bottom: .32rem;
    margin-bottom: .32rem;
    font-size: .83rem;
    line-height: 1.25;
  }

  .pass-fail-page .pf-panel .tick-list i{
    margin-top: .12rem;
    font-size: .72rem;
  }

  #pass-fail .pf-panel-pass .pf-pass-checklist{
    margin-top: .55rem;
    padding: .65rem .75rem;
    border-radius: .75rem;
  }

  #pass-fail .pf-panel-pass .tick-list .drive-status-icon{
    width: auto;
    height: auto;
    flex: 0 0 auto;
    border-radius: 0;
    background: transparent;
    color: rgba(25, 135, 84, 0.58);
    margin-top: 0;
  }

  #pass-fail .pf-panel-pass .tick-list .drive-status-icon i{
    font-size: .95rem;
  }

  .mot-guide-page .mot-cta,
  .pass-fail-page .mot-cta{
    padding-bottom: 1.2rem;
  }

  .mot-guide-page .mot-cta-card,
  .mot-guide-page .mot-cta-inner,
  .pass-fail-page .mot-cta-card,
  .pass-fail-page .mot-cta-inner{
    padding: 1rem;
    border-radius: 1.1rem;
  }

  .mot-guide-page .mot-cta-grid,
  .pass-fail-page .mot-cta-grid{
    gap: .95rem;
  }

  .mot-guide-page .mot-cta-eyebrow,
  .pass-fail-page .mot-cta-eyebrow{
    font-size: .68rem;
    letter-spacing: .15em;
    margin-bottom: .25rem;
  }

  .mot-guide-page .mot-cta .h3,
  .pass-fail-page .mot-cta .h3{
    font-size: 1.02rem;
    line-height: 1.15;
    margin-bottom: .3rem !important;
  }

  .mot-guide-page .mot-cta-body .mot-body,
  .pass-fail-page .mot-cta-body .mot-body{
    font-size: .82rem;
    line-height: 1.28;
  }

  .mot-guide-page .mot-cta-actions,
  .pass-fail-page .mot-cta-actions{
    gap: .5rem;
  }

  .mot-guide-page .mot-cta-actions .btn,
  .pass-fail-page .mot-cta-actions .btn{
    --bs-btn-padding-y: .45rem;
    --bs-btn-padding-x: .7rem;
    font-size: .84rem;
    border-radius: .6rem;
  }

  .mot-guide-page .mot-cta-actions .btn .fa-solid,
  .pass-fail-page .mot-cta-actions .btn .fa-solid{
    font-size: .74rem;
  }
}

/* Repairs page landscape compact pass (phones/tablets through iPad mini) */
@media (min-width: 576px) and (max-width: 1024px) and (max-height: 768px) and (orientation: landscape){
  .repairs-page .services-hero{
    padding: 2.9rem 0 3.25rem;
  }

  .repairs-page .services-hero .row{
    flex-wrap: nowrap;
    align-items: flex-start !important;
    --bs-gutter-x: 1rem;
    --bs-gutter-y: .85rem;
  }

  .repairs-page .services-hero .row > .col-lg-7{
    flex: 0 0 58%;
    max-width: 58%;
  }

  .repairs-page .services-hero .row > .col-lg-5{
    flex: 0 0 42%;
    max-width: 42%;
  }

  .repairs-page .services-hero .display-5{
    font-size: 2rem;
    line-height: 1.12;
    margin-bottom: .55rem !important;
  }

  .repairs-page .services-kicker{
    font-size: .72rem;
    letter-spacing: .16em;
    margin-bottom: .35rem;
  }

  .repairs-page .services-lead{
    font-size: .95rem;
    line-height: 1.35;
    margin-bottom: .7rem !important;
  }

  .repairs-page .services-hero-actions{
    gap: .45rem;
    margin-bottom: .7rem;
  }

  .repairs-page .services-hero-actions .btn{
    font-size: .86rem;
    padding: .48rem .68rem;
  }

  .repairs-page .services-hero-badges{
    gap: .35rem;
  }

  .repairs-page .services-hero-badge{
    font-size: .74rem;
    padding: .22rem .5rem;
    gap: .35rem;
  }

  .repairs-page .hero-side-card,
  .hero-side-card--repairs{
    margin-top: 0 !important;
    padding: 1rem;
    border-radius: 1rem;
    max-height: none;
    overflow: visible;
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.24);
  }

  .repairs-page .hero-side-card-header,
  .hero-side-card--repairs .hero-side-card-header{
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: .2rem;
    margin-bottom: .55rem;
  }

  .repairs-page .hero-side-card-title,
  .hero-side-card--repairs .hero-side-card-title{
    font-size: .96rem;
  }

  .repairs-page .hero-side-card-subtitle,
  .hero-side-card--repairs .hero-side-card-subtitle{
    font-size: .74rem;
    line-height: 1.2;
  }

  .repairs-page .hero-side-list,
  .hero-side-card--repairs .hero-side-list{
    gap: .45rem;
    margin-bottom: .6rem;
  }

  .repairs-page .hero-side-list-item,
  .hero-side-card--repairs .hero-side-list-item{
    gap: .5rem;
    padding: .45rem .6rem;
    border-radius: .7rem;
    font-size: .84rem;
    line-height: 1.2;
  }

  .repairs-page .hero-side-list-icon,
  .hero-side-card--repairs .hero-side-list-icon{
    width: 1.45rem;
    height: 1.45rem;
    border-radius: 999px;
    font-size: .58rem;
    flex: 0 0 1.45rem;
  }

  .repairs-page #repairs-help,
  .repairs-page #repairs-diagnostics,
  .repairs-page #repairs-mot,
  .repairs-page #repairs-not{
    scroll-margin-top: calc(var(--scroll-anchor-offset) * 0.45);
  }

  .repairs-page .repairs-section{
    padding-top: var(--content-section-pad-y);
    padding-bottom: var(--content-section-pad-y);
  }

  .repairs-page #repairs-help .row.g-4,
  .repairs-page #repairs-diagnostics .row.g-4,
  .repairs-page #repairs-mot .row.g-4,
  .repairs-page #repairs-not .row.g-4{
    --bs-gutter-y: 1rem;
  }

  .repairs-page #repairs-help .mot-eyebrow,
  .repairs-page #repairs-diagnostics .mot-eyebrow,
  .repairs-page #repairs-mot .mot-eyebrow,
  .repairs-page #repairs-not .mot-eyebrow{
    font-size: .72rem;
    letter-spacing: .14em;
    margin-bottom: .3rem;
  }

  .repairs-page #repairs-help .h4,
  .repairs-page #repairs-diagnostics .h4,
  .repairs-page #repairs-mot .h4,
  .repairs-page #repairs-not .h4{
    font-size: 1.2rem;
    margin-bottom: .45rem !important;
  }

  .repairs-page #repairs-help .mot-section-intro,
  .repairs-page #repairs-diagnostics .mot-section-intro,
  .repairs-page #repairs-mot .mot-section-intro,
  .repairs-page #repairs-not .mot-section-intro{
    font-size: .92rem;
    line-height: 1.35;
  }

  .repairs-page #repairs-help .mot-note,
  .repairs-page #repairs-diagnostics .mot-note,
  .repairs-page #repairs-mot .mot-note{
    margin-top: .85rem !important;
    padding: .7rem .8rem;
    border-radius: .85rem;
    gap: .7rem;
    font-size: .88rem;
    line-height: 1.3;
  }

  .repairs-page #repairs-help .mot-note p,
  .repairs-page #repairs-diagnostics .mot-note p,
  .repairs-page #repairs-mot .mot-note p{
    margin: 0;
    line-height: inherit;
  }

  .repairs-page #repairs-help .mot-note__icon,
  .repairs-page #repairs-diagnostics .mot-note__icon,
  .repairs-page #repairs-mot .mot-note__icon{
    width: 2rem;
    height: 2rem;
    min-width: 2rem;
    min-height: 2rem;
    flex: 0 0 2rem;
    border-radius: .6rem;
  }

  .repairs-page #repairs-help .mot-note__icon i,
  .repairs-page #repairs-diagnostics .mot-note__icon i,
  .repairs-page #repairs-mot .mot-note__icon i{
    font-size: .8rem;
  }

  .repairs-page #repairs-help .row.g-3,
  .repairs-page #repairs-mot .row.g-3,
  .repairs-page #repairs-not .row.g-3,
  .repairs-page #repairs-diagnostics .row.g-4 .row.g-4{
    --bs-gutter-x: .75rem;
    --bs-gutter-y: .75rem;
  }

  .repairs-page #repairs-help .row.g-3 > .col-md-6{
    flex: 0 0 50%;
    max-width: 50%;
  }

  .repairs-page #repairs-diagnostics .row.g-4 .row.g-4 > .col-md-6,
  .repairs-page #repairs-mot .row.g-3 > .col-md-6,
  .repairs-page #repairs-not .row.g-3 > .col-md-6{
    flex: 0 0 50%;
    max-width: 50%;
  }

  .repairs-page #repairs-help .service-card,
  .repairs-page #repairs-not .service-card{
    border-radius: 1rem;
    box-shadow: 0 10px 18px rgba(0, 0, 0, 0.06);
  }

  .repairs-page #repairs-help .service-card .card-body,
  .repairs-page #repairs-not .service-card .card-body{
    padding: .9rem .95rem;
  }

  .repairs-page #repairs-diagnostics .thin-card,
  .repairs-page #repairs-mot .thin-card{
    border-radius: 1rem;
    box-shadow: 0 10px 18px rgba(0, 0, 0, 0.06);
    padding: .9rem .95rem !important;
  }

  .repairs-page #repairs-help .service-card .d-flex,
  .repairs-page #repairs-not .service-card .d-flex,
  .repairs-page #repairs-diagnostics .thin-card .d-flex,
  .repairs-page #repairs-mot .thin-card .d-flex{
    gap: .7rem !important;
  }

  .repairs-page #repairs-help .home-reassurance-icon,
  .repairs-page #repairs-not .home-reassurance-icon,
  .repairs-page #repairs-diagnostics .home-reassurance-icon,
  .repairs-page #repairs-mot .home-reassurance-icon{
    width: 2.25rem;
    height: 2.25rem;
    flex: 0 0 2.25rem;
    border-radius: .75rem;
    font-size: .95rem;
  }

  .repairs-page #repairs-help .service-card h3,
  .repairs-page #repairs-not .service-card h3{
    font-size: .92rem;
    line-height: 1.2;
    margin-bottom: .35rem !important;
  }

  .repairs-page #repairs-help .tick-list.is-compact li{
    font-size: .83rem;
    line-height: 1.25;
    padding-bottom: .28rem;
    margin-bottom: .28rem;
    gap: .45rem;
    align-items: flex-start;
  }

  .repairs-page #repairs-help .tick-list i{
    width: 1.05rem;
    height: 1.05rem;
    min-width: 1.05rem;
    min-height: 1.05rem;
    flex: 0 0 1.05rem;
    font-size: .62rem;
    line-height: 1;
    margin-top: .08rem;
  }

  .repairs-page #repairs-diagnostics .fw-bolder.mb-1,
  .repairs-page #repairs-mot .fw-bolder.mb-1{
    font-size: .9rem;
    line-height: 1.15;
    margin-bottom: .15rem !important;
  }

  .repairs-page #repairs-diagnostics .text-muted.small,
  .repairs-page #repairs-mot .text-muted.small,
  .repairs-page #repairs-not .service-card p.text-muted.small{
    font-size: .82rem;
    line-height: 1.28;
  }

  .repairs-page #repairs-help .service-card .btn.btn-sm{
    --bs-btn-font-size: .78rem;
    --bs-btn-padding-y: .24rem;
    --bs-btn-padding-x: .55rem;
  }

  .repairs-page .mot-cta{
    padding-bottom: 1.2rem;
  }

  .repairs-page .mot-cta-card,
  .repairs-page .mot-cta-inner{
    padding: 1rem;
    border-radius: 1.1rem;
  }

  .repairs-page .mot-cta-grid{
    gap: .95rem;
  }

  .repairs-page .mot-cta-eyebrow{
    font-size: .62rem;
    letter-spacing: .15em;
    margin-bottom: .25rem;
  }

  .repairs-page .mot-cta .h3{
    font-size: 1.02rem;
    line-height: 1.15;
    margin-bottom: .3rem !important;
  }

  .repairs-page .mot-cta-body .mot-body{
    font-size: .82rem;
    line-height: 1.28;
  }

  .repairs-page .mot-cta-actions{
    gap: .5rem;
  }

  .repairs-page .mot-cta-actions .btn{
    --bs-btn-padding-y: .45rem;
    --bs-btn-padding-x: .7rem;
    font-size: .84rem;
    border-radius: .6rem;
  }

  .repairs-page .mot-cta-actions .btn .fa-solid{
    font-size: .74rem;
  }
}

/* Repairs page portrait tablet layout (iPad mini 768x1024) */
@media (min-width: 768px) and (max-width: 991.98px){
  .repairs-page .services-hero .row{
    flex-wrap: nowrap;
    align-items: flex-start !important;
  }

  .repairs-page .services-hero .row > .col-lg-7{
    flex: 0 0 58.333%;
    max-width: 58.333%;
  }

  .repairs-page .services-hero .row > .col-lg-5{
    flex: 0 0 41.667%;
    max-width: 41.667%;
  }

  .repairs-page .services-hero-actions{
    display: grid;
    gap: 0.4rem;
    margin-bottom: 1rem;
    max-width: 36rem;
  }

  .repairs-page .services-hero-actions .btn{
    width: 100%;
    font-weight: 600;
    letter-spacing: 0;
    padding: 0.65rem 0.9rem;
    font-size: 0.98rem;
  }

  .repairs-page .hero-side-card,
  .hero-side-card--repairs{
    padding: 1.25rem;
    border-radius: 1.25rem;
    box-shadow: 0 20px 36px rgba(0, 0, 0, 0.26);
  }

  .repairs-page .hero-side-card-header,
  .hero-side-card--repairs .hero-side-card-header{
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 0.75rem;
    gap: 0.25rem;
  }

  .repairs-page .hero-side-card-title,
  .hero-side-card--repairs .hero-side-card-title{
    font-size: 1rem;
  }

  .repairs-page .hero-side-card-subtitle,
  .hero-side-card--repairs .hero-side-card-subtitle{
    font-size: 0.82rem;
    line-height: 1.25;
  }

  .repairs-page .hero-side-list,
  .hero-side-card--repairs .hero-side-list{
    gap: 0.5rem;
    margin-bottom: 0.75rem;
  }

  .repairs-page .hero-side-list-item,
  .hero-side-card--repairs .hero-side-list-item{
    padding: 0.55rem 0.7rem;
    gap: 0.55rem;
    font-size: 0.9rem;
    line-height: 1.25;
  }

  .repairs-page .hero-side-list-icon,
  .hero-side-card--repairs .hero-side-list-icon{
    width: 1.7rem;
    height: 1.7rem;
    border-radius: 999px;
    font-size: 0.65rem;
    flex: 0 0 1.7rem;
  }

  .repairs-page .repairs-section{
    padding-top: var(--content-section-pad-y);
    padding-bottom: var(--content-section-pad-y);
  }

  .mot-guide-page .mot-section,
  .pass-fail-page .pf-section{
    padding-top: 3.5rem;
    padding-bottom: 4.5rem;
  }

  .mot-guide-page .mot-compare-shell{
    gap: 1rem;
  }

  .mot-guide-page .mot-compare-head{
    grid-template-columns: 5.5rem 1fr 1fr;
    padding: 1rem 1rem 0.85rem;
  }

  .mot-guide-page .mot-compare-row2{
    grid-template-columns: 5.5rem 1fr 1fr;
    padding: 0.75rem 1rem;
  }

  .mot-guide-page .mot-compare-title{
    font-size: 1.1rem;
  }

  .mot-guide-page .mot-compare-sub{
    font-size: 0.88rem;
  }

  .mot-guide-page .mot-compare-label{
    font-size: 0.75rem;
  }

  .mot-guide-page .mot-compare-cell{
    font-size: 0.92rem;
    line-height: 1.35;
  }

  .pass-fail-page .pf-pass-notes{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .repairs-page #repairs-help{
    padding-top: 3.2rem;
    padding-bottom: 4.2rem;
  }

  .repairs-page #repairs-help .tick-list li{
    align-items: flex-start;
  }

  .repairs-page #repairs-help .tick-list i{
    margin-top: .25rem;
  }

  .toc-page [id]{
    scroll-margin-top: calc(var(--scroll-anchor-offset) + 1rem);
  }

  .repairs-page #repairs-help .service-card .card-body{
    padding: .8rem .85rem;
  }

  .repairs-page #repairs-help .service-card .d-flex{
    gap: .6rem !important;
  }

  .repairs-page #repairs-help .service-card h3{
    margin-bottom: .3rem !important;
  }

  .repairs-page #repairs-diagnostics .thin-card{
    padding: .8rem .85rem !important;
  }

  .repairs-page #repairs-diagnostics .thin-card .d-flex{
    gap: .6rem !important;
  }

  .repairs-page #repairs-mot .thin-card{
    padding: .8rem .85rem !important;
  }

  .repairs-page #repairs-mot .thin-card .d-flex{
    gap: .6rem !important;
  }

.pass-fail-page .pf-note-heading{
  display: block;
}

  .mot-guide-page .mot-cover-notes{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

}

/* Inner-page hero fit pass for 667x375 landscape (match homepage low-height treatment) */
@media (max-width: 667px) and (max-height: 375px) and (orientation: landscape){
  .fleet-hero,
  .mot-hero,
  .pf-hero,
  .services-hero{
    padding: .75rem 0 1rem;
  }

  .fleet-hero .row,
  .mot-hero .row,
  .pf-hero .row,
  .services-hero .row{
    flex-wrap: nowrap;
    align-items: flex-start !important;
    --bs-gutter-x: 1rem;
    --bs-gutter-y: .75rem;
  }

  .fleet-hero .row > .col-lg-7,
  .mot-hero .row > .col-lg-7,
  .pf-hero .row > .col-lg-7,
  .services-hero .row > .col-lg-7{
    flex: 0 0 56%;
    max-width: 56%;
  }

  .fleet-hero .row > .col-lg-5,
  .mot-hero .row > .col-lg-5,
  .pf-hero .row > .col-lg-5,
  .services-hero .row > .col-lg-5{
    flex: 0 0 44%;
    max-width: 44%;
  }

  .fleet-hero .display-5,
  .mot-hero .display-5,
  .pf-hero .display-5,
  .services-hero .display-5{
    font-size: 1.7rem;
    line-height: 1.12;
    margin-bottom: .45rem !important;
  }

  .fleet-kicker,
  .mot-kicker,
  .pf-kicker,
  .services-kicker,
  .hero-eyebrow{
    font-size: .7rem;
    margin-bottom: .4rem;
    letter-spacing: .14em;
  }

  .fleet-lead,
  .mot-lead,
  .pf-lead,
  .services-lead,
  .hero-lead{
    font-size: .92rem;
    line-height: 1.35;
    margin-bottom: .65rem !important;
  }

  .mot-hero-actions,
  .pf-hero-actions,
  .services-hero-actions,
  .hero-actions{
    gap: .4rem;
    margin-bottom: .75rem;
  }

  .mot-hero-actions .btn,
  .pf-hero-actions .btn{
    font-size: .86rem;
    padding: .45rem .65rem;
  }

  .fleet-badges,
  .services-hero-badges,
  .hero-meta--pills{
    gap: .35rem;
  }

  .fleet-badge,
  .services-hero-badge,
  .hero-pill{
    font-size: .74rem;
    padding: .22rem .5rem;
    gap: .35rem;
  }

  .services-hero .hero-picks{
    gap: .45rem;
  }

  .services-hero .hero-picks .btn{
    font-size: .85rem;
    padding: .5rem .65rem;
    min-height: auto;
  }

  .services-hero .hero-picks .btn-call.btn-lg,
  .services-hero .services-hero-actions .btn-call.btn-lg{
    --bs-btn-font-size: .85rem;
    --bs-btn-padding-y: .5rem;
    --bs-btn-padding-x: .65rem;
    font-size: .85rem !important;
    padding: .5rem .65rem !important;
    line-height: 1.2;
    min-height: 0;
  }

  .repairs-page .services-hero .services-hero-actions .btn-call{
    width: 100%;
  }

  .services-hero .hero-picks-note{
    font-size: .78rem;
    line-height: 1.25;
  }

  /* Homepage hero card: compact the "Need an MOT or Service?" panel */
  .home-hero .rounded-4.bg-white{
    padding: .85rem !important;
    border-radius: 1rem !important;
  }

  .home-hero .rounded-4.bg-white > .fw-bolder{
    font-size: .9rem;
    line-height: 1.15;
    margin-bottom: .2rem !important;
  }

  .home-hero .rounded-4.bg-white > .text-muted{
    font-size: .78rem;
    line-height: 1.2;
    margin-bottom: .45rem !important;
  }

  .home-hero .hero-picks{
    gap: .35rem;
  }

  .home-hero .hero-picks .btn{
    font-size: .8rem;
    line-height: 1.15;
    padding: .34rem .48rem;
    border-radius: .55rem;
    min-height: 0;
    gap: .15rem;
  }

  .home-hero .hero-picks .hero-pick-icon{
    font-size: .62rem;
    margin-right: 0;
  }

  .home-hero .hero-picks-note{
    margin-top: .45rem;
    font-size: .74rem;
    line-height: 1.2;
    gap: .35rem;
  }

  .home-hero .hero-note-icon{
    width: 1rem;
    height: 1rem;
    min-width: 1rem;
    min-height: 1rem;
    font-size: .55rem;
    top: 0;
  }

  .fleet-hero-rail,
  .hero-side-card{
    margin-top: 0 !important;
    padding: .95rem;
    border-radius: 1rem;
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.26);
  }

  .fleet-hero-rail{
    max-height: calc(100vh - 7.5rem);
    overflow: auto;
  }

  .fleet-hero .hero-side-card{
    max-height: calc(100vh - 7.5rem);
    overflow: auto;
  }

  .hero-side-card{
    max-height: calc(100vh - 7.5rem);
    overflow: auto;
  }

  /* Services hero card: match narrow portrait card layout, scaled down for 667x375 */
  .services-hero .hero-side-card{
    max-height: none;
    overflow: visible;
    padding: .85rem;
  }

  .services-hero .hero-side-card-header{
    margin-bottom: .45rem;
  }

  .services-hero .hero-side-list{
    gap: .35rem;
    margin-bottom: .5rem;
  }

  .services-hero .hero-side-list--grid{
    grid-template-columns: 1fr;
  }

  .services-hero .hero-side-list--grid .hero-side-list-item{
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
    min-height: auto;
    padding: .55rem .6rem;
    gap: .5rem;
    border-radius: .65rem;
  }

  .services-hero .hero-side-list--grid .hero-side-list-icon{
    width: 1.95rem;
    height: 1.95rem;
    border-radius: .6rem;
    font-size: .72rem;
    flex: 0 0 auto;
  }

  .services-hero .hero-side-list--grid .fw-bold{
    font-size: .8rem;
    line-height: 1.15;
    margin-bottom: .1rem;
  }

  .services-hero .hero-side-list--grid .hero-side-card-subtitle{
    font-size: .67rem;
    line-height: 1.2;
  }

  /* Services page service cards: keep desktop/tablet layout, compact the tile UI */
  .services-page .service-card{
    font-size: .96rem;
    line-height: 1.45;
    margin-bottom: 1.25rem !important;
  }

  .services-page .service-card .card-body{
    padding: .95rem 1rem;
  }

  .services-page .service-card-layout{
    grid-template-columns: minmax(0, 1fr) 198px;
    gap: .75rem;
  }

  .services-page .service-card .card-title{
    font-size: 1.02rem;
    line-height: 1.15;
    margin-bottom: .35rem !important;
  }

  .services-page .service-summary{
    font-size: .9rem;
    line-height: 1.35;
    margin-bottom: .6rem;
    max-width: none;
  }

  .services-page .service-actions{
    gap: .55rem;
  }

  .services-page .service-book-btn{
    padding: .42rem .7rem;
    font-size: .82rem;
    border-radius: .55rem;
  }

  .services-page .details-toggle{
    font-size: .82rem;
  }

  .services-page #service-repairs .service-actions{
    gap: .45rem;
  }

  .services-page #service-repairs .service-actions .btn{
    padding: .4rem .65rem;
    font-size: .8rem;
    border-radius: .55rem;
    line-height: 1.2;
  }

  .services-page .warranty-cta-section.mot-guides-cta{
    margin-top: 1.4rem;
    border-radius: 1rem;
  }

  .services-page .warranty-cta{
    padding: .85rem .95rem;
  }

  .services-page #service-mot-guides .row{
    --bs-gutter-x: .75rem;
    --bs-gutter-y: .6rem;
  }

  .services-page #service-mot-guides .h4{
    font-size: .98rem;
    line-height: 1.15;
  }

  .services-page .mot-guides-eyebrow{
    font-size: .62rem;
    letter-spacing: .14em;
    margin-bottom: .15rem;
  }

  .services-page .mot-guides-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .5rem;
  }

  .services-page .mot-guide-card{
    padding: .65rem .75rem;
    border-radius: .8rem;
    gap: .55rem;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.07);
  }

  .services-page .mot-guide-card-icon{
    width: 1.95rem;
    height: 1.95rem;
    border-radius: .55rem;
    font-size: .78rem;
  }

  .services-page .mot-guide-card-text{
    font-size: .78rem;
    line-height: 1.25;
  }

  .services-page .mot-cta{
    padding-bottom: 1rem;
  }

  .services-page .mot-cta-card,
  .services-page .mot-cta-inner{
    padding: .9rem;
    border-radius: 1rem;
  }

  .services-page .mot-cta-grid{
    gap: .8rem;
  }

  .services-page .mot-cta-eyebrow{
    font-size: .58rem;
    letter-spacing: .14em;
    margin-bottom: .2rem;
  }

  .services-page .mot-cta .h3{
    font-size: .96rem;
    line-height: 1.15;
    margin-bottom: .25rem !important;
  }

  .services-page .mot-cta-body .mot-body{
    font-size: .78rem;
    line-height: 1.25;
  }

  .services-page .mot-cta-actions{
    gap: .45rem;
  }

  .services-page .mot-cta-actions .btn{
    --bs-btn-padding-y: .42rem;
    --bs-btn-padding-x: .65rem;
    font-size: .8rem;
    border-radius: .55rem;
  }

  .services-page .mot-cta-actions .btn .fa-solid{
    font-size: .72rem;
  }

  .services-page .service-meta-tiles{
    gap: .42rem;
  }

  .services-page .meta-tile{
    padding: .42rem .32rem;
    border-radius: 12px;
  }

  .services-page .service-meta-tiles .bi,
  .services-page .service-meta-tiles .fa-solid{
    width: 42px;
    height: 42px;
    border-radius: 12px;
    font-size: 1.1rem;
    margin-bottom: .3rem;
    flex: 0 0 42px;
  }

  .services-page .meta-tile-value{
    font-size: .84rem;
    line-height: 1.05;
    white-space: normal;
    text-wrap: balance;
    margin-bottom: .24rem;
  }

  .services-page .meta-tile-label{
    font-size: .66rem;
    line-height: 1.1;
  }

  .services-page .service-details{
    padding: .8rem .9rem;
    border-top-color: rgba(0, 0, 0, 0.06);
  }

  .services-page .service-details-grid{
    gap: .85rem;
  }

  .services-page .detail-block{
    padding: .55rem .65rem;
    border-radius: .45rem;
    margin-bottom: .55rem;
  }

  .services-page .service-details h4{
    font-size: .84rem;
    line-height: 1.2;
    margin-bottom: .25rem !important;
  }

  .services-page .service-details h4 .fa-solid{
    font-size: .78rem;
  }

  .services-page .service-details p{
    font-size: .82rem;
    line-height: 1.32;
    margin-bottom: .55rem !important;
  }

  .services-page .detail-block p + p{
    margin-top: .35rem;
  }

  .services-page .service-details .tick-list{
    margin-bottom: .55rem !important;
  }

  .services-page .service-details .tick-list li{
    font-size: .82rem;
    line-height: 1.28;
    margin-bottom: .32rem;
    padding-top: .08rem;
    padding-bottom: .28rem;
    align-items: flex-start;
  }

  .services-page .service-details .tick-list i{
    width: 1.12rem;
    height: 1.12rem;
    min-width: 1.12rem;
    min-height: 1.12rem;
    flex: 0 0 1.12rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    font-size: .64rem;
    margin-top: .08rem;
  }

  .services-page .service-ref-pill{
    font-size: .72rem;
    padding: .24rem .45rem;
    border-radius: .5rem;
  }

  .services-page .service-details-footer{
    margin-top: .45rem;
    padding-top: .4rem;
  }

  .fleet-hero-rail-header,
  .hero-side-card-header{
    margin-bottom: .65rem;
    gap: .2rem;
  }

  .fleet-hero-rail-title,
  .hero-side-card-title{
    font-size: .95rem;
  }

  .fleet-hero-rail-subtitle,
  .hero-side-card-subtitle{
    font-size: .74rem;
    line-height: 1.25;
  }

  .repairs-page .hero-side-card,
  .hero-side-card--repairs{
    max-height: none;
    overflow: visible;
  }

  .repairs-page .hero-side-card-header,
  .hero-side-card--repairs .hero-side-card-header{
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: .15rem;
  }

  .repairs-page .hero-side-card-subtitle,
  .hero-side-card--repairs .hero-side-card-subtitle{
    display: block;
  }

  .fleet-hero-rail-list,
  .hero-side-list--steps,
  .hero-side-list{
    gap: .45rem;
    margin-bottom: .7rem;
  }

  .fleet-hero-rail-list li,
  .hero-side-list--steps li{
    padding: .45rem .55rem;
    font-size: .82rem;
    line-height: 1.25;
  }

  .fleet-hero-rail-step,
  .hero-side-list-step{
    width: 1.2rem;
    height: 1.2rem;
    margin-right: .35rem;
    font-size: .65rem;
  }

  .hero-side-list-item{
    gap: .5rem;
    padding: .4rem .55rem;
    border-radius: .7rem;
    font-size: .84rem;
    line-height: 1.2;
  }

  .hero-side-list-icon{
    width: 1.4rem;
    height: 1.4rem;
    border-radius: 999px;
    font-size: .58rem;
  }

  .fleet-hero-rail-actions,
  .hero-side-actions{
    gap: .45rem;
    padding-top: .7rem;
    margin-top: .2rem;
  }

  .fleet-hero-rail-actions .btn,
  .hero-side-actions .btn{
    padding: .45rem .6rem;
    font-size: .84rem;
  }
}


.site-footer--premium .footer-col{
  padding: 1.25rem 1.25rem 1.35rem;
  border-radius: 1.25rem;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
}

.site-footer--premium .footer-col--split{
  display: grid;
  gap: 1.25rem;
}

.site-footer--premium .footer-heading{
  font-weight: 800;
  font-size: 1.0rem;
  margin-bottom: 1rem;
  color: rgba(255,255,255,.95);
}

.site-footer--premium .footer-heading--with-status{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
}

.site-footer--premium .footer-status{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .35rem;
  padding: .3rem .6rem;
  border-radius: 999px;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.82);
}

.site-footer--premium .footer-status--open{
  border-color: rgba(var(--brand-primary-rgb), .55);
  background: rgba(var(--brand-primary-rgb), .16);
  color: var(--brand-primary);
}

.site-footer--premium .footer-status--closed{
  border-color: rgba(255,255,255,.2);
  background: rgba(255,255,255,.04);
  color: rgba(255,255,255,.75);
}

.site-footer--premium .footer-hours-grid{
  margin-top: 1.15rem;
}

.site-footer--premium .footer-hours-row{
  display: grid;
  grid-template-columns: minmax(6.5rem, 7.5rem) 1fr;
  gap: .75rem;
  align-items: center;
  padding: .4rem .65rem;
  border-radius: .85rem;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.06);
  color: rgba(247, 244, 239, 0.88);
}

.site-footer--premium .footer-hours-row--today{
  background: rgba(255,255,255,.1);
  border-color: transparent;
  color: rgba(255,255,255,.98);
}

.site-footer--premium .footer-hours-row span:first-child{
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.68);
}

.site-footer--premium .footer-hours-row--today span:first-child{
  color: rgba(255,255,255,.98);
}

.site-footer--premium .footer-hours-row:hover span:first-child{
  color: rgba(255,255,255,.98);
}

.site-footer--premium .footer-hours-row:hover{
  border-color: transparent;
  box-shadow: none;
  background: rgba(255,255,255,.1);
}

.site-footer--premium .footer-hours-row span:last-child{
  font-variant-numeric: tabular-nums;
  letter-spacing: .02em;
  justify-self: end;
  white-space: nowrap;
}

.site-footer--premium .footer-links{
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem;
  display: grid;
}

.site-footer--premium .footer-links .footer-link{
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  padding: .25rem .6rem;
  border-radius: .9rem;
  background: transparent;
  border: 1px solid transparent;
}

.site-footer--premium .footer-links .footer-link i{
  width: 1.15rem;
  text-align: center;
  opacity: .9;
}

.site-footer--premium .footer-links .footer-link .footer-link-dot{
  width: 1.15rem;
  text-align: center;
  opacity: .6;
  font-size: 1rem;
  line-height: 1;
}

.site-footer--premium .footer-links .footer-link:hover{
  background: transparent;
  border-color: transparent;
  color: var(--brand-primary);
}

.site-footer--premium .footer-spec{
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: .55rem;
}

.site-footer--premium .footer-spec li{
  display: flex;
  gap: .6rem;
  align-items: flex-start;
  color: rgba(247, 244, 239, 0.82);
}

.site-footer--premium .footer-spec i{
  margin-top: .2rem;
  color: rgba(var(--brand-primary-rgb), .9);
}

.site-footer--premium .footer-links + .footer-heading{
  margin-top: 1rem;
  padding-top: 1.1rem;
  border-top: 1px solid rgba(255,255,255,.08);
}

.site-footer--premium .footer-legal-inline{
  display: none;
}

.site-footer--premium .footer-bottom{
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255,255,255,.08);
  color: rgba(247, 244, 239, 0.7);
  text-align: center;
}

@media (min-width: 992px){
  .site-footer--premium .footer-legal-inline{
    display: block;
  }

  .site-footer--premium .footer-col--legal{
    display: none;
  }
}

/* MOT guide hero spacing tweak on portrait phones (below iPad mini) */
@media (max-width: 767.98px) and (orientation: portrait){
  .mot-guide-page .hero-side-card,
  .pass-fail-page .hero-side-card{
    margin-top: .5rem;
  }

  .mot-guide-page .hero-side-list,
  .pass-fail-page .hero-side-list{
    gap: .6rem;
  }

  .mot-guide-page .hero-side-list-item,
  .pass-fail-page .hero-side-list-item{
    font-size: .92rem;
    line-height: 1.28;
    padding: .55rem .7rem;
  }
}

/* Services page hero typography by device/orientation */
@media (max-width: 767.98px) and (orientation: portrait){
  .services-page .services-hero .display-5{
    font-size: clamp(1.85rem, 6vw, 2.1rem);
    line-height: 1.12;
  }

  .services-page .services-kicker{
    font-size: .74rem;
    letter-spacing: .15em;
  }

  .services-page .services-hero .services-lead,
  .services-page .services-hero .hero-lead{
    font-size: .96rem;
    line-height: 1.4;
  }
}

@media (max-width: 932px) and (max-height: 450px) and (orientation: landscape){
  .services-page .services-hero .display-5{
    font-size: clamp(1.6rem, 4.2vw, 1.85rem);
    line-height: 1.1;
    margin-bottom: .5rem !important;
  }

  .services-page .services-kicker{
    font-size: .68rem;
    letter-spacing: .14em;
    margin-bottom: .35rem;
  }

  .services-page .services-hero .services-lead,
  .services-page .services-hero .hero-lead{
    font-size: .9rem;
    line-height: 1.35;
    margin-bottom: .75rem !important;
  }
}

@media (max-width: 767.98px) and (max-height: 430px) and (orientation: landscape){
  .services-page .services-hero .display-5{
    font-size: clamp(1.45rem, 3.8vw, 1.65rem);
  }

  .services-page .services-kicker{
    font-size: .65rem;
    margin-bottom: .3rem;
  }

  .services-page .services-hero .services-lead,
  .services-page .services-hero .hero-lead{
    font-size: .86rem;
    line-height: 1.3;
    margin-bottom: .65rem !important;
  }
}

@media (min-width: 768px) and (max-width: 991.98px) and (orientation: portrait){
  .services-page .services-hero .display-5{
    font-size: 2.2rem;
    line-height: 1.12;
  }

  .services-page .services-kicker{
    font-size: .78rem;
    letter-spacing: .16em;
  }

  .services-page .services-hero .services-lead,
  .services-page .services-hero .hero-lead{
    font-size: 1rem;
    line-height: 1.4;
  }
}

@media (min-width: 768px) and (max-width: 991.98px) and (orientation: landscape){
  .services-page .services-hero .display-5{
    font-size: 1.9rem;
    line-height: 1.1;
  }

  .services-page .services-kicker{
    font-size: .7rem;
    letter-spacing: .15em;
    margin-bottom: .35rem;
  }

  .services-page .services-hero .services-lead,
  .services-page .services-hero .hero-lead{
    font-size: .92rem;
    line-height: 1.35;
    margin-bottom: .75rem !important;
  }
}

/* Readability floor pass (worst offenders first) */
@media (max-width: 667px) and (max-height: 375px) and (orientation: landscape){
  .home-hero .rounded-4.bg-white > .text-muted{
    font-size: .84rem;
    line-height: 1.25;
  }

  .home-hero .hero-picks .btn{
    font-size: .86rem;
    line-height: 1.2;
  }

  .home-hero .hero-picks-note{
    font-size: .8rem;
    line-height: 1.25;
  }

  .services-page .services-hero .hero-picks .btn,
  .services-page .services-hero .hero-picks .btn-call.btn-lg,
  .services-page .services-hero .services-hero-actions .btn-call.btn-lg{
    font-size: .88rem !important;
    --bs-btn-font-size: .88rem;
  }

  .services-page .services-hero .hero-picks-note{
    font-size: .82rem;
    line-height: 1.28;
  }

  .repairs-page .services-hero .hero-side-card-subtitle{
    font-size: .82rem;
    line-height: 1.25;
  }

  .repairs-page .services-hero .hero-side-list-item{
    font-size: .86rem;
    line-height: 1.25;
  }
}

@media (max-width: 575.98px) and (orientation: portrait){
  .fleet-contact-card{
    display: none;
  }

  /* Pass/fail: give the pass checklist more usable width on narrow phones */
  .pass-fail-page #pass-fail .pf-panel-pass{
    padding-left: .9rem;
    padding-right: .9rem;
  }

  .pass-fail-page #pass-fail .pf-panel-pass .pf-pass-checklist{
    padding: .5rem .4rem;
  }

  .pass-fail-page #pass-fail .pf-panel-pass .tick-list li{
    gap: .5rem;
    font-size: .88rem;
    line-height: 1.26;
  }

  .pass-fail-page #pass-fail .pf-panel-pass .tick-list .drive-status-icon{
    width: 1.9rem;
    height: 1.9rem;
    flex: 0 0 1.9rem;
    margin-top: 0;
  }

  .pass-fail-page #pass-fail .pf-panel-pass .tick-list .drive-status-icon i{
    font-size: .84rem;
    margin-top: 0;
  }

  .pass-fail-page #pass-fail .pf-panel-pass .tick-list li > span:last-child{
    white-space: nowrap;
  }

  .repairs-page .hero-side-card-subtitle,
  .hero-side-card--repairs .hero-side-card-subtitle{
    font-size: .84rem;
    line-height: 1.25;
  }

  .repairs-page .hero-side-list-item,
  .hero-side-card--repairs .hero-side-list-item{
    font-size: .86rem;
    line-height: 1.25;
  }

  .repairs-page #repairs-help .tick-list.is-compact li,
  .repairs-page #repairs-diagnostics .text-muted.small,
  .repairs-page #repairs-mot .text-muted.small,
  .repairs-page #repairs-not .service-card p.text-muted.small{
    font-size: .84rem;
    line-height: 1.3;
  }

  .repairs-page #repairs-help .service-card .btn.btn-sm{
    --bs-btn-font-size: .84rem;
  }
}

@media (min-width: 668px) and (max-width: 1024px) and (max-height: 768px) and (orientation: landscape){
  .services-page .service-sidebar .small.text-uppercase{
    font-size: .75rem;
    letter-spacing: .14em;
  }

  .services-page .services-hero .hero-picks-note{
    font-size: .86rem;
    line-height: 1.28;
  }

  .services-page .services-hero .hero-side-list--grid .hero-side-card-subtitle{
    font-size: .82rem;
    line-height: 1.28;
  }

  .services-page .service-book-btn,
  .services-page .details-toggle,
  .services-page #service-repairs .service-actions .btn{
    font-size: .875rem;
  }
}

@media (min-width: 768px) and (max-width: 991.98px){
  .fleet-section,
  .mot-guide-page .mot-section,
  .pass-fail-page .pf-section{
    padding-top: 3.5rem;
    padding-bottom: 4.5rem;
  }

  .repairs-page .repairs-section{
    padding-top: var(--content-section-pad-y);
    padding-bottom: var(--content-section-pad-y);
  }

  .services-page .services-hero .hero-side-list--grid .hero-side-card-subtitle{
    font-size: .82rem;
    line-height: 1.28;
  }

  #fleet-included .fleet-included-scope{
    padding: 1.1rem 1.15rem;
    border-radius: 1rem;
  }

  #fleet-included .fleet-scope-head{
    gap: .25rem;
    margin-bottom: 1rem;
  }

  #fleet-included .fleet-scope-head-title{
    gap: .5rem;
    font-size: 1rem;
  }

  #fleet-included .fleet-scope-head-title i{
    width: 1.8rem;
    height: 1.8rem;
    border-radius: .7rem;
    font-size: .8rem;
  }

  #fleet-included .fleet-scope-head .fleet-note{
    font-size: .88rem;
    line-height: 1.38;
  }

  #fleet-included .fleet-scope-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
  }

  #fleet-included .fleet-scope-card{
    gap: .95rem;
    padding: 1rem;
    border-radius: .95rem;
  }

  #fleet-included .fleet-scope-group{
    gap: .4rem;
    padding: .75rem .8rem;
    border-radius: .8rem;
  }

  #fleet-included .fleet-scope-group + .fleet-scope-group{
    margin-top: .7rem;
  }

  #fleet-included .fleet-scope-title{
    gap: .45rem;
    font-size: .92rem;
    margin-bottom: .45rem;
  }

  #fleet-included .fleet-included-scope .tick-list{
    gap: .42rem;
  }

  #fleet-included .fleet-included-scope .tick-list li{
    font-size: .88rem;
    line-height: 1.34;
    align-items: center;
  }

  #fleet-included .fleet-included-scope .tick-list i{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 0;
    font-size: .78rem;
    line-height: 1;
  }

  #fleet-structured .fleet-included-topcards{
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: .8rem;
    align-items: stretch;
    margin-bottom: 0;
  }

  #fleet-structured .fleet-included-topcard{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 1rem .8rem;
    border-radius: 1rem;
    height: 100%;
  }

  #fleet-structured .fleet-included-topcard-icon{
    width: 2.35rem;
    height: 2.35rem;
    margin-bottom: .6rem;
    border-radius: .75rem;
    font-size: .85rem;
  }

  #fleet-structured .fleet-included-topcard-title{
    font-size: .86rem;
    margin-bottom: .35rem;
    line-height: 1.18;
  }

  #fleet-structured .fleet-included-topcard-text{
    font-size: .82rem;
    line-height: 1.25;
    margin-top: auto;
  }

  .fleet-feature-grid,
  .fleet-audience-grid{
    gap: .9rem;
  }

  .fleet-card,
  .fleet-audience-card{
    gap: .85rem;
    padding: 1.15rem;
    border-radius: 1rem;
  }

  .fleet-card-icon{
    width: 2.35rem;
    height: 2.35rem;
    border-radius: .8rem;
    font-size: .9rem;
  }

  .fleet-audience-icon{
    width: 2.45rem;
    height: 2.45rem;
    border-radius: .85rem;
    font-size: .92rem;
  }

  .fleet-card-title{
    font-size: .95rem;
    margin-bottom: .3rem;
    line-height: 1.2;
  }

  .fleet-card-text{
    font-size: .9rem;
    line-height: 1.35;
  }

  .fleet-steps{
    gap: .85rem;
  }

  .fleet-step{
    gap: .8rem;
    padding: 1.05rem;
    border-radius: 1rem;
  }

  .fleet-step-index{
    width: 2.15rem;
    height: 2.15rem;
    font-size: .9rem;
  }

  .fleet-enquiry-shell{
    border-radius: 1.6rem;
    padding: 2.15rem;
  }

  .fleet-contact-card,
  .fleet-form-card{
    padding: 1.25rem;
    border-radius: 1.1rem;
  }

  #fleet-included .fleet-included-meta{
    gap: .75rem;
  }

  #fleet-included .fleet-included-meta-card{
    gap: .8rem;
    padding: .95rem 1rem;
    border-radius: 1rem;
  }

  #fleet-included .fleet-included-meta-icon{
    width: 2.1rem;
    height: 2.1rem;
    border-radius: .75rem;
    font-size: .85rem;
  }

  #fleet-included .fleet-included-meta-title{
    font-size: .9rem;
    margin-bottom: .2rem;
    line-height: 1.2;
  }

  #fleet-included .fleet-included-meta-text{
    font-size: .86rem;
    line-height: 1.3;
  }

  #fleet-enquiry .fleet-enquiry-shell > .row{
    flex-wrap: nowrap;
    --bs-gutter-x: 1rem;
    --bs-gutter-y: 1rem;
    align-items: flex-start !important;
  }

  #fleet-enquiry .fleet-enquiry-shell > .row > .col-lg-5{
    flex: 0 0 39%;
    max-width: 39%;
  }

  #fleet-enquiry .fleet-enquiry-shell > .row > .col-lg-7{
    flex: 0 0 61%;
    max-width: 61%;
  }

  #fleet-enquiry .fleet-eyebrow{
    margin-bottom: .55rem;
    font-size: .8rem;
  }

  #fleet-enquiry .fleet-title{
    font-size: 1.5rem;
    margin-bottom: .75rem;
    line-height: 1.12;
  }

  #fleet-enquiry .fleet-body{
    font-size: .9rem;
    line-height: 1.35;
  }

  #fleet-enquiry .fleet-contact-card{
    display: none;
    margin-top: 1.25rem;
  }

  #fleet-enquiry .fleet-contact-cta{
    display: block;
    margin-top: 1.1rem;
  }

  #fleet-enquiry .fleet-contact-cta .btn{
    --bs-btn-padding-y: .55rem;
    --bs-btn-padding-x: .8rem;
    font-size: .9rem;
    border-radius: .8rem;
    font-weight: 700;
    background: #fff;
    border-color: #fff;
    color: #111;
  }

  #fleet-enquiry .fleet-contact-cta .btn:hover,
  #fleet-enquiry .fleet-contact-cta .btn:focus-visible{
    background: #111;
    border-color: #111;
    color: #fff;
  }

  #fleet-enquiry .fleet-contact-line{
    grid-template-columns: 72px 1fr;
    gap: .55rem;
    margin-bottom: .55rem;
    font-size: .86rem;
    line-height: 1.28;
  }

  #fleet-enquiry .fleet-contact-line a{
    font-size: .9rem;
    line-height: 1.25;
  }

  #fleet-enquiry .fleet-form-card .row{
    --bs-gutter-x: .85rem;
    --bs-gutter-y: .75rem;
  }

  #fleet-enquiry .fleet-form-card .form-label{
    font-size: .85rem;
    margin-bottom: .3rem;
  }

  #fleet-enquiry .fleet-form-card .form-control,
  #fleet-enquiry .fleet-form-card .form-select{
    font-size: .9rem;
    padding: .5rem .65rem;
  }

  #fleet-enquiry .fleet-form-card textarea.form-control{
    min-height: 6.5rem;
  }

  #fleet-enquiry .fleet-form-card .btn.btn-book-primary{
    --bs-btn-padding-y: .55rem;
    --bs-btn-padding-x: .8rem;
    font-size: .9rem;
  }

  #fleet-enquiry .fleet-form-card .fleet-note{
    font-size: .82rem;
    line-height: 1.28;
    margin-top: .65rem !important;
  }
}

@media (min-width: 576px) and (max-width: 1024px) and (max-height: 768px) and (orientation: landscape){
  .fleet-section{
    padding: 3rem 0;
  }

  .fleet-hero{
    padding: 2.9rem 0 3.25rem;
  }

  .fleet-hero .row{
    flex-wrap: nowrap;
    align-items: flex-start !important;
    --bs-gutter-x: 1rem;
    --bs-gutter-y: .85rem;
  }

  .fleet-hero .display-5{
    font-size: 2rem;
    line-height: 1.12;
    margin-bottom: .55rem !important;
  }

  .fleet-hero .hero-eyebrow{
    font-size: .72rem;
    letter-spacing: .16em;
    margin-bottom: .35rem;
  }

  .fleet-hero .hero-lead{
    font-size: .95rem;
    line-height: 1.35;
    margin-bottom: .8rem !important;
    max-width: 30rem;
  }

  .fleet-hero .hero-meta--pills{
    gap: .4rem;
    max-width: 31rem;
  }

  .fleet-hero .hero-pill{
    font-size: .78rem;
    padding: .22rem .55rem;
    gap: .35rem;
  }

  .fleet-hero .hero-side-card{
    margin-top: 0 !important;
    padding: 1rem;
    border-radius: 1rem;
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.24);
    max-height: none;
    overflow: visible;
  }

  .fleet-hero .hero-side-card-header{
    margin-bottom: .6rem;
    gap: .25rem;
  }

  .fleet-hero .hero-side-card-title{
    font-size: .96rem;
  }

  .fleet-hero .hero-side-card-subtitle{
    font-size: .78rem;
    line-height: 1.2;
  }

  .fleet-hero .hero-side-list--steps{
    gap: .55rem;
    margin-bottom: .7rem;
    font-size: .84rem;
  }

  .fleet-hero .hero-side-list--steps li{
    display: grid;
    grid-template-columns: 1.2rem minmax(0, 1fr);
    align-items: start;
    column-gap: .45rem;
    padding: .45rem .55rem;
    border-radius: .7rem;
    line-height: 1.24;
  }

  .fleet-hero .hero-side-list-step{
    width: 1.2rem;
    height: 1.2rem;
    margin-right: 0;
    font-size: .62rem;
  }

  .fleet-hero .hero-side-actions{
    gap: .45rem;
    padding-top: .7rem;
  }

  .fleet-hero .hero-side-actions .btn{
    --bs-btn-padding-y: .45rem;
    --bs-btn-padding-x: .7rem;
    font-size: .84rem;
    line-height: 1.2;
  }

  #fleet-included .fleet-included-scope .tick-list li{
    display: grid;
    grid-template-columns: 1rem minmax(0, 1fr);
    align-items: start;
    column-gap: .6rem;
  }

  #fleet-included .fleet-included-scope .tick-list i{
    width: 1rem;
    height: 1rem;
    margin-top: .12rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
  }

  #fleet-included .fleet-included-meta{
    gap: .7rem;
  }

  #fleet-included .fleet-included-meta-card{
    gap: .75rem;
    padding: .9rem .95rem;
    border-radius: 1rem;
  }

  #fleet-included .fleet-included-meta-icon{
    width: 2.05rem;
    height: 2.05rem;
    border-radius: .72rem;
    font-size: .82rem;
  }

  #fleet-included .fleet-included-meta-title{
    font-size: .88rem;
    line-height: 1.2;
    margin-bottom: .15rem;
  }

  #fleet-included .fleet-included-meta-text{
    font-size: .84rem;
    line-height: 1.28;
  }

  #fleet-included .fleet-included-scope{
    padding: 1rem 1.05rem;
    border-radius: 1rem;
  }

  #fleet-included .fleet-scope-head{
    margin-bottom: .9rem;
    gap: .25rem;
  }

  #fleet-included .fleet-scope-head-title{
    font-size: .98rem;
    gap: .5rem;
  }

  #fleet-included .fleet-scope-head-title i{
    width: 1.75rem;
    height: 1.75rem;
    border-radius: .68rem;
    font-size: .78rem;
  }

  #fleet-included .fleet-scope-head .fleet-note{
    font-size: .84rem;
    line-height: 1.32;
  }

  #fleet-included .fleet-scope-grid{
    gap: .9rem 1rem;
  }

  #fleet-included .fleet-scope-card{
    gap: .85rem;
    padding: .95rem;
    border-radius: .95rem;
  }

  #fleet-included .fleet-scope-group{
    gap: .35rem;
    padding: .65rem .75rem;
    border-radius: .8rem;
  }

  #fleet-included .fleet-scope-group + .fleet-scope-group{
    margin-top: .6rem;
  }

  #fleet-included .fleet-scope-title{
    font-size: .88rem;
    margin-bottom: .35rem;
    gap: .4rem;
  }

  #fleet-included .fleet-included-scope .tick-list{
    gap: .35rem;
  }

  #fleet-included .fleet-included-scope .tick-list li{
    font-size: .84rem;
    line-height: 1.28;
    align-items: flex-start;
  }

  #fleet-included .fleet-included-scope .tick-list i{
    font-size: .76rem;
    margin-top: 0.12rem;
    line-height: 1;
  }

  #fleet-structured .fleet-included-topcards{
    gap: .9rem;
    margin-bottom: 0;
    align-items: stretch;
  }

  #fleet-structured .fleet-included-topcard{
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 1.15rem 1rem;
    border-radius: 1rem;
  }

  #fleet-structured .fleet-included-topcard-icon{
    width: 2.45rem;
    height: 2.45rem;
    margin-bottom: .6rem;
    border-radius: .78rem;
    font-size: .88rem;
  }

  #fleet-structured .fleet-included-topcard-title{
    font-size: .92rem;
    line-height: 1.2;
    margin-bottom: .4rem;
  }

  #fleet-structured .fleet-included-topcard-text{
    font-size: .88rem;
    line-height: 1.32;
    margin-top: 0;
  }

  .fleet-feature-grid,
  .fleet-audience-grid{
    gap: .85rem;
  }

  .fleet-card,
  .fleet-audience-card{
    gap: .8rem;
    padding: 1rem;
    border-radius: 1rem;
  }

  .fleet-card-icon{
    width: 2.2rem;
    height: 2.2rem;
    border-radius: .75rem;
    font-size: .86rem;
  }

  .fleet-audience-icon{
    width: 2.3rem;
    height: 2.3rem;
    border-radius: .8rem;
    font-size: .88rem;
  }

  .fleet-card-title{
    font-size: .92rem;
    margin-bottom: .25rem;
    line-height: 1.18;
  }

  .fleet-card-text{
    font-size: .86rem;
    line-height: 1.3;
  }

  .fleet-steps{
    gap: .8rem;
  }

  .fleet-step{
    gap: .75rem;
    padding: .95rem;
    border-radius: 1rem;
  }

  .fleet-step-index{
    width: 2rem;
    height: 2rem;
    font-size: .84rem;
  }

  .fleet-enquiry-shell{
    border-radius: 1.5rem;
    padding: 1.7rem;
  }

  #fleet-enquiry .fleet-enquiry-shell > .row{
    --bs-gutter-x: .95rem;
    --bs-gutter-y: .75rem;
    align-items: flex-start !important;
  }

  #fleet-enquiry .fleet-eyebrow{
    margin-bottom: .45rem;
    font-size: .76rem;
  }

  #fleet-enquiry .fleet-title{
    font-size: 1.35rem;
    line-height: 1.12;
    margin-bottom: .6rem;
  }

  #fleet-enquiry .fleet-body{
    font-size: .86rem;
    line-height: 1.3;
  }

  #fleet-enquiry .fleet-contact-card{
    display: none;
  }

  #fleet-enquiry .fleet-contact-cta{
    display: block;
    margin-top: .9rem;
  }

  #fleet-enquiry .fleet-contact-cta .btn{
    --bs-btn-padding-y: .5rem;
    --bs-btn-padding-x: .75rem;
    font-size: .86rem;
    border-radius: .75rem;
    font-weight: 700;
    background: #fff;
    border-color: #fff;
    color: #111;
  }

  #fleet-enquiry .fleet-contact-cta .btn:hover,
  #fleet-enquiry .fleet-contact-cta .btn:focus-visible{
    background: #111;
    border-color: #111;
    color: #fff;
  }

  #fleet-enquiry .fleet-form-card{
    padding: 1.1rem;
    border-radius: 1rem;
  }

  #fleet-enquiry .fleet-form-card .row{
    --bs-gutter-x: .8rem;
    --bs-gutter-y: .65rem;
  }

  #fleet-enquiry .fleet-form-card .form-label{
    font-size: .82rem;
    margin-bottom: .25rem;
  }

  #fleet-enquiry .fleet-form-card .form-control,
  #fleet-enquiry .fleet-form-card .form-select{
    font-size: .88rem;
    padding: .45rem .6rem;
  }

  #fleet-enquiry .fleet-form-card textarea.form-control{
    min-height: 5.75rem;
  }

  #fleet-enquiry .fleet-form-card .btn.btn-book-primary{
    --bs-btn-padding-y: .5rem;
    --bs-btn-padding-x: .75rem;
    font-size: .88rem;
  }

  #fleet-enquiry .fleet-form-card .fleet-note{
    font-size: .8rem;
    line-height: 1.25;
    margin-top: .55rem !important;
  }

  .repairs-page .section-tight .repairs-section{
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .repairs-page .hero-side-card-subtitle,
  .hero-side-card--repairs .hero-side-card-subtitle{
    font-size: .82rem;
    line-height: 1.25;
  }

  .repairs-page .hero-side-list-item,
  .hero-side-card--repairs .hero-side-list-item{
    font-size: .86rem;
    line-height: 1.25;
  }

  .repairs-page .services-hero-actions .btn{
    font-size: .88rem;
  }

  .repairs-page #repairs-help .tick-list.is-compact li,
  .repairs-page #repairs-diagnostics .text-muted.small,
  .repairs-page #repairs-mot .text-muted.small,
  .repairs-page #repairs-not .service-card p.text-muted.small{
    font-size: .84rem;
    line-height: 1.3;
  }

  .repairs-page #repairs-help .service-card .btn.btn-sm{
    --bs-btn-font-size: .84rem;
  }
}

/* Secondary text scale normalization (index + services + repairs) */
@media (max-width: 767.98px){
  /* Mobile text tiers:
     labels/eyebrows/badges ~= 12px (.75rem)
     secondary readable text ~= 14px (.875rem)
  */

  /* Index */
  .home-hero-reassurance{
    font-size: .9rem;
    line-height: 1.3;
  }

  .home-hero .rounded-4.bg-white > .text-muted{
    font-size: .875rem;
    line-height: 1.28;
  }

  .home-hero .hero-picks-note{
    font-size: .875rem;
    line-height: 1.28;
  }

  /* Services page */
  .services-page .services-kicker,
  .services-page .service-sidebar .small.text-uppercase,
  .services-page .mot-guides-eyebrow,
  .services-page .mot-cta-eyebrow,
  .services-page .meta-tile-label{
    font-size: .75rem;
    line-height: 1.15;
  }

  .services-page .services-hero .hero-picks-note,
  .services-page .services-hero .hero-side-card-subtitle,
  .services-page .services-hero .hero-pill,
  .services-page .service-summary,
  .services-page .service-details p,
  .services-page .service-details .tick-list li,
  .services-page .service-ref-pill,
  .services-page .mot-guide-card-text,
  .services-page .mot-cta-body .mot-body{
    font-size: .875rem;
    line-height: 1.3;
  }

  /* Repairs page */
  .repairs-page .services-kicker,
  .repairs-page #repairs-help .mot-eyebrow,
  .repairs-page #repairs-diagnostics .mot-eyebrow,
  .repairs-page #repairs-mot .mot-eyebrow,
  .repairs-page #repairs-not .mot-eyebrow{
    font-size: .75rem;
    line-height: 1.15;
  }

  .repairs-page .hero-side-card-subtitle,
  .repairs-page .hero-side-list-item,
  .hero-side-card--repairs .hero-side-card-subtitle,
  .hero-side-card--repairs .hero-side-list-item,
  .repairs-page .services-hero-badge,
  .repairs-page #repairs-help .mot-note,
  .repairs-page #repairs-diagnostics .mot-note,
  .repairs-page #repairs-mot .mot-note,
  .repairs-page #repairs-help .tick-list.is-compact li,
  .repairs-page #repairs-diagnostics .text-muted.small,
  .repairs-page #repairs-mot .text-muted.small,
  .repairs-page #repairs-not .service-card p.text-muted.small{
    font-size: .875rem;
    line-height: 1.3;
  }

  .repairs-page #repairs-help .service-card .btn.btn-sm{
    --bs-btn-font-size: .875rem;
  }
}

@media (min-width: 1200px){
  .services-page .services-hero .hero-picks-note{
    font-size: 1.08rem;
    line-height: 1.44;
  }
}

/* Repairs help list component: stable cross-viewport alignment */
.repairs-page #repairs-help .service-card .tick-list.is-compact{
  margin-top: .1rem;
}

.repairs-page #repairs-help .service-card .tick-list.is-compact li{
  display: flex;
  align-items: center !important;
  gap: .5rem;
  margin: 0;
  padding: .45rem 0;
  border: 0;
}

.repairs-page #repairs-help .service-card .tick-list.is-compact li + li{
  border-top: 1px dotted rgba(108, 117, 125, .45);
}

.repairs-page #repairs-help .service-card .tick-list.is-compact li:last-child{
  margin-bottom: 0;
  padding-bottom: .45rem;
  border-bottom: 0;
}

.repairs-page #repairs-help .service-card .tick-list.is-compact i{
  color: var(--brand-primary, #f28c28);
  margin-top: 0 !important;
  width: auto;
  height: auto;
  min-width: 0;
  min-height: 0;
  flex: 0 0 auto;
  font-size: .78rem;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 768px) and (max-width: 991.98px){
  /* Tablet text tiers:
     labels ~= 12.5px (.78rem)
     secondary readable text ~= 14.4px (.9rem)
  */

  /* Index */
  .home-hero-reassurance{
    font-size: .95rem;
    line-height: 1.32;
  }

  .home-hero .rounded-4.bg-white > .text-muted,
  .home-hero .hero-picks-note{
    font-size: .9rem;
    line-height: 1.3;
  }

  /* Services page */
  .services-page .services-kicker,
  .services-page .service-sidebar .small.text-uppercase,
  .services-page .mot-guides-eyebrow,
  .services-page .mot-cta-eyebrow,
  .services-page .meta-tile-label{
    font-size: .78rem;
    line-height: 1.15;
  }

  .services-page .services-hero .hero-picks-note,
  .services-page .services-hero .hero-side-card-subtitle,
  .services-page .services-hero .hero-pill,
  .services-page .service-summary,
  .services-page .service-details p,
  .services-page .service-details .tick-list li,
  .services-page .service-ref-pill,
  .services-page .mot-guide-card-text,
  .services-page .mot-cta-body .mot-body{
    font-size: .9rem;
    line-height: 1.32;
  }

  /* Repairs page */
  .repairs-page .services-kicker,
  .repairs-page #repairs-help .mot-eyebrow,
  .repairs-page #repairs-diagnostics .mot-eyebrow,
  .repairs-page #repairs-mot .mot-eyebrow,
  .repairs-page #repairs-not .mot-eyebrow{
    font-size: .78rem;
    line-height: 1.15;
  }

  .repairs-page .hero-side-card-subtitle,
  .repairs-page .hero-side-list-item,
  .hero-side-card--repairs .hero-side-card-subtitle,
  .hero-side-card--repairs .hero-side-list-item,
  .repairs-page .services-hero-badge,
  .repairs-page #repairs-help .mot-note,
  .repairs-page #repairs-diagnostics .mot-note,
  .repairs-page #repairs-mot .mot-note,
  .repairs-page #repairs-help .tick-list.is-compact li,
  .repairs-page #repairs-diagnostics .text-muted.small,
  .repairs-page #repairs-mot .text-muted.small,
  .repairs-page #repairs-not .service-card p.text-muted.small{
    font-size: .9rem;
    line-height: 1.32;
  }

  .repairs-page #repairs-help .service-card .btn.btn-sm{
    --bs-btn-font-size: .875rem;
  }
}

/* =========================
   404 page
   ========================= */
.error-page {
  background: var(--surface-2);
}

.error-hero {
  position: relative;
  min-height: calc(100vh - 96px);
  padding: 5.5rem 0;
  background: linear-gradient(130deg, #fff4da 0%, #ffffff 48%, #f3f6fb 100%);
  border-bottom: 1px solid rgba(17, 17, 17, .08);
  overflow: hidden;
  display: flex;
  align-items: center;
}

.error-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 153, 0, .18), transparent 48%),
    radial-gradient(circle at 90% 20%, rgba(17, 17, 17, .08), transparent 35%),
    repeating-linear-gradient(-45deg, rgba(17, 17, 17, .04), rgba(17, 17, 17, .04) 1px, transparent 1px, transparent 12px);
  opacity: .7;
  pointer-events: none;
}

.error-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr);
  gap: 3rem;
  align-items: center;
}

.error-kicker {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: #7a5a00;
}

.error-title {
  font-size: clamp(2.4rem, 3.6vw, 3.4rem);
  font-weight: 800;
  margin-bottom: 1rem;
}

.error-sub {
  max-width: 34rem;
  font-size: 1.1rem;
  color: var(--muted);
}

.error-actions {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: .85rem;
}

.error-art {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 320px;
}

.error-face-wrap {
  animation: errorFloat 7s ease-in-out infinite;
}

.error-face {
  font-size: clamp(7rem, 16vw, 18rem);
  font-weight: 800;
  letter-spacing: -.02em;
  color: #111;
  transform: rotate(90deg);
  text-shadow: 0 18px 40px rgba(0, 0, 0, .15);
}

.error-reveal {
  opacity: 0;
  transform: translateY(14px);
  animation: errorReveal .6s ease forwards;
  animation-delay: var(--delay, 0s);
}

@keyframes errorReveal {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes errorFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-14px);
  }
}

@media (max-width: 991.98px) {
  .error-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .error-art {
    order: -1;
  }

  .error-sub {
    margin-left: auto;
    margin-right: auto;
  }

  .error-actions {
    justify-content: center;
  }
}

@media (max-width: 767.98px) {
  .error-hero {
    min-height: calc(100vh - 80px);
    padding: 4.5rem 0;
  }

  .error-art {
    min-height: 240px;
  }
}
