/* ==================================================================
   TITUSVILLE COLLISION CENTER — styles.css
   Ford-inspired palette: Ford Blue #00095B, Grabber Blue #1700F4,
   bright accent blue for glows/icons. Colors + fonts live in :root —
   change them once, they update everywhere.
   ================================================================== */

:root {
  /* Palette (Ford brand-inspired) */
  --ink:        #00095b;   /* Ford Blue — dark sections */
  --ink-2:      #041077;   /* lighter navy panels on dark */
  --deep:       #01052e;   /* deepest navy — topbar/footer */
  --paper:      #ffffff;
  --tint:       #f2f5f9;   /* light gray-blue section background */
  --text:       #212a3d;   /* body text on light */
  --muted:      #566173;   /* secondary text on light */
  --text-inv:   #e9eefb;   /* body text on dark */
  --muted-inv:  #a6b0ce;   /* secondary text on dark */
  --accent:     #0f6bff;   /* bright Ford blue — icons, details on dark */
  --accent-hi:  #3f86ff;   /* brighter — kickers/hover on dark */
  --accent-deep:#0d47b8;   /* blue dark enough for text on white */
  --grabber:    #1700f4;   /* Ford Grabber Blue — buttons, trust bar */
  --grabber-hi: #3b2bff;   /* button hover */
  --race-red:   #ff4d5e;   /* Ford Race Red (softened) — damage markers only */
  --line:       #e2e7ee;   /* borders on light */
  --line-inv:   rgba(255, 255, 255, 0.13);

  /* Type */
  --font-head: "Barlow Condensed", "Arial Narrow", Arial, sans-serif;
  --font-body: "Barlow", system-ui, Segoe UI, Arial, sans-serif;

  /* Layout */
  --container: 1160px;
  --radius: 10px;
  --shadow: 0 14px 40px rgba(1, 10, 60, 0.12);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--text);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  overflow-x: clip;
}
img, svg { display: block; max-width: 100%; }
input, button, textarea, select { font: inherit; color: inherit; }
button { cursor: pointer; background: none; border: 0; padding: 0; }
ul[class], ol[class] { list-style: none; padding: 0; }
a { color: var(--accent-deep); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--accent); }
address { font-style: normal; }
::selection { background: var(--grabber); color: #fff; }

:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
  border-radius: 2px;
}

.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  clip-path: inset(50%); overflow: hidden; white-space: nowrap;
}

.skip-link {
  position: absolute; left: 16px; top: -60px; z-index: 100;
  background: var(--grabber); color: #fff; font-weight: 600;
  padding: 10px 18px; border-radius: 0 0 8px 8px; text-decoration: none;
  transition: top 0.2s ease;
}
.skip-link:focus { top: 0; color: #fff; }

.container {
  width: min(100% - 44px, var(--container));
  margin-inline: auto;
}

/* Headings on light sections; dark sections override below */
h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.05; color: var(--ink); }

