/* ─────────────────────────────────────────────────────────────────────
   DUNCAN'S AUTOWORX — industrial mobile mechanic site
   Palette: jet/asphalt/chrome/red. Heavy condensed type.
   ───────────────────────────────────────────────────────────────────── */

:root {
  --ink: #0a0a0a;
  --asphalt: #141414;
  --asphalt-2: #1a1a1a;
  --steel: #2a2a2a;
  --chrome-1: #f4f6f8;
  --chrome-2: #c8ccd1;
  --chrome-3: #8b9096;
  --chrome-4: #5a5e63;
  --red: #E11D29;
  --red-deep: #a8121b;
  --red-soft: rgba(225, 29, 41, 0.12);
  --amber: #ffb300;
  --hairline: rgba(255, 255, 255, 0.07);
  --hairline-strong: rgba(255, 255, 255, 0.14);
  --text: #e9ecef;
  --text-dim: #9aa0a6;
  --text-mute: #6b7075;

  --font-display: "Barlow Condensed", "Oswald", "Arial Narrow", sans-serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, "SF Mono", monospace;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--ink);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body {
  min-height: 100vh;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; }

/* ── Type ──────────────────────────────────────────────────────────── */

.display {
  font-family: var(--font-display);
  font-weight: 800;
  font-stretch: condensed;
  text-transform: uppercase;
  letter-spacing: -0.005em;
  line-height: 0.92;
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-mute);
  font-weight: 500;
}

.eyebrow .dot {
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--red);
  vertical-align: 1px;
  margin-right: 8px;
  box-shadow: 0 0 8px var(--red);
}

.chrome-text {
  background: linear-gradient(180deg, #ffffff 0%, #e6e8eb 32%, #8b9096 55%, #c8ccd1 78%, #5a5e63 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  filter: drop-shadow(0 1px 0 rgba(255,255,255,0.05));
}

.red-text {
  color: var(--red);
  -webkit-text-fill-color: var(--red);
}

/* ── Layout helpers ────────────────────────────────────────────────── */

.wrap {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

.section {
  position: relative;
  padding: 96px 0;
  border-top: 1px solid var(--hairline);
}

.section--tight { padding: 64px 0; }
.section--hero { padding: 0; border-top: none; }

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 48px;
}

.section-head h2 {
  margin: 12px 0 0;
  font-size: clamp(40px, 5vw, 72px);
}

/* ── Background textures ───────────────────────────────────────────── */

.carbon {
  background-color: var(--ink);
  background-image:
    linear-gradient(135deg, rgba(255,255,255,0.025) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.025) 50%, rgba(255,255,255,0.025) 75%, transparent 75%, transparent);
  background-size: 8px 8px;
}

.grid-bg {
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  background-position: -1px -1px;
}

/* Red slash motif (echoes the logo's swoosh) */
.slash {
  position: absolute;
  height: 2px;
  background: var(--red);
  transform: rotate(-18deg);
  transform-origin: center;
  pointer-events: none;
}
.slash::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--red);
  filter: blur(8px);
  opacity: 0.6;
}

/* ── Nav ───────────────────────────────────────────────────────────── */

.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 10, 10, 0.78);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-bottom: 1px solid var(--hairline);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 32px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-brand .mark {
  width: 44px; height: 44px;
  border-radius: 6px;
  background: #000 center/contain no-repeat;
  border: 1px solid var(--hairline-strong);
  flex-shrink: 0;
}
.nav-brand .name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}
.nav-brand .name em {
  font-style: normal;
  color: var(--red);
}
.nav-brand .tag {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.2em;
  color: var(--text-mute);
  text-transform: uppercase;
  margin-top: 3px;
}

.nav-links {
  display: flex;
  gap: 28px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-dim);
}
.nav-links a {
  position: relative;
  padding: 4px 0;
  transition: color 0.15s;
}
.nav-links a:hover { color: var(--text); }
.nav-links a.active {
  color: var(--text);
}
.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  bottom: -4px;
  height: 2px;
  background: var(--red);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* ── Buttons ───────────────────────────────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 48px;
  padding: 0 22px;
  border-radius: 4px;
  border: 1px solid transparent;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.08s ease, background 0.15s, border-color 0.15s, box-shadow 0.15s;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }

.btn-primary {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
  box-shadow: 0 1px 0 rgba(255,255,255,0.15) inset, 0 8px 24px -8px var(--red);
}
.btn-primary:hover {
  background: #f02230;
  box-shadow: 0 1px 0 rgba(255,255,255,0.2) inset, 0 10px 28px -8px var(--red);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--hairline-strong);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.28);
}

