/* ═══════════════════════════════════════════════════════════
   Fort Walton Truck Transmission — Styles
   Design system: NVIDIA-inspired (angular, single-accent #76b900)
   ═══════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');

/* ── Tokens ── */
:root {
  --green:          #76b900;
  --green-dark:     #5a8d00;
  --green-pale:     #bff230;
  --black:          #000000;
  --surface-dark:   #000000;
  --surface-elev:   #1a1a1a;
  --canvas:         #ffffff;
  --surface-soft:   #f7f7f7;
  --hairline:       #cccccc;
  --hairline-strong:#5e5e5e;
  --ink:            #000000;
  --body:           #1a1a1a;
  --mute:           #757575;
  --stone:          #898989;
  --on-dark:        #ffffff;
  --on-dark-mute:   rgba(255,255,255,0.7);
  --error:          #e52020;
  --radius:         2px;
  --max-w:          1280px;
  --font:           'Inter', Arial, sans-serif;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.5;
  color: var(--ink);
  background: var(--canvas);
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* ── Container ── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* ════════════════════════════════════════
   NAVIGATION
   ════════════════════════════════════════ */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--black);
  height: 64px;
  box-shadow: 0 0 5px 0 rgba(0,0,0,0.3);
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-logo {
  font-size: 15px;
  font-weight: 700;
  color: var(--on-dark);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
  flex-shrink: 0;
}
.nav-logo span { color: var(--green); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 0;
  flex: 1;
}
.nav-link {
  font-size: 15px;
  font-weight: 700;
  color: var(--on-dark-mute);
  padding: 0 16px;
  height: 64px;
  display: flex;
  align-items: center;
  border-bottom: 2px solid transparent;
  transition: color 150ms, border-color 150ms;
  white-space: nowrap;
}
.nav-link:hover,
.nav-link.active {
  color: var(--on-dark);
  border-bottom-color: var(--green);
}
.nav-cta {
  margin-left: auto;
  background: var(--green);
  color: var(--on-dark);
  font-size: 15px;
  font-weight: 700;
  padding: 0 20px;
  height: 44px;
  display: flex;
  align-items: center;
  border-radius: var(--radius);
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 150ms;
}
.nav-cta:hover { background: var(--green-dark); }
.nav-cta:active { background: var(--green-dark); transform: scale(0.98); }

/* Mobile nav */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
}
.mobile-drawer {
  display: none;
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  background: var(--surface-elev);
  z-index: 99;
  padding: 16px 24px 24px;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--hairline-strong);
}
.mobile-drawer.open { display: flex; }
.mobile-drawer .nav-link {
  height: 48px;
  border-bottom: 1px solid var(--hairline-strong);
  padding: 0 0;
}
.mobile-drawer .nav-cta {
  margin: 16px 0 0;
  justify-content: center;
}

/* ════════════════════════════════════════
   HERO
   ════════════════════════════════════════ */
.hero {
  background: var(--surface-dark);
  position: relative;
  overflow: hidden;
  min-height: 560px;
  display: flex;
  align-items: center;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.35;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0.85) 40%, rgba(0,0,0,0.2) 100%);
}
.hero-inner {
  position: relative;
  z-index: 1;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 64px 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  width: 100%;
}
.hero-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 12px;
  height: 12px;
  background: var(--green);
  flex-shrink: 0;
}
.hero h1 {
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 700;
  line-height: 1.2;
  color: var(--on-dark);
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}
.hero h1 em {
  font-style: normal;
  color: var(--green);
}
.hero-sub {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--on-dark-mute);
  margin-bottom: 24px;
  max-width: 480px;
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.btn-primary {
  background: var(--green);
  color: var(--on-dark);
  font-size: 16px;
  font-weight: 700;
  padding: 11px 24px;
  height: 44px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background 150ms;
  white-space: nowrap;
}
.btn-primary:hover { background: var(--green-dark); }
.btn-primary:active { transform: scale(0.98); }
.btn-outline {
  background: transparent;
  color: var(--on-dark);
  font-size: 16px;
  font-weight: 700;
  padding: 9px 22px;
  height: 44px;
  border-radius: var(--radius);
  border: 2px solid var(--green);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background 150ms, color 150ms;
  white-space: nowrap;
}
.btn-outline:hover {
  background: var(--green);
  color: var(--on-dark);
}
.btn-outline-light {
  background: transparent;
  color: var(--ink);
  font-size: 16px;
  font-weight: 700;
  padding: 9px 22px;
  height: 44px;
  border-radius: var(--radius);
  border: 2px solid var(--green);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background 150ms, color 150ms;
  white-space: nowrap;
  text-decoration: none;
}
.btn-outline-light:hover {
  background: var(--green);
  color: var(--on-dark);
}

