/* =========================================================
   Custom T Repair, Inc.
   Mobile-first static landing page styling
========================================================= */

:root {
  --bg: #050607;
  --bg-soft: #0b0d0f;
  --card: #14171a;
  --green: #72ff00;
  --green-dark: #4fbe00;
  --white: #ffffff;
  --text: #d9dcdf;
  --muted: #9da2a6;
  --surface: #f4f5f2;
  --ink: #17191b;
  --line: rgba(255,255,255,.14);
  --line-strong: rgba(255,255,255,.25);
  --max: 1180px;
  --gutter: clamp(18px, 4vw, 54px);
  --radius: 12px;
  --heading: Impact, "Arial Narrow", "Helvetica Neue Condensed", Arial, sans-serif;
  --body: Inter, "Segoe UI", Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--body);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
ul { margin: 0; padding: 0; list-style: none; }
h1,h2,h3,p { margin: 0; }
button,input,textarea { font: inherit; }

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 9999;
  padding: 10px 14px;
  background: var(--green);
  color: #050505;
  font-weight: 900;
}
.skip-link:focus { top: 16px; }
:focus-visible { outline: 2px solid var(--green); outline-offset: 3px; }

.section-inner {
  width: min(100%, var(--max));
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section-kicker {
  margin-bottom: 8px;
  color: var(--green-dark);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .13em;
  text-align: center;
  text-transform: uppercase;
}
.section-kicker--left { text-align: left; }

.section-heading {
  color: var(--white);
  font-family: var(--heading);
  font-size: clamp(2.2rem, 4.4vw, 4rem);
  line-height: .94;
  letter-spacing: .005em;
  text-transform: uppercase;
}
.section-heading--dark { color: var(--ink); text-align: center; }
.section-lead {
  max-width: 720px;
  margin-top: 16px;
  color: var(--text);
  font-size: clamp(.98rem, 1.5vw, 1.12rem);
  line-height: 1.65;
}
.section-lead--dark {
  margin-inline: auto;
  color: #555b60;
  text-align: center;
}

.btn {
  min-height: 48px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .03em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn--primary { background: var(--green); color: #050505; }
.btn--primary:hover { background: #8cff2b; }
.btn--outline { background: rgba(0,0,0,.2); border-color: rgba(255,255,255,.75); color: #fff; }
.btn--lg { min-height: 54px; padding-inline: 26px; }
.btn--block { width: 100%; }

.topbar {
  background: #000;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.topbar__inner {
  width: min(100%, var(--max));
  min-height: 32px;
  margin-inline: auto;
  padding-inline: var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.topbar__item {
  color: #d4d4d4;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .04em;
  white-space: nowrap;
  text-transform: uppercase;
}
.topbar__item--emergency { color: var(--green); }
.topbar__item--note { text-transform: none; letter-spacing: 0; font-weight: 600; color: #c7cbce; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(5,6,7,.96);
  border-bottom: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(12px);
  transition: transform .28s ease;
}
.site-header__inner {
  width: min(100%, var(--max));
  min-height: 84px;
  margin-inline: auto;
  padding: 8px var(--gutter);
  display: grid;
  grid-template-columns: 178px 1fr auto;
  align-items: center;
  gap: 28px;
}
.site-header__logo img { width: 118px; height: auto; display: block; filter: drop-shadow(0 8px 16px rgba(0,0,0,.5)); }
.site-nav__list { display: flex; justify-content: center; gap: 28px; }
.site-nav__list a {
  color: #fff;
  font-size: .74rem;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.site-nav__list a:hover { color: var(--green); }
.header-contact { display: flex; align-items: center; gap: 14px; }
.phone-link {
  padding: 8px 12px;
  display: grid;
  gap: 2px;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
}
.phone-link__label {
  color: var(--green);
  font-size: .58rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.phone-link__number { color: #fff; font-size: .98rem; font-weight: 900; }
.hamburger, .mobile-menu { display: none; }

.hero {
  position: relative;
  min-height: clamp(560px, 56vw, 720px);
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero__media {
  position: absolute;
  inset: 0;
  background: url("images/hero-truck-rural-arkansas.jpg") 54% center / cover no-repeat;
}
.hero__scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(4,5,6,.88) 0%, rgba(4,5,6,.70) 23%, rgba(4,5,6,.42) 47%, rgba(4,5,6,.12) 76%),
    linear-gradient(0deg, rgba(0,0,0,.24), rgba(0,0,0,.06) 42%);
}
.hero__content {
  position: relative;
  z-index: 2;
  width: min(100%, var(--max));
  margin-inline: auto;
  padding: 70px var(--gutter);
}
.eyebrow {
  color: var(--green);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.hero__headline {
  max-width: 820px;
  margin-top: 18px;
  color: #fff;
  font-family: var(--heading);
  font-size: clamp(4.1rem, 8.4vw, 7.8rem);
  line-height: .85;
  letter-spacing: .005em;
  text-transform: uppercase;
}
.hero__headline span { color: var(--green); }
.hero__copy {
  max-width: 600px;
  margin-top: 24px;
  color: #e6e8e9;
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  line-height: 1.58;
}
.hero__actions { margin-top: 30px; display: flex; flex-wrap: wrap; gap: 12px; }
.hero__notice {
  max-width: 620px;
  margin-top: 20px;
  padding: 12px 14px;
  color: #bfc3c6;
  font-size: .72rem;
  line-height: 1.45;
  background: rgba(0,0,0,.38);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 8px;
}

.trust-bar {
  background: #090b0d;
  border-top: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(255,255,255,.10);
}
.trust-bar__inner {
  width: min(100%, var(--max));
  margin-inline: auto;
  padding: 20px var(--gutter);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
}
.trust-item {
  min-height: 82px;
  padding: 18px 20px;
  display: grid;
  gap: 5px;
  background: rgba(255,255,255,.035);
  border: 1px solid rgba(255,255,255,.07);
}
.trust-item strong { color: #fff; font-size: .82rem; text-transform: uppercase; }
.trust-item span { color: var(--muted); font-size: .78rem; line-height: 1.4; }

.services { background: var(--surface); }
.services .section-inner { padding-top: 62px; padding-bottom: 68px; }
.service-grid {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.service-card {
  min-height: 168px;
  padding: 24px;
  background: #fff;
  border: 1px solid #e0e3e5;
  border-radius: var(--radius);
  box-shadow: 0 10px 28px rgba(0,0,0,.06);
}
.service-card::before {
  content: "";
  display: block;
  width: 44px;
  height: 4px;
  margin-bottom: 18px;
  background: var(--green-dark);
  border-radius: 999px;
}
.service-card h3 { color: var(--ink); font-size: 1rem; line-height: 1.2; font-weight: 900; }
.service-card p { margin-top: 10px; color: #5a6065; font-size: .88rem; line-height: 1.55; }
.service-card--featured { background: #101214; border-color: #22262a; }
.service-card--featured h3 { color: #fff; }
.service-card--featured p { color: #c5c8cb; }

.why-us { background: #07090b; border-top: 1px solid rgba(255,255,255,.08); }
.why-us__grid {
  padding-top: 68px;
  padding-bottom: 68px;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, .8fr);
  gap: 38px;
  align-items: center;
}
.why-card {
  padding: 28px;
  background: var(--card);
  border: 1px solid #262a2e;
  border-radius: var(--radius);
}
.why-card h3 { color: #fff; font-size: 1.05rem; font-weight: 900; text-transform: uppercase; }
.check-list { margin-top: 18px; display: grid; gap: 12px; }
.check-list li { position: relative; padding-left: 28px; color: var(--text); font-size: .94rem; line-height: 1.45; }
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--green);
  font-weight: 900;
}

.reviews { background: #0b0d0f; border-top: 1px solid rgba(255,255,255,.08); }
.reviews__grid {
  padding-top: 62px;
  padding-bottom: 62px;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 26px;
  align-items: stretch;
}
.reviews__summary {
  padding: 28px;
  background: #111416;
  border: 1px solid #262a2e;
  border-radius: var(--radius);
}
.reviews__score { color: var(--green); font-family: var(--heading); font-size: 5rem; line-height: .8; }
.reviews__stars { margin-top: 14px; color: var(--green); letter-spacing: .13em; }
.reviews__summary h2 { margin-top: 10px; color: #fff; font-size: .9rem; font-weight: 900; text-transform: uppercase; }
.reviews__summary p { margin-top: 12px; color: var(--muted); font-size: .88rem; line-height: 1.55; }
.reviews__cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.review-card {
  min-height: 210px;
  padding: 24px;
  background: #151719;
  border: 1px solid #272b2f;
  border-radius: var(--radius);
}
.quote-mark { color: var(--green); font-family: Georgia, serif; font-size: 2.6rem; line-height: .7; }
.review-card p { margin-top: 12px; color: #fff; font-size: .93rem; line-height: 1.55; }
.review-card footer { margin-top: 22px; color: var(--muted); font-size: .78rem; font-weight: 700; }

.request-service { background: #06080a; border-top: 1px solid rgba(255,255,255,.08); }
.request-service__grid {
  padding-top: 68px;
  padding-bottom: 72px;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, .8fr);
  gap: 38px;
  align-items: start;
}
.request-service__subtext { margin-top: 14px; margin-bottom: 22px; color: var(--muted); font-size: .98rem; line-height: 1.55; }
.request-form { display: grid; gap: 14px; }
.request-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.request-form label { display: grid; gap: 6px; }
.request-form label > span:first-child { color: #b8bdc1; font-size: .68rem; font-weight: 900; letter-spacing: .06em; text-transform: uppercase; }
.request-form input, .request-form textarea {
  width: 100%;
  border: 1px solid #303337;
  border-radius: 8px;
  background: #17191b;
  color: #fff;
  padding: 13px 14px;
  outline: 0;
}
.request-form input:focus, .request-form textarea:focus { border-color: var(--green); }
.request-form textarea { min-height: 118px; resize: vertical; }
.sms-consent { padding: 14px; border: 1px solid #303337; border-radius: 8px; background: rgba(255,255,255,.025); }
.sms-consent__row { display: flex !important; align-items: flex-start; gap: 10px !important; }
.sms-consent__row input { width: 17px; height: 17px; margin-top: 2px; flex: 0 0 auto; accent-color: var(--green); }
.sms-consent__row span { color: #bdc2c5 !important; font-size: .72rem !important; line-height: 1.5; text-transform: none !important; letter-spacing: 0 !important; font-weight: 400 !important; }
.sms-consent__links { margin-top: 8px; padding-left: 28px; display: flex; flex-wrap: wrap; gap: 8px; color: #fff; font-size: .72rem; }
.sms-consent__links a { text-decoration: underline; text-underline-offset: 2px; }
.request-form__status { min-height: 1.2em; color: var(--green); font-size: .82rem; line-height: 1.35; }
.contact-card {
  overflow: hidden;
  background: #101214;
  border: 1px solid #262a2e;
  border-radius: var(--radius);
  box-shadow: 0 18px 44px rgba(0,0,0,.22);
}
.contact-card__details { padding: 30px; }
.contact-card h3 { color: #fff; font-size: 1.1rem; font-weight: 900; }
.contact-card__phone { display: inline-block; margin-top: 12px; color: var(--green); font-size: clamp(1.6rem, 3vw, 2.25rem); font-weight: 900; }
.contact-card address { margin-top: 18px; color: var(--text); font-size: .96rem; font-style: normal; line-height: 1.6; }
.contact-card__bullets { margin-top: 22px; display: grid; gap: 10px; }
.contact-card__bullets li { position: relative; padding-left: 22px; color: #b8bdc1; font-size: .92rem; line-height: 1.45; }
.contact-card__bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .5em;
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 999px;
}
.contact-card__note { margin: 22px 0; padding: 14px; color: #bec3c6; font-size: .78rem; line-height: 1.45; background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08); border-radius: 8px; }
.contact-card__map { height: 280px; border-top: 1px solid rgba(255,255,255,.12); background: #0b0d0f; }
.contact-card__map iframe { width: 100%; height: 100%; border: 0; display: block; filter: grayscale(20%) contrast(1.05); }

.site-footer { background: #050607; border-top: 1px solid rgba(255,255,255,.11); }
.site-footer__inner {
  width: min(100%, var(--max));
  min-height: 96px;
  margin-inline: auto;
  padding: 18px var(--gutter);
  display: grid;
  grid-template-columns: 130px 1fr auto;
  align-items: center;
  gap: 24px;
}
.site-footer__logo img { width: 116px; height: auto; display: block; filter: drop-shadow(0 8px 16px rgba(0,0,0,.5)); }
.site-footer__nav { display: flex; justify-content: center; flex-wrap: wrap; gap: 18px; }
.site-footer__nav a, .site-footer p { color: #92979b; font-size: .7rem; }
.site-footer__nav a { text-decoration: underline; text-underline-offset: 2px; }

.mobile-sticky-call { display: none; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .55s cubic-bezier(.22,.61,.36,1), transform .55s cubic-bezier(.22,.61,.36,1); }
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 1100px) {
  .site-header__inner { grid-template-columns: 145px 1fr auto; gap: 20px; }
  .site-header__logo img { width: 108px; }
  .site-nav__list { gap: 18px; }
  .header-contact .btn { display: none; }
  .service-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .reviews__grid { grid-template-columns: 1fr; }
  .reviews__cards { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 899px) {
  body { padding-bottom: 0; }
  .topbar__inner { min-height: 28px; justify-content: center; }
  .topbar__item { font-size: .58rem; text-align: center; }
  .topbar__item--note { display: none; }
  .site-header.header--hidden { transform: translateY(-100%); }
  .site-header__inner { min-height: 72px; display: flex; justify-content: space-between; }
  .site-header__logo img { width: 108px; }
  .site-nav, .header-contact { display: none; }
  .hamburger { display: flex; width: 44px; height: 44px; border: 1px solid rgba(255,255,255,.28); border-radius: 7px; background: #0b0d0f; flex-direction: column; justify-content: center; gap: 5px; }
  .hamburger span { width: 22px; height: 2px; margin-inline: auto; background: #fff; transition: transform .2s ease, opacity .2s ease; }
  .hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .mobile-menu { display: block; background: #070809; border-top: 1px solid rgba(255,255,255,.1); }
  .mobile-menu[hidden] { display: none; }
  .mobile-menu__list { padding: 14px var(--gutter) 17px; display: grid; gap: 10px; }
  .mobile-menu__list a { display: block; padding: 7px 0; color: #fff; font-size: .82rem; font-weight: 900; letter-spacing: .04em; text-transform: uppercase; }
  .mobile-menu__call { color: #050505 !important; padding: 0 18px !important; }

  .hero { min-height: 610px; align-items: end; }
  .hero__media { background-position: 62% center; }
  .hero__scrim { background: linear-gradient(180deg, rgba(4,5,6,.08) 0%, rgba(4,5,6,.24) 26%, rgba(4,5,6,.78) 62%, rgba(4,5,6,.98) 90%, rgba(4,5,6,1) 100%); }
  .hero__content { padding-top: 250px; padding-bottom: 36px; }
  .hero__headline { font-size: clamp(3.1rem, 15vw, 5.1rem); line-height: .88; }
  .hero__copy { margin-top: 18px; font-size: .96rem; }
  .hero__actions { display: grid; grid-template-columns: 1fr; }
  .hero__actions .btn { width: 100%; }

  .trust-bar__inner { grid-template-columns: repeat(2, 1fr); padding: 14px var(--gutter); }
  .trust-item { min-height: 86px; padding: 16px; }
  .services .section-inner, .why-us__grid, .reviews__grid, .request-service__grid { padding-top: 48px; padding-bottom: 52px; }
  .why-us__grid, .request-service__grid { grid-template-columns: 1fr; gap: 26px; }
  .reviews__cards { grid-template-columns: 1fr; }
  .request-form__row { grid-template-columns: 1fr; }
  .contact-card__details { padding: 24px; }
  .contact-card__map { height: 240px; }
  .site-footer__inner { grid-template-columns: 1fr; justify-items: center; text-align: center; }
  .mobile-sticky-call { position: fixed; left: 12px; right: 12px; bottom: 12px; z-index: 1200; min-height: 50px; display: flex; align-items: center; justify-content: center; background: var(--green); color: #050505; border-radius: 8px; font-size: .84rem; font-weight: 900; text-transform: uppercase; box-shadow: 0 14px 34px rgba(0,0,0,.35); }
}

@media (max-width: 540px) {
  :root { --gutter: 16px; }
  .hero { min-height: 590px; }
  .hero__headline { font-size: clamp(2.9rem, 15.5vw, 4.1rem); }
  .trust-bar__inner { grid-template-columns: 1fr; }
  .service-grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .site-header { transition: none; }
}


/* =========================================================
   V4 fixes: better real logo display, visible map, Google badges,
   and dark legal pages.
========================================================= */

.site-header__inner {
  grid-template-columns: 220px 1fr auto;
  min-height: 98px;
}

.site-header__logo {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
}

.site-header__logo img {
  width: 190px;
  max-height: 86px;
  object-fit: contain;
  filter: drop-shadow(0 10px 18px rgba(0,0,0,.55));
}

.site-footer__inner {
  grid-template-columns: 210px 1fr auto;
  min-height: 128px;
}

.site-footer__logo img {
  width: 190px;
  max-height: 110px;
  object-fit: contain;
  filter: drop-shadow(0 10px 18px rgba(0,0,0,.55));
}

.review-card {
  display: flex;
  flex-direction: column;
}

.review-card p {
  flex: 1;
}

.review-card footer {
  margin-top: 22px;
  display: grid;
  gap: 10px;
}

.google-review-badge {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 9px;
  color: #e8eaed;
  background: rgba(255,255,255,.055);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .01em;
}

.google-g {
  width: 19px;
  height: 19px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  color: #4285f4;
  font-family: Arial, sans-serif;
  font-size: .78rem;
  font-weight: 900;
  line-height: 1;
}

.contact-card__details {
  padding: 28px;
}

.contact-card__map {
  height: 290px;
  margin-top: 22px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 10px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(114,255,0,.10), rgba(0,0,0,0) 46%),
    #0b0d0f;
}

.contact-card__map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  filter: grayscale(18%) contrast(1.05);
}

.map-link {
  margin-top: 10px;
  display: inline-flex;
  color: var(--green);
  font-size: .78rem;
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 20% 0%, rgba(114,255,0,.12), transparent 26rem),
    #050607;
  color: var(--text);
}

.legal-shell {
  width: min(100%, 900px);
  margin-inline: auto;
  padding: 48px var(--gutter) 70px;
}

.legal-card {
  padding: clamp(24px, 4vw, 44px);
  background: #101214;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 14px;
  box-shadow: 0 20px 52px rgba(0,0,0,.32);
}

.legal-back {
  display: inline-flex;
  margin-bottom: 22px;
  color: var(--green);
  font-size: .82rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.legal-card h1 {
  color: #fff;
  font-family: var(--heading);
  font-size: clamp(2.6rem, 6vw, 4.7rem);
  line-height: .9;
  text-transform: uppercase;
}

.legal-updated {
  margin-top: 12px;
  color: var(--muted);
  font-size: .86rem;
}

.legal-card h2 {
  margin-top: 30px;
  color: #fff;
  font-size: .88rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.legal-card p,
.legal-card li {
  margin-top: 12px;
  color: #c8cdd1;
  font-size: .96rem;
  line-height: 1.7;
}

.legal-card ul {
  margin-top: 12px;
  padding-left: 20px;
  list-style: disc;
}

.legal-card a {
  color: var(--green);
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 1100px) {
  .site-header__inner {
    grid-template-columns: 190px 1fr auto;
  }
  .site-header__logo img {
    width: 162px;
    max-height: 76px;
  }
}

@media (max-width: 899px) {
  .site-header__inner {
    min-height: 82px;
  }
  .site-header__logo img {
    width: 150px;
    max-height: 70px;
  }
  .site-footer__inner {
    grid-template-columns: 1fr;
    min-height: 140px;
  }
  .site-footer__logo img {
    width: 180px;
  }
}

@media (max-width: 540px) {
  .site-header__logo img {
    width: 132px;
  }
  .contact-card__map {
    height: 250px;
  }
}

/* =========================================================
   V5 fixes: stronger SMS disclosure, clickable Google reviews,
   and a more obvious map/contact experience.
========================================================= */

.topbar__item--note {
  max-width: 680px;
  white-space: normal;
  line-height: 1.25;
  text-align: right;
}

.header-contact__phone-wrap {
  display: grid;
  gap: 5px;
}

.header-sms-note {
  color: #aeb4b8;
  font-size: .58rem;
  line-height: 1.2;
  text-align: center;
}

.hero__notice strong,
.contact-card__note strong,
.request-service__sms-notice strong {
  color: #fff;
}

.reviews__summary--link {
  display: block;
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

.reviews__summary--link:hover,
.review-card--link:hover {
  transform: translateY(-2px);
  border-color: rgba(114,255,0,.42);
  background: #181b1e;
}

.reviews__open-link {
  width: fit-content;
  margin-top: 18px;
  display: inline-flex;
  color: var(--green);
  font-size: .72rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .04em;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.review-card--link {
  color: inherit;
  cursor: pointer;
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

.review-card--link:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 4px;
}

.request-service__sms-notice {
  margin: 18px 0 22px;
  padding: 14px 16px;
  color: #c8cdd1;
  font-size: .78rem;
  line-height: 1.55;
  background: rgba(114,255,0,.06);
  border: 1px solid rgba(114,255,0,.22);
  border-radius: 8px;
}

.contact-card__map-label {
  margin-top: 22px;
  color: #fff;
  font-size: .74rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.contact-card__map {
  height: 320px;
  margin-top: 10px;
}

.map-link {
  min-height: 44px;
  margin-top: 12px;
  padding: 0 14px;
  align-items: center;
  justify-content: center;
  background: rgba(114,255,0,.08);
  border: 1px solid rgba(114,255,0,.32);
  border-radius: 8px;
  text-decoration: none;
}

.map-link:hover {
  background: rgba(114,255,0,.14);
}

.contact-card__note {
  border-color: rgba(114,255,0,.22);
  background: rgba(114,255,0,.055);
}

@media (max-width: 980px) {
  .topbar__inner {
    align-items: flex-start;
    padding-top: 8px;
    padding-bottom: 8px;
  }
  .topbar__item--note {
    text-align: left;
  }
}

@media (max-width: 899px) {
  .header-sms-note {
    display: none;
  }
  .topbar__inner {
    display: grid;
    gap: 4px;
  }
}


/* =========================================================
   V7: Dark industrial service section + diagnostic visual
========================================================= */
.services {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 10%, rgba(114, 255, 0, .12), transparent 26%),
    radial-gradient(circle at 88% 18%, rgba(40, 115, 255, .10), transparent 28%),
    linear-gradient(180deg, #050607 0%, #080b0d 48%, #050607 100%);
  border-top: 1px solid rgba(255,255,255,.10);
  border-bottom: 1px solid rgba(255,255,255,.10);
}
.services::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(180deg, transparent 0%, #000 18%, #000 82%, transparent 100%);
  opacity: .55;
  pointer-events: none;
}
.services::after {
  content: "";
  position: absolute;
  width: 52vw;
  height: 52vw;
  right: -20vw;
  top: 8%;
  background: radial-gradient(circle, rgba(114,255,0,.16), transparent 62%);
  filter: blur(22px);
  pointer-events: none;
}
.services .section-inner {
  position: relative;
  z-index: 1;
}
.services .section-kicker { color: var(--green); }
.services .section-heading--dark { color: #fff; text-align: center; }
.services .section-lead--dark { color: #c9ced2; }
.repair-visual {
  position: relative;
  min-height: 360px;
  margin: 30px auto 30px;
  overflow: hidden;
  border: 1px solid rgba(114,255,0,.22);
  border-radius: 16px;
  background:
    linear-gradient(90deg, rgba(5,6,7,.72) 0%, rgba(5,6,7,.42) 42%, rgba(5,6,7,.28) 100%),
    #080a0c;
  box-shadow: 0 22px 56px rgba(0,0,0,.34), inset 0 0 0 1px rgba(255,255,255,.035);
}
.repair-visual__image {
  position: absolute;
  inset: 0;
  background: url("images/stevens-shop-diagnostic.jpg") 56% 52% / cover no-repeat;
  opacity: .72;
  filter: saturate(.95) contrast(1.12) brightness(.82);
}
.repair-visual::before {
  content: "DIAGNOSTIC REPAIR SYSTEM";
  position: absolute;
  left: 24px;
  top: 20px;
  z-index: 2;
  color: var(--green);
  font-size: .66rem;
  font-weight: 900;
  letter-spacing: .18em;
}
.repair-visual::after {
  content: "Mobile service • shop repair • equipment support";
  position: absolute;
  left: 24px;
  bottom: 20px;
  z-index: 2;
  color: #dfe3e6;
  font-size: .88rem;
  font-weight: 800;
}
.repair-visual__scan {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 34%;
  width: 2px;
  z-index: 2;
  background: linear-gradient(180deg, transparent, rgba(114,255,0,.95), transparent);
  box-shadow: 0 0 28px rgba(114,255,0,.74);
  animation: repairScan 5.8s ease-in-out infinite;
}
.repair-visual__point {
  position: absolute;
  z-index: 3;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 0 6px rgba(114,255,0,.15), 0 0 22px rgba(114,255,0,.75);
}
.repair-visual__point span {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  padding: 6px 9px;
  color: #fff;
  font-size: .66rem;
  font-weight: 900;
  letter-spacing: .07em;
  text-transform: uppercase;
  white-space: nowrap;
  background: rgba(0,0,0,.56);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
}
.repair-visual__point--engine { right: 40%; top: 42%; }
.repair-visual__point--brakes { right: 43%; top: 72%; }
.repair-visual__point--electrical { right: 31%; top: 33%; }
.repair-visual__point--cooling { right: 34%; top: 48%; }
.service-grid { position: relative; z-index: 2; }
.service-card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(22,25,27,.96), rgba(12,14,16,.96));
  border-color: rgba(255,255,255,.12);
  box-shadow: 0 16px 38px rgba(0,0,0,.24), inset 0 0 0 1px rgba(255,255,255,.02);
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.service-card::after {
  content: "";
  position: absolute;
  inset: auto 18px 18px auto;
  width: 70px;
  height: 70px;
  background: radial-gradient(circle, rgba(114,255,0,.18), transparent 64%);
  opacity: .72;
}
.service-card:hover {
  transform: translateY(-3px);
  border-color: rgba(114,255,0,.42);
  box-shadow: 0 20px 50px rgba(0,0,0,.36), 0 0 0 1px rgba(114,255,0,.10);
}
.service-card h3 { color: #fff; }
.service-card p { color: #bfc5c9; }
.service-card::before { background: var(--green); box-shadow: 0 0 18px rgba(114,255,0,.48); }
@keyframes repairScan {
  0%, 100% { transform: translateX(-46px); opacity: .18; }
  20% { opacity: .9; }
  50% { transform: translateX(210px); opacity: .62; }
  80% { opacity: .9; }
}
@media (prefers-reduced-motion: reduce) {
  .repair-visual__scan { animation: none; opacity: .45; }
}
@media (max-width: 899px) {
  .repair-visual { min-height: 220px; margin-top: 24px; }
  .repair-visual::before { left: 18px; top: 16px; font-size: .58rem; }
  .repair-visual::after { left: 18px; right: 18px; bottom: 16px; font-size: .76rem; }
  .repair-visual__point span { display: none; }
  .repair-visual__point--engine { right: 42%; top: 44%; }
  .repair-visual__point--brakes { right: 43%; top: 72%; }
  .repair-visual__point--electrical { right: 30%; top: 34%; }
  .repair-visual__point--cooling { right: 32%; top: 49%; }
}

/* =========================================================
   V9: Keep v8 visual, move brake marker toward front wheel
   V8: Make diagnostic points actually interact with service cards
========================================================= */
.repair-visual__point {
  border: 0;
  padding: 0;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.repair-visual__point:hover,
.repair-visual__point:focus-visible,
.repair-visual__point.is-active {
  transform: scale(1.18);
  box-shadow: 0 0 0 8px rgba(114,255,0,.22), 0 0 34px rgba(114,255,0,.95);
  outline: none;
}
.repair-visual__point:hover span,
.repair-visual__point:focus-visible span,
.repair-visual__point.is-active span {
  border-color: rgba(114,255,0,.72);
  background: rgba(5,8,6,.82);
  box-shadow: 0 0 24px rgba(114,255,0,.18);
}
.repair-visual__detail {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 18px;
  z-index: 3;
  max-width: 520px;
  margin: 0;
  padding: 10px 12px;
  color: #f2f5f7;
  font-size: .84rem;
  line-height: 1.45;
  font-weight: 750;
  background: rgba(0,0,0,.52);
  border: 1px solid rgba(114,255,0,.24);
  border-radius: 10px;
  box-shadow: 0 10px 24px rgba(0,0,0,.22);
}
.repair-visual::after {
  content: none;
}
.service-card {
  cursor: pointer;
}
.service-card:focus-visible,
.service-card.is-active {
  transform: translateY(-3px);
  border-color: rgba(114,255,0,.66);
  box-shadow: 0 22px 54px rgba(0,0,0,.42), 0 0 0 1px rgba(114,255,0,.22), 0 0 32px rgba(114,255,0,.10);
  outline: none;
}
.service-card.is-active::after {
  opacity: 1;
  background: radial-gradient(circle, rgba(114,255,0,.34), transparent 66%);
}
@media (max-width: 899px) {
  .repair-visual__detail {
    left: 18px;
    right: 18px;
    bottom: 14px;
    font-size: .76rem;
  }
}


/* =========================================================
   V10: Use Steven shop-style black truck image in diagnostic section
========================================================= */

/* =========================================================
   V11: Tighten diagnostic image crop so only the clean front brake/rotor area shows
========================================================= */
.repair-visual {
  min-height: 430px;
}
.repair-visual__image {
  background-image: url("images/stevens-shop-diagnostic.jpg");
  background-position: 76% 57%;
  background-size: 180% auto;
  background-repeat: no-repeat;
}
.repair-visual__point--engine {
  left: 42%;
  right: auto;
  top: 39%;
}
.repair-visual__point--brakes {
  left: 31%;
  right: auto;
  top: 70%;
}
.repair-visual__point--electrical {
  left: 60%;
  right: auto;
  top: 34%;
}
.repair-visual__point--cooling {
  left: 35%;
  right: auto;
  top: 30%;
}
@media (max-width: 899px) {
  .repair-visual {
    min-height: 260px;
  }
  .repair-visual__image {
    background-position: 73% 57%;
    background-size: 190% auto;
  }
  .repair-visual__point--engine { left: 43%; right: auto; top: 40%; }
  .repair-visual__point--brakes { left: 31%; right: auto; top: 70%; }
  .repair-visual__point--electrical { left: 61%; right: auto; top: 35%; }
  .repair-visual__point--cooling { left: 35%; right: auto; top: 31%; }
}

/* =========================================================
   V12: Use approved black pickup shop image, no tight crop
========================================================= */
.repair-visual {
  min-height: 520px;
}
.repair-visual__image {
  background-image: url("images/stevens-shop-diagnostic.jpg");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: .82;
  filter: saturate(.96) contrast(1.08) brightness(.78);
}
.repair-visual__scan {
  left: 44%;
}
.repair-visual__point--engine {
  left: 58%;
  right: auto;
  top: 39%;
}
.repair-visual__point--brakes {
  left: 56%;
  right: auto;
  top: 64%;
}
.repair-visual__point--electrical {
  left: 68%;
  right: auto;
  top: 34%;
}
.repair-visual__point--cooling {
  left: 50%;
  right: auto;
  top: 34%;
}
@media (max-width: 899px) {
  .repair-visual {
    min-height: 320px;
  }
  .repair-visual__image {
    background-position: 52% 50%;
    background-size: cover;
  }
  .repair-visual__point--engine { left: 58%; right: auto; top: 40%; }
  .repair-visual__point--brakes { left: 57%; right: auto; top: 65%; }
  .repair-visual__point--electrical { left: 69%; right: auto; top: 35%; }
  .repair-visual__point--cooling { left: 50%; right: auto; top: 35%; }
}


/* =========================================================
   V13: final footer/payment cleanup and reduced consent clutter
========================================================= */
.hero__notice { display: none; }
.site-footer__inner--final {
  grid-template-columns: 120px minmax(220px, 1fr) minmax(260px, auto);
  align-items: center;
  min-height: 150px;
}
.site-footer__main {
  display: grid;
  gap: 8px;
  justify-items: center;
  text-align: center;
}
.site-footer__made {
  color: #cfd3d6 !important;
  font-weight: 800;
  letter-spacing: .03em;
}
.footer-payments {
  display: grid;
  gap: 10px;
  justify-items: end;
}
.footer-payments__label {
  color: #cfd3d6 !important;
  font-size: .68rem !important;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.payment-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 7px;
  max-width: 430px;
}
.payment-badge {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 10px;
  color: #fff;
  font-size: .66rem;
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: .02em;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 7px;
  background: #121518;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,.35);
  text-align: center;
}
.payment-badge--cash { color: #72ff00; }
.payment-badge--check { color: #e8ecef; }
.payment-badge--synchrony { color: #fff; background: linear-gradient(135deg, #262a31, #15181c); }
.payment-badge--visa { background: #fff; color: #2341a1; }
.payment-badge--amex { background: #2571c8; color: #fff; }
.payment-badge--discover { background: linear-gradient(90deg, #fff 0%, #fff 42%, #f58220 100%); color: #111; }
.payment-badge--mc { gap: 2px; background: #16181b; color: #fff; }
.payment-badge--mc span {
  width: 16px;
  height: 16px;
  display: inline-block;
  border-radius: 999px;
  margin-right: -5px;
}
.payment-badge--mc span:first-child { background: #eb001b; }
.payment-badge--mc span:nth-child(2) { background: #f79e1b; margin-right: 5px; opacity: .9; }
.legal-card .legal-updated { line-height: 1.55; }
@media (max-width: 899px) {
  .site-footer__inner--final {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    gap: 18px;
    padding-block: 28px;
  }
  .footer-payments { justify-items: center; }
  .payment-badges { justify-content: center; }
}


/* =========================================================
   V14: mobile QA fixes
   - remove sticky call bar
   - center mobile menu call button
   - show diagnostic labels on mobile
   - improve mobile menu behavior
========================================================= */
.mobile-sticky-call { display: none !important; }

@media (max-width: 899px) {
  body { padding-bottom: 0 !important; }

  .mobile-menu__list {
    gap: 16px;
    padding-bottom: 28px;
  }

  .mobile-menu__list a {
    text-align: left;
  }

  .mobile-menu__call {
    width: 100%;
    min-height: 54px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    padding: 0 18px !important;
    text-align: center !important;
    line-height: 1.15;
    border-radius: 8px;
    letter-spacing: .04em;
  }

  .repair-visual__point span {
    display: block;
    padding: 5px 8px;
    font-size: .56rem;
    line-height: 1;
    letter-spacing: .06em;
    background: rgba(0,0,0,.72);
    border-color: rgba(255,255,255,.18);
    box-shadow: 0 8px 18px rgba(0,0,0,.28);
  }

  .repair-visual__point--electrical span {
    left: auto;
    right: 18px;
  }
}

@media (max-width: 430px) {
  .repair-visual__point span {
    font-size: .52rem;
    padding: 5px 7px;
  }
}

/* =========================================================
   V15: mobile diagnostic label spacing cleanup
   - keep all labels visible on phone
   - prevent Electrical/Cooling labels from stacking into each other
========================================================= */
@media (max-width: 899px) {
  .repair-visual__point span {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    max-width: 92px;
    white-space: nowrap;
    z-index: 5;
  }

  .repair-visual__point--cooling span {
    left: auto !important;
    right: 18px !important;
  }

  .repair-visual__point--engine span,
  .repair-visual__point--electrical span,
  .repair-visual__point--brakes span {
    left: 18px !important;
    right: auto !important;
  }
}

@media (max-width: 430px) {
  .repair-visual__point span {
    padding: 4px 6px;
    font-size: .46rem;
    line-height: 1;
    letter-spacing: .035em;
  }

  .repair-visual__point--cooling { left: 47%; top: 35%; }
  .repair-visual__point--engine { left: 57%; top: 42%; }
  .repair-visual__point--electrical { left: 70%; top: 35%; }
  .repair-visual__point--brakes { left: 58%; top: 66%; }
}

/* =========================================================
   V16: stop mobile diagnostic labels from overlapping
   - desktop keeps the clickable labels attached to dots
   - phone hides those crowded dot labels and uses a clean overlay key
========================================================= */
.repair-visual__mobile-labels {
  display: none;
}

@media (max-width: 899px) {
  .repair-visual__point span {
    display: none !important;
  }

  .repair-visual__mobile-labels {
    display: block;
    position: absolute;
    inset: 0;
    z-index: 4;
    pointer-events: none;
  }

  .repair-visual__mobile-label {
    position: absolute;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 24px;
    padding: 4px 8px;
    color: #fff;
    font-size: .55rem;
    line-height: 1;
    font-weight: 900;
    letter-spacing: .06em;
    text-transform: uppercase;
    white-space: nowrap;
    background: rgba(0,0,0,.72);
    border: 1px solid rgba(114,255,0,.70);
    border-radius: 999px;
    box-shadow: 0 8px 22px rgba(0,0,0,.35), 0 0 16px rgba(114,255,0,.18);
  }

  .repair-visual__mobile-label--cooling {
    left: 41%;
    top: 31%;
    transform: translateX(-100%);
  }

  .repair-visual__mobile-label--electrical {
    left: 73%;
    top: 31%;
  }

  .repair-visual__mobile-label--engine {
    left: 62%;
    top: 43%;
  }

  .repair-visual__mobile-label--brakes {
    left: 62%;
    top: 66%;
  }
}

@media (max-width: 430px) {
  .repair-visual__mobile-label {
    min-height: 22px;
    padding: 4px 7px;
    font-size: .50rem;
    letter-spacing: .045em;
  }

  .repair-visual__mobile-label--cooling {
    left: 43%;
    top: 32%;
  }

  .repair-visual__mobile-label--electrical {
    left: 70%;
    top: 32%;
  }

  .repair-visual__mobile-label--engine {
    left: 61%;
    top: 44%;
  }

  .repair-visual__mobile-label--brakes {
    left: 63%;
    top: 66%;
  }
}