.btn-chrome {
  background: linear-gradient(180deg, #2a2a2a 0%, #161616 100%);
  border-color: var(--hairline-strong);
  color: var(--chrome-1);
}
.btn-chrome:hover { border-color: rgba(255,255,255,0.32); }

.btn-sm { height: 38px; padding: 0 14px; font-size: 11px; }
.btn-lg { height: 56px; padding: 0 28px; font-size: 14px; }

.btn .arrow {
  display: inline-block;
  transition: transform 0.2s;
}
.btn:hover .arrow { transform: translateX(3px); }

/* Default sizing for inline icons inside buttons / links / zone rows */
.btn svg,
.nav-links svg,
.coverage .zone > svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.btn-lg svg { width: 18px; height: 18px; }
.coverage .zone > svg { width: 18px; height: 18px; color: var(--text-mute); }

/* ── Hero ──────────────────────────────────────────────────────────── */

.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: stretch;
  background:
    radial-gradient(ellipse 80% 50% at 70% 30%, rgba(225,29,41,0.18) 0%, transparent 60%),
    radial-gradient(ellipse 60% 60% at 20% 80%, rgba(80,80,80,0.18) 0%, transparent 60%),
    var(--ink);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, #000 0%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, #000 0%, transparent 80%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  width: 100%;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  padding: 80px 0 64px;
  align-items: center;
}

.hero-copy { position: relative; z-index: 2; }
.hero-copy .badge-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.hero h1 {
  margin: 0;
  font-size: clamp(72px, 10vw, 156px);
}
.hero h1 .line { display: block; }
.hero h1 .red-text { display: inline-block; }
.hero h1 .strike {
  display: inline-flex;
  align-items: center;
  gap: 18px;
}
.hero h1 .strike::before {
  content: "";
  width: 64px;
  height: 6px;
  background: var(--red);
  display: inline-block;
}

.hero-sub {
  margin: 28px 0 36px;
  font-size: 18px;
  line-height: 1.55;
  color: var(--text-dim);
  max-width: 520px;
}

.hero-cta-row {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 56px;
  padding-top: 28px;
  border-top: 1px solid var(--hairline);
  flex-wrap: wrap;
}
.hero-trust .item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hero-trust .num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 36px;
  line-height: 1;
}
.hero-trust .lbl {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-mute);
}

/* Hero right: van card + quote widget */
.hero-stage {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 18px;
  justify-content: center;
}

.van-panel {
  position: relative;
  border-radius: 8px;
  border: 1px solid var(--hairline-strong);
  background: linear-gradient(180deg, #1c1c1c 0%, #0e0e0e 100%);
  overflow: hidden;
  aspect-ratio: 16/10;
}
.van-panel .corner-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-mute);
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 2;
}
.van-panel .corner-tag .pulse {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #2bd96b;
  box-shadow: 0 0 0 0 rgba(43,217,107,0.7);
  animation: pulse 1.6s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(43,217,107,0.7); }
  70% { box-shadow: 0 0 0 10px rgba(43,217,107,0); }
  100% { box-shadow: 0 0 0 0 rgba(43,217,107,0); }
}
.van-panel .corner-spec {
  position: absolute;
  top: 14px;
  right: 14px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  color: var(--text-mute);
  text-align: right;
  z-index: 2;
}

.placeholder-img {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    repeating-linear-gradient(135deg, rgba(255,255,255,0.04) 0 1px, transparent 1px 12px),
    linear-gradient(180deg, #181818 0%, #0c0c0c 100%);
  color: var(--text-mute);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.placeholder-img .caption {
  background: rgba(0,0,0,0.55);
  border: 1px solid var(--hairline);
  padding: 6px 12px;
  border-radius: 2px;
}

/* ── Marquee strip ─────────────────────────────────────────────────── */

.marquee {
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  overflow: hidden;
  background: #060606;
}
.marquee-track {
  display: flex;
  gap: 56px;
  padding: 18px 0;
  animation: marquee 32s linear infinite;
  white-space: nowrap;
  width: max-content;
}
@keyframes marquee {
  to { transform: translateX(-50%); }
}
.marquee-item {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--chrome-3);
  display: flex;
  align-items: center;
  gap: 56px;
}
.marquee-item::after {
  content: "";
  width: 10px; height: 10px;
  background: var(--red);
  transform: rotate(45deg);
  display: inline-block;
}

/* ── Service cards ─────────────────────────────────────────────────── */

.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--hairline);
  border: 1px solid var(--hairline);
}
.svc-card {
  background: var(--asphalt);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-height: 280px;
  position: relative;
  transition: background 0.2s;
  cursor: default;
}
.svc-card:hover { background: var(--asphalt-2); }
.svc-card .num {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-mute);
  letter-spacing: 0.14em;
}
.svc-card h3 {
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 30px;
  margin: 0;
  letter-spacing: 0.005em;
}
.svc-card p {
  margin: 0;
  color: var(--text-dim);
  font-size: 14px;
  line-height: 1.55;
  flex: 1;
}
.svc-card .meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-mute);
  letter-spacing: 0.06em;
  padding-top: 16px;
  border-top: 1px solid var(--hairline);
}
.svc-card .meta .from { color: var(--text); }
.svc-card .icon {
  width: 44px; height: 44px;
  border-radius: 4px;
  background: var(--ink);
  border: 1px solid var(--hairline-strong);
  display: grid;
  place-items: center;
  color: var(--red);
}
.svc-card .icon svg { width: 22px; height: 22px; stroke-width: 1.6; }

