:root {
  --bg: #080a0f;
  --bg-2: #111722;
  --panel: rgba(18, 24, 35, 0.86);
  --panel-solid: #121823;
  --text: #f7f3ea;
  --muted: #aeb6c2;
  --line: rgba(255, 255, 255, 0.12);
  --amber: #ff9f1c;
  --amber-2: #ffcf67;
  --red: #ef4444;
  --green: #22c55e;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.42);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 16px;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 20% -10%, rgba(255, 159, 28, 0.22), transparent 38rem),
    radial-gradient(circle at 90% 10%, rgba(239, 68, 68, 0.15), transparent 34rem),
    linear-gradient(145deg, #07090d 0%, #0c1119 45%, #07090d 100%);
  min-height: 100vh;
  padding-bottom: 84px;
}

a { color: inherit; text-decoration: none; }

.top-strip {
  display: flex;
  justify-content: center;
  gap: 10px;
  align-items: center;
  padding: 10px 18px;
  background: linear-gradient(90deg, #ff9f1c, #ffd166);
  color: #1a1205;
  font-size: 13px;
  letter-spacing: .01em;
}
.top-strip strong { text-transform: uppercase; font-weight: 900; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 22px;
  padding: 16px clamp(18px, 5vw, 70px);
  background: rgba(8, 10, 15, .72);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand { display: flex; align-items: center; gap: 12px; min-width: 230px; }
.brand-mark {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, var(--amber), #ff6b00);
  border-radius: 15px;
  box-shadow: 0 14px 30px rgba(255, 159, 28, .25);
}
.brand-mark svg { width: 29px; fill: #161006; }
.brand b { display: block; font-family: Archivo, sans-serif; font-size: 18px; line-height: 1; }
.brand small { display: block; color: var(--muted); margin-top: 5px; }

.desktop-nav { display: flex; gap: 22px; color: var(--muted); font-size: 14px; }
.desktop-nav a:hover { color: var(--text); }

.btn {
  border: 0;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 19px;
  font-weight: 800;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: linear-gradient(135deg, var(--amber), #ff6b00); color: #190f04; box-shadow: 0 16px 34px rgba(255, 159, 28, .25); }
.btn-secondary { background: rgba(255,255,255,.1); border: 1px solid var(--line); color: var(--text); }
.btn-ghost { background: transparent; border: 1px solid var(--line); color: var(--text); }
.btn-small { padding: 10px 15px; font-size: 14px; }
.text-link { color: var(--amber-2); font-weight: 800; }

.hero {
  position: relative;
  padding: clamp(44px, 7vw, 88px) clamp(18px, 5vw, 70px) 34px;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, black, transparent 82%);
}
.hero-grid {
  position: relative;
  max-width: 1220px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, .92fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
}
.eyebrow { display: inline-flex; align-items: center; gap: 10px; color: var(--amber-2); font-weight: 800; margin-bottom: 18px; }
.pulse-dot { width: 10px; height: 10px; background: var(--green); border-radius: 50%; box-shadow: 0 0 0 7px rgba(34,197,94,.13); }
.hero h1 {
  font-family: Archivo, sans-serif;
  font-size: clamp(44px, 8vw, 86px);
  letter-spacing: -.06em;
  line-height: .92;
  margin: 0;
  max-width: 840px;
}
.lede {
  color: #c6ced8;
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.65;
  max-width: 680px;
  margin: 24px 0 28px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.btn-primary strong { font-size: 14px; opacity: .82; }
.trust-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
  max-width: 570px;
}
.trust-row div {
  background: rgba(255,255,255,.07);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 16px;
}
.trust-row strong { display: block; font-family: Archivo, sans-serif; font-size: 28px; color: var(--amber-2); }
.trust-row span { color: var(--muted); font-size: 13px; }

.hero-card {
  min-height: 560px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(145deg, rgba(255,255,255,.12), rgba(255,255,255,.03)),
    radial-gradient(circle at 55% 22%, rgba(255,159,28,.26), transparent 13rem),
    #111722;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  padding: 28px;
}
.hero-card::before {
  content: "";
  position: absolute;
  inset: auto -20% -25% -20%;
  height: 56%;
  background:
    radial-gradient(ellipse at center, rgba(255,159,28,.16), transparent 60%),
    repeating-linear-gradient(135deg, rgba(255,255,255,.07) 0 2px, transparent 2px 18px);
  transform: rotate(-4deg);
}
.gauge-wrap { display: grid; place-items: center; height: 265px; position: relative; }
.gauge {
  width: 230px; height: 230px; border-radius: 50%;
  background: conic-gradient(from 220deg, #1f2937 0 21%, #f59e0b 21% 63%, #22c55e 63% 78%, #1f2937 78% 100%);
  display: grid; place-items: center;
  position: relative;
  box-shadow: inset 0 0 0 20px rgba(8,10,15,.92), 0 22px 60px rgba(0,0,0,.35);
}
.gauge::after { content: ""; width: 112px; height: 112px; background: #0a0e15; border-radius: 50%; position: absolute; }
.gauge span { z-index: 2; font-family: Archivo, sans-serif; font-weight: 900; letter-spacing: .08em; color: var(--amber-2); }
.gauge-needle {
  position: absolute; z-index: 3; width: 6px; height: 84px; background: var(--red); border-radius: 999px;
  transform-origin: 50% 90%; transform: rotate(42deg) translateY(-18px);
}
.diagnostic-panel {
  position: relative;
  z-index: 2;
  background: rgba(5, 8, 13, .74);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 20px;
  margin-top: 24px;
}
.panel-head { display: flex; gap: 7px; margin-bottom: 16px; }
.panel-head span { width: 10px; height: 10px; border-radius: 50%; background: #ef4444; }
.panel-head span:nth-child(2) { background: #f59e0b; }
.panel-head span:nth-child(3) { background: #22c55e; }
.diagnostic-panel h2 { margin: 0 0 14px; font-family: Archivo, sans-serif; font-size: 30px; }
.diagnostic-panel ul { margin: 0; padding: 0; list-style: none; color: #d9e1ea; }
.diagnostic-panel li { padding: 9px 0; border-top: 1px solid rgba(255,255,255,.08); }
.diagnostic-panel li::before { content: "⚡"; margin-right: 8px; color: var(--amber); }

.shop-switcher {
  position: relative;
  z-index: 2;
  max-width: 1220px;
  margin: 28px auto 0;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255,255,255,.06);
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}
.shop-switcher > span { color: var(--muted); font-weight: 800; padding-left: 5px; }
#shopButtons { display: flex; flex-wrap: wrap; gap: 8px; }
.switch-btn {
  color: var(--text);
  background: rgba(255,255,255,.08);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 12px;
  font-weight: 800;
  cursor: pointer;
}
.switch-btn.active { background: var(--amber); color: #170e04; border-color: transparent; }

.section { max-width: 1220px; margin: 0 auto; padding: clamp(48px, 7vw, 82px) clamp(18px, 5vw, 28px); }
.section-kicker { color: var(--amber-2); text-transform: uppercase; letter-spacing: .14em; font-size: 12px; font-weight: 900; margin-bottom: 12px; }
.section h2 { font-family: Archivo, sans-serif; font-size: clamp(32px, 5vw, 58px); letter-spacing: -.045em; line-height: .98; margin: 0; }
.section p { color: #c6ced8; line-height: 1.7; font-size: 17px; }
.problem-solution > p { max-width: 770px; }
.proof-grid, .service-grid, .review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}
.proof-grid article, .service-card, .review-card, .location-card, .hours-card, .fix-list div {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: 0 18px 50px rgba(0,0,0,.18);
}
.proof-grid b { color: var(--amber); font-family: Archivo, sans-serif; font-size: 30px; }
.proof-grid h3, .service-card h3 { margin: 12px 0 8px; font-family: Archivo, sans-serif; font-size: 24px; }

.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 22px; margin-bottom: 24px; }
.service-card { position: relative; overflow: hidden; min-height: 190px; }
.service-card::after { content: ""; position: absolute; right: -32px; top: -32px; width: 110px; height: 110px; background: rgba(255,159,28,.13); border-radius: 50%; }
.service-icon { font-size: 30px; }
.service-card p { margin-bottom: 0; }

.quote-band {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 28px;
  align-items: center;
  background: linear-gradient(135deg, rgba(255,159,28,.14), rgba(255,255,255,.04));
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  margin-top: 32px;
}
.quote-form { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.quote-form label { display: grid; gap: 7px; color: var(--muted); font-weight: 800; font-size: 13px; }
.quote-form label:nth-child(2) { grid-column: span 2; }
.quote-form input {
  width: 100%; border: 1px solid var(--line); border-radius: 14px; padding: 15px 14px;
  background: rgba(0,0,0,.26); color: var(--text); outline: none;
}
.quote-form button { grid-column: span 2; }

.rating-pill { background: rgba(255,159,28,.12); border: 1px solid rgba(255,159,28,.3); border-radius: 999px; padding: 12px 15px; font-weight: 900; }
.rating-pill span { color: var(--amber-2); }
.rating-pill small { color: var(--muted); margin-left: 5px; }
.review-card { display: flex; flex-direction: column; gap: 12px; }
.stars { color: var(--amber-2); letter-spacing: .06em; }
.review-card blockquote { margin: 0; color: #e6edf4; line-height: 1.6; }
.review-card cite { color: var(--muted); font-style: normal; margin-top: auto; }

.gallery-block { display: grid; grid-template-columns: .75fr 1.25fr; gap: 28px; align-items: center; }
.gallery-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 14px; min-height: 360px; }
.photo-card {
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  display: flex; align-items: end; padding: 18px;
  min-height: 170px;
  background: linear-gradient(145deg, rgba(255,255,255,.12), rgba(255,255,255,.03));
  position: relative; overflow: hidden;
}
.photo-card::before { content: ""; position: absolute; inset: 16px; border: 1px dashed rgba(255,255,255,.28); border-radius: 18px; }
.photo-card span { position: relative; z-index: 2; font-weight: 900; color: var(--amber-2); }
.photo-1 { grid-row: span 2; background: radial-gradient(circle at 30% 30%, rgba(255,159,28,.25), transparent 14rem), #151c28; }
.photo-2 { background: radial-gradient(circle at 70% 20%, rgba(34,197,94,.18), transparent 9rem), #151c28; }
.photo-3 { background: radial-gradient(circle at 30% 70%, rgba(239,68,68,.18), transparent 9rem), #151c28; }

.location-hours { display: grid; grid-template-columns: 1.1fr .9fr; gap: 18px; }
.location-card h2 { font-size: clamp(28px, 4vw, 42px); }
.location-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 20px; }
.hours-card ul { list-style: none; margin: 0; padding: 0; }
.hours-card li { display: flex; justify-content: space-between; gap: 12px; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,.08); color: #dbe3ec; }
.hours-card li span:first-child { font-weight: 900; color: var(--text); }

.rescue { display: grid; grid-template-columns: .82fr 1.18fr; gap: 28px; align-items: start; }
.fix-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.fix-list span { display: inline-grid; place-items: center; width: 32px; height: 32px; background: rgba(34,197,94,.14); color: #86efac; border-radius: 50%; margin-bottom: 14px; }
.fix-list b { display: block; font-size: 18px; margin-bottom: 8px; }
.fix-list p { margin: 0; font-size: 15px; }

.site-footer {
  margin: 0 clamp(18px, 5vw, 70px) 26px;
  border-top: 1px solid var(--line);
  padding: 26px 0 0;
  display: flex; justify-content: space-between; align-items: center; gap: 18px;
  color: var(--muted);
}
.site-footer b { color: var(--text); font-family: Archivo, sans-serif; font-size: 22px; }
.site-footer p { margin: 6px 0 0; }
.mobile-call-bar {
  position: fixed; z-index: 60; left: 12px; right: 12px; bottom: 12px;
  display: none; gap: 10px; padding: 10px;
  background: rgba(8,10,15,.82); border: 1px solid var(--line); border-radius: 22px; backdrop-filter: blur(16px);
  box-shadow: 0 18px 45px rgba(0,0,0,.35);
}
.mobile-call-bar .btn { flex: 1; padding: 13px 10px; }

.client-view .top-strip,
.client-view .shop-switcher,
.client-view .rescue,
.client-view .demo-only {
  display: none;
}
.client-view .hero { padding-top: clamp(34px, 6vw, 72px); }

@media (max-width: 920px) {
  .desktop-nav { display: none; }
  .site-header { padding: 14px 16px; }
  .brand { min-width: 0; }
  .site-header > .btn { display: none; }
  .hero-grid, .quote-band, .gallery-block, .location-hours, .rescue { grid-template-columns: 1fr; }
  .hero-card { min-height: 430px; }
  .proof-grid, .service-grid, .review-grid, .fix-list { grid-template-columns: 1fr; }
  .section-heading { align-items: start; flex-direction: column; }
  .quote-form { grid-template-columns: 1fr; }
  .quote-form label:nth-child(2), .quote-form button { grid-column: auto; }
  .gallery-grid { grid-template-columns: 1fr; }
  .photo-1 { grid-row: auto; }
  .trust-row { grid-template-columns: 1fr; }
  .mobile-call-bar { display: flex; }
  .top-strip { flex-direction: column; gap: 2px; text-align: center; }
}

@media (max-width: 520px) {
  .hero h1 { font-size: 43px; }
  .hero-actions .btn { width: 100%; }
  .shop-switcher { align-items: stretch; }
  #shopButtons, .switch-btn { width: 100%; }
  .switch-btn { text-align: left; }
}
