:root {
  --bg: #08090c;
  --panel: #11141b;
  --panel-2: #171b24;
  --text: #f5f7fb;
  --muted: #aab2c0;
  --line: rgba(255, 255, 255, 0.12);
  --red: #f0141e;
  --red-2: #b70f18;
  --steel: #dce3ed;
  --warm: #f6c36a;
  --ok: #55d68b;
  --max: 1180px;
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  font-family: Manrope, Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 18% 0%, rgba(240, 20, 30, 0.22), transparent 30%),
    linear-gradient(180deg, #07080b 0%, #10131a 44%, #f3f5f8 44%, #f3f5f8 100%);
  letter-spacing: 0;
  overflow-x: clip;
}

h1,
h2,
h3,
.btn,
.section-kicker,
.card-link {
  font-family: Tektur, Manrope, Arial, sans-serif;
}

body.nav-open {
  overflow-x: clip;
}

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(246, 195, 106, 0.9);
  outline-offset: 3px;
}

img {
  max-width: 100%;
  display: block;
}

.page {
  overflow: visible;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(18px);
  background: rgba(8, 9, 12, 0.82);
  border-bottom: 1px solid var(--line);
}

.nav {
  width: min(var(--max), calc(100% - 32px));
  height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.brand-logo {
  width: 168px;
  height: 56px;
  max-width: none;
  flex: 0 0 auto;
  object-fit: contain;
  filter: drop-shadow(0 8px 16px rgba(0,0,0,0.38));
}

.brand-mark {
  width: 48px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: #050609;
  display: grid;
  place-items: center;
  color: var(--red);
  font-family: Tektur, Manrope, Arial, sans-serif;
  font-size: 18px;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  margin-top: 3px;
  text-transform: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  color: #e6ebf3;
  font-size: 14px;
}

.nav-links a {
  opacity: 0.88;
}

.nav-links a:hover {
  opacity: 1;
  color: #fff;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.social-mini {
  display: flex;
  align-items: center;
  gap: 6px;
}

.social-icon {
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  border: 0;
  border-radius: 0;
  background-color: transparent;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 30px 30px;
  color: white;
  flex: 0 0 44px;
  font-size: 0;
  font-weight: 950;
  overflow: hidden;
  text-indent: -999px;
  box-shadow: none;
  transition: transform 160ms ease, filter 160ms ease;
}

.social-icon:hover {
  transform: translateY(-2px) scale(1.04);
  filter: drop-shadow(0 8px 14px rgba(255,255,255,0.16));
}

.social-icon.max:hover {
  filter: invert(1) drop-shadow(0 8px 14px rgba(255,255,255,0.16));
}

.social-icon.whatsapp { background-image: url("assets/icons/ref-whatsapp.svg"); }
.social-icon.max {
  background-image: url("assets/icons/max.svg");
  background-position: left center;
  background-size: 112px 36px;
  filter: invert(1);
}
.social-icon.vk { background-image: url("assets/icons/ref-vk.svg"); }
.social-icon.twogis { background-image: url("assets/icons/ref-twogis.png"); }
.social-icon.yandex { background-image: url("assets/icons/yandex-maps.svg"); }
.burger {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--text);
  border-radius: var(--radius);
}

.btn {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  font-size: 14px;
  cursor: pointer;
  touch-action: manipulation;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn.is-loading {
  opacity: 0.72;
  pointer-events: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--red), var(--red-2));
  background-color: #bd111a;
  color: white;
  box-shadow: 0 14px 38px rgba(240, 20, 30, 0.28);
}

.btn-ghost {
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
}

.section:not(.dark) .btn-ghost,
.review-platform .btn-ghost,
.route-card .btn-ghost {
  border-color: rgba(17, 24, 39, 0.16);
  color: #111827;
  background: rgba(17, 24, 39, 0.04);
}

.btn-dark {
  border-color: rgba(0, 0, 0, 0.12);
  color: #10131a;
  background: white;
}

.hero {
  position: relative;
  min-height: calc(100svh - 76px);
  display: grid;
  align-items: center;
  padding: clamp(58px, 7vh, 88px) 0 46px;
  background:
    radial-gradient(circle at 72% 18%, rgba(240, 20, 30, 0.28), transparent 28%),
    radial-gradient(circle at 85% 70%, rgba(246, 195, 106, 0.14), transparent 26%),
    linear-gradient(135deg, #06070a 0%, #10131a 54%, #07080b 100%);
  overflow: hidden;
  isolation: isolate;
}

.hero.hero-sequence {
  min-height: calc(430svh - 76px);
  display: block;
  padding: 0;
  background: #050609;
  overflow: visible;
}

.hero.hero-sequence .hero-sequence-bg {
  position: absolute;
  inset: 0 0 auto;
  height: calc(100svh - 76px);
  min-height: 720px;
}

.hero.hero-sequence .hero-inner {
  min-height: calc(100svh - 76px);
  padding: clamp(58px, 7vh, 88px) 0 46px;
  align-items: center;
}

.hero.hero-sequence.sequence-pinned .hero-sequence-bg {
  position: fixed;
  inset: 76px 0 auto;
  z-index: 0;
}

.hero.hero-sequence.sequence-pinned .hero-inner {
  position: fixed;
  inset: 76px auto auto 50%;
  z-index: 2;
  margin: 0;
  transform: translateX(-50%);
}

.hero.hero-sequence.sequence-ended .hero-sequence-bg {
  position: absolute;
  inset: auto 0 0;
}

.hero.hero-sequence.sequence-ended .hero-inner {
  position: absolute;
  inset: auto auto 0 50%;
  z-index: 2;
  margin: 0;
  transform: translateX(-50%);
}

.hero::before {
  content: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 120px;
  background: linear-gradient(180deg, transparent, #10131a);
  z-index: 1;
  pointer-events: none;
}

.hero-sequence-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-mobile-media {
  display: none;
}

.hero-sequence-frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
  transform: scale(calc(1.018 + (var(--sequence-progress, 0) * 0.02)));
  filter: saturate(1.05) contrast(1.06);
  will-change: opacity, transform;
}

.hero-sequence-frame-next {
  opacity: var(--sequence-blend, 0);
}

.hero-sequence-frame-next:not([src]) {
  opacity: 0;
}

.hero-sequence-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5,6,9,0.94) 0%, rgba(5,6,9,0.82) 25%, rgba(5,6,9,0.42) 52%, rgba(5,6,9,0.16) 100%),
    linear-gradient(180deg, rgba(5,6,9,0.08), transparent 48%, rgba(5,6,9,0.82));
  pointer-events: none;
}

.hero-sequence-scan {
  position: absolute;
  left: -8%;
  right: -8%;
  top: -24%;
  height: 18%;
  background: linear-gradient(180deg, transparent, rgba(255,255,255,0.28), rgba(240,20,30,0.54), transparent);
  mix-blend-mode: screen;
  transform: translateY(calc(var(--sequence-progress, 0) * 730%));
  opacity: calc(0.2 + (var(--sequence-progress, 0) * 0.62));
  filter: drop-shadow(0 0 20px rgba(240,20,30,0.68));
  pointer-events: none;
}

.hero-sequence-callouts {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.sequence-callout {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px 8px 8px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 999px;
  background: rgba(5,6,9,0.72);
  color: rgba(255,255,255,0.82);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  box-shadow: 0 14px 32px rgba(0,0,0,0.32);
  opacity: 0;
  transform: translateY(10px) scale(0.94);
  transition: opacity 180ms ease, transform 180ms ease, border-color 180ms ease, color 180ms ease;
}

.sequence-callout::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 6px rgba(240,20,30,0.14), 0 0 22px rgba(240,20,30,0.68);
  flex: 0 0 auto;
}

.sequence-callout.signal {
  left: 66%;
  top: 42%;
}

.sequence-callout.electric {
  left: 63%;
  top: 37%;
}

.sequence-callout.webasto {
  left: 69%;
  top: 31%;
}

.sequence-callout.sound {
  left: 72%;
  top: 53%;
}

.sequence-callout.noise {
  left: 70%;
  top: 49%;
}

.hero[data-active-zone="signal"] .sequence-callout[data-zone="signal"],
.hero[data-active-zone="electric"] .sequence-callout[data-zone="electric"],
.hero[data-active-zone="webasto"] .sequence-callout[data-zone="webasto"],
.hero[data-active-zone="sound"] .sequence-callout[data-zone="sound"],
.hero[data-active-zone="noise"] .sequence-callout[data-zone="noise"] {
  opacity: 1;
  transform: translateY(0) scale(1);
  color: white;
  border-color: rgba(246,195,106,0.56);
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 680px);
  gap: 22px;
  align-items: start;
}