/* ── Process steps ─────────────────────────────────────────────────── */

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.step {
  padding: 28px;
  border: 1px solid var(--hairline);
  background: var(--asphalt);
  position: relative;
  overflow: hidden;
}
.step .big-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 120px;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--steel);
  position: absolute;
  right: 16px;
  top: -8px;
  opacity: 0.7;
}
.step h4 {
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 26px;
  margin: 80px 0 14px;
  letter-spacing: 0.005em;
}
.step p {
  margin: 0;
  color: var(--text-dim);
  font-size: 14px;
  line-height: 1.55;
}

/* ── Coverage / map ────────────────────────────────────────────────── */

.coverage {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: stretch;
}
.coverage .map {
  position: relative;
  border: 1px solid var(--hairline);
  background: var(--asphalt);
  aspect-ratio: 4/3;
  overflow: hidden;
}
.coverage .zones {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--hairline);
}
.coverage .zone {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 20px;
  align-items: center;
  padding: 18px 22px;
  border-bottom: 1px solid var(--hairline);
  background: var(--asphalt);
}
.coverage .zone:last-child { border-bottom: none; }
.coverage .zone .city {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}
.coverage .zone .eta {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-mute);
}
.coverage .zone .badge {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 4px 10px;
  border: 1px solid var(--hairline-strong);
  color: var(--chrome-2);
}
.coverage .zone .badge.live {
  color: #2bd96b;
  border-color: rgba(43,217,107,0.4);
  background: rgba(43,217,107,0.06);
}

/* ── Reviews ───────────────────────────────────────────────────────── */

.reviews {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.review {
  padding: 28px;
  border: 1px solid var(--hairline);
  background: var(--asphalt);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.review .stars { color: var(--amber); letter-spacing: 2px; font-size: 14px; }
.review p {
  margin: 0;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 500;
  color: var(--text);
  text-wrap: pretty;
}
.review .who {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid var(--hairline);
}
.review .who .avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--steel), #0a0a0a);
  border: 1px solid var(--hairline-strong);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  color: var(--chrome-1);
}
.review .who .meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.review .who .name { font-size: 13px; font-weight: 600; }
.review .who .car { font-family: var(--font-mono); font-size: 10px; color: var(--text-mute); letter-spacing: 0.1em; text-transform: uppercase; }

/* ── FAQ ───────────────────────────────────────────────────────────── */

.faq {
  border-top: 1px solid var(--hairline);
}
.faq-item {
  border-bottom: 1px solid var(--hairline);
}
.faq-q {
  width: 100%;
  background: transparent;
  border: none;
  color: var(--text);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 22px;
  text-align: left;
  letter-spacing: 0.01em;
}
.faq-q .plus {
  width: 24px; height: 24px;
  position: relative;
  flex-shrink: 0;
}
.faq-q .plus::before,
.faq-q .plus::after {
  content: "";
  position: absolute;
  background: var(--text);
  transition: transform 0.2s;
}
.faq-q .plus::before {
  left: 50%; top: 0; bottom: 0; width: 2px; transform: translateX(-50%);
}
.faq-q .plus::after {
  top: 50%; left: 0; right: 0; height: 2px; transform: translateY(-50%);
}
.faq-item.open .faq-q .plus::before { transform: translateX(-50%) rotate(90deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  color: var(--text-dim);
  font-size: 15px;
  line-height: 1.6;
  transition: max-height 0.25s ease, padding 0.2s;
  padding: 0 60px 0 0;
}
.faq-item.open .faq-a {
  max-height: 220px;
  padding: 0 60px 24px 0;
}

/* ── Booking widget ────────────────────────────────────────────────── */

.booking {
  position: relative;
  border: 1px solid var(--hairline-strong);
  background: linear-gradient(180deg, #161616 0%, #0c0c0c 100%);
  padding: 28px;
  border-radius: 4px;
}
.booking::before {
  content: "";
  position: absolute;
  top: 0; left: 24px; right: 24px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--red), transparent);
}
.booking-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.booking-head .label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-mute);
}
.booking-head .step-dots {
  display: flex;
  gap: 6px;
}
.booking-head .step-dots .dot {
  width: 24px; height: 3px;
  background: var(--steel);
  border-radius: 1px;
  transition: background 0.2s;
}
.booking-head .step-dots .dot.active { background: var(--red); }
.booking-head .step-dots .dot.done { background: var(--chrome-3); }