/* ── Hero Call Button (big mobile CTA) ── */
.hero-call-btn {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--green);
  color: var(--on-dark);
  border-radius: var(--radius);
  padding: 16px 24px;
  font-weight: 700;
  font-size: 22px;
  width: 100%;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 150ms;
  margin-bottom: 12px;
}
.hero-call-btn:hover { background: var(--green-dark); }
.hero-call-btn svg { flex-shrink: 0; }
.hero-call-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  display: block;
  line-height: 1;
  margin-bottom: 2px;
}
.hero-call-number { display: block; line-height: 1.1; }
.hero-right-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 8px;
}

/* ════════════════════════════════════════
   TOWING OFFER BANNER
   ════════════════════════════════════════ */
.tow-banner {
  background: var(--green);
  padding: 14px 24px;
}
.tow-banner-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  text-align: center;
}
.tow-banner-text {
  font-size: 15px;
  font-weight: 700;
  color: var(--on-dark);
  letter-spacing: 0.01em;
}
.tow-banner-text strong {
  font-size: 17px;
}
.tow-banner a {
  font-size: 13px;
  font-weight: 700;
  color: var(--on-dark);
  border: 2px solid rgba(255,255,255,0.6);
  border-radius: var(--radius);
  padding: 6px 16px;
  transition: background 150ms;
}
.tow-banner a:hover { background: rgba(0,0,0,0.15); }

/* ════════════════════════════════════════
   TRUST GRID
   ════════════════════════════════════════ */
.trust-section {
  background: var(--canvas);
  padding: 24px 0;
  border-bottom: 1px solid var(--hairline);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--hairline);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  overflow: hidden;
}
.trust-card {
  background: var(--canvas);
  padding: 28px 24px;
  position: relative;
}
.trust-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 12px;
  height: 12px;
  background: var(--green);
}
.trust-icon {
  width: 24px;
  height: 24px;
  color: var(--green);
  margin-bottom: 12px;
}
.trust-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
  line-height: 1.3;
}
.trust-body {
  font-size: 15px;
  font-weight: 400;
  color: var(--mute);
  line-height: 1.6;
}

/* ════════════════════════════════════════
   CTA STRIP (dark)
   ════════════════════════════════════════ */
.cta-strip {
  background: var(--surface-dark);
  padding: 40px 24px;
  border-top: 3px solid var(--green);
}
.cta-strip-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.cta-strip h2 {
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 700;
  color: var(--on-dark);
  line-height: 1.3;
  max-width: 640px;
}
.cta-strip h2 em {
  font-style: normal;
  color: var(--green);
}

/* ════════════════════════════════════════
   SECTIONS — general
   ════════════════════════════════════════ */
.section {
  padding: 24px 0;
  border-bottom: 1px solid var(--hairline);
}
.section-alt { background: var(--surface-soft); }
.section-dark {
  background: var(--surface-dark);
  border-bottom: 1px solid var(--hairline-strong);
}

.section-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 8px;
  display: block;
}
.section-h2 {
  font-size: clamp(22px, 2.8vw, 36px);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.25;
  margin-bottom: 8px;
}
.section-h2-light { color: var(--on-dark); }
.section-sub {
  font-size: 16px;
  font-weight: 400;
  color: var(--mute);
  line-height: 1.6;
  max-width: 640px;
}
.section-sub-light { color: var(--on-dark-mute); }