.hero-copy {
  grid-column: 1;
  grid-row: 1;
}

.hero-support {
  grid-column: 1;
  grid-row: 2;
  max-width: 680px;
}

.hero-showcase {
  grid-column: 2;
  grid-row: 1 / span 2;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.06);
  border-radius: 999px;
  padding: 8px 12px;
  font-weight: 800;
  font-size: 12px;
  text-transform: uppercase;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 0 rgba(240, 20, 30, 0.6);
  animation: pulse 1.8s infinite;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 770px;
  margin-bottom: 20px;
  font-size: clamp(42px, 5.4vw, 74px);
  line-height: 0.98;
  letter-spacing: 0;
  font-weight: 950;
}

h1 span,
.red {
  color: var(--red);
}

.lead {
  max-width: 670px;
  color: #d7dde7;
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.55;
}

.hero-proof-line {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.hero-proof-line span {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 7px 10px;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 999px;
  background: rgba(5,6,9,0.56);
  color: rgba(255,255,255,0.88);
  font-size: 12px;
  font-weight: 800;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 30px 0 24px;
}

.hero-sequence-panel {
  max-width: 620px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 142px;
  align-items: center;
  gap: 16px;
  padding: 14px;
  border: 1px solid rgba(255,255,255,0.17);
  border-radius: var(--radius);
  background: rgba(5, 6, 9, 0.62);
  box-shadow: 0 20px 62px rgba(0,0,0,0.3);
  backdrop-filter: blur(14px);
}

.hero-sequence-panel span {
  display: block;
  color: var(--warm);
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.hero-sequence-panel strong {
  display: block;
  margin-top: 4px;
  color: #fff;
  font-size: 20px;
  line-height: 1.1;
}

.hero-sequence-panel p {
  margin: 6px 0 0;
  color: rgba(255,255,255,0.76);
  font-size: 13px;
  line-height: 1.38;
}

.hero-sequence-meter {
  height: 9px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255,255,255,0.14);
}

.hero-sequence-meter span {
  display: block;
  width: calc(var(--sequence-progress, 0) * 100%);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--red), var(--warm));
  box-shadow: 0 0 20px rgba(240,20,30,0.72);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  max-width: 660px;
}

.stat {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.06);
  border-radius: var(--radius);
  padding: 14px;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

a.stat:hover {
  transform: translateY(-2px);
  border-color: rgba(240,20,30,0.44);
  background: rgba(240,20,30,0.12);
}

.stat strong {
  display: block;
  font-size: 22px;
  line-height: 1;
}

.stat span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
}

.mini-lead {
  margin-top: 16px;
  max-width: 660px;
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 8px;
  padding: 10px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius);
}

.mini-field,
.field {
  display: grid;
  gap: 7px;
}

.mini-field span,
.field span {
  color: rgba(255,255,255,0.72);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.lead-form .field span {
  color: #344054;
}

.mini-lead input,
.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  min-height: 44px;
  border: 1px solid rgba(17,24,39,0.14);
  border-radius: var(--radius);
  padding: 0 12px;
  font: inherit;
  color: #111827;
  background: #fff;
}

.mini-lead input[aria-invalid="true"],
.lead-form input[aria-invalid="true"],
.lead-form select[aria-invalid="true"],
.lead-form textarea[aria-invalid="true"] {
  border-color: #dc2626;
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.12);
}

.lead-form textarea {
  min-height: 112px;
  padding-top: 12px;
  resize: vertical;
}

.mini-lead .btn {
  white-space: nowrap;
}

.hero-showcase {
  position: relative;
  height: clamp(580px, 72vh, 690px);
  min-height: 0;
  display: block;
  --hero-progress: 0.08;
}

.hero-showcase::before {
  content: "";
  position: absolute;
  inset: 18px -12px -12px 26px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: calc(var(--radius) + 8px);
  transform: rotate(-1.5deg);
  pointer-events: none;
}

.hero-motion {
  perspective: 1100px;
}

.motion-stage {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 72% 28%, rgba(240,20,30,0.22), transparent 24%),
    linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02)),
    #08090c;
  box-shadow: 0 34px 110px rgba(0, 0, 0, 0.54);
  transform-style: preserve-3d;
}

.motion-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  background:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.032) 1px, transparent 1px);
  background-size: 38px 38px;
  mask-image: linear-gradient(180deg, transparent, black 24%, black 76%, transparent);
  opacity: calc(0.24 + (var(--hero-progress) * 0.42));
  pointer-events: none;
}

.motion-car {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.08) contrast(1.08) brightness(calc(0.82 + (var(--hero-progress) * 0.14)));
  transform:
    translate3d(calc(var(--hero-progress) * -10px), calc(var(--hero-progress) * -8px), 0)
    scale(calc(1.01 + (var(--hero-progress) * 0.045)));
  transition: filter 160ms ease-out;
}

.motion-vignette {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(5,6,9,0.56), transparent 26%, transparent 74%, rgba(5,6,9,0.32)),
    linear-gradient(180deg, rgba(5,6,9,0.08), rgba(5,6,9,0.18) 48%, rgba(5,6,9,0.88)),
    radial-gradient(circle at 54% 48%, transparent 0 36%, rgba(240,20,30,0.18) 52%, transparent 68%);
  pointer-events: none;
}

.motion-scan {
  position: absolute;
  z-index: 7;
  left: -10%;
  right: -10%;
  top: -22%;
  height: 18%;
  background: linear-gradient(180deg, transparent, rgba(255,255,255,0.45), rgba(240,20,30,0.58), transparent);
  filter: blur(0.2px) drop-shadow(0 0 18px rgba(240,20,30,0.7));
  mix-blend-mode: screen;
  transform: translateY(calc(var(--hero-progress) * 680%));
  opacity: calc(0.28 + (var(--hero-progress) * 0.62));
  pointer-events: none;
}

.motion-laser {
  position: absolute;
  z-index: 6;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(246,195,106,0.9), rgba(240,20,30,0.95), transparent);
  filter: drop-shadow(0 0 12px rgba(240,20,30,0.9));
  opacity: calc(var(--hero-progress) * 0.9);
  pointer-events: none;
}

.laser-a {
  left: 18%;
  right: 8%;
  top: 42%;
  transform: rotate(-5deg) translateX(calc(var(--hero-progress) * -20px));
}

.laser-b {
  left: 10%;
  right: 28%;
  top: 61%;
  transform: rotate(6deg) translateX(calc(var(--hero-progress) * 26px));
}

.exploded-layer {
  position: absolute;
  z-index: 5;
  opacity: calc(var(--hero-progress) * 1);
  pointer-events: none;
  transition: opacity 140ms ease-out;
}

.layer-door {
  left: 44%;
  top: 38%;
  width: 28%;
  height: 24%;
  transform:
    translate3d(calc(var(--hero-progress) * 58px), calc(var(--hero-progress) * -28px), 0)
    rotate(calc(var(--hero-progress) * -4deg));
}

.layer-door span,
.layer-engine span,
.layer-wire span {
  position: absolute;
  display: block;
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.32);
  background: rgba(8, 9, 12, 0.52);
  box-shadow: 0 0 24px rgba(240,20,30,0.22), inset 0 0 18px rgba(255,255,255,0.06);
}

.layer-glass {
  left: 18%;
  top: 0;
  width: 56%;
  height: 36%;
  border-color: rgba(255,255,255,0.48);
  background: linear-gradient(135deg, rgba(255,255,255,0.24), rgba(255,255,255,0.04));
}

.layer-panel {
  left: 8%;
  top: 32%;
  width: 72%;
  height: 48%;
}

.layer-speaker {
  left: 58%;
  top: 54%;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(246,195,106,0.95) 0 14%, transparent 15% 32%, rgba(240,20,30,0.8) 33% 45%, transparent 46%),
    rgba(8,9,12,0.72);
}

.layer-mat {
  left: 4%;
  top: 84%;
  width: 82%;
  height: 11px;
  background: repeating-linear-gradient(90deg, rgba(246,195,106,0.72) 0 8px, rgba(240,20,30,0.5) 8px 16px);
}

.layer-engine {
  left: 19%;
  top: 36%;
  width: 26%;
  height: 22%;
  transform:
    translate3d(calc(var(--hero-progress) * -56px), calc(var(--hero-progress) * -38px), 0)
    rotate(calc(var(--hero-progress) * 5deg));
}