.booking h3 {
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 28px;
  margin: 8px 0 6px;
  letter-spacing: 0.005em;
}
.booking .sub {
  color: var(--text-dim);
  font-size: 13px;
  margin-bottom: 18px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 12px;
}
.field label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-mute);
}
.field input, .field select, .field textarea {
  width: 100%;
  background: #060606;
  border: 1px solid var(--hairline-strong);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 14px;
  padding: 12px 14px;
  border-radius: 3px;
  outline: none;
  transition: border-color 0.15s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--red);
}
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.choice-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin-bottom: 14px;
}
.choice {
  background: #060606;
  border: 1px solid var(--hairline-strong);
  padding: 14px;
  border-radius: 3px;
  cursor: pointer;
  text-align: left;
  color: var(--text);
  transition: border-color 0.15s, background 0.15s;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.choice:hover { border-color: var(--chrome-3); }
.choice.selected {
  border-color: var(--red);
  background: rgba(225,29,41,0.08);
}
.choice .ttl {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 16px;
}
.choice .desc {
  font-size: 11px;
  color: var(--text-dim);
  font-family: var(--font-mono);
  letter-spacing: 0.04em;
}

.booking-actions {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}
.booking-actions .btn { flex: 1; }
.booking-actions .btn-link {
  background: none;
  border: none;
  color: var(--text-mute);
  font-size: 12px;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0 12px;
}

.booking-success {
  text-align: center;
  padding: 12px 0 4px;
}
.booking-success .check {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: rgba(43,217,107,0.1);
  border: 1px solid rgba(43,217,107,0.4);
  display: grid;
  place-items: center;
  margin: 0 auto 14px;
  color: #2bd96b;
  font-size: 24px;
}
.booking-success h4 {
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 26px;
  margin: 0 0 8px;
}
.booking-success p {
  color: var(--text-dim);
  font-size: 14px;
  margin: 0 0 18px;
}
.booking-success .ticket {
  background: #060606;
  border: 1px dashed var(--hairline-strong);
  padding: 14px;
  margin-top: 14px;
  text-align: left;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--text-dim);
}
.booking-success .ticket .k { color: var(--text-mute); }
.booking-success .ticket .v { color: var(--text); }
.booking-success .ticket .row {
  display: flex; justify-content: space-between; padding: 4px 0;
}

/* ── CTA band ──────────────────────────────────────────────────────── */

.cta-band {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(225,29,41,0.12) 0%, transparent 60%),
    var(--asphalt);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}
.cta-band .wrap {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 48px;
  align-items: center;
}
.cta-band h2 {
  margin: 0;
  font-size: clamp(48px, 7vw, 96px);
}
.cta-band p {
  margin: 16px 0 0;
  color: var(--text-dim);
  font-size: 16px;
  max-width: 520px;
}
.cta-band .actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: stretch;
}
.cta-band .phone {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 48px;
  letter-spacing: 0.01em;
  text-align: center;
  padding: 16px;
  background: rgba(0,0,0,0.4);
  border: 1px solid var(--hairline-strong);
}

/* ── Footer ────────────────────────────────────────────────────────── */

.footer {
  background: #060606;
  border-top: 1px solid var(--hairline);
  padding: 64px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 48px;
  margin-bottom: 48px;
}
.footer h5 {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-mute);
  margin: 0 0 16px;
  font-weight: 500;
}
.footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer ul a {
  color: var(--text-dim);
  font-size: 14px;
  transition: color 0.15s;
}
.footer ul a:hover { color: var(--text); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid var(--hairline);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-mute);
}

/* ── Responsive ────────────────────────────────────────────────────── */

@media (max-width: 1000px) {
  .hero-inner { grid-template-columns: 1fr; gap: 32px; padding: 56px 0; }
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: 1fr; }
  .reviews { grid-template-columns: 1fr; }
  .coverage { grid-template-columns: 1fr; }
  .cta-band .wrap { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .nav-links { display: none; }
}

@media (max-width: 640px) {
  .svc-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .wrap { padding: 0 20px; }
  .section { padding: 64px 0; }
  .field-row { grid-template-columns: 1fr; }
  .choice-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}