/* Section scroll offset below sticky header */
section[id] { scroll-margin-top: 96px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-body); font-size: 15px; font-weight: 600; line-height: 1;
  letter-spacing: 0.02em; text-decoration: none; white-space: nowrap;
  min-height: 48px; padding: 14px 26px; border-radius: 8px; border: 1px solid transparent;
  transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease, color 0.15s ease;
}
.btn svg { width: 17px; height: 17px; }
.btn--lg { font-size: 16px; padding: 17px 30px; }
.btn--block { width: 100%; }
.btn--solid { background: var(--grabber); color: #fff; }
.btn--solid:hover { background: var(--grabber-hi); color: #fff; transform: translateY(-1px); box-shadow: 0 8px 24px rgba(23, 0, 244, 0.4); }
.btn--ghost { border-color: rgba(255, 255, 255, 0.3); color: #fff; }
.btn--ghost:hover { border-color: #fff; background: rgba(255, 255, 255, 0.06); color: #fff; }
.btn--dark { background: var(--ink); color: #fff; }
.btn--dark:hover { background: #0e1d96; color: #fff; transform: translateY(-1px); }

/* ---------- Kicker / section headers ---------- */
.kicker {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--font-head); font-size: 15px; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--accent-deep);
}
.kicker::before { content: ""; width: 26px; height: 2px; background: currentColor; }

.section { padding-block: clamp(72px, 9vw, 112px); }
.section--tint { background: var(--tint); }
.section--dark { background: var(--ink); color: var(--text-inv); }
.section--dark h2, .section--dark h3 { color: #fff; }
.section--dark .kicker { color: var(--accent-hi); }
.section--dark .lede { color: var(--muted-inv); }

.section-head { max-width: 740px; margin-bottom: clamp(40px, 5.5vw, 60px); }
h2 {
  font-size: clamp(34px, 4.6vw, 54px); font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.01em;
  margin: 14px 0 16px;
}
.lede { font-size: 17.5px; color: var(--muted); max-width: 64ch; }

/* Hazard stripe divider — Grabber Blue on deep navy */
.stripe {
  height: 8px;
  background: repeating-linear-gradient(-45deg, var(--grabber) 0 16px, var(--deep) 16px 32px);
}

/* ---------- Top bar ---------- */
.topbar { background: var(--deep); color: #b3bdda; font-size: 13.5px; }
.topbar-inner { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding-block: 9px; }
.topbar-left { display: flex; align-items: center; gap: 22px; min-width: 0; }
.topbar-item { display: inline-flex; align-items: center; gap: 7px; white-space: nowrap; }
.topbar-item svg { width: 14px; height: 14px; color: var(--accent-hi); flex-shrink: 0; }
.topbar-tel { display: inline-flex; align-items: center; gap: 8px; color: #d6ddf0; text-decoration: none; white-space: nowrap; }
.topbar-tel:hover { color: #fff; }
.topbar-tel svg { width: 14px; height: 14px; color: var(--accent-hi); }
.topbar-tel strong { color: #fff; letter-spacing: 0.02em; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(1, 7, 59, 0.95);
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line-inv);
}
.site-header.is-scrolled { box-shadow: 0 10px 30px rgba(0, 2, 30, 0.45); }
.header-inner { display: flex; align-items: center; gap: 28px; height: 76px; }

.brand { display: inline-flex; align-items: center; text-decoration: none; }
/* The logo's lettering is navy, so on the navy header/footer it sits on a white plate.
   Plate height = image height + padding; it shrinks with the header on scroll. */
.brand-logo {
  display: inline-flex; align-items: center;
  background: #fff; border-radius: var(--radius); padding: 6px 12px;
}
.brand-logo img { height: 52px; width: auto; transition: height 0.25s ease; }
.site-header.is-scrolled .brand-logo img { height: 42px; }

.site-nav { margin-left: auto; }
.site-nav ul { display: flex; gap: 28px; }
.site-nav ul a {
  font-family: var(--font-head); font-size: 16.5px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: #c7d0ec; text-decoration: none; padding: 6px 2px;
}
.site-nav ul a:hover { color: var(--accent-hi); }
.header-cta { padding: 12px 20px; font-size: 14px; }
.nav-cta-mobile { display: none; }

.nav-toggle {
  display: none; align-items: center; gap: 8px; min-height: 48px; padding: 0 12px 0 14px;
  color: #fff; border: 1px solid var(--line-inv); border-radius: 10px;
  font-family: var(--font-head); font-size: 17px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
}
.nav-toggle-label--close { display: none; }
.nav-open .nav-toggle-label--open { display: none; }
.nav-open .nav-toggle-label--close { display: inline; }
.nav-toggle svg { width: 26px; height: 26px; }
.nav-toggle .icon-close { display: none; }
.nav-open .nav-toggle .icon-menu { display: none; }
.nav-open .nav-toggle .icon-close { display: block; }

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden;
  background: var(--ink); color: var(--text-inv);
  padding: clamp(80px, 11vw, 140px) 0 clamp(72px, 9vw, 116px);
}
/* blueprint grid */
.hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(to bottom, #000 0%, rgba(0,0,0,0.4) 70%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, #000 0%, rgba(0,0,0,0.4) 70%, transparent 100%);
}
/* blue glow */
.hero::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(1100px 560px at 78% -12%, rgba(15, 107, 255, 0.22), transparent 62%);
}
.hero-inner { position: relative; z-index: 2; }
.hero .kicker { color: var(--accent-hi); }

/* --- hero blueprint illustration (stroke-drawn on load) --- */
.hero-blueprint { position: relative; margin: 52px 0 0; }
.hero-blueprint svg { width: 100%; height: auto; display: block; overflow: visible; }
.bp-car { fill: none; stroke: #9fc2ff; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.bp-draw {
  stroke-dasharray: 1000; stroke-dashoffset: 1000;
  animation: bp-draw 2.2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  animation-delay: var(--d, 0s);
}
.bp-dim { fill: none; stroke: #5f8cff; stroke-width: 1.1; opacity: 0; animation: bp-fade 0.7s ease forwards; animation-delay: var(--d, 1.8s); }
.bp-label { opacity: 0; animation: bp-fade 0.7s ease forwards; animation-delay: var(--d, 2.3s); }
.bp-leader { fill: none; stroke: #7fa6ff; stroke-width: 1.1; opacity: 0.8; }
.bp-anchor { fill: var(--accent-hi); }
.bp-title { font-family: var(--font-body); font-size: 14px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; fill: #e9eefb; }
.bp-sub { font-family: var(--font-body); font-size: 12.5px; font-weight: 500; fill: #8fb7ff; }
.bp-dimlabel { font-family: var(--font-body); font-size: 11.5px; font-weight: 600; letter-spacing: 0.22em; fill: #7fa6ff; }
@keyframes bp-draw { to { stroke-dashoffset: 0; } }
@keyframes bp-fade { to { opacity: 1; } }
.hero-crosshair { display: none; }

.hero-blueprint::before {
  content: ""; position: absolute; inset: -6% -8%; pointer-events: none; z-index: -1;
  background: radial-gradient(60% 55% at 50% 58%, rgba(15, 107, 255, 0.2), transparent 70%);
}
@media (min-width: 1100px) {
  .hero-inner { display: grid; grid-template-columns: minmax(0, 1.02fr) minmax(420px, 0.98fr); gap: clamp(28px, 3.5vw, 56px); align-items: center; }
  .hero .hero-copy h1 { font-size: clamp(46px, 5.4vw, 74px); max-width: none; }
  .hero .hero-copy .hero-lede { font-size: 17.5px; }
  .hero-blueprint { margin: 0 -3% 0 0; }
}

/* --- film-grain texture on dark sections --- */
.grain {
  position: absolute; inset: 0; pointer-events: none; z-index: 1; opacity: 0.07; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.6 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px 180px;
}
.section--dark { position: relative; }
.section--dark > .container { position: relative; z-index: 2; }

.hero h1 {
  font-size: clamp(52px, 8vw, 92px); font-weight: 700;
  line-height: 0.97; letter-spacing: 0.005em; text-transform: uppercase;
  color: #fff; margin: 20px 0 22px; max-width: 900px;
}
.hero h1 .accent { color: var(--accent-hi); }
.hero-lede { font-size: 18px; color: var(--muted-inv); max-width: 620px; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 36px; }
.hero-points { display: flex; flex-wrap: wrap; gap: 12px 26px; margin-top: 44px; }
.hero-points li { display: inline-flex; align-items: center; gap: 9px; font-size: 15px; font-weight: 600; color: #d3dbf0; }
.hero-points svg { width: 17px; height: 17px; color: var(--accent-hi); flex-shrink: 0; }

.hero-watermark {
  position: absolute; right: -30px; bottom: -70px; z-index: 1;
  font-family: var(--font-head); font-weight: 700; font-size: clamp(220px, 30vw, 380px);
  line-height: 1; letter-spacing: 0.02em; pointer-events: none; user-select: none;
  color: transparent; -webkit-text-stroke: 1px rgba(255, 255, 255, 0.06);
}
.hero-crosshair {
  position: absolute; z-index: 1; width: 190px; height: 190px;
  right: 12%; top: 14%; color: rgba(255, 255, 255, 0.15); pointer-events: none;
}

/* ---------- Trust bar — Grabber Blue ---------- */
.trustbar { background: var(--grabber); color: #fff; }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); padding-block: 24px; }
.trust-item { display: flex; flex-direction: column; gap: 3px; padding-inline: 28px; }
.trust-item:first-child { padding-left: 0; }
.trust-item + .trust-item { border-left: 1px solid rgba(255, 255, 255, 0.25); }
.t-big {
  font-family: var(--font-head); font-size: 31px; font-weight: 700;
  line-height: 1; text-transform: uppercase; letter-spacing: 0.03em;
}
.t-small { font-size: 13px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; opacity: 0.82; }

/* ---------- Services ---------- */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 28px;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}
.card:hover { transform: translateY(-4px); border-color: rgba(15, 107, 255, 0.5); box-shadow: var(--shadow); }
.card-icon {
  width: 52px; height: 52px; border-radius: 11px;
  background: rgba(15, 107, 255, 0.12); color: var(--accent-deep);
  display: grid; place-items: center; margin-bottom: 20px;
}
.card-icon svg { width: 26px; height: 26px; }
.card h3 { font-size: 23px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.02em; margin-bottom: 10px; }
.card p { font-size: 15.5px; color: var(--muted); }

.services-note {
  margin-top: 34px; font-size: 15px; color: var(--muted);
  background: var(--tint); border-left: 3px solid var(--accent);
  border-radius: 0 8px 8px 0; padding: 16px 20px;
}
.services-note strong { color: var(--text); }

/* ---------- Process ---------- */
.steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 26px; counter-reset: step; }
.step { border-top: 2px solid var(--line-inv); padding-top: 20px; transition: border-color 0.25s ease; cursor: pointer; }
.step:hover { border-top-color: var(--accent); }
.step-num {
  display: block; font-family: var(--font-head); font-size: 46px; font-weight: 700;
  line-height: 1; margin-bottom: 12px; color: var(--accent);
}
@supports (-webkit-text-stroke: 1px black) {
  .step-num { color: transparent; -webkit-text-stroke: 1.4px var(--accent); }
}
.step h3 { font-size: 22px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.03em; margin-bottom: 8px; }
.step p { font-size: 14.5px; color: var(--muted-inv); }
.step.is-active { border-top-color: var(--accent); }
.step.is-active .step-num { color: var(--accent); }
@supports (-webkit-text-stroke: 1px black) {
  .step.is-active .step-num { color: var(--accent); -webkit-text-stroke: 1.4px var(--accent); }
}

/* ==================================================================
   REPAIR JOURNEY ANIMATION (Process section)
   The <figure class="repair-stage" data-phase="1..5"> cycles through
   the five repair phases. All state changes are driven by the
   data-phase attribute; js/main.js advances it.
   ================================================================== */

.repair-stage {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line-inv);
  border-radius: 16px;
  padding: clamp(18px, 3vw, 34px) clamp(14px, 3vw, 34px) clamp(18px, 2.5vw, 26px);
  margin-bottom: clamp(44px, 6vw, 64px);
}
.stage-canvas svg { width: 100%; height: auto; max-width: 880px; margin-inline: auto; display: block; }

/* --- caption line (crossfades per phase) --- */
.stage-captions { position: relative; min-height: 58px; margin-top: 14px; }
.stage-cap {
  position: absolute; inset: 0;
  text-align: center; font-size: 15.5px; color: var(--muted-inv);
  max-width: 660px; margin-inline: auto;
  opacity: 0; transition: opacity 0.45s ease;
}
.stage-cap strong { color: #fff; font-weight: 600; }
.stage-cap.is-active { opacity: 1; }

/* --- controls --- */
.stage-controls { display: flex; align-items: center; justify-content: center; gap: 18px; margin-top: 10px; }
.stage-dots { display: flex; gap: 2px; }
.stage-dot { position: relative; width: 32px; height: 32px; border-radius: 50%; background: transparent; }
.stage-dot::before {
  content: ""; position: absolute; inset: 9px; border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.4); background: transparent;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.stage-dot:hover::before { border-color: var(--accent-hi); transform: scale(1.15); }
.stage-dot.is-active::before { background: var(--accent); border-color: var(--accent); }
.stage-toggle {
  width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid var(--line-inv); color: var(--muted-inv);
  display: inline-flex; align-items: center; justify-content: center;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.stage-toggle:hover { color: #fff; border-color: rgba(255, 255, 255, 0.4); }
.stage-toggle svg { width: 16px; height: 16px; }
.stage-toggle .ic-play { display: none; }
.stage-toggle[aria-pressed="true"] .ic-pause { display: none; }
.stage-toggle[aria-pressed="true"] .ic-play { display: block; }

/* --- SVG layer defaults --- */
.g-damage, .g-primer, .g-painted,
.ov-measure, .ov-approve, .ov-spray, .ov-sparkle {
  transition: opacity 0.7s ease;
}
.g-primer, .g-painted, .ov-measure, .ov-approve, .ov-spray, .ov-sparkle { opacity: 0; }
.g-damage { opacity: 1; }
.g-painted { clip-path: inset(0 100% 0 0); }

/* Phase 1 — estimate: damage visible + measuring overlay */
.repair-stage[data-phase="1"] .ov-measure { opacity: 1; }

/* Phase 2 — approval: damage still visible + clipboard overlay */
.repair-stage[data-phase="2"] .ov-approve { opacity: 1; }
.ap-check { opacity: 0; transform: scale(0.4); transform-box: fill-box; transform-origin: center; transition: opacity 0.3s ease, transform 0.3s ease; }
.repair-stage[data-phase="2"] .ap-check { opacity: 1; transform: scale(1); }
.repair-stage[data-phase="2"] .ap-check:nth-of-type(1) { transition-delay: 0.5s; }
.repair-stage[data-phase="2"] .ap-check:nth-of-type(2) { transition-delay: 1.1s; }
.repair-stage[data-phase="2"] .ap-check:nth-of-type(3) { transition-delay: 1.7s; }

/* Phase 3 — bodywork: damage fades out, primer panel fades in */
.repair-stage[data-phase="3"] .g-damage,
.repair-stage[data-phase="4"] .g-damage,
.repair-stage[data-phase="5"] .g-damage { opacity: 0; }
.repair-stage[data-phase="3"] .g-primer { opacity: 1; transition-delay: 0.55s; }
.repair-stage[data-phase="4"] .g-primer { opacity: 1; }

/* Phase 4 — paint: spray gun passes, color wipes across the primer */
.repair-stage[data-phase="4"] .ov-spray { opacity: 1; }
.repair-stage[data-phase="4"] .spray-gun { animation: spray-pass 2.7s 0.35s ease-in-out forwards; }
.repair-stage[data-phase="4"] .g-painted { opacity: 1; animation: paint-wipe 2.7s 0.45s ease-in-out forwards; }
.repair-stage[data-phase="5"] .g-painted { opacity: 1; clip-path: inset(0 0 0 0); }

/* Phase 5 — delivery: clean car + sparkles */
.repair-stage[data-phase="5"] .ov-sparkle { opacity: 1; }
.repair-stage[data-phase="5"] .spk { animation: twinkle 1.9s ease-in-out infinite; }
.repair-stage[data-phase="5"] .ov-sparkle g:nth-of-type(2) > .spk { animation-delay: 0.5s; }
.repair-stage[data-phase="5"] .ov-sparkle g:nth-of-type(3) > .spk { animation-delay: 0.9s; }
.repair-stage[data-phase="5"] .ov-sparkle g:nth-of-type(4) > .spk { animation-delay: 1.3s; }

/* small looping details */
.dmg-ring { animation: ring-pulse 1.8s ease-out infinite; transform-box: fill-box; transform-origin: center; }
.dmg-ring--b { animation-delay: 0.6s; }
.mz-dash { animation: dash-march 1.6s linear infinite; }
.spk { transform-box: fill-box; transform-origin: center; opacity: 0; }

@keyframes ring-pulse {
  0% { transform: scale(0.65); opacity: 0.95; }
  70% { transform: scale(1.25); opacity: 0; }
  100% { transform: scale(1.25); opacity: 0; }
}
@keyframes dash-march { to { stroke-dashoffset: -48; } }
@keyframes spray-pass { from { transform: translateX(0); } to { transform: translateX(175px); } }
@keyframes paint-wipe { from { clip-path: inset(0 100% 0 0); } to { clip-path: inset(0 0% 0 0); } }
@keyframes twinkle {
  0%, 100% { opacity: 0; transform: scale(0.3) rotate(0deg); }
  50% { opacity: 1; transform: scale(1) rotate(24deg); }
}

/* ---------- Why us / guarantee ---------- */
.why-grid { display: grid; grid-template-columns: 1.05fr 0.9fr; gap: clamp(40px, 6vw, 76px); align-items: start; }
.check-list { margin-top: 30px; }
.check-list li { display: flex; align-items: flex-start; gap: 13px; padding: 9px 0; font-size: 16px; font-weight: 500; }
.check-dot {
  width: 24px; height: 24px; border-radius: 50%; flex-shrink: 0; margin-top: 2px;
  background: rgba(15, 107, 255, 0.13); color: var(--accent-deep);
  display: grid; place-items: center;
}
.check-dot svg { width: 13px; height: 13px; }

.guarantee-card {
  background: var(--ink); color: var(--text-inv);
  border-radius: 14px; border-top: 4px solid var(--grabber);
  padding: 38px 36px; box-shadow: var(--shadow);
}
.guarantee-icon { width: 44px; height: 44px; color: var(--accent-hi); margin-bottom: 18px; }
.guarantee-card h3 { color: #fff; font-size: 27px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.02em; margin-bottom: 12px; }
.guarantee-card p { font-size: 15.5px; color: var(--muted-inv); }
.guarantee-card p strong { color: #fff; }
.guarantee-card hr { border: 0; border-top: 1px solid var(--line-inv); margin: 22px 0; }
.guarantee-list li { display: flex; align-items: center; gap: 10px; padding: 4px 0; font-size: 15px; color: #ccd5ee; }
.guarantee-list li::before { content: ""; width: 7px; height: 7px; border-radius: 2px; background: var(--accent); flex-shrink: 0; }
.guarantee-sig { margin-top: 22px; font-family: var(--font-head); font-size: 17px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--accent-hi) !important; }

/* ---------- Insurance ---------- */
.insurance { background: var(--ink-2); }
.insurance-inner { max-width: 860px; margin-inline: auto; text-align: center; }
.insurance .kicker { justify-content: center; }
.insurance .lede { margin-inline: auto; }
.insurance .lede strong { color: #fff; }
.chip-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-top: 36px; }
.chip {
  padding: 9px 19px; border-radius: 999px;
  border: 1px solid var(--line-inv); background: rgba(255, 255, 255, 0.045);
  font-size: 14.5px; font-weight: 600; color: #c7d2f2; white-space: nowrap;
}
.chip--accent { border-color: rgba(63, 134, 255, 0.65); color: var(--accent-hi); background: rgba(15, 107, 255, 0.1); }

/* ---------- FAQ ---------- */
.faq-wrap .section-head { margin-bottom: 40px; }
.faq-list { max-width: 840px; }
.faq-item {
  background: var(--paper); border: 1px solid var(--line); border-radius: 10px;
  transition: border-color 0.2s ease;
}
.faq-item + .faq-item { margin-top: 12px; }
.faq-item.open { border-color: rgba(15, 107, 255, 0.55); }
.faq-item h3 { font-family: var(--font-body); }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: flex-start; gap: 16px;
  text-align: left; font-size: 17px; font-weight: 600; color: var(--text);
  min-height: 60px; padding: 19px 22px; border-radius: 10px;
}
.faq-q svg { width: 19px; height: 19px; color: var(--accent-deep); flex-shrink: 0; margin-left: auto; transition: transform 0.25s ease; }
.faq-item.open .faq-q svg { transform: rotate(180deg); }
.faq-a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 0.3s ease; }
.faq-item.open .faq-a { grid-template-rows: 1fr; }
.faq-a-inner { overflow: hidden; }
.faq-a p { padding: 0 22px 20px; font-size: 15.5px; color: var(--muted); max-width: 70ch; }

/* ---------- Estimate / contact ---------- */
.estimate { position: relative; overflow: hidden; }
.estimate::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(900px 500px at 12% 110%, rgba(15, 107, 255, 0.14), transparent 60%);
}
.estimate-grid { position: relative; display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(40px, 6vw, 72px); align-items: start; }

.contact-list { margin-top: 34px; display: grid; gap: 20px; }
.contact-list li { display: flex; align-items: center; gap: 16px; }
.contact-icon {
  width: 46px; height: 46px; border-radius: 11px; flex-shrink: 0;
  background: rgba(255, 255, 255, 0.06); border: 1px solid var(--line-inv);
  color: var(--accent-hi); display: grid; place-items: center;
}
.contact-icon svg { width: 21px; height: 21px; }
.contact-body { display: flex; flex-direction: column; gap: 1px; min-width: 0; }
.contact-body small { font-size: 13px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted-inv); }
.contact-body a, .contact-body > span:not(.contact-icon) { font-size: 16.5px; font-weight: 600; color: #fff; text-decoration: none; overflow-wrap: anywhere; }
.contact-body a:hover { color: var(--accent-hi); }

.estimate-form {
  background: var(--paper); color: var(--text);
  border-radius: 14px; padding: clamp(26px, 4vw, 38px);
  box-shadow: 0 30px 80px rgba(0, 1, 25, 0.5);
}
.estimate-form h3 { font-size: 26px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.02em; margin-bottom: 22px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field--full { grid-column: 1 / -1; }
.field label { display: block; font-size: 15px; font-weight: 600; margin-bottom: 7px; }
.field label span { color: var(--accent-deep); }
.field input, .field select, .field textarea {
  width: 100%; background: #fbfcfe; border: 1px solid #d5dce6; border-radius: 8px;
  min-height: 50px; padding: 13px 14px; font-size: 16px; color: var(--text);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.field textarea { resize: vertical; min-height: 110px; }
.field input::placeholder, .field textarea::placeholder { color: #9aa5b3; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(15, 107, 255, 0.18);
}
.field input.invalid, .field textarea.invalid { border-color: #d13c3c; box-shadow: 0 0 0 3px rgba(209, 60, 60, 0.14); }
.form-error { color: #b32e2e; font-size: 14px; font-weight: 600; margin-top: 14px; }
.estimate-form .btn { margin-top: 18px; }
.form-note { font-size: 13px; color: var(--muted); margin-top: 14px; }

.form-success {
  grid-column: 2; background: var(--paper); color: var(--text);
  border-radius: 14px; padding: 48px 38px; text-align: center;
  box-shadow: 0 30px 80px rgba(0, 1, 25, 0.5);
}
.success-icon {
  width: 58px; height: 58px; border-radius: 50%; margin: 0 auto 18px;
  background: rgba(15, 107, 255, 0.14); color: var(--accent-deep);
  display: grid; place-items: center;
}
.success-icon svg { width: 28px; height: 28px; }
.form-success h3 { font-size: 27px; text-transform: uppercase; margin-bottom: 10px; }
.form-success p { color: var(--muted); font-size: 15.5px; }

/* ---------- Visit / map ---------- */
.visit { padding-bottom: clamp(72px, 9vw, 112px); }
.visit-grid { display: grid; grid-template-columns: 1.45fr 1fr; gap: clamp(32px, 5vw, 56px); align-items: stretch; }
.map-frame { border-radius: 14px; overflow: hidden; border: 1px solid var(--line); min-height: 420px; background: var(--tint); }
.map-frame iframe { width: 100%; height: 100%; min-height: 420px; border: 0; display: block; filter: saturate(0.92) contrast(1.02); }
.visit-card h2 { font-size: clamp(30px, 3.4vw, 40px); }
.visit-card address { font-size: 17px; font-weight: 600; margin-bottom: 18px; }
.hours { margin: 0 0 26px; }
.hours div { display: flex; justify-content: space-between; gap: 16px; padding: 10px 0; border-bottom: 1px dashed var(--line); font-size: 15.5px; }
.hours dt { color: var(--muted); }
.hours dd { margin: 0; font-weight: 600; }
.visit-note { margin-top: 22px; font-size: 14px; color: var(--muted); max-width: 40ch; }

/* ---------- Footer ---------- */
.site-footer { background: var(--deep); color: var(--muted-inv); padding-top: 64px; }
.footer-grid { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1.4fr 1fr; gap: 40px; }
.footer-brand p { margin-top: 20px; font-size: 15px; max-width: 34ch; }
/* Footer labels are h2 so the heading outline has no skipped level (they were h4);
   every value the global h2 rule sets is overridden here so they look the same as before. */
.footer-col h2 {
  color: #fff; font-size: 16px; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase; margin: 0 0 16px;
}
.footer-col ul { list-style: none; padding: 0; } /* the reset only clears lists that have a class */
.footer-col li { font-size: 15px; line-height: 2.1; }
.footer-col a { color: var(--muted-inv); text-decoration: none; }
.footer-col a:hover { color: var(--accent-hi); }
.footer-contact li { line-height: 1.6; padding: 4px 0; }
.footer-bottom {
  margin-top: 56px; border-top: 1px solid var(--line-inv);
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 8px 24px;
  padding-block: 22px; font-size: 13.5px; color: #8590b0;
}

/* ---------- Section numbering ---------- */
.kicker-num { font-family: var(--font-head); font-weight: 700; color: var(--accent); letter-spacing: 0.08em; }
.section--dark .kicker-num, .hero .kicker-num { color: var(--accent-hi); }

/* numbered service cards */
.services-grid { counter-reset: svc; }
.card { position: relative; counter-increment: svc; }
.card::before {
  content: counter(svc, decimal-leading-zero); position: absolute; top: 24px; right: 26px;
  font-family: var(--font-head); font-size: 15px; font-weight: 700; letter-spacing: 0.12em; color: #b7c2d4;
  transition: color 0.2s ease;
}
.card:hover::before { color: var(--accent-deep); }

/* numbered FAQ */
.faq-list { counter-reset: faq; }
.faq-item { counter-increment: faq; }
.faq-q::before {
  content: counter(faq, decimal-leading-zero); flex-shrink: 0; margin-right: 14px;
  font-family: var(--font-head); font-size: 15px; font-weight: 700; letter-spacing: 0.1em; color: var(--accent-deep);
}

/* ---------- Service ticker ---------- */
.marquee { background: var(--deep); border-top: 1px solid var(--line-inv); border-bottom: 1px solid var(--line-inv); overflow: hidden; padding: 17px 0; }
.marquee-track { display: flex; width: max-content; animation: marquee 52s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track span {
  position: relative; white-space: nowrap; padding: 0 30px;
  font-family: var(--font-head); font-size: 17px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: #aab6d8;
}
.marquee-track span::after {
  content: ""; position: absolute; right: -4px; top: 50%; width: 7px; height: 7px;
  transform: translateY(-50%) rotate(45deg); background: var(--accent);
}
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- What every repair includes ---------- */
.includes-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.include {
  position: relative; overflow: hidden;
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 26px 26px;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.include::after {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 3px; background: var(--grabber);
  transform: scaleY(0); transform-origin: top; transition: transform 0.3s ease;
}
.include:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.include:hover::after { transform: scaleY(1); }
.include-num { display: inline-block; font-family: var(--font-head); font-size: 34px; font-weight: 700; line-height: 1; color: var(--accent-deep); margin-bottom: 14px; }
@supports (-webkit-text-stroke: 1px black) {
  .include-num { color: transparent; -webkit-text-stroke: 1.3px var(--accent-deep); }
}
.include h3 { font-family: var(--font-body); font-size: 17px; font-weight: 700; line-height: 1.35; color: var(--text); margin-bottom: 8px; }
.include p { font-size: 15px; color: var(--muted); }

/* ---------- Shop-floor standards (inside Why Us) ---------- */
.standards { margin-top: clamp(48px, 6vw, 72px); padding-top: clamp(36px, 4vw, 48px); border-top: 1px solid var(--line); }
.standards-title { font-family: var(--font-head); font-size: 15px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--muted); margin-bottom: 22px; }
.standards-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.standard {
  padding: 24px 22px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--tint);
  transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}
.standard:hover { transform: translateY(-3px); border-color: rgba(15, 107, 255, 0.45); background: #fff; }
.standard-icon { width: 44px; height: 44px; border-radius: 10px; display: grid; place-items: center; background: rgba(15, 107, 255, 0.12); color: var(--accent-deep); margin-bottom: 16px; }
.standard-icon svg { width: 22px; height: 22px; }
.standard h3 { font-size: 19px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.03em; margin-bottom: 8px; }
.standard p { font-size: 14.5px; color: var(--muted); }

/* guarantee card watermark */
.guarantee-card { position: relative; overflow: hidden; }
.guarantee-card > * { position: relative; z-index: 1; }
.guarantee-watermark {
  position: absolute; right: -14px; bottom: -26px; z-index: 0;
  font-family: var(--font-head); font-size: 132px; font-weight: 700; line-height: 1; letter-spacing: 0.02em;
  color: transparent; -webkit-text-stroke: 1px rgba(255, 255, 255, 0.09); pointer-events: none; user-select: none;
}

/* ---------- Scroll-aware header + nav ---------- */
.header-inner { transition: height 0.25s ease; }
.site-header.is-scrolled .header-inner { height: 64px; }
.site-nav ul a { position: relative; }
.site-nav ul a::after {
  content: ""; position: absolute; left: 2px; right: 2px; bottom: 0; height: 2px; background: var(--accent-hi);
  transform: scaleX(0); transform-origin: left; transition: transform 0.25s ease;
}
.site-nav ul a:hover::after, .site-nav ul a.is-active::after { transform: scaleX(1); }
.site-nav ul a.is-active { color: #fff; }

/* ---------- Back to top ---------- */
.back-to-top {
  position: fixed; right: 22px; bottom: calc(22px + env(safe-area-inset-bottom)); z-index: 40; width: 46px; height: 46px; border-radius: 50%;
  background: var(--grabber); color: #fff; display: grid; place-items: center;
  box-shadow: 0 10px 26px rgba(23, 0, 244, 0.4);
  opacity: 0; transform: translateY(12px); pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease, background 0.2s ease;
}
.back-to-top.is-visible { opacity: 1; transform: none; pointer-events: auto; }
.back-to-top:hover { background: var(--grabber-hi); color: #fff; }
.back-to-top svg { width: 20px; height: 20px; }

/* ---------- Phone-only sticky action bar ---------- */
.mobile-cta {
  display: none; position: fixed; left: 0; right: 0; bottom: 0; z-index: 45;
  gap: 10px; padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  background: rgba(1, 5, 46, 0.96); -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  border-top: 1px solid var(--line-inv); box-shadow: 0 -10px 30px rgba(0, 2, 30, 0.45);
}
.mobile-cta .btn { flex: 1 1 0; font-size: 16px; padding: 14px 10px; }
.mobile-cta .btn svg { width: 18px; height: 18px; }
@media (max-width: 1024px) {
  .mobile-cta { display: flex; }
  body { padding-bottom: 82px; }
  .back-to-top { display: none; }
}

/* ---------- Reveal animation (added by JS; safe without it) ---------- */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity 0.55s ease, transform 0.55s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

/* ==================================================================
   RESPONSIVE
   ================================================================== */

@media (max-width: 1080px) {
  .steps { grid-template-columns: repeat(3, 1fr); gap: 30px 26px; }
  .includes-grid { grid-template-columns: repeat(2, 1fr); }
  .standards-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 980px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid, .estimate-grid, .visit-grid { grid-template-columns: 1fr; }
  .form-success { grid-column: auto; }
  .guarantee-card { max-width: 560px; }
  .map-frame, .map-frame iframe { min-height: 340px; }
}

@media (max-width: 1024px) {
  /* mobile nav */
  .nav-toggle { display: inline-flex; margin-left: auto; }
  .site-nav {
    position: absolute; top: 100%; left: 0; right: 0;
    display: none; flex-direction: column;
    background: #030c55; border-bottom: 1px solid var(--line-inv);
    padding: 14px 24px 26px; box-shadow: 0 30px 50px rgba(0, 1, 25, 0.55);
  }
  .nav-open .site-nav { display: flex; }
  .site-nav ul { flex-direction: column; gap: 0; }
  .site-nav ul a { display: block; padding: 15px 2px; font-size: 20px; border-bottom: 1px solid var(--line-inv); }
  .site-nav ul a::after { display: none; }
  .site-nav li:last-child a { border-bottom: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-cta-mobile { display: inline-flex; margin-top: 14px; }
  .header-cta { display: none; }
  .header-inner { height: 68px; }
  .brand-logo { padding: 5px 10px; }
  .brand-logo img, .site-header.is-scrolled .brand-logo img { height: 46px; }

  .topbar-left .topbar-hours { display: none; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 18px 0; padding-block: 22px; }
  .trust-item { padding-inline: 24px; }
  .trust-item:nth-child(odd) { padding-left: 0; border-left: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; }

  .stage-captions { min-height: 74px; }
}

@media (max-width: 640px) {
  body { font-size: 17px; }
  .topbar { font-size: 14.5px; }
  .card p, .include p, .standard p { font-size: 16px; }
  .step p, .faq-a p, .guarantee-card p, .form-note, .visit-note, .footer-col li, .footer-bottom { font-size: 15.5px; }
  .chip { font-size: 15.5px; }
  .t-small { font-size: 14px; }
  .container { width: calc(100% - 34px); }
  .topbar-left { display: none; }
  .topbar-inner { justify-content: center; }
  .services-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; gap: 24px; }
  .form-grid { grid-template-columns: 1fr; }
  .hero-points { flex-direction: column; gap: 12px; }
  .hero-ctas .btn { flex: 1 1 auto; }
  .hero-blueprint { margin-top: 40px; }
  .bp-label { display: none; }
  .includes-grid, .standards-grid { grid-template-columns: 1fr; }
  .marquee-track span { font-size: 15px; padding: 0 20px; }
  .back-to-top { right: 14px; bottom: 14px; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .t-big { font-size: 26px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { justify-content: center; text-align: center; }
  .guarantee-card { padding: 30px 26px; }

  .stage-captions { min-height: 96px; }
  .stage-cap { font-size: 15.5px; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
  .repair-stage .g-painted { animation: none; }
  .repair-stage[data-phase="4"] .g-painted { clip-path: inset(0 0 0 0); }
}

/* ---------- Very small phones (original iPhone SE, 320px) ---------- */
@media (max-width: 360px) {
  .hero h1 { font-size: 44px; }
  .mobile-cta { gap: 8px; padding-left: 10px; padding-right: 10px; }
  .mobile-cta .btn { font-size: 15px; padding: 14px 8px; }
  .mobile-cta .btn--solid { flex: 1.35 1 0; }
  .t-big { font-size: 24px; }
  .t-small { font-size: 12.5px; letter-spacing: 0.06em; }
}

/* ---------- Tap-target floors (44px hit areas without changing layout) ---------- */
.topbar-tel { padding: 10px 0; margin: -10px 0; }
.brand { padding: 4px 0; }
.stage-dots { gap: 0; }
.stage-dot { width: 44px; height: 44px; }
.stage-dot::before { inset: 15px; }
.contact-body a { display: inline-block; padding: 9px 0; margin: -9px 0; }
.footer-col a { display: inline-block; padding: 11px 0; margin: -11px 0; }
.footer-col a { min-width: 44px; }
.form-note a { display: inline-block; padding: 8px 0; margin: -8px 0; }

/* ---------- Touch screens: no "stuck" hover lifts after a tap ---------- */
@media (hover: none) {
  .card:hover, .include:hover, .standard:hover, .btn--solid:hover, .btn--dark:hover { transform: none; box-shadow: none; }
  .card:hover { box-shadow: none; }
}
/* open mobile menu must stay reachable on short (landscape) screens */
@media (max-width: 1024px) {
  .site-nav { max-height: calc(100vh - 70px); overflow-y: auto; -webkit-overflow-scrolling: touch; }
}

/* ---------- Estimate form: damage photos ---------- */
.field-label { display: block; font-size: 15px; font-weight: 600; margin-bottom: 7px; }
.field label .opt, .field-label .opt { font-weight: 500; color: var(--muted); }
.upload {
  position: relative; display: flex; align-items: center; gap: 14px; min-height: 76px;
  padding: 14px 18px; border: 2px dashed #c3cde0; border-radius: 10px; background: #f8fafc; cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease;
}
.upload:hover, .upload:focus-within { border-color: var(--accent); background: #f1f6ff; }
.upload input { position: absolute; width: 1px; height: 1px; opacity: 0; pointer-events: none; }
.upload-icon { width: 44px; height: 44px; border-radius: 10px; background: rgba(15, 107, 255, 0.12); color: var(--accent-deep); display: grid; place-items: center; flex-shrink: 0; }
.upload-icon svg { width: 22px; height: 22px; }
.upload-text strong { display: block; font-size: 16px; color: var(--text); }
.upload-sub { display: block; font-size: 14px; color: var(--muted); margin-top: 2px; }
.upload-list { display: grid; grid-template-columns: repeat(auto-fill, minmax(170px, 1fr)); gap: 10px; margin-top: 12px; }
.upload-list:empty { display: none; }
.upload-item { display: flex; align-items: center; gap: 10px; padding: 6px 6px 6px 8px; border: 1px solid var(--line); border-radius: 8px; background: #fff; }
.upload-item img { width: 52px; height: 52px; object-fit: cover; border-radius: 6px; flex-shrink: 0; background: var(--tint); }
.upload-meta { min-width: 0; display: flex; flex-direction: column; }
.upload-meta strong { font-size: 13.5px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.upload-meta small { font-size: 12.5px; color: var(--muted); }
.upload-remove { margin-left: auto; width: 44px; height: 44px; border-radius: 50%; font-size: 24px; line-height: 1; color: var(--muted); flex-shrink: 0; }
.upload-remove:hover { color: #b32e2e; background: rgba(179, 46, 46, 0.08); }
.upload-note { font-size: 14px; font-weight: 600; color: var(--accent-deep); margin-top: 8px; }
.upload-note:empty { display: none; }
.upload-alt { font-size: 14.5px; color: var(--muted); margin-top: 10px; }
.upload-alt a { color: var(--accent-deep); }

/* ---------- Phone: compact steps / includes / standards ---------- */
@media (max-width: 640px) {
  .section { padding-block: 56px; }
  .section-head { margin-bottom: 30px; }
  .card { padding: 22px 20px; }
  .card-icon { width: 44px; height: 44px; margin-bottom: 14px; }
  .card-icon svg { width: 22px; height: 22px; }
  .card h3 { font-size: 20px; }

  .steps { gap: 0; }
  .step { position: relative; border-top: 0; padding: 0 0 22px 56px; }
  .step::before { content: ""; position: absolute; left: 19px; top: 42px; bottom: 0; width: 2px; background: var(--line-inv); }
  .step:last-child::before { display: none; }
  .step-num {
    position: absolute; left: 0; top: 0; width: 40px; height: 40px; border-radius: 50%;
    border: 2px solid var(--accent); background: var(--ink); color: var(--accent);
    display: grid; place-items: center; font-size: 17px; margin: 0; -webkit-text-stroke: 0;
  }
  .step.is-active .step-num { background: var(--accent); color: #fff; -webkit-text-stroke: 0; }
  .step h3 { font-size: 20px; margin: 8px 0 4px; }
  .step p { font-size: 15px; }

  .includes-grid { gap: 10px; }
  .include { display: grid; grid-template-columns: 40px 1fr; column-gap: 12px; padding: 16px 16px 16px 18px; }
  .include-num { grid-row: span 2; font-size: 24px; margin: 2px 0 0; }
  .include h3 { font-size: 16px; margin-bottom: 4px; }
  .include p { font-size: 14.5px; }

  .standards { margin-top: 40px; padding-top: 28px; }
  .standards-grid { gap: 10px; }
  .standard { display: grid; grid-template-columns: 40px 1fr; column-gap: 12px; padding: 16px; }
  .standard-icon { grid-row: span 2; width: 40px; height: 40px; margin: 0; }
  .standard-icon svg { width: 20px; height: 20px; }
  .standard h3 { font-size: 17px; margin-bottom: 3px; }
  .standard p { font-size: 14.5px; }

  .upload-list { grid-template-columns: 1fr 1fr; }
}

/* ---------- Common repairs chips (Services) ---------- */
.common-repairs { margin-top: 38px; }
.common-title { font-family: var(--font-head); font-size: 15px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--muted); margin-bottom: 16px; }
.repair-chips { display: flex; flex-wrap: wrap; gap: 10px; }
.repair-chips li { padding: 9px 16px; border: 1px solid var(--line); border-radius: 999px; background: var(--tint); font-size: 15px; font-weight: 600; color: var(--ink); }
.common-repairs + .services-note { margin-top: 26px; }

/* ---------- About / at a glance ---------- */
.about-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(36px, 5vw, 72px); align-items: start; }
.about-logo { display: block; width: min(280px, 100%); margin-bottom: 26px; }
.about-logo img { width: 100%; height: auto; }
.about-copy p { color: var(--muted); font-size: 16.5px; }
.about-copy p + p { margin-top: 14px; }
.about-copy .about-lede { color: var(--text); font-size: 17.5px; }
.facts { margin: 0; background: var(--paper); border: 1px solid var(--line); border-radius: 14px; padding: 8px 26px; box-shadow: var(--shadow); }
.facts div { display: grid; grid-template-columns: 124px 1fr; gap: 16px; padding: 14px 0; border-bottom: 1px solid var(--line); }
.facts div:last-child { border-bottom: 0; }
.facts dt { font-family: var(--font-head); font-size: 14.5px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent-deep); padding-top: 2px; }
.facts dd { margin: 0; font-size: 15.5px; font-weight: 500; color: var(--text); }
.facts a { display: inline-block; padding: 10px 0; margin: -10px 0; font-weight: 700; }
@media (max-width: 980px) { .about-grid { grid-template-columns: 1fr; } }
@media (max-width: 640px) {
  .common-repairs { margin-top: 28px; }
  .repair-chips { gap: 8px; }
  .repair-chips li { font-size: 14.5px; padding: 7px 13px; }
  .facts { padding: 4px 18px; }
  .facts div { grid-template-columns: 1fr; gap: 2px; padding: 12px 0; }
}