.layer-engine span:nth-child(1) {
  left: 8%;
  top: 12%;
  width: 46%;
  height: 36%;
  background: linear-gradient(135deg, rgba(240,20,30,0.5), rgba(255,255,255,0.06));
}

.layer-engine span:nth-child(2) {
  left: 45%;
  top: 44%;
  width: 42%;
  height: 22%;
}

.layer-engine span:nth-child(3) {
  left: 16%;
  top: 70%;
  width: 68%;
  height: 5px;
  border-color: rgba(246,195,106,0.68);
  background: rgba(246,195,106,0.48);
}

.layer-wire {
  left: 30%;
  top: 48%;
  width: 38%;
  height: 20%;
  transform: translate3d(0, calc(var(--hero-progress) * 44px), 0);
}

.layer-wire span {
  left: 0;
  right: 0;
  height: 2px;
  border: 0;
  background: linear-gradient(90deg, transparent, rgba(246,195,106,0.85), rgba(240,20,30,0.9), transparent);
  filter: drop-shadow(0 0 8px rgba(240,20,30,0.8));
}

.layer-wire span:nth-child(1) {
  top: 30%;
  transform: rotate(-8deg);
}

.layer-wire span:nth-child(2) {
  top: 62%;
  transform: rotate(7deg);
}

.motion-pin {
  position: absolute;
  z-index: 8;
  min-width: 132px;
  padding: 10px 12px 10px 28px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius);
  background: rgba(5, 6, 9, 0.72);
  color: #fff;
  box-shadow: 0 18px 50px rgba(0,0,0,0.32);
  backdrop-filter: blur(12px);
  transform:
    translate3d(0, calc((1 - var(--hero-progress)) * 10px), 0)
    scale(calc(0.96 + (var(--hero-progress) * 0.04)));
  opacity: calc(0.66 + (var(--hero-progress) * 0.34));
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.motion-pin::before {
  content: "";
  position: absolute;
  left: 11px;
  top: 15px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 8px rgba(240,20,30,0.16), 0 0 18px rgba(240,20,30,0.8);
}

.motion-pin strong,
.motion-pin span {
  display: block;
}

.motion-pin strong {
  font-size: 12px;
  line-height: 1.1;
  text-transform: uppercase;
}

.motion-pin span {
  margin-top: 4px;
  color: rgba(255,255,255,0.72);
  font-size: 11px;
  font-weight: 800;
}

.motion-pin:hover,
.motion-pin.active {
  border-color: rgba(240,20,30,0.76);
  background: rgba(240,20,30,0.2);
  transform: translate3d(0, -3px, 0) scale(1.02);
}

.pin-security { left: 6%; top: 22%; }
.pin-audio { right: 7%; top: 34%; }
.pin-noise { right: 10%; bottom: 31%; }
.pin-electric { left: 9%; bottom: 32%; }
.pin-heat { left: 33%; top: 15%; }

.motion-panel {
  position: absolute;
  z-index: 10;
  left: 16px;
  right: 16px;
  bottom: 16px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 150px;
  gap: 16px;
  align-items: center;
  padding: 14px;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: var(--radius);
  background: rgba(5, 6, 9, 0.78);
  backdrop-filter: blur(16px);
}

.motion-panel span {
  display: block;
  color: var(--warm);
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.motion-panel strong {
  display: block;
  margin-top: 4px;
  color: #fff;
  font-size: 20px;
  line-height: 1.1;
}

.motion-panel p {
  margin: 6px 0 0;
  color: rgba(255,255,255,0.72);
  font-size: 13px;
  line-height: 1.35;
}

.motion-meter {
  height: 8px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255,255,255,0.12);
}

.motion-meter span {
  display: block;
  width: calc(var(--hero-progress) * 100%);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--red), var(--warm));
  box-shadow: 0 0 18px rgba(240,20,30,0.7);
}

.showcase-photo,
.diagnostic-board {
  position: relative;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.42);
}

.showcase-photo {
  min-height: 0;
  background: #0a0d12;
}

.showcase-photo > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.94) contrast(1.08);
}

.showcase-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 6, 9, 0.12), transparent 45%),
    linear-gradient(180deg, transparent 46%, rgba(5, 6, 9, 0.72));
}

.scan-line {
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  top: -22%;
  height: 24%;
  background: linear-gradient(180deg, transparent, rgba(255,255,255,0.36), rgba(240,20,30,0.42), transparent);
  mix-blend-mode: screen;
  animation: scanSweep 4.2s ease-in-out infinite;
}

.showcase-brand {
  position: absolute;
  z-index: 3;
  left: 14px;
  right: 14px;
  bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: var(--radius);
  background: rgba(5, 6, 9, 0.78);
  backdrop-filter: blur(12px);
}

.showcase-brand img {
  width: 118px;
  height: 46px;
  object-fit: contain;
  filter: drop-shadow(0 6px 14px rgba(0,0,0,0.32));
}

.showcase-brand span {
  color: #eef2f8;
  font-size: 13px;
  font-weight: 900;
  text-align: right;
  text-transform: uppercase;
}

.diagnostic-board {
  min-height: 0;
  padding: 18px;
  background:
    radial-gradient(circle at 18% 14%, rgba(240,20,30,0.22), transparent 28%),
    linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03)),
    rgba(8, 9, 12, 0.84);
}

.diagnostic-board::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    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: 32px 32px;
  mask-image: linear-gradient(180deg, transparent, black 22%, black 82%, transparent);
  pointer-events: none;
}

.diagnostic-heading,
.vehicle-map,
.diagnostic-chips {
  position: relative;
  z-index: 2;
}

.diagnostic-heading {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: start;
}

.diagnostic-heading span {
  color: var(--warm);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.diagnostic-heading strong {
  max-width: 290px;
  color: #fff;
  font-size: 20px;
  line-height: 1.12;
  text-align: right;
}

.vehicle-map {
  height: 118px;
  margin: 10px 0 12px;
  display: grid;
  place-items: center;
}

.vehicle-map::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 50%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(246,195,106,0.8), rgba(240,20,30,0.9), transparent);
  transform: translateY(-50%);
  filter: drop-shadow(0 0 10px rgba(240,20,30,0.75));
  animation: signalSweep 2.8s ease-in-out infinite;
}

.vehicle-outline {
  width: 92%;
  max-width: 560px;
  filter: drop-shadow(0 0 16px rgba(255,255,255,0.22));
}

.vehicle-outline path {
  fill: none;
  stroke: rgba(255,255,255,0.9);
  stroke-width: 7;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 1300;
  stroke-dashoffset: 1300;
  animation: drawCar 2.4s ease forwards;
}

.service-node {
  position: absolute;
  width: 15px;
  height: 15px;
  border: 2px solid #fff;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 10px rgba(240,20,30,0.16), 0 0 22px rgba(240,20,30,0.55);
  animation: nodePulse 2.6s ease-in-out infinite;
}

.node-security { left: 32%; top: 29%; }
.node-audio { left: 47%; top: 50%; animation-delay: 0.25s; }
.node-heat { left: 68%; top: 38%; animation-delay: 0.5s; }
.node-noise { left: 42%; top: 71%; animation-delay: 0.75s; }
.node-electric { left: 79%; top: 55%; animation-delay: 1s; }

.diagnostic-chips {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.diagnostic-chip {
  min-height: 44px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 10px;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.06);
  color: #f6f8fc;
  font-size: 12px;
  font-weight: 900;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.diagnostic-chip:hover {
  transform: translateY(-2px);
  border-color: rgba(240,20,30,0.48);
  background: rgba(240,20,30,0.12);
}

.diagnostic-chip i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex: 0 0 auto;
  background: var(--red);
  box-shadow: 0 0 0 7px rgba(240,20,30,0.12);
}

.car-console {
  position: relative;
  min-height: 520px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02)),
    rgba(8, 9, 12, 0.58);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.48);
}

.scan-grid {
  position: absolute;
  inset: 0;
  background:
    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: 36px 36px;
  mask-image: linear-gradient(180deg, transparent, black 20%, black 80%, transparent);
}

.car-stage {
  position: absolute;
  inset: 64px 28px 128px;
  display: grid;
  place-items: center;
}

.car-outline {
  width: 96%;
  max-width: 620px;
  filter: drop-shadow(0 0 18px rgba(255,255,255,0.35));
}