/* ════════════════════════════════════════
   SERVICES GRID
   ════════════════════════════════════════ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1px;
  background: var(--hairline);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 20px;
}
.service-card {
  background: var(--canvas);
  padding: 28px 24px;
  position: relative;
}
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 12px;
  height: 12px;
  background: var(--green);
}
.service-img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: 16px;
  border: 1px solid var(--hairline);
}
.service-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
  line-height: 1.35;
}
.service-body {
  font-size: 15px;
  color: var(--mute);
  line-height: 1.6;
  margin-bottom: 16px;
}
.service-link {
  font-size: 14.4px;
  font-weight: 700;
  color: var(--green);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  letter-spacing: 0.01em;
  transition: gap 150ms;
}
.service-link:hover { gap: 10px; }

/* ════════════════════════════════════════
   SERVICES PAGE — Detail Sections
   ════════════════════════════════════════ */
.service-detail {
  padding: 24px 0;
  border-bottom: 1px solid var(--hairline);
}
.service-detail-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.service-detail-inner.reverse { direction: rtl; }
.service-detail-inner.reverse > * { direction: ltr; }
.service-detail-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--hairline);
  position: relative;
}
.service-detail-img-wrap {
  position: relative;
}
.service-detail-img-wrap::after {
  content: '';
  position: absolute;
  top: 12px;
  left: 12px;
  width: 16px;
  height: 16px;
  background: var(--green);
}
.service-detail h2 {
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 12px;
  line-height: 1.25;
}
.service-detail p {
  font-size: 15px;
  color: var(--body);
  line-height: 1.7;
  margin-bottom: 12px;
}
.service-detail ul {
  padding-left: 0;
  list-style: none;
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.service-detail ul li {
  font-size: 15px;
  color: var(--body);
  line-height: 1.5;
  padding-left: 20px;
  position: relative;
}
.service-detail ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 0;
}

/* ════════════════════════════════════════
   CONTACT / FORM PAGE
   ════════════════════════════════════════ */
.contact-section {
  background: var(--surface-dark);
  padding: 32px 0 24px;
}
.contact-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: start;
}

/* Form card */
.form-card {
  background: var(--canvas);
  border-radius: var(--radius);
  padding: 32px;
  border: 1px solid var(--hairline);
}
.form-header {
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 4px;
}
.form-subheader {
  font-size: 14px;
  color: var(--mute);
  margin-bottom: 20px;
  line-height: 1.5;
}
.form-section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--body);
  margin: 0 0 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--hairline);
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 14px;
}
.form-group:last-of-type { margin-bottom: 0; }
.form-row {
  display: grid;
  gap: 12px;
  margin-bottom: 14px;
}
.form-row-2 { grid-template-columns: 1fr 1fr; }
.form-row-3 { grid-template-columns: 1fr 1fr 1fr; }
.form-row .form-group { margin-bottom: 0; }
.form-divider {
  border: none;
  border-top: 1px solid var(--hairline);
  margin: 16px 0;
}
.form-group label {
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: 0.01em;
}
.required-mark { color: var(--green); margin-left: 2px; }
.optional-tag { font-weight: 400; color: var(--stone); font-size: 12px; margin-left: 4px; }
.form-card input[type="text"],
.form-card input[type="tel"],
.form-card input[type="email"],
.form-card select,
.form-card textarea {
  width: 100%;
  background: var(--canvas);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  padding: 11px 14px;
  font-family: var(--font);
  font-size: 15px;
  color: var(--ink);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
  transition: border-color 150ms, box-shadow 150ms;
  height: 44px;
}
.form-card select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23333' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
  cursor: pointer;
}
.form-card input:focus,
.form-card select:focus,
.form-card textarea:focus {
  border: 2px solid var(--green);
  padding: 10px 13px;
}
.form-card select:focus { padding-right: 35px; }
.form-card textarea {
  height: auto;
  min-height: 88px;
  resize: vertical;
  line-height: 1.6;
}
.btn-submit {
  width: 100%;
  min-height: 48px;
  background: var(--green);
  color: var(--on-dark);
  border: none;
  border-radius: var(--radius);
  font-family: var(--font);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.02em;
  cursor: pointer;
  margin-top: 18px;
  transition: background 150ms, transform 150ms;
}
.btn-submit:hover  { background: var(--green-dark); }
.btn-submit:active { transform: scale(0.98); }
.btn-submit:focus-visible { outline: 3px solid var(--green); outline-offset: 4px; }
.btn-submit:disabled { opacity: 0.55; cursor: not-allowed; transform: none; }
.form-privacy {
  font-size: 12px;
  color: var(--stone);
  text-align: center;
  line-height: 1.5;
  margin-top: 10px;
}
.error-banner {
  background: #fff0f0;
  border: 1px solid #ffc9c9;
  border-radius: var(--radius);
  padding: 10px 14px;
  color: var(--error);
  font-size: 14px;
  margin-top: 12px;
  display: none;
}
.error-banner.visible { display: block; }
.success-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 40px 24px;
  gap: 12px;
}
.success-icon {
  width: 56px; height: 56px;
  background: var(--green);
  color: var(--on-dark);
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  border-radius: var(--radius);
}
.success-state h2 { font-size: 22px; font-weight: 700; color: var(--ink); }
.success-state p  { font-size: 15px; color: var(--mute); max-width: 360px; line-height: 1.7; }

