:root {
  --brand-purple: #2b168f;
  --brand-blue: #1660ad;
  --ink: #171717;
  --muted: #5d5d66;
  --line: #e7e7ea;
  --shadow: 0 12px 36px rgba(13, 17, 30, 0.12);
  --ease-soft: cubic-bezier(0.2, 0.8, 0.2, 1);
  --motion-time: 620ms;
  --max-width: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #ffffff;
  font-family: "Poppins", Arial, sans-serif;
  line-height: 1.55;
}

img,
svg {
  display: block;
}

a {
  color: inherit;
}

@keyframes soft-rise {
  from {
    opacity: 0;
    transform: translate3d(0, 16px, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes soft-drop {
  from {
    opacity: 0;
    transform: translate3d(0, -8px, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes gentle-scale {
  from {
    opacity: 0;
    transform: scale(0.985);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.motion-ready .site-header,
.motion-ready .social-strip {
  animation: soft-drop 520ms var(--ease-soft) both;
}

.motion-ready .hero-content,
.motion-ready .service-hero-copy,
.motion-ready .brand-hero-copy {
  animation: soft-rise 700ms var(--ease-soft) both;
}

.motion-ready .service-visual,
.motion-ready .brand-visual,
.motion-ready .shop-image,
.motion-ready .service-image-panel img,
.motion-ready .brand-image-panel img {
  animation: gentle-scale 760ms var(--ease-soft) both;
}

.motion-ready .motion-item {
  opacity: 0;
  transform: translate3d(0, 18px, 0);
  transition:
    opacity var(--motion-time) var(--ease-soft),
    transform var(--motion-time) var(--ease-soft);
  transition-delay: var(--motion-delay, 0ms);
}

.motion-ready .motion-item.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.motion-ready .motion-pop {
  opacity: 0;
  transform: translate3d(0, 10px, 0) scale(0.98);
}

.motion-ready .motion-pop.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

.service-grid article,
.trust-metrics article,
.service-directory,
.review-card,
.faq-grid details,
.service-panel,
.process-grid article,
.related-grid a,
.brand-directory,
.brand-grid article,
.brand-models,
.quote-form {
  transition:
    transform 180ms var(--ease-soft),
    box-shadow 180ms var(--ease-soft),
    border-color 180ms var(--ease-soft);
}

.service-grid article:hover,
.service-panel:hover,
.process-grid article:hover,
.brand-grid article:hover,
.brand-models:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 34px rgba(13, 17, 30, 0.1);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: #ffffff;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
}

.header-inner {
  width: min(100%, 1240px);
  min-height: 88px;
  margin: 0 auto;
  padding: 0 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand img {
  width: 205px;
  height: auto;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  font-size: 16px;
  font-weight: 400;
}

.primary-nav a {
  text-decoration: none;
  white-space: nowrap;
}

.primary-nav > a,
.nav-group > a {
  padding: 28px 0;
  border-bottom: 1px solid transparent;
}

.primary-nav a:hover,
.primary-nav .active {
  border-bottom-color: currentColor;
}

.nav-group {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-group button {
  border: 0;
  background: transparent;
  color: currentColor;
  padding: 0;
  cursor: pointer;
  font: inherit;
  line-height: 1;
}

.dropdown {
  position: absolute;
  top: 100%;
  left: -18px;
  min-width: 260px;
  max-height: min(70vh, 620px);
  overflow-y: auto;
  padding: 10px;
  background: #ffffff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity 160ms ease, transform 160ms ease;
}

.nav-group:hover .dropdown,
.nav-group:focus-within .dropdown {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.dropdown a {
  display: block;
  padding: 10px 12px;
  font-size: 14px;
  border-bottom: 0;
}

.dropdown a:hover {
  background: #f4f4f7;
}

.vehicle-dropdown {
  min-width: 210px;
  max-height: none;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: #ffffff;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.menu-toggle span:not(.sr-only) {
  width: 19px;
  height: 2px;
  background: var(--ink);
}

.social-strip {
  min-height: 80px;
  padding: 16px 24px;
  background: var(--brand-purple);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 64px;
}

.social-strip p {
  margin: 0;
  font-size: 16px;
}

.social-strip a {
  color: #ffffff;
}

.social-icons {
  display: flex;
  align-items: center;
  gap: 24px;
}

.social-icons a {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 42px;
  font-weight: 700;
  line-height: 1;
}

.social-icons svg {
  width: 42px;
  height: 42px;
  fill: currentColor;
}

.hero {
  min-height: 604px;
  display: grid;
  place-items: center;
  padding: 72px 24px 66px;
  color: #ffffff;
  text-align: center;
  background:
    linear-gradient(rgba(8, 10, 16, 0.7), rgba(8, 10, 16, 0.7)),
    url("./assets/hero.jpg") center / cover no-repeat;
}

.hero-content {
  width: min(100%, 1140px);
}

.hero h1 {
  margin: 0 0 44px;
  font-size: clamp(44px, 5vw, 64px);
  font-weight: 400;
  line-height: 1.08;
}

.hero p {
  width: min(100%, 1130px);
  margin: 0 auto;
  font-size: clamp(18px, 2vw, 22px);
}

.hero .call-line {
  margin-top: 34px;
}

.hero-actions {
  margin-top: 68px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  min-width: 280px;
  padding: 15px 30px;
  border: 0;
  border-radius: 7px;
  text-decoration: none;
  text-transform: uppercase;
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.16);
}

.button:active,
.mobile-action-bar a:active {
  transform: translateY(1px);
}

.button-light {
  background: #ffffff;
  color: #1f2025;
}

.button-primary {
  background: var(--brand-purple);
  color: #ffffff;
  box-shadow: 0 12px 28px rgba(43, 22, 143, 0.28);
}

.button-dark {
  background: #25282d;
  color: #ffffff;
}

.button-blue {
  min-width: 128px;
  min-height: 44px;
  background: var(--brand-blue);
  color: #ffffff;
  text-transform: none;
}

.section-pad {
  padding: 86px 32px;
}

.trust-band {
  padding: 44px 32px;
}

.trust-inner {
  width: min(100%, var(--max-width));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(420px, 0.95fr) minmax(360px, 1fr);
  gap: 44px;
  align-items: center;
}

.trust-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid var(--line);
}

.trust-metrics article {
  min-height: 118px;
  padding: 20px;
  display: grid;
  place-items: center;
  text-align: center;
  border-right: 1px solid var(--line);
}

.trust-metrics article:last-child {
  border-right: 0;
}

.trust-metrics strong {
  display: block;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1;
  color: var(--brand-purple);
}

.trust-metrics span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
  text-transform: uppercase;
}

.answer-box {
  margin-top: 32px;
  padding: 22px 24px;
  border-left: 5px solid var(--brand-purple);
  background: #f6f6f8;
  color: #202127;
  font-size: 16px;
}

.certification-images {
  margin: 0 auto;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  gap: 34px;
}

.certification-images img:first-child {
  width: min(58%, 420px);
}

.certification-images img:last-child {
  width: min(34%, 250px);
}

.content-grid,
.contact-grid {
  width: min(100%, var(--max-width));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  align-items: center;
  gap: 70px;
}

.intro-copy {
  font-size: 19px;
}

.intro-copy h2 {
  margin: 0 0 26px;
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.2;
}

.intro-copy p {
  margin: 0 0 24px;
}

.shop-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.vehicles {
  text-align: center;
  padding-top: 42px;
}

.vehicles h2,
.services h2,
.reviews h2,
.faq h2,
.contact h2 {
  margin: 0 0 22px;
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.2;
}

.section-lede {
  width: min(100%, 820px);
  margin: 0 auto 46px;
  color: var(--muted);
  text-align: center;
  font-size: 17px;
}

.vehicle-logos {
  width: min(100%, 1240px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(7, minmax(110px, 1fr));
  align-items: center;
  gap: 26px;
}

.vehicle-logos a {
  display: grid;
  place-items: center;
  min-height: 112px;
  text-decoration: none;
}

.vehicle-logos img {
  width: 100%;
  max-width: 160px;
  margin: 0 auto;
}

.vehicle-text-logo {
  min-height: 112px;
  padding: 16px;
  border: 1px solid var(--line);
  background: #ffffff;
  color: var(--brand-purple);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 700;
  line-height: 1.1;
  text-align: center;
}

.vehicle-text-logo:hover {
  border-color: var(--brand-purple);
  box-shadow: 0 12px 28px rgba(43, 22, 143, 0.08);
}

.brand-directory {
  width: min(100%, var(--max-width));
  margin: 48px auto 0;
  padding: 30px;
  text-align: left;
  background: #f6f6f8;
  border: 1px solid var(--line);
}

.brand-directory h3 {
  margin: 0 0 22px;
  font-size: 24px;
  text-align: center;
}

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

.brand-directory-grid a {
  min-height: 58px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: #ffffff;
  border: 1px solid var(--line);
  color: #25262d;
  font-weight: 600;
  text-decoration: none;
}

.brand-directory-grid a:hover {
  border-color: var(--brand-purple);
  color: var(--brand-purple);
}

.services {
  background: #f6f6f8;
}

.services h2,
.reviews h2,
.faq h2 {
  text-align: center;
}

.service-grid {
  width: min(100%, var(--max-width));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.service-grid article {
  min-height: 214px;
  padding: 30px;
  background: #ffffff;
  border: 1px solid var(--line);
}

.service-grid h3 {
  margin: 0 0 16px;
  font-size: 21px;
}

.service-grid p {
  margin: 0;
  color: var(--muted);
}

.service-directory {
  width: min(100%, var(--max-width));
  margin: 36px auto 0;
  padding: 30px;
  background: #ffffff;
  border: 1px solid var(--line);
}

.service-directory h3 {
  margin: 0 0 22px;
  font-size: 24px;
  text-align: center;
}

.service-directory ul {
  margin: 0;
  padding: 0;
  list-style: none;
  columns: 3;
  column-gap: 36px;
}

.service-directory li {
  break-inside: avoid;
  padding: 8px 0 8px 18px;
  position: relative;
  color: #2e3037;
  font-size: 15px;
}

.service-directory a {
  text-decoration: none;
}

.service-directory a:hover {
  color: var(--brand-purple);
  text-decoration: underline;
}

.service-directory li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  width: 6px;
  height: 6px;
  background: var(--brand-purple);
}

.review-card {
  width: min(100%, 1130px);
  margin: 0 auto;
  min-height: 96px;
  padding: 24px 24px 24px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border: 1px solid #eeeeef;
  border-radius: 10px;
  box-shadow: 0 6px 24px rgba(33, 37, 45, 0.08);
}

.faq {
  background: #f6f6f8;
}

.faq-grid {
  width: min(100%, 980px);
  margin: 0 auto;
  display: grid;
  gap: 14px;
}

.faq-grid details {
  background: #ffffff;
  border: 1px solid var(--line);
  padding: 20px 24px;
}

.faq-grid summary {
  cursor: pointer;
  font-size: 18px;
  font-weight: 600;
}

.faq-grid p {
  margin: 14px 0 0;
  color: var(--muted);
}

.rating {
  display: flex;
  align-items: center;
  gap: 18px;
}

.rating span {
  color: #ffc928;
  font-size: 26px;
  letter-spacing: 0;
}

.rating p {
  margin: 0;
  color: var(--muted);
}

.contact {
  background: #ffffff;
}

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

.quote-form label {
  display: grid;
  gap: 8px;
  color: #1f2025;
  font-size: 14px;
  font-weight: 500;
}

.quote-form .full,
.quote-form button,
.form-status {
  grid-column: 1 / -1;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #d7d9df;
  background: #ffffff;
  min-height: 52px;
  padding: 14px 15px;
  font: inherit;
  color: var(--ink);
}

textarea {
  min-height: 142px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid rgba(43, 22, 143, 0.24);
  border-color: var(--brand-purple);
}

.quote-form button {
  width: 170px;
  min-width: 170px;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--brand-purple);
  font-weight: 600;
}

.contact-copy {
  font-size: 18px;
}

.contact-copy h2 {
  margin-bottom: 26px;
}

.contact-copy p {
  margin: 0 0 14px;
}

.footer {
  background: #ffffff;
}

.footer-inner {
  width: min(100%, 1240px);
  min-height: 112px;
  margin: 0 auto;
  padding: 24px 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.footer-inner img {
  width: 205px;
  height: auto;
}

.footer-inner nav {
  display: flex;
  align-items: center;
  gap: 34px;
}

.footer-inner a {
  text-decoration: none;
}

.footer-inner a:hover {
  text-decoration: underline;
}

.footer-strip {
  min-height: 80px;
}

.mobile-action-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 40;
  display: none;
  background: #ffffff;
  border-top: 1px solid var(--line);
  box-shadow: 0 -8px 24px rgba(16, 18, 28, 0.14);
}

.mobile-action-bar a {
  flex: 1;
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 700;
  color: var(--brand-purple);
  border-right: 1px solid var(--line);
}

.mobile-action-bar a:nth-child(2) {
  background: var(--brand-purple);
  color: #ffffff;
}

.mobile-action-bar a:last-child {
  border-right: 0;
}

.chat-assistant {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 60;
  font-family: inherit;
}

.chat-launcher {
  min-height: 52px;
  padding: 0 18px;
  border: 0;
  border-radius: 7px;
  background: var(--brand-purple);
  color: #ffffff;
  box-shadow: 0 14px 34px rgba(20, 18, 39, 0.24);
  font: inherit;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition:
    transform 180ms var(--ease-soft),
    box-shadow 180ms var(--ease-soft),
    background-color 180ms var(--ease-soft);
}

.chat-launcher:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 42px rgba(20, 18, 39, 0.3);
}

.chat-panel {
  position: absolute;
  right: 0;
  bottom: 68px;
  width: min(380px, calc(100vw - 44px));
  max-height: min(640px, calc(100vh - 118px));
  display: grid;
  grid-template-rows: auto minmax(220px, 1fr) auto;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 22px 70px rgba(17, 20, 34, 0.25);
  opacity: 0;
  transform: translate3d(0, 12px, 0) scale(0.98);
  transform-origin: bottom right;
  pointer-events: none;
  transition:
    opacity 180ms var(--ease-soft),
    transform 180ms var(--ease-soft);
}

.chat-assistant.open .chat-panel {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  pointer-events: auto;
}

.chat-header {
  min-height: 74px;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  background: #25282d;
  color: #ffffff;
}

.chat-header strong,
.chat-header span {
  display: block;
}

.chat-header strong {
  font-size: 15px;
  line-height: 1.2;
}

.chat-header span {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 12px;
}

.chat-close {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: transparent;
  color: #ffffff;
  font: inherit;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.chat-messages {
  min-height: 260px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  overflow-y: auto;
  background: #f6f6f8;
}

.chat-message {
  width: fit-content;
  max-width: 88%;
  padding: 11px 13px;
  border-radius: 8px;
  font-size: 14px;
  line-height: 1.45;
  box-shadow: 0 5px 18px rgba(18, 20, 28, 0.07);
}

.chat-message.bot {
  align-self: flex-start;
  background: #ffffff;
  color: #202127;
  border: 1px solid var(--line);
}

.chat-message.user {
  align-self: flex-end;
  background: var(--brand-purple);
  color: #ffffff;
}

.chat-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chat-action {
  min-height: 42px;
  padding: 9px 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #d7d9df;
  border-radius: 7px;
  background: #ffffff;
  color: #25262d;
  text-decoration: none;
  font: inherit;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition:
    transform 160ms var(--ease-soft),
    border-color 160ms var(--ease-soft),
    background-color 160ms var(--ease-soft);
}

.chat-action:hover {
  transform: translateY(-1px);
  border-color: var(--brand-purple);
}

.chat-action.primary {
  background: var(--brand-purple);
  border-color: var(--brand-purple);
  color: #ffffff;
}

.chat-input-row {
  padding: 12px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  background: #ffffff;
  border-top: 1px solid var(--line);
}

.chat-input-row input {
  min-height: 46px;
  border-radius: 0;
}

.chat-input-row button {
  min-height: 46px;
  padding: 0 14px;
  border: 0;
  border-radius: 7px;
  background: #25282d;
  color: #ffffff;
  font: inherit;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}

.service-hero {
  min-height: 660px;
  padding: 72px 40px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.82fr);
  align-items: center;
  gap: 54px;
  color: #ffffff;
  background:
    linear-gradient(90deg, rgba(8, 10, 16, 0.92), rgba(8, 10, 16, 0.62)),
    url("/assets/hero.jpg") center / cover no-repeat;
}

.service-hero-copy {
  width: min(100%, 780px);
  margin-left: max(0px, calc((100vw - var(--max-width)) / 2));
}

.service-kicker {
  margin: 0 0 18px;
  color: #bfc7ff;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.service-hero h1 {
  margin: 0 0 28px;
  font-size: clamp(42px, 5vw, 70px);
  line-height: 1.05;
  font-weight: 600;
}

.service-hero-copy > p:not(.service-kicker) {
  max-width: 720px;
  margin: 0;
  font-size: clamp(18px, 2vw, 22px);
}

.service-hero-actions {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}

.phone-cta {
  color: #ffffff;
  font-weight: 700;
}

.service-visual {
  position: relative;
  width: min(100%, 540px);
  margin-right: max(0px, calc((100vw - var(--max-width)) / 2));
}

.service-visual img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border: 8px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
}

.diagnostic-card {
  position: absolute;
  left: -34px;
  bottom: 34px;
  width: min(82%, 360px);
  padding: 22px;
  background: #ffffff;
  color: var(--ink);
  box-shadow: var(--shadow);
}

.diagnostic-card span {
  display: block;
  margin-bottom: 8px;
  color: var(--brand-purple);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.diagnostic-card strong {
  display: block;
  font-size: 20px;
  line-height: 1.25;
}

.scan-lines {
  margin-top: 18px;
  display: grid;
  gap: 8px;
}

.scan-lines i {
  display: block;
  height: 8px;
  background: linear-gradient(90deg, var(--brand-purple), #d7d8e5);
}

.scan-lines i:nth-child(2) {
  width: 76%;
}

.scan-lines i:nth-child(3) {
  width: 52%;
}

.service-proof {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #ffffff;
}

.service-proof article {
  min-height: 126px;
  padding: 24px;
  display: grid;
  place-items: center;
  text-align: center;
  border-right: 1px solid var(--line);
}

.service-proof article:last-child {
  border-right: 0;
}

.service-proof strong {
  color: var(--brand-purple);
  font-size: 38px;
  line-height: 1;
}

.service-proof span {
  margin-top: 8px;
  color: var(--muted);
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
}

.service-content {
  background: #ffffff;
}

.service-info-grid {
  width: min(100%, var(--max-width));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.service-panel {
  min-height: 280px;
  padding: 34px;
  background: #f6f6f8;
  border: 1px solid var(--line);
}

.service-panel h2,
.service-process h2,
.related-services h2,
.diagnostic-cta h2 {
  margin: 0 0 18px;
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.16;
}

.service-panel p {
  margin: 0 0 18px;
  color: var(--muted);
}

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

.check-list li {
  position: relative;
  padding-left: 28px;
  color: #25262d;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 10px;
  height: 10px;
  background: var(--brand-purple);
}

.service-image-panel {
  padding: 0;
  overflow: hidden;
}

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

.diagnostic-cta {
  width: min(100% - 64px, var(--max-width));
  margin: 0 auto;
  padding: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  background: var(--brand-purple);
  color: #ffffff;
}

.diagnostic-cta p {
  max-width: 720px;
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 18px;
}

.diagnostic-cta-actions {
  display: grid;
  gap: 14px;
}

.service-process,
.related-services,
.service-contact {
  background: #ffffff;
}

.service-process h2,
.related-services h2 {
  text-align: center;
}

.process-grid {
  width: min(100%, var(--max-width));
  margin: 40px auto 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.process-grid article {
  padding: 26px;
  border: 1px solid var(--line);
  background: #ffffff;
}

.process-grid span {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--brand-purple);
  color: #ffffff;
  font-weight: 700;
}

.process-grid h3 {
  margin: 20px 0 10px;
  font-size: 21px;
}

.process-grid p {
  margin: 0;
  color: var(--muted);
}

.related-grid {
  width: min(100%, var(--max-width));
  margin: 34px auto 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.related-grid a {
  min-height: 68px;
  padding: 16px;
  display: flex;
  align-items: center;
  text-decoration: none;
  background: #f6f6f8;
  border: 1px solid var(--line);
  font-weight: 600;
}

.related-grid a:hover {
  border-color: var(--brand-purple);
}

.page-breadcrumb {
  width: min(100%, var(--max-width));
  margin: 0 auto;
  padding: 18px 32px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  color: var(--muted);
  font-size: 13px;
}

.page-breadcrumb a {
  text-decoration: none;
}

.page-breadcrumb a:hover {
  color: var(--brand-purple);
  text-decoration: underline;
}

.page-breadcrumb strong {
  color: var(--ink);
  font-weight: 600;
}

.answer-panel {
  background: #ffffff;
  border-color: rgba(43, 22, 143, 0.3);
  box-shadow: 0 16px 36px rgba(43, 22, 143, 0.08);
}

.answer-panel a {
  display: inline-flex;
  margin-top: 8px;
  color: var(--brand-purple);
  font-weight: 700;
  text-decoration: none;
}

.answer-panel a:hover {
  text-decoration: underline;
}

.evidence-panel {
  background: #f8f8fb;
}

.faq-mini {
  background: #f6f6f8;
}

.faq-mini h2 {
  margin: 0 0 30px;
  text-align: center;
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.2;
}

.brand-hero {
  min-height: 650px;
  padding: 72px 40px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.82fr);
  align-items: center;
  gap: 54px;
  color: #ffffff;
  background:
    linear-gradient(90deg, rgba(8, 10, 16, 0.92), rgba(8, 10, 16, 0.58)),
    url("/assets/hero.jpg") center / cover no-repeat;
}

.brand-hero-copy {
  width: min(100%, 780px);
  margin-left: max(0px, calc((100vw - var(--max-width)) / 2));
}

.brand-hero h1 {
  margin: 0 0 28px;
  font-size: clamp(42px, 5vw, 70px);
  line-height: 1.05;
  font-weight: 600;
}

.brand-hero-copy > p {
  max-width: 720px;
  margin: 0;
  font-size: clamp(18px, 2vw, 22px);
}

.brand-visual {
  position: relative;
  width: min(100%, 540px);
  margin-right: max(0px, calc((100vw - var(--max-width)) / 2));
}

.brand-shop {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border: 8px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
}

.brand-logo-card {
  position: absolute;
  left: -34px;
  bottom: 34px;
  width: min(76%, 300px);
  min-height: 150px;
  padding: 22px;
  display: grid;
  place-items: center;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.brand-logo-card img {
  width: min(100%, 190px);
  height: auto;
}

.brand-logo-card strong {
  color: var(--brand-purple);
  font-size: 34px;
  line-height: 1.05;
  text-align: center;
}

.brand-models {
  min-height: 340px;
  padding: 34px;
  display: grid;
  align-content: center;
  gap: 20px;
  background: #f6f6f8;
  border: 1px solid var(--line);
}

.brand-models h2,
.brand-services h2 {
  margin: 0;
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.2;
}

.brand-models p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

.brand-services {
  background: #ffffff;
}

.brand-services h2 {
  text-align: center;
}

.brand-grid {
  width: min(100%, var(--max-width));
  margin: 40px auto 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.brand-grid article {
  min-height: 320px;
  padding: 32px;
  background: #f6f6f8;
  border: 1px solid var(--line);
}

.brand-grid h3 {
  margin: 0 0 20px;
  font-size: 23px;
}

.brand-image-panel {
  padding: 0;
  overflow: hidden;
}

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

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

  .motion-ready .motion-item,
  .motion-ready .motion-pop {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 980px) {
  .header-inner {
    padding: 18px 22px;
    min-height: 78px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .primary-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    padding: 12px 22px 24px;
    background: #ffffff;
    border-top: 1px solid var(--line);
    box-shadow: var(--shadow);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .primary-nav.open {
    display: flex;
  }

  .primary-nav > a,
  .nav-group {
    padding: 0;
  }

  .primary-nav > a,
  .nav-group > a {
    display: block;
    min-height: 46px;
    padding: 12px 0;
  }

  .nav-group {
    display: block;
  }

  .nav-group button,
  .dropdown {
    display: none;
  }

  .social-strip {
    padding: 18px 20px;
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .social-icons a {
    width: 44px;
    height: 44px;
    font-size: 34px;
  }

  .social-icons svg {
    width: 34px;
    height: 34px;
  }

  .call-line a,
  .contact-copy a,
  .social-strip p a,
  .page-breadcrumb a {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
  }

  .page-breadcrumb a {
    min-width: 44px;
    justify-content: center;
  }

  .service-directory a {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
  }

  .answer-panel a {
    min-height: 44px;
    align-items: center;
  }

  .footer-inner a {
    min-height: 44px;
    min-width: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .hero {
    min-height: 560px;
  }

  .trust-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .certification-images {
    justify-content: center;
  }

  .content-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .vehicle-logos {
    grid-template-columns: repeat(4, minmax(100px, 1fr));
  }

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

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

  .service-directory ul {
    columns: 2;
  }

  .footer-inner {
    flex-direction: column;
  }

  .service-hero {
    grid-template-columns: 1fr;
    padding: 58px 28px;
  }

  .service-hero-copy,
  .service-visual,
  .brand-hero-copy,
  .brand-visual {
    margin: 0 auto;
  }

  .service-info-grid,
  .process-grid,
  .related-grid,
  .brand-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .brand-hero {
    grid-template-columns: 1fr;
    padding: 58px 28px;
  }

  .diagnostic-cta {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  body {
    padding-bottom: 58px;
  }

  .brand img,
  .footer-inner img {
    width: 178px;
  }

  .hero {
    min-height: 540px;
    padding: 60px 20px;
  }

  .hero h1 {
    margin-bottom: 28px;
    font-size: 39px;
  }

  .hero p {
    font-size: 17px;
  }

  .hero-actions {
    margin-top: 42px;
  }

  .hero .hero-actions,
  .service-hero .service-hero-actions,
  .brand-hero .service-hero-actions {
    display: none;
  }

  .button {
    width: min(100%, 300px);
    min-width: 0;
  }

  .section-pad,
  .trust-band {
    padding: 58px 20px;
  }

  .certification-images {
    flex-direction: column;
  }

  .trust-metrics {
    grid-template-columns: 1fr;
  }

  .trust-metrics article {
    min-height: 96px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .trust-metrics article:last-child {
    border-bottom: 0;
  }

  .certification-images img:first-child,
  .certification-images img:last-child {
    width: min(100%, 420px);
  }

  .intro-copy,
  .contact-copy {
    font-size: 16px;
  }

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

  .brand-directory {
    padding: 24px 20px;
  }

  .brand-directory-grid {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .quote-form {
    grid-template-columns: 1fr;
  }

  .service-directory {
    padding: 24px 20px;
  }

  .service-directory ul {
    columns: 1;
  }

  .faq-grid details {
    padding: 18px 20px;
  }

  .review-card,
  .rating {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-inner nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px 24px;
  }

  .mobile-action-bar {
    display: flex;
  }

  .chat-assistant {
    right: 14px;
    bottom: 72px;
    left: 14px;
  }

  .chat-launcher {
    width: 100%;
    min-height: 50px;
  }

  .chat-panel {
    left: 0;
    right: 0;
    bottom: 62px;
    width: 100%;
    max-height: calc(100vh - 150px);
    transform-origin: bottom center;
  }

  .chat-messages {
    min-height: 230px;
  }

  .service-hero {
    padding: 46px 20px;
  }

  .service-hero h1,
  .brand-hero h1 {
    font-size: 38px;
  }

  .brand-hero {
    padding: 46px 20px;
  }

  .service-hero-actions,
  .diagnostic-cta-actions {
    width: 100%;
  }

  .phone-cta {
    width: 100%;
    text-align: center;
  }

  .diagnostic-card {
    left: 16px;
    right: 16px;
    bottom: 16px;
    width: auto;
  }

  .brand-logo-card {
    left: 16px;
    right: 16px;
    bottom: 16px;
    width: auto;
    min-height: 122px;
  }

  .service-proof,
  .service-info-grid,
  .process-grid,
  .related-grid,
  .brand-grid {
    grid-template-columns: 1fr;
  }

  .service-proof article {
    min-height: 94px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .service-proof article:last-child {
    border-bottom: 0;
  }

  .service-panel {
    min-height: 0;
    padding: 26px 22px;
  }

  .diagnostic-cta {
    width: calc(100% - 40px);
    padding: 30px 22px;
  }

  .brand-models,
  .brand-grid article {
    min-height: 0;
    padding: 26px 22px;
  }
}