.car-outline path {
  fill: none;
  stroke: rgba(255,255,255,0.92);
  stroke-width: 7;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 1300;
  stroke-dashoffset: 1300;
  animation: drawCar 2.5s ease forwards;
}

.hotspot {
  position: absolute;
  width: 18px;
  height: 18px;
  border: 2px solid white;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 12px rgba(240, 20, 30, 0.16);
  cursor: pointer;
  animation: float 3.8s ease-in-out infinite;
}

.hotspot::after {
  content: attr(data-label);
  position: absolute;
  left: 24px;
  top: 50%;
  transform: translateY(-50%);
  white-space: nowrap;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(9, 10, 14, 0.86);
  padding: 7px 10px;
  border-radius: var(--radius);
  font-size: 12px;
  font-weight: 800;
  opacity: 0;
  pointer-events: none;
  transition: opacity 160ms ease, transform 160ms ease;
}

.hotspot:hover::after,
.hotspot.active::after {
  opacity: 1;
  transform: translate(4px, -50%);
}

.hotspot-security { left: 32%; top: 34%; }
.hotspot-audio { left: 47%; top: 52%; animation-delay: 0.3s; }
.hotspot-heat { left: 68%; top: 42%; animation-delay: 0.6s; }
.hotspot-noise { left: 42%; top: 72%; animation-delay: 0.9s; }
.hotspot-camera { left: 80%; top: 56%; animation-delay: 1.2s; }

.console-panel {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 16px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(5, 6, 9, 0.84);
  border-radius: var(--radius);
  padding: 18px;
}

.console-panel strong {
  display: block;
  font-size: 18px;
  margin-bottom: 6px;
}

.console-panel span {
  color: var(--muted);
  font-size: 14px;
}

.sound-bars {
  display: flex;
  align-items: flex-end;
  gap: 5px;
  height: 46px;
}

.sound-bars i {
  display: block;
  width: 6px;
  background: linear-gradient(180deg, var(--red), var(--warm));
  border-radius: 999px;
  animation: bars 1.1s ease-in-out infinite;
}

.sound-bars i:nth-child(1) { height: 18px; }
.sound-bars i:nth-child(2) { height: 34px; animation-delay: 0.1s; }
.sound-bars i:nth-child(3) { height: 26px; animation-delay: 0.2s; }
.sound-bars i:nth-child(4) { height: 42px; animation-delay: 0.3s; }
.sound-bars i:nth-child(5) { height: 22px; animation-delay: 0.4s; }

.section {
  padding: 86px 0;
  background: #f3f5f8;
  color: #111827;
}

.section.dark {
  background: #10131a;
  color: var(--text);
}

.section.alt {
  background: #e9edf2;
}

.wrap {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}

.section-head {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  align-items: end;
  margin-bottom: 34px;
}

.section-kicker {
  color: var(--red);
  font-weight: 950;
  text-transform: uppercase;
  font-size: 12px;
}

.section:not(.dark) .section-kicker,
.section:not(.dark) .card-link,
.quick-task span {
  color: #bd111a;
}

h2 {
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1;
  margin-bottom: 0;
  font-weight: 950;
}

.section-head p {
  color: #3f4a5a;
  line-height: 1.65;
  font-size: 17px;
}

.section:not(.dark) .lead {
  color: #374151;
}

.dark .section-head p,
.dark .muted,
.dark .service-card p,
.dark .case-card p {
  color: var(--muted);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.service-card {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(17, 24, 39, 0.12);
  background: white;
  border-radius: var(--radius);
  padding: 22px;
  overflow: hidden;
  position: relative;
}

.dark .service-card {
  background: var(--panel);
  border-color: rgba(255,255,255,0.12);
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--red), transparent);
  opacity: 0;
  transition: opacity 180ms ease;
}

.service-card:hover::before {
  opacity: 1;
}

.icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 26px;
  color: var(--red);
  background: rgba(240, 20, 30, 0.08);
  border-radius: var(--radius);
  font-weight: 950;
  font-size: 22px;
}

.service-motion {
  position: absolute;
  right: 18px;
  top: 18px;
  width: 84px;
  height: 60px;
  opacity: 0.9;
}

.service-motion::before,
.service-motion::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 2px solid rgba(240,20,30,0.42);
  border-radius: 50%;
  animation: servicePulse 2s ease-in-out infinite;
}

.service-motion::after {
  inset: 13px 20px;
  border-color: rgba(255,255,255,0.42);
  animation-delay: 0.35s;
}

.service-motion.audio::before,
.service-motion.audio::after {
  border-radius: 0;
  border-width: 0 0 3px 0;
  transform: skewX(-18deg);
}

.service-motion.noise::before,
.service-motion.noise::after {
  border-radius: var(--radius);
  transform: rotate(-8deg);
}

.service-motion.electric::before {
  border-radius: 0;
  clip-path: polygon(0 48%, 30% 48%, 38% 10%, 49% 88%, 58% 48%, 100% 48%, 100% 54%, 62% 54%, 50% 100%, 38% 28%, 32% 54%, 0 54%);
  background: rgba(240,20,30,0.36);
  border: 0;
}

.service-motion.heat::before {
  border-radius: 999px;
  transform: rotate(18deg);
}

.service-motion.repair::before {
  border-radius: 12px;
}

.service-card h3 {
  margin-bottom: 10px;
  font-size: 24px;
  line-height: 1.08;
}

.service-card p {
  color: #384252;
  line-height: 1.55;
}

.service-card-visual {
  min-height: 100%;
  display: grid;
  grid-template-rows: auto 1fr auto;
  padding: 0;
  box-shadow: 0 18px 48px rgba(17,24,39,0.09);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.service-card-visual:hover {
  transform: translateY(-4px);
  border-color: rgba(189,17,26,0.32);
  box-shadow: 0 24px 58px rgba(17,24,39,0.14);
}

.service-card-media {
  position: relative;
  margin: 0;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #0b0d12;
}

.service-card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 42%, rgba(5,6,9,0.82));
  pointer-events: none;
}

.service-card-media img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  transition: transform 320ms ease, filter 320ms ease;
}

.service-card-visual:hover .service-card-media img {
  transform: scale(1.035);
  filter: saturate(1.08) contrast(1.03);
}

.service-card-media span {
  position: absolute;
  z-index: 1;
  left: 14px;
  bottom: 12px;
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 9px;
  border: 1px solid rgba(255,255,255,0.24);
  border-radius: 999px;
  background: rgba(5,6,9,0.66);
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.service-card-body {
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 20px 20px 0;
}

.service-card-body h3,
.service-card-body p {
  margin: 0;
}

.service-card-price {
  display: block;
  color: #a90f17;
  font-size: 14px;
  line-height: 1.35;
}

.service-card-visual > .card-link {
  margin-top: 18px;
  padding: 0 20px 20px;
}

.quick-task-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.quick-task {
  min-height: 124px;
  padding: 18px;
  border-radius: var(--radius);
  background: white;
  border: 1px solid rgba(17, 24, 39, 0.12);
  color: var(--ink);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 180ms ease, border-color 180ms ease;
}

.quick-task span {
  color: var(--red);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.quick-task strong {
  display: block;
  font-size: 18px;
  line-height: 1.2;
}

.quick-task:hover {
  border-color: rgba(240,20,30,0.35);
  transform: translateY(-3px);
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  font-weight: 900;
  color: var(--red);
}

.section:not(.dark) .card-link,
.quick-task span {
  color: #bd111a;
}

.trust-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid rgba(255,255,255,0.12);
  background: #0b0d12;
  border-radius: var(--radius);
  overflow: hidden;
}

.trust-item {
  min-height: 160px;
  padding: 24px;
  border-right: 1px solid rgba(255,255,255,0.12);
}

.trust-item:last-child {
  border-right: 0;
}

.trust-item strong {
  display: block;
  font-size: 34px;
  color: white;
}

.trust-item span {
  display: block;
  color: var(--muted);
  line-height: 1.5;
  margin-top: 10px;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: center;
}

.media-frame {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: #111;
  aspect-ratio: 4 / 3;
}

.media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,0.42));
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 28px 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 12px;
  align-items: start;
  line-height: 1.55;
}

.check-list li::before {
  content: "";
  width: 20px;
  height: 20px;
  margin-top: 2px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: inset 0 0 0 6px #fff;
}

.case-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.case-card {
  background: white;
  border: 1px solid rgba(17, 24, 39, 0.12);
  border-radius: var(--radius);
  overflow: hidden;
}

.case-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.case-card div {
  padding: 20px;
}