/* Contact right column */
.contact-info-col {
  padding-top: 8px;
}
.contact-info-col .page-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 8px;
  display: block;
}
.contact-info-col h2 {
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 700;
  color: var(--on-dark);
  margin-bottom: 6px;
  line-height: 1.25;
}
.contact-info-col .sub {
  font-size: 15px;
  color: var(--on-dark-mute);
  line-height: 1.6;
  margin-bottom: 20px;
}
.nap-block {
  background: var(--surface-elev);
  border: 1px solid var(--hairline-strong);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 16px;
  position: relative;
}
.nap-block::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 12px;
  height: 12px;
  background: var(--green);
}
.nap-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
}
.nap-row:last-child { margin-bottom: 0; }
.nap-icon { color: var(--green); flex-shrink: 0; margin-top: 1px; }
.nap-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--stone);
  display: block;
  margin-bottom: 2px;
}
.nap-value {
  font-size: 15px;
  font-weight: 600;
  color: var(--on-dark);
  line-height: 1.4;
}
.nap-value a {
  color: var(--green);
  font-size: 20px;
  font-weight: 700;
  transition: color 150ms;
}
.nap-value a:hover { color: var(--green-pale); }

.hours-block {
  background: var(--surface-elev);
  border: 1px solid var(--hairline-strong);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin-bottom: 16px;
}
.hours-title {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 12px;
}
.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 14px;
}
.hours-row:last-child { border-bottom: none; }
.hours-day { color: var(--on-dark-mute); }
.hours-time { color: var(--on-dark); font-weight: 600; }

.tow-offer-block {
  background: var(--green);
  border-radius: var(--radius);
  padding: 20px 24px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.tow-offer-block svg { flex-shrink: 0; margin-top: 2px; }
.tow-offer-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--on-dark);
  margin-bottom: 4px;
}
.tow-offer-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.8);
  line-height: 1.5;
}

/* Map placeholder */
.map-wrap {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--surface-elev);
  border: 1px solid var(--hairline-strong);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 16px;
}
.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════ */
.site-footer {
  background: var(--surface-dark);
  border-top: 3px solid var(--green);
  padding: 40px 0 0;
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px 32px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
}
.footer-brand-col {}
.footer-logo {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--on-dark);
  margin-bottom: 12px;
  display: block;
}
.footer-logo span { color: var(--green); }
.footer-tagline {
  font-size: 13px;
  color: var(--on-dark-mute);
  line-height: 1.6;
  margin-bottom: 16px;
  max-width: 280px;
}
.footer-phone {
  font-size: 18px;
  font-weight: 700;
  color: var(--green);
  display: block;
  margin-bottom: 4px;
  transition: color 150ms;
}
.footer-phone:hover { color: var(--green-pale); }
.footer-addr {
  font-size: 13px;
  color: var(--on-dark-mute);
  line-height: 1.6;
}
.footer-col-title {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--on-dark);
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--hairline-strong);
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-link {
  font-size: 14px;
  color: var(--on-dark-mute);
  transition: color 150ms;
}
.footer-link:hover { color: var(--green); }
.footer-bottom {
  border-top: 1px solid var(--hairline-strong);
  background: var(--surface-elev);
  padding: 16px 24px;
}
.footer-bottom-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-disclaimer {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--mute);
  line-height: 1.6;
  max-width: 820px;
}
.footer-copy {
  font-size: 11px;
  color: var(--mute);
  white-space: nowrap;
  padding-top: 2px;
}

/* ════════════════════════════════════════
   PAGE HEROES (interior)
   ════════════════════════════════════════ */
.page-hero {
  background: var(--surface-dark);
  padding: 40px 24px 32px;
  border-bottom: 3px solid var(--green);
}
.page-hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.page-hero h1 {
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 700;
  color: var(--on-dark);
  line-height: 1.2;
  margin-bottom: 8px;
}
.page-hero h1 em {
  font-style: normal;
  color: var(--green);
}
.page-hero p {
  font-size: 16px;
  color: var(--on-dark-mute);
  line-height: 1.6;
  max-width: 560px;
}

/* ════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════ */
@media (max-width: 1024px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .service-detail-inner,
  .service-detail-inner.reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }
}

@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; gap: 32px; }
  .trust-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .contact-inner { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .mobile-menu-btn { display: flex; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 24px; }
  .form-row-3 { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .footer-inner { grid-template-columns: 1fr; }
  .form-row-2,
  .form-row-3 { grid-template-columns: 1fr; }
  .hero-call-btn { font-size: 18px; }
  .cta-strip-inner { flex-direction: column; align-items: flex-start; }
  .footer-bottom-inner { flex-direction: column; }
}

/* ════════════════════════════════════════
   NAV DROPDOWN (Common Issues)
   ════════════════════════════════════════ */
.nav-dropdown { position: relative; display: flex; align-items: center; }
.nav-dropdown-toggle { gap: 6px; cursor: pointer; }
.nav-caret { width: 10px; height: 10px; transition: transform 150ms; flex-shrink: 0; }
.nav-dropdown:hover .nav-caret,
.nav-dropdown:focus-within .nav-caret { transform: rotate(180deg); }
.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  background: var(--surface-elev);
  border: 1px solid var(--hairline-strong);
  border-top: 2px solid var(--green);
  padding: 6px;
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity 150ms, transform 150ms;
  z-index: 101;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-dropdown-link {
  font-size: 14px;
  font-weight: 700;
  color: var(--on-dark-mute);
  padding: 11px 14px;
  white-space: nowrap;
  border-left: 2px solid transparent;
  transition: color 150ms, background 150ms, border-color 150ms;
}
.nav-dropdown-link:hover {
  color: var(--on-dark);
  background: rgba(255,255,255,0.05);
  border-left-color: var(--green);
}

/* ════════════════════════════════════════
   VEHICLE ISSUE PAGES (F-150 · Silverado)
   ════════════════════════════════════════ */
.vehicle-top {
  background: var(--surface-dark);
  padding: 40px 0;
  border-bottom: 3px solid var(--green);
}
.vehicle-top-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.vehicle-top-copy h1 {
  font-size: clamp(26px, 3vw, 42px);
  font-weight: 700;
  color: var(--on-dark);
  line-height: 1.2;
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}
.vehicle-top-copy h1 em { font-style: normal; color: var(--green); }
.vehicle-top-sub {
  font-size: 16px;
  color: var(--on-dark-mute);
  line-height: 1.6;
  margin-bottom: 20px;
}
.vehicle-top-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.vehicle-top-bullets li {
  position: relative;
  padding-left: 22px;
  font-size: 15px;
  color: var(--on-dark-mute);
  line-height: 1.5;
}
.vehicle-top-bullets li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 8px;
  height: 8px;
  background: var(--green);
}
.vehicle-top-bullets strong { color: var(--on-dark); font-weight: 700; }
.vehicle-form-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 8px;
  display: block;
}