.case-card h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  counter-reset: step;
}

.process-step {
  position: relative;
  counter-increment: step;
  min-height: 260px;
  padding: 22px;
  background:
    linear-gradient(155deg, rgba(240,20,30,0.1), transparent 48%),
    var(--panel);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  overflow: hidden;
}

.process-step::before {
  content: counter(step, decimal-leading-zero);
  position: absolute;
  top: 24px;
  right: 22px;
  color: var(--red);
  font-family: Tektur, Manrope, Arial, sans-serif;
  font-size: 14px;
  font-weight: 950;
}

.process-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin-bottom: 44px;
  border: 1px solid rgba(240,20,30,0.42);
  border-radius: var(--radius);
  background: rgba(240,20,30,0.14);
}

.process-icon img {
  width: 30px;
  height: 30px;
}

.process-step h3 {
  margin: 0 0 10px;
  font-size: 22px;
}

.process-step p {
  color: var(--muted);
  line-height: 1.55;
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.price {
  padding: 20px;
  background: white;
  border: 1px solid rgba(17, 24, 39, 0.12);
  border-radius: var(--radius);
}

.price strong {
  display: block;
  font-size: 30px;
  color: var(--red);
  margin: 14px 0 8px;
}

.price-section {
  background: #f3f5f8;
}

.service-price-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.service-price {
  min-height: 186px;
  padding: 20px;
  background: white;
  border: 1px solid rgba(17, 24, 39, 0.12);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.service-price span {
  display: block;
  margin-bottom: 10px;
  color: #475467;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.service-price h3 {
  font-size: 18px;
  line-height: 1.25;
  margin-bottom: 8px;
}

.service-price strong {
  display: block;
  color: var(--red);
  font-size: clamp(25px, 2.6vw, 36px);
  margin: 10px 0 8px;
  line-height: 1.05;
}

.service-price p {
  color: #384252;
  line-height: 1.5;
}

.price-footnotes {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 14px;
  margin-top: 16px;
}

.price-note,
.price-factors {
  border-radius: var(--radius);
  padding: 20px;
}

.price-note {
  background: #111827;
  color: white;
}

.price-note h3,
.price-factors h3 {
  margin-bottom: 8px;
}

.price-note p {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.55;
}

.price-factors {
  background: white;
  border: 1px solid rgba(17, 24, 39, 0.12);
}

.price-factors ul {
  margin: 0;
  padding-left: 18px;
  color: #384252;
  line-height: 1.6;
}

.price-source-note {
  margin-top: 12px;
  color: #475467;
  font-size: 13px;
  line-height: 1.45;
}

.cta-panel {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
  align-items: center;
  padding: 34px;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(240,20,30,0.92), rgba(120,6,12,0.94)),
    #c30e17;
  color: white;
}

.cta-panel h2 {
  font-size: clamp(30px, 4vw, 52px);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 18px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.review-platform,
.review-shot,
.route-card,
.lead-form-card,
.dev-plan-card {
  background: white;
  border: 1px solid rgba(17,24,39,0.12);
  border-radius: var(--radius);
  overflow: hidden;
}

.review-platform {
  padding: 22px;
}

.review-platform .social-icon {
  width: 58px;
  height: 58px;
  flex-basis: 58px;
  background-size: 48px 48px;
  filter: drop-shadow(0 8px 14px rgba(17,24,39,0.14));
}

.review-platform .social-icon.twogis,
.review-platform .social-icon.max {
  background-size: 48px 48px;
}

.review-platform strong {
  display: block;
  font-size: 34px;
  color: var(--red);
  margin: 10px 0 8px;
}

.review-platform p {
  color: #384252;
  line-height: 1.55;
}

.review-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.review-shot img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  object-position: top left;
  border-bottom: 1px solid rgba(17,24,39,0.12);
}

.review-shot div {
  padding: 16px;
}

.route-layout,
.form-layout,
.dev-plan-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.map-embed {
  width: 100%;
  min-height: 420px;
  border: 0;
  display: block;
}

.route-card {
  padding: 24px;
}

.route-card p,
.dev-plan-card p {
  color: #384252;
  line-height: 1.58;
}

.lead-form-card {
  padding: 24px;
}

.lead-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.lead-form .wide,
.form-message {
  grid-column: 1 / -1;
}

.form-message {
  margin: 0;
  color: #b42318;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.45;
}

.lead-form-note {
  margin-top: 12px;
  color: #475467;
  font-size: 13px;
  line-height: 1.45;
}

.local-grid,
.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.faq-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.local-card,
.faq-item {
  min-height: 190px;
  padding: 22px;
  background: white;
  border: 1px solid rgba(17, 24, 39, 0.12);
  border-radius: var(--radius);
}

.local-card h3,
.faq-item h3 {
  font-size: 22px;
  line-height: 1.18;
  margin-bottom: 10px;
}

.local-card p,
.faq-item p {
  color: #384252;
  line-height: 1.58;
}

.footer-rich {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 24px;
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}

.footer-rich h3 {
  color: white;
  margin-bottom: 12px;
}

.footer-rich p,
.footer-rich span {
  color: var(--muted);
  line-height: 1.6;
}

.footer-rich .social-mini {
  margin-top: 14px;
}

.footer-links {
  display: grid;
  gap: 8px;
}

.footer-links a {
  min-height: 44px;
  display: flex;
  align-items: center;
  color: var(--muted);
}

.footer-links span {
  min-height: 44px;
  display: flex;
  align-items: center;
}

.footer-links a:hover {
  color: white;
}

.contact-card {
  padding: 24px;
  background: white;
  color: #111827;
  border: 1px solid rgba(17, 24, 39, 0.12);
  border-radius: var(--radius);
}

.contact-card a {
  color: var(--red);
  font-weight: 900;
}

.map-box {
  min-height: 360px;
  display: grid;
  place-items: center;
  padding: 26px;
  background:
    linear-gradient(135deg, rgba(0,0,0,0.62), rgba(0,0,0,0.2)),
    url("assets/images/workshop.webp") center / cover;
  border-radius: var(--radius);
  color: white;
  text-align: center;
}

.site-footer {
  background: #08090c;
  color: var(--muted);
  padding: 34px 0;
}

.footer-developer {
  width: min(var(--max), calc(100% - 32px));
  margin: 28px auto 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-developer-byline {
  margin: 0;
  display: flex;
  align-items: baseline;
  gap: 8px;
  color: #8d96a6;
  font-size: 13px;
}

.footer-developer-studio {
  color: #f5f7fb;
  font-family: Tektur, Manrope, Arial, sans-serif;
  font-size: 14px;
  font-weight: 800;
}

.footer-developer-cta {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #f5f7fb;
  font-family: Tektur, Manrope, Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
}

.footer-developer-cta span {
  color: var(--red);
  font-size: 18px;
  line-height: 1;
  transition: transform 180ms ease;
}

.footer-developer-studio:hover,
.footer-developer-cta:hover {
  color: var(--red);
}

.footer-developer-cta:hover span {
  transform: translate(2px, -2px);
}

.footer-inner {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.service-hero {
  position: relative;
  padding: 96px 0 70px;
  background: #08090c;
  color: white;
}

.service-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8,9,12,0.94), rgba(8,9,12,0.6)),
    var(--service-image, url("../assets/images/facade.webp")) center / cover;
  opacity: 0.76;
}

.service-hero .wrap {
  position: relative;
  z-index: 1;
}

.service-hero h1 {
  max-width: 880px;
}

.crumbs {
  color: var(--muted);
  margin-bottom: 28px;
  font-weight: 800;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.feature {
  padding: 22px;
  border-radius: var(--radius);
  background: white;
  border: 1px solid rgba(17, 24, 39, 0.12);
}

.feature h3 {
  margin-bottom: 8px;
}

.feature p {
  color: #384252;
  line-height: 1.55;
}

.visual-proof-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.visual-proof-card {
  min-height: 100%;
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  border: 1px solid rgba(17, 24, 39, 0.12);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 16px 46px rgba(17, 24, 39, 0.08);
}

.visual-proof-card figure {
  margin: 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #0b0d12;
}

.visual-proof-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease;
}

.visual-proof-card:hover img {
  transform: scale(1.035);
}

.visual-proof-card div {
  display: grid;
  gap: 8px;
  align-content: start;
  padding: 14px;
}

.visual-proof-card h3 {
  margin: 0;
  font-size: 16px;
  line-height: 1.15;
}