/* Issue summary cards */
.issue-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--hairline);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 20px;
}
.issue-card {
  background: var(--canvas);
  padding: 24px;
  position: relative;
}
.issue-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 12px;
  height: 12px;
  background: var(--green);
}
.issue-card h3 { font-size: 16px; font-weight: 700; line-height: 1.3; margin-bottom: 8px; }
.issue-card h3 a { color: var(--ink); transition: color 150ms; }
.issue-card h3 a:hover { color: var(--green); }
.issue-card p { font-size: 14px; color: var(--mute); line-height: 1.6; }

/* Detailed issue boxes */
.issue-box {
  background: var(--canvas);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  padding: 28px;
  margin-bottom: 16px;
  position: relative;
  scroll-margin-top: 80px;
}
.issue-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 12px;
  height: 12px;
  background: var(--green);
}
.issue-box h3 {
  font-size: clamp(19px, 2.2vw, 24px);
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 12px;
  line-height: 1.25;
}
.issue-box p { font-size: 15px; color: var(--body); line-height: 1.7; margin-bottom: 12px; }
.issue-box p strong { color: var(--ink); }
.issue-box ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--hairline);
}
.issue-box li {
  position: relative;
  padding-left: 20px;
  font-size: 14.5px;
  color: var(--body);
  line-height: 1.55;
}
.issue-box li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 8px;
  height: 8px;
  background: var(--green);
}
.issue-box li strong { color: var(--ink); }
.issue-box .link { color: var(--green); font-weight: 700; transition: color 150ms; }
.issue-box .link:hover { color: var(--green-dark); text-decoration: underline; }

/* ════════════════════════════════════════
   ABOUT PAGE
   ════════════════════════════════════════ */
.about-section { padding: 24px 0; border-bottom: 1px solid var(--hairline); }
.about-narrow { max-width: 820px; }
.about-lead {
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 600;
  color: var(--ink);
  line-height: 1.5;
}
.about-section h2 {
  font-size: clamp(20px, 2.4vw, 30px);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.25;
  margin-bottom: 12px;
}
.about-section h3 { font-size: 17px; font-weight: 700; color: var(--ink); margin: 20px 0 6px; }
.about-section p {
  font-size: 16px;
  color: var(--body);
  line-height: 1.75;
  margin-bottom: 14px;
  max-width: 760px;
}
.about-section p:last-child { margin-bottom: 0; }
.about-section strong { color: var(--ink); font-weight: 700; }
.about-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 16px 0;
  max-width: 760px;
}
.about-list li {
  position: relative;
  padding-left: 22px;
  font-size: 16px;
  color: var(--body);
  line-height: 1.7;
}
.about-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  background: var(--green);
}
.about-list strong { color: var(--ink); }
.about-note {
  font-size: 14px;
  color: var(--mute);
  line-height: 1.65;
  border-left: 3px solid var(--green);
  padding: 6px 0 6px 16px;
  margin: 18px 0;
  max-width: 760px;
}
.about-note strong { color: var(--ink); }

/* Stat cards */
.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--hairline);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 20px;
}
.stat-card { background: var(--canvas); padding: 24px; position: relative; }
.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 12px;
  height: 12px;
  background: var(--green);
}
.stat-num { font-size: 30px; font-weight: 700; color: var(--ink); line-height: 1; margin-bottom: 8px; }
.stat-label { font-size: 13px; color: var(--mute); line-height: 1.5; }

/* Vehicle + about responsive */
@media (max-width: 900px) {
  .vehicle-top-inner { grid-template-columns: 1fr; gap: 28px; }
  .issue-grid { grid-template-columns: 1fr; }
  .stat-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .stat-grid { grid-template-columns: 1fr; }
}