.visual-proof-card p {
  margin: 0;
  color: #384252;
  font-size: 14px;
  line-height: 1.45;
}

.proof-icon {
  position: relative;
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  border-radius: var(--radius);
  background: rgba(240, 20, 30, 0.09);
  color: var(--red);
}

.proof-icon::before,
.proof-icon::after {
  content: "";
  display: block;
  background: currentColor;
}

.proof-icon-shield::before {
  width: 18px;
  height: 22px;
  clip-path: polygon(50% 0, 88% 14%, 78% 70%, 50% 100%, 22% 70%, 12% 14%);
}

.proof-icon-bolt::before {
  width: 18px;
  height: 24px;
  clip-path: polygon(58% 0, 18% 52%, 48% 52%, 34% 100%, 84% 38%, 52% 38%);
}

.proof-icon-speaker::before {
  width: 21px;
  height: 21px;
  border-radius: 50%;
  background:
    radial-gradient(circle, transparent 0 28%, currentColor 30% 44%, transparent 46%),
    currentColor;
}

.proof-icon-wave::before {
  width: 22px;
  height: 18px;
  background:
    linear-gradient(90deg, currentColor 0 3px, transparent 3px 6px, currentColor 6px 9px, transparent 9px 12px, currentColor 12px 15px, transparent 15px 18px, currentColor 18px 22px);
  clip-path: polygon(0 55%, 14% 18%, 30% 55%, 45% 22%, 62% 55%, 78% 18%, 100% 55%, 100% 80%, 0 80%);
}

.proof-icon-heat::before {
  width: 17px;
  height: 24px;
  border-radius: 50% 50% 46% 46%;
  clip-path: polygon(50% 0, 74% 24%, 68% 45%, 100% 70%, 78% 100%, 24% 100%, 0 70%, 32% 48%, 28% 24%);
}

.proof-icon-wrench::before {
  width: 22px;
  height: 22px;
  clip-path: polygon(68% 0, 100% 16%, 84% 34%, 66% 28%, 28% 66%, 34% 84%, 16% 100%, 0 68%, 54% 14%);
}

.proof-icon-camera::before {
  width: 22px;
  height: 15px;
  border-radius: 4px;
}

.proof-icon-camera::after {
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 2px currentColor;
}

.proof-icon-battery::before {
  width: 22px;
  height: 14px;
  border: 2px solid currentColor;
  border-radius: 3px;
  background: transparent;
}

.proof-icon-battery::after {
  width: 3px;
  height: 8px;
  margin-left: -1px;
  border-radius: 0 2px 2px 0;
}

.proof-icon-check::before {
  width: 20px;
  height: 14px;
  background: transparent;
  border-left: 4px solid currentColor;
  border-bottom: 4px solid currentColor;
  transform: rotate(-45deg) translate(1px, -2px);
}

.reveal {
  opacity: 1;
  transform: none;
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .hero-sequence-frame {
    transform: none;
  }

  .hero-sequence-frame-next,
  .hero-sequence-scan,
  .hero-sequence-callouts {
    display: none;
  }
}

@keyframes pulse {
  70% { box-shadow: 0 0 0 10px rgba(240,20,30,0); }
  100% { box-shadow: 0 0 0 0 rgba(240,20,30,0); }
}

@keyframes drawCar {
  to { stroke-dashoffset: 0; }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes bars {
  0%, 100% { transform: scaleY(0.55); opacity: 0.65; }
  50% { transform: scaleY(1); opacity: 1; }
}

@keyframes scanSweep {
  0%, 14% { transform: translateY(0); opacity: 0; }
  24% { opacity: 1; }
  58% { transform: translateY(520%); opacity: 0.92; }
  74%, 100% { transform: translateY(620%); opacity: 0; }
}

@keyframes signalSweep {
  0%, 100% { opacity: 0.36; transform: translate3d(-5%, -50%, 0) scaleX(0.74); }
  50% { opacity: 1; transform: translate3d(5%, -50%, 0) scaleX(1); }
}

@keyframes nodePulse {
  0%, 100% { transform: scale(1); opacity: 0.82; }
  50% { transform: scale(1.18); opacity: 1; }
}

@keyframes servicePulse {
  0%, 100% { transform: scale(0.9); opacity: 0.45; }
  50% { transform: scale(1.04); opacity: 1; }
}

@media (max-width: 1320px) {
  .nav {
    width: calc(100% - 24px);
    gap: 12px;
  }

  .brand-logo {
    width: 150px;
  }

  .nav-links {
    gap: 12px;
    font-size: 13px;
  }

  .nav-actions {
    gap: 8px;
  }

  .social-mini {
    gap: 4px;
  }

  .social-icon {
    width: 44px;
    height: 44px;
    flex-basis: 44px;
    background-size: 28px 28px;
  }

  .nav-actions .btn {
    padding: 0 14px;
  }
}

@media (max-width: 980px) {
  .hero-v3-stage {
    min-height: 0;
  }

  .nav-links {
    position: fixed;
    left: 16px;
    right: 16px;
    top: 84px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    background: rgba(8, 9, 12, 0.96);
    border: 1px solid var(--line);
    border-radius: var(--radius);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    min-height: 44px;
    display: flex;
    align-items: center;
  }

  .burger {
    display: grid;
    place-items: center;
    margin-left: auto;
  }

  .nav-actions {
    display: none;
  }

  .nav-actions .btn {
    display: none;
  }

  .nav-actions .social-mini {
    display: none;
  }

  .hero-inner,
  .section-head,
  .split,
  .cta-panel,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy,
  .hero-support,
  .hero-showcase {
    grid-column: auto;
    grid-row: auto;
  }

  .hero {
    min-height: auto;
  }

  .hero.hero-sequence {
    min-height: auto;
    display: grid;
    align-items: center;
    padding: clamp(54px, 7vh, 78px) 0 42px;
  }

  .hero.hero-sequence .hero-sequence-bg {
    position: absolute;
    inset: 0;
    height: auto;
    min-height: 0;
  }

  .hero.hero-sequence .hero-inner {
    position: relative;
    top: auto;
    min-height: 0;
    margin-top: 0;
    padding: 0;
    align-items: start;
  }

  .hero-sequence-frame {
    object-position: 58% center;
  }

  .hero-showcase {
    height: 600px;
    min-height: 0;
  }

  .hero-showcase.hero-motion {
    height: 610px;
  }

  .motion-car {
    object-position: 58% center;
  }

  .car-console {
    min-height: 430px;
  }

  .service-grid,
  .quick-task-grid,
  .case-grid,
  .visual-proof-grid,
  .process,
  .price-grid,
  .service-price-grid,
  .local-grid,
  .faq-grid,
  .trust-band {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .price-footnotes {
    grid-template-columns: 1fr;
  }

  .trust-item {
    border-bottom: 1px solid rgba(255,255,255,0.12);
  }
}

@media (max-width: 620px) {
  .footer-developer {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .footer-developer-byline {
    flex-wrap: wrap;
  }

  .nav {
    width: min(var(--max), calc(100% - 24px));
    height: 68px;
  }

  .site-header {
    min-height: 68px;
  }

  .brand-logo {
    width: 142px;
    height: 48px;
  }

  .burger {
    width: 42px;
    height: 42px;
  }

  .brand small {
    display: none;
  }

  .hero-inner,
  .wrap,
  .footer-inner {
    width: calc(100% - 24px);
  }

  .hero {
    padding: 40px 0 36px;
    min-height: calc(100svh - 76px);
  }

  .hero.hero-sequence {
    min-height: 0;
    display: block;
    padding: 0 0 36px;
    overflow: hidden;
  }

  .hero.hero-sequence .hero-sequence-bg {
    display: none;
  }

  .hero-mobile-media {
    position: relative;
    display: block;
    width: 100%;
    height: 44svh;
    min-height: 310px;
    max-height: 410px;
    overflow: hidden;
    background: #050609;
  }

  .hero-mobile-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(5,6,9,0.02) 44%, rgba(5,6,9,0.92) 100%);
    pointer-events: none;
  }

  .hero-mobile-media img {
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    object-position: 62% center;
    filter: saturate(1.08) contrast(1.06) brightness(1.04);
  }

  .hero-mobile-caption {
    position: absolute;
    z-index: 1;
    left: 12px;
    right: 12px;
    bottom: 14px;
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 12px;
    color: #fff;
  }

  .hero-mobile-caption strong {
    font-size: 17px;
    line-height: 1;
  }

  .hero-mobile-caption span {
    max-width: 180px;
    color: rgba(255,255,255,0.78);
    font-size: 11px;
    font-weight: 800;
    line-height: 1.25;
    text-align: right;
  }

  .hero.hero-sequence .hero-inner {
    position: relative;
    width: calc(100% - 24px);
    min-height: 0;
    margin: 0 auto;
    padding: 20px 0 0;
    grid-template-columns: minmax(0, 1fr);
    align-items: start;
  }

  .hero.hero-sequence .hero-copy {
    width: 100%;
    min-width: 0;
    max-width: 100%;
  }

  .hero-sequence-frame {
    object-position: 61% center;
    transform: scale(1.02);
  }

  .hero-sequence-frame-next,
  .hero-sequence-scan,
  .hero-sequence-callouts {
    display: none;
  }

  .hero-sequence-scrim {
    background:
      linear-gradient(90deg, rgba(5,6,9,0.96) 0%, rgba(5,6,9,0.86) 42%, rgba(5,6,9,0.36) 100%),
      linear-gradient(180deg, rgba(5,6,9,0.04), transparent 42%, rgba(5,6,9,0.88));
  }

  .eyebrow {
    max-width: 100%;
    font-size: 10px;
    white-space: normal;
  }

  h1 {
    margin-bottom: 16px;
    font-size: clamp(30px, 8.7vw, 34px);
    line-height: 1;
  }

  .lead {
    font-size: 16px;
    line-height: 1.42;
  }

  .hero-proof-line {
    display: grid;
    grid-template-columns: 1fr;
    gap: 7px;
    margin-top: 16px;
  }

  .hero-proof-line span {
    min-height: 38px;
    border-radius: var(--radius);
    font-size: 12px;
  }

  .hero-stats,
  .mini-lead,
  .service-grid,
  .quick-task-grid,
  .case-grid,
  .visual-proof-grid,
  .process,
  .price-grid,
  .service-price-grid,
  .trust-band,
  .feature-list,
  .reviews-grid,
  .local-grid,
  .faq-grid,
  .route-layout,
  .form-layout,
  .dev-plan-grid,
  .footer-rich {
    grid-template-columns: 1fr;
  }

  .process {
    display: flex;
    gap: 12px;
    margin-inline: -12px;
    padding: 0 12px 8px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .process::-webkit-scrollbar {
    display: none;
  }

  .process-step {
    flex: 0 0 min(82vw, 320px);
    min-height: 248px;
    scroll-snap-align: start;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin: 22px 0 18px;
  }

  .hero-actions .btn:first-child {
    grid-column: 1 / -1;
  }

  .hero-actions .btn {
    padding: 0 10px;
    font-size: 13px;
    white-space: nowrap;
  }

  .hero-actions .btn:first-child {
    font-size: 14px;
  }

  .hero-sequence-panel {
    display: none;
  }

  .hero-sequence-panel strong {
    font-size: 17px;
  }

  .hero-sequence-panel p {
    font-size: 12px;
  }

  .hero-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero .mini-lead {
    display: none;
  }

  .hero-route-btn {
    display: none;
  }

  .hero-actions {
    grid-template-columns: 1fr;
  }

  .hero-actions .btn:first-child {
    grid-column: auto;
  }

  .service-card-visual {
    min-height: 0;
  }

  .service-card-media {
    aspect-ratio: 16 / 9;
  }

  .service-card-body {
    padding: 18px 18px 0;
  }

  .service-card-visual > .card-link {
    padding: 0 18px 18px;
  }

  .btn {
    width: 100%;
  }

  .mini-lead {
    padding: 12px;
  }

  .hero-showcase {
    height: auto;
    min-height: 0;
    grid-template-rows: auto;
  }

  .hero-showcase.hero-motion {
    height: 560px;
  }

  .hero-showcase::before {
    display: none;
  }

  .motion-stage {
    border-radius: var(--radius);
  }

  .motion-car {
    object-position: 58% center;
  }

  .motion-pin {
    min-width: 104px;
    padding: 8px 9px 8px 24px;
  }

  .motion-pin strong {
    font-size: 10px;
  }

  .motion-pin span {
    display: none;
  }

  .pin-security { left: 5%; top: 18%; }
  .pin-audio { right: 5%; top: 31%; }
  .pin-noise { right: 5%; bottom: 34%; }
  .pin-electric { left: 5%; bottom: 37%; }
  .pin-heat { left: 30%; top: 11%; }

  .layer-door {
    left: 40%;
    top: 40%;
    width: 32%;
  }

  .layer-engine {
    left: 16%;
    width: 30%;
  }

  .motion-panel {
    left: 10px;
    right: 10px;
    bottom: 10px;
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 12px;
  }

  .motion-panel strong {
    font-size: 17px;
  }

  .motion-panel p {
    font-size: 12px;
  }

  .showcase-photo,
  .showcase-photo > img {
    min-height: 238px;
  }

  .diagnostic-board {
    min-height: 246px;
  }

  .showcase-brand {
    align-items: flex-start;
    flex-direction: column;
  }

  .showcase-brand span {
    text-align: left;
  }

  .diagnostic-heading {
    display: block;
  }

  .diagnostic-heading strong {
    display: block;
    margin-top: 6px;
    text-align: left;
  }

  .vehicle-map {
    height: 108px;
  }

  .diagnostic-chips {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .car-console {
    min-height: 360px;
  }

  .car-stage {
    inset: 42px 12px 132px;
  }

  .console-panel {
    grid-template-columns: 1fr;
  }

  .hotspot::after {
    display: none;
  }

  .section {
    padding: 62px 0;
  }
}

/* Hero V3: one continuous automotive scene with scroll-driven service chapters. */
.hero.hero-sequence.hero-v3 {
  min-height: calc(300svh - 76px);
  background: #050609;
}

.hero-v3-stage {
  position: sticky;
  top: 76px;
  width: 100%;
  height: calc(100svh - 76px);
  min-height: 620px;
  overflow: clip;
  isolation: isolate;
}

.hero.hero-sequence.hero-v3 .hero-sequence-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 0;
}

.hero-v3 .hero-sequence-frame {
  object-position: center;
  transform: translate3d(calc(var(--sequence-progress, 0) * -0.8%), 0, 0) scale(calc(1.012 + (var(--sequence-progress, 0) * 0.018)));
  filter: saturate(1.08) contrast(1.08) brightness(0.96);
}

.hero-v3 .hero-sequence-scrim {
  background:
    linear-gradient(90deg, rgba(5,6,9,0.9) 0%, rgba(5,6,9,0.72) 31%, rgba(5,6,9,0.18) 62%, rgba(5,6,9,0.06) 100%),
    linear-gradient(180deg, rgba(5,6,9,0.08) 0%, transparent 45%, rgba(5,6,9,0.78) 100%);
  opacity: clamp(0.52, calc(1 - (var(--sequence-progress, 0) * 0.48)), 1);
}

.hero.hero-sequence.hero-v3 .hero-inner {
  position: absolute;
  inset: 0;
  width: min(var(--max), calc(100% - 32px));
  min-height: 100%;
  margin: 0 auto;
  display: block;
  padding: clamp(48px, 7vh, 76px) 0 42px;
}

.hero-v3 .hero-copy {
  position: absolute;
  left: 0;
  top: 50%;
  width: min(700px, 61vw);
  transform: translate3d(0, calc(-50% - (var(--sequence-progress, 0) * 24px)), 0);
  opacity: clamp(0, calc(1 - (var(--sequence-progress, 0) * 6.5)), 1);
  will-change: transform, opacity;
  pointer-events: auto;
}

.hero-v3-brandline {
  width: min(100%, 620px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.22);
  color: rgba(255,255,255,0.74);
  font-size: 12px;
  line-height: 1.3;
}

.hero-v3-brandline strong {
  font-family: Tektur, Manrope, Arial, sans-serif;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
}

.hero-v3 h1 {
  max-width: 720px;
  margin-bottom: 22px;
  font-size: clamp(46px, 5.3vw, 76px);
  line-height: 0.96;
  text-wrap: balance;
}

.hero-v3 .lead {
  max-width: 52ch;
  margin-bottom: 0;
  color: rgba(255,255,255,0.86);
  font-size: clamp(17px, 1.55vw, 20px);
  line-height: 1.55;
  text-wrap: pretty;
}

.hero-v3 .hero-actions {
  gap: 10px;
  margin: 28px 0 0;
}

.hero-v3 .btn {
  min-height: 50px;
  padding-inline: 22px;
  transition: transform 160ms cubic-bezier(0.23, 1, 0.32, 1), border-color 160ms ease, background-color 160ms ease;
}

.hero-v3 .btn-primary {
  box-shadow: 0 6px 14px rgba(240,20,30,0.24);
}

.hero-v3 .btn:active {
  transform: scale(0.97);
}

.hero-v3-chapters {
  position: absolute;
  top: 50%;
  right: 0;
  width: min(270px, 24vw);
  display: grid;
  gap: 9px;
  transform: translateY(-50%);
  opacity: clamp(0, calc((var(--sequence-progress, 0) - 0.08) * 8), 1);
  pointer-events: none;
}

.hero-v3-chapter {
  position: relative;
  display: block;
  padding: 7px 44px 7px 0;
  color: rgba(255,255,255,0.38);
  font-family: Tektur, Manrope, Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
  text-align: right;
  transform: translateX(0);
  transition: color 220ms ease, transform 220ms cubic-bezier(0.23, 1, 0.32, 1);
}

.hero-v3-chapter::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 26px;
  height: 1px;
  background: rgba(255,255,255,0.24);
  transform: scaleX(0.55);
  transform-origin: right;
  transition: transform 220ms cubic-bezier(0.23, 1, 0.32, 1), background-color 220ms ease;
}

.hero-v3-chapter[aria-current="step"] {
  color: #fff;
  transform: translateX(-8px);
}

.hero-v3-chapter[aria-current="step"]::after {
  background: var(--red);
  transform: scaleX(1);
}

.hero-v3-caption {
  position: absolute;
  right: 0;
  bottom: 38px;
  width: min(360px, 34vw);
  padding-top: 12px;
  color: #fff;
  opacity: clamp(0, calc((var(--sequence-progress, 0) - 0.09) * 7), 1);
  transform: translate3d(0, calc((1 - var(--sequence-progress, 0)) * 12px), 0);
  will-change: transform, opacity;
  pointer-events: none;
}

.hero-v3-caption::before {
  content: "";
  display: block;
  width: 58px;
  height: 2px;
  margin-bottom: 14px;
  background: var(--red);
}

.hero-v3-caption span {
  color: rgba(255,255,255,0.56);
  font-size: 11px;
  font-weight: 800;
}

.hero-v3-caption strong {
  display: block;
  margin-top: 5px;
  font-family: Tektur, Manrope, Arial, sans-serif;
  font-size: 24px;
  line-height: 1.1;
}

.hero-v3-caption p {
  max-width: 38ch;
  margin: 8px 0 0;
  color: rgba(255,255,255,0.72);
  font-size: 14px;
  line-height: 1.45;
}

.hero-v3-proof-band {
  position: relative;
  z-index: 3;
  color: #fff;
  background: #0b0d12;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.hero-v3-proof-band .wrap {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  padding-block: 0;
}

.hero-v3-proof-band a {
  min-height: 92px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 16px 20px;
  border-right: 1px solid rgba(255,255,255,0.1);
  transition: background-color 180ms ease;
}

.hero-v3-proof-band a:first-child {
  border-left: 1px solid rgba(255,255,255,0.1);
}

.hero-v3-proof-band strong {
  font-family: Tektur, Manrope, Arial, sans-serif;
  font-size: 21px;
  line-height: 1;
}

.hero-v3-proof-band span {
  color: rgba(255,255,255,0.62);
  font-size: 12px;
  line-height: 1.3;
}

@media (hover: hover) and (pointer: fine) {
  .hero-v3-proof-band a:hover {
    background: rgba(255,255,255,0.045);
  }
}

.hero-v3.sequence-static {
  min-height: calc(100svh - 76px);
}

.hero-v3.sequence-static .hero-copy {
  opacity: 1;
  transform: translate3d(0, -50%, 0);
}

.hero-v3.sequence-static .hero-v3-chapters,
.hero-v3.sequence-static .hero-v3-caption {
  display: none;
}

@media (max-width: 980px) {
  .hero.hero-sequence.hero-v3 {
    min-height: calc(100svh - 76px);
    display: block;
    padding: 0;
    overflow: visible;
  }

  .hero.hero-sequence.hero-v3 .hero-sequence-bg {
    display: block;
    position: absolute;
    inset: 0 0 auto;
    height: calc(100svh - 76px);
    min-height: 0;
  }

  .hero.hero-sequence.hero-v3 .hero-inner {
    min-height: calc(100svh - 76px);
    padding: 44px 0 34px;
  }

  .hero-v3 .hero-copy {
    width: min(620px, 72vw);
  }

  .hero-v3 h1 {
    font-size: clamp(42px, 7vw, 64px);
  }

  .hero-v3-chapters {
    width: 220px;
  }

  .hero-v3.sequence-static {
    min-height: calc(100svh - 76px);
  }

  .hero-v3.sequence-static .hero-copy {
    opacity: 1;
  }
}

@media (max-width: 620px) {
  .hero.hero-sequence.hero-v3 {
    min-height: calc(280svh - 68px);
    padding: 0;
    overflow: visible;
  }

  .hero-v3-stage {
    top: 68px;
    height: calc(100svh - 68px);
    min-height: 0;
  }

  .hero-v3 .hero-mobile-media {
    display: none;
  }

  .hero.hero-sequence.hero-v3 .hero-sequence-bg {
    display: block;
    height: 100%;
  }

  .hero-v3 .hero-sequence-frame {
    object-position: 61% center;
    transform: translate3d(calc(var(--sequence-progress, 0) * -1.4%), 0, 0) scale(calc(1.015 + (var(--sequence-progress, 0) * 0.02)));
  }

  .hero-v3 .hero-sequence-scrim {
    background:
      linear-gradient(180deg, rgba(5,6,9,0.04) 0%, rgba(5,6,9,0.08) 36%, rgba(5,6,9,0.94) 76%, #050609 100%),
      linear-gradient(90deg, rgba(5,6,9,0.3), transparent 78%);
    opacity: clamp(0.58, calc(1 - (var(--sequence-progress, 0) * 0.42)), 1);
  }

  .hero.hero-sequence.hero-v3 .hero-inner {
    width: 100%;
    min-height: 100%;
    margin: 0;
    padding: 0 12px 20px;
  }

  .hero-v3 .hero-copy {
    left: 12px;
    right: 12px;
    top: auto;
    bottom: 22px;
    width: auto;
    min-width: 0;
    max-width: none;
    transform: translate3d(0, calc(var(--sequence-progress, 0) * -18px), 0);
  }

  .hero.hero-sequence.hero-v3 .hero-copy {
    width: auto;
    min-width: 0;
    max-width: none;
  }

  .hero-v3-brandline {
    width: 100%;
    margin-bottom: 14px;
    padding-bottom: 8px;
    font-size: 10px;
  }

  .hero-v3-brandline strong {
    font-size: 12px;
  }

  .hero-v3 h1 {
    margin-bottom: 14px;
    font-size: clamp(29px, 8.4vw, 34px);
    line-height: 0.98;
  }

  .hero-v3 .lead {
    max-width: 34ch;
    font-size: 15px;
    line-height: 1.45;
  }

  .hero-v3 .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: 18px;
  }

  .hero-v3 .hero-actions .btn {
    width: 100%;
    min-height: 46px;
    font-size: 13px;
  }

  .hero-v3-chapters {
    display: none;
  }

  .hero-v3-caption {
    left: 12px;
    right: 12px;
    bottom: 22px;
    width: auto;
    padding: 0;
  }

  .hero-v3-caption strong {
    font-size: 22px;
  }

  .hero-v3-caption p {
    max-width: 32ch;
    font-size: 13px;
  }

  .hero-v3-proof-band .wrap {
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-v3-proof-band a,
  .hero-v3-proof-band a:first-child {
    min-height: 82px;
    padding: 13px 12px;
    border-left: 0;
    border-right: 1px solid rgba(255,255,255,0.1);
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }

  .hero-v3-proof-band a:nth-child(2n) {
    border-right: 0;
  }

  .hero-v3-proof-band strong {
    font-size: 18px;
  }

  .hero-v3.sequence-static {
    min-height: calc(100svh - 68px);
  }

  .hero-v3.sequence-static .hero-copy {
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-v3 .hero-copy,
  .hero-v3 .hero-v3-caption,
  .hero-v3 .hero-v3-chapter,
  .hero-v3 .hero-sequence-frame,
  .hero-v3 .btn {
    transition-duration: 0.01ms;
    transform: none;
  }
}
