:root {
  --bg: #030304;
  --page-bg:
    radial-gradient(ellipse 75% 60% at 50% 40%, rgba(61, 139, 255, 0.08), transparent 65%),
    radial-gradient(ellipse 60% 50% at 65% 55%, rgba(212, 168, 83, 0.08), transparent 60%),
    var(--bg);
  --ink: #f8f6f2;
  --muted: rgba(248, 246, 242, 0.72);
  --gold: #d4a853;
  --gold-bright: #f0d78c;
  --accent: #3d8bff;
  --p: 0;
  --t: 0;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --car-scale: 2;
  --car-shift-x: 54%;
  --car-shift-y: 8%;
  --text-shift-y: 0%;
  --scroll-hint-shift-x: 0px;
  --scene-height: 450vh;
  --section-gap: clamp(95px, 16.7vh, 167px);
  --section-pad-top: clamp(34px, 5.6vh, 56px);
  --section-pad-bottom: clamp(28px, 4vh, 44px);
  --block-gap: var(--section-gap);
  --pricing-car-top: 72%;
  --pricing-text-lift: 0;
  --pricing-gallery-gap: var(--section-gap);
  --content-max: 1200px;
  --gutter: clamp(16px, 4vw, 32px);
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body.ac-page {
  margin: 0;
  font-family: "Inter", system-ui, sans-serif;
  color: var(--ink);
  background: var(--bg);
  overflow-x: clip;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

.ac-page-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: var(--page-bg);
}

.ac-page-bg .ac-orb {
  position: absolute;
}

.ac-page > * {
  position: relative;
  z-index: 1;
}

.font-podium {
  font-family: "FSP DEMO - PODIUM Sharp 4.11", "Anton", sans-serif;
}

.ac-scene {
  height: var(--scene-height);
  position: relative;
  background: transparent;
  margin-bottom: var(--section-gap);
}
.ac-scene[data-step="4"] { --accent: var(--gold); }

.ac-pin {
  position: sticky;
  top: 0;
  height: 100dvh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding-top: env(safe-area-inset-top, 0px);
  isolation: isolate;
}

.ac-bgword {
  position: absolute;
  z-index: 0;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -52%) scale(calc(1 + var(--p) * 0.05));
  margin: 0;
  font-family: "FSP DEMO - PODIUM Sharp 4.11", "Anton", sans-serif;
  font-size: clamp(4rem, 14vw, 12rem);
  line-height: 0.85;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.05);
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}

.ac-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.3;
  animation: ac-drift 12s var(--ease) infinite;
}

.ac-orb--1 { width: 340px; height: 340px; top: 10%; left: 10%; background: rgba(61, 139, 255, 0.3); }
.ac-orb--2 { width: 280px; height: 280px; bottom: 15%; right: 10%; background: rgba(212, 168, 83, 0.25); animation-delay: -4s; }
.ac-orb--3 { width: 200px; height: 200px; top: 45%; left: 45%; background: rgba(255, 255, 255, 0.05); animation-delay: -7s; }

@keyframes ac-drift {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(16px, -20px); }
}

/* ── z-index 10: content row (text + car together) ── */

.ac-top {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: min(100%, var(--content-max));
  margin: 0 auto;
  padding: clamp(12px, 2.5vh, 22px) var(--gutter) 0;
  transform: translateY(var(--text-shift-y));
}

.ac-logo {
  display: block;
  flex-shrink: 0;
  line-height: 0;
  text-decoration: none;
}

.ac-top-brand {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 20px);
  min-width: 0;
  flex: 1;
}

.ac-top-tagline {
  margin: 0;
  font-size: clamp(0.625rem, 1.1vw, 0.75rem);
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.25;
}

.ac-logo img {
  display: block;
  width: auto;
  height: clamp(32px, 4.5vw, 44px);
}

.ac-top-phone {
  flex-shrink: 0;
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--ink);
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s;
}

.ac-top-phone:hover { color: var(--gold-bright); }

.ac-top-phone:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
  border-radius: 4px;
}

.ac-stage {
  position: relative;
  z-index: 5;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: clamp(20px, 3vw, 40px);
  width: min(100%, var(--content-max));
  margin: 0 auto;
  padding: 0 var(--gutter) clamp(16px, 3vh, 28px);
  min-height: 0;
}

/* Text — VANGUARD-style hero (left), car scroll unchanged (right) */
.ac-left {
  flex: 0 0 min(46vw, 520px);
  position: relative;
  z-index: 2;
  transform: translateY(var(--text-shift-y));
}

.ac-hero {
  display: flex;
  flex-direction: column;
  max-width: 480px;
}

@keyframes ac-fade-up {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.ac-anim-up {
  opacity: 0;
  animation: ac-fade-up 0.8s var(--ease) forwards;
}

.ac-anim-up--1 { animation-delay: 0.2s; }
.ac-anim-up--2 { animation-delay: 0.4s; }
.ac-anim-up--3 { animation-delay: 0.6s; }
.ac-anim-up--4 { animation-delay: 0.8s; }

.ac-tagline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 clamp(20px, 3vh, 32px);
  font-size: clamp(0.6875rem, 1.2vw, 0.8125rem);
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
}

.ac-tagline-icon {
  flex-shrink: 0;
  color: rgba(255, 255, 255, 0.55);
}

.ac-display {
  margin: 0 0 clamp(20px, 3vh, 28px);
  display: flex;
  flex-direction: column;
  gap: 0;
}

.ac-display-line {
  display: block;
  font-family: "FSP DEMO - PODIUM Sharp 4.11", "Anton", sans-serif;
  font-size: clamp(2rem, 5.5vw, 3.75rem);
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--ink);
}

.ac-display-line--accent {
  color: var(--gold-bright);
}

.ac-display-line--inline {
  white-space: nowrap;
}

.ac-display-line--inline .ac-display-line--accent {
  display: inline;
}

.ac-story {
  opacity: 0;
  transition: opacity 0.35s var(--ease);
  margin-bottom: clamp(20px, 3vh, 28px);
}

.ac-story.is-visible {
  opacity: 1;
}

.ac-story-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 10px;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

#ac-counter {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  font-variant-numeric: tabular-nums;
  color: var(--gold);
}

#ac-tag {
  color: var(--accent);
  transition: color 0.4s;
}

.ac-story-head {
  margin: 0 0 8px;
  font-size: clamp(0.9375rem, 1.6vw, 1.0625rem);
  font-weight: 600;
  line-height: 1.4;
  color: var(--ink);
  max-width: 30ch;
}

.ac-story-body {
  margin: 0 0 14px;
  font-size: clamp(0.8125rem, 1.4vw, 0.9375rem);
  font-weight: 400;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.55);
  max-width: 34ch;
}

.ac-bar {
  width: 100%;
  max-width: 200px;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  overflow: hidden;
}

.ac-bar-fill {
  height: 100%;
  width: calc(var(--p) * 100%);
  background: var(--gold);
}

.ac-cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 24px;
  margin-bottom: clamp(24px, 4vh, 40px);
}

.ac-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  color: #0a0a0a;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  box-shadow:
    0 0 0 1px rgba(212, 168, 83, 0.25),
    0 8px 28px rgba(212, 168, 83, 0.35);
  transition: background 0.2s, transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.ac-cta-primary svg {
  transition: transform 0.2s var(--ease);
}

.ac-cta-primary:hover {
  background: linear-gradient(135deg, #fff0c8, var(--gold-bright));
  transform: translateY(-2px);
  box-shadow:
    0 0 0 1px rgba(240, 215, 140, 0.4),
    0 12px 36px rgba(212, 168, 83, 0.45);
}

.ac-cta-primary:hover svg {
  transform: translate(2px, -2px);
}

.ac-cta-primary:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 3px;
}

.ac-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 24px 40px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.ac-stat-val {
  display: block;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--ink);
}

.ac-stat-label {
  display: block;
  margin-top: 6px;
  font-size: 0.5625rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}

/* Car — absolute positioning shared by hero + pricing */
.ac-car-wrap {
  position: absolute;
  left: 54%;
  top: 56%;
  width: min(38vw, 500px);
  transform: translate(-50%, -50%);
  z-index: 20;
  pointer-events: none;
  overflow: visible;
}

/* Hero: bgword lives inside car-wrap, always under the car image */
.ac-pin > .ac-car-wrap {
  z-index: 7;
  isolation: isolate;
}

.ac-pin > .ac-car-wrap .ac-bgword {
  z-index: 0;
}

.ac-car {
  position: relative;
  z-index: 2;
  width: 100%;
  transform-origin: center center;
  transform:
    translate(var(--car-shift-x), var(--car-shift-y))
    scale(calc(var(--car-scale) * (1 + var(--p) * 0.02)))
    translateY(calc(var(--t) * -5px));
  isolation: isolate;
}

.ac-frames {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: transparent;
}

.ac-frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  opacity: 0;
  will-change: opacity;
  user-select: none;
  pointer-events: none;
}

.ac-frame.is-active {
  opacity: 1;
  z-index: 2;
}

.ac-beam {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.25) 50%, transparent 60%);
  transform: translateX(calc(-130% + var(--t) * 60%));
  opacity: var(--wash, 0);
  mix-blend-mode: screen;
}

.ac-shine {
  position: absolute;
  inset: -30% -50%;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(115deg, transparent 42%, rgba(255,255,255,0.35) 50%, transparent 58%);
  transform: translateX(calc(-90% + var(--t) * 50%));
  opacity: var(--shine, 0);
  mix-blend-mode: screen;
}

.ac-scroll-hint {
  position: fixed;
  z-index: 25;
  left: 50%;
  top: 0;
  bottom: auto;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 14px 22px 12px;
  border-radius: 999px;
  background: rgba(8, 8, 10, 0.72);
  border: 1px solid rgba(212, 168, 83, 0.35);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  pointer-events: none;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.25s var(--ease), visibility 0.25s var(--ease);
}

.ac-scroll-hint.is-hidden {
  opacity: 0;
  visibility: hidden;
}

.ac-scroll-wheel {
  color: var(--gold-bright);
  line-height: 0;
}

.ac-scroll-wheel-dot {
  animation: ac-wheel-scroll 1.8s ease-in-out infinite;
}

@keyframes ac-wheel-scroll {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(8px); opacity: 0.35; }
}

.ac-scroll-title {
  margin: 0;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
}

.ac-scroll-sub {
  margin: 0;
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.45);
}

@media (min-width: 900px) {
  :root {
    --pricing-text-lift: 4vh;
    --page-bg:
      radial-gradient(ellipse 90% 70% at 12% 8%, rgba(61, 139, 255, 0.14), transparent 62%),
      radial-gradient(ellipse 55% 45% at 72% 88%, rgba(212, 168, 83, 0.1), transparent 65%),
      radial-gradient(ellipse 75% 60% at 50% 40%, rgba(61, 139, 255, 0.06), transparent 65%),
      var(--bg);
  }

  .ac-atmo {
    display: block;
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
    background:
      radial-gradient(ellipse 52% 44% at 14% 16%, rgba(61, 139, 255, 0.24), transparent 68%),
      radial-gradient(ellipse 40% 34% at 86% 74%, rgba(212, 168, 83, 0.14), transparent 72%);
    animation: ac-atmo-pulse 16s var(--ease) infinite alternate;
  }

  .ac-atmo::before,
  .ac-atmo::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    filter: blur(64px);
    animation: ac-drift 18s var(--ease) infinite;
  }

  .ac-atmo::before {
    width: 300px;
    height: 300px;
    top: 10%;
    left: 20%;
    background: rgba(61, 139, 255, 0.22);
  }

  .ac-atmo::after {
    width: 240px;
    height: 240px;
    bottom: 16%;
    right: 6%;
    background: rgba(212, 168, 83, 0.16);
    animation-delay: -6s;
  }

  @keyframes ac-atmo-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.72; }
  }

  .ac-page-bg .ac-orb {
    opacity: 0.42;
    filter: blur(92px);
  }

  .ac-orb--1 {
    width: 480px;
    height: 480px;
    top: 2%;
    left: 0%;
    background: rgba(61, 139, 255, 0.36);
    animation-duration: 14s;
  }

  .ac-orb--2 {
    width: 360px;
    height: 360px;
    bottom: 6%;
    right: 2%;
    background: rgba(212, 168, 83, 0.3);
    animation-duration: 18s;
    animation-delay: -5s;
  }

  .ac-orb--3 {
    width: 260px;
    height: 260px;
    top: 36%;
    left: 50%;
    background: rgba(255, 255, 255, 0.09);
    animation-duration: 20s;
    animation-delay: -9s;
  }

  .ac-pin > .ac-car-wrap .ac-bgword {
    left: 50%;
    top: 48%;
    font-size: clamp(5.5rem, 22vw, 14rem);
    -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.15);
    transform: translate(calc(-50% + var(--p) * -8px), -50%) scale(calc(1.15 + var(--p) * 0.04));
    transition: -webkit-text-stroke-color 0.5s var(--ease);
  }

  .ac-scene[data-step="4"] .ac-bgword {
    -webkit-text-stroke-color: rgba(212, 168, 83, 0.24);
  }

  .ac-scroll-hint {
    position: fixed;
    left: 50%;
    right: auto;
    bottom: auto;
    transform: translateX(-50%);
    z-index: 25;
    max-width: none;
    width: auto;
    padding: 14px 22px 12px;
    gap: 6px;
  }

  .ac-pricing-head {
    transform: translateY(calc(-1 * var(--pricing-text-lift)));
  }

  .ac-scroll-hint .ac-scroll-sub {
    display: block;
  }

  .ac-scroll-hint .ac-scroll-title {
    font-size: 0.6875rem;
    letter-spacing: 0.18em;
    white-space: normal;
  }

  .ac-scroll-hint .ac-scroll-wheel svg {
    width: 22px;
    height: 30px;
  }
}

/* ── Tablet ── */
@media (max-width: 1023px) {
  :root {
    --car-scale: 1.55;
    --car-shift-x: 52%;
    --car-shift-y: 4%;
    --scroll-hint-shift-x: 0px;
    --scene-height: 420vh;
  }

  .ac-left {
    flex: 0 0 min(50vw, 460px);
  }

  .ac-pin > .ac-car-wrap {
    left: 58%;
    width: min(44vw, 460px);
  }

  .ac-pricing-head {
    flex: 0 0 min(50vw, 460px);
    max-width: min(50vw, 460px);
  }

  .ac-section-head {
    flex: 0 0 min(50vw, 460px);
    max-width: min(50vw, 460px);
  }

  .ac-display-line {
    font-size: clamp(1.75rem, 4.8vw, 3rem);
  }

  .ac-stats {
    gap: 20px 28px;
  }
}

/* ── Mobile / tablet portrait ── */
@media (max-width: 899px) {
  :root {
    --car-scale: 1;
    --car-shift-x: 0;
    --car-shift-y: 0;
    --text-shift-y: 0%;
    --scroll-hint-shift-x: 0px;
    /* Longer scroll so 5 hero frames change at a readable pace */
    --scene-height: 380vh;
    --gutter: clamp(16px, 5vw, 24px);
    --pricing-text-lift: 0;
    --section-break: clamp(16px, 2.8vh, 28px);
    --section-edge: clamp(10px, 1.6vh, 16px);
    --section-gap: var(--section-break);
    --section-pad-top: var(--section-edge);
    --section-pad-bottom: var(--section-edge);
    --pricing-gallery-gap: var(--section-gap);
    --hero-top-gap: clamp(12px, 2.4vh, 22px);
    --block-gap: var(--section-gap);
    --mobile-car-width: min(88vw, 400px);
  }

  .ac-scene {
    height: var(--scene-height);
    margin-bottom: var(--section-gap);
  }

  .ac-page-bg .ac-orb {
    display: none;
  }

  .ac-pin {
    display: grid;
    grid-template-rows: auto auto auto auto;
    grid-template-columns: minmax(0, 1fr);
  }

  .ac-top {
    grid-row: 1;
    grid-column: 1;
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: none;
    box-sizing: border-box;
    padding: max(10px, env(safe-area-inset-top, 0px)) var(--gutter) 0;
    gap: 10px;
  }

  /* Single horizontal inset for every main block on mobile */
  .ac-hero-utp,
  .ac-hero-body,
  .ac-pricing,
  .ac-gallery,
  .ac-reviews,
  .ac-cta,
  .ac-footer {
    padding-left: var(--gutter);
    padding-right: var(--gutter);
    box-sizing: border-box;
  }

  .ac-top-brand {
    gap: clamp(8px, 2.5vw, 12px);
  }

  .ac-top-tagline {
    display: none;
  }

  .ac-logo img {
    height: clamp(28px, 7vw, 36px);
  }

  .ac-top-phone {
    font-size: 0.8125rem;
    letter-spacing: 0.02em;
  }

  .ac-top-phone.phone-reveal {
    max-width: 52vw;
  }

  .ac-pin > .ac-car-wrap .ac-bgword {
    top: 48%;
    left: 50%;
    font-size: clamp(3.25rem, 28vw, 6rem);
    opacity: 0.9;
  }

  .ac-scene .ac-stage:not(.ac-stage--pricing) {
    display: contents;
  }

  .ac-scene .ac-left {
    display: contents;
  }

  .ac-scene .ac-hero {
    display: contents;
  }

  .ac-hero-utp {
    grid-row: 2;
    grid-column: 1;
    position: relative;
    z-index: 5;
    width: 100%;
    margin-bottom: 0;
    display: block;
    overflow: visible;
    /* Extra top space so scroll-hint under logo doesn't overlap UTP */
    padding: calc(var(--hero-top-gap) * 1.2 + 56px) var(--gutter) 0;
    box-sizing: border-box;
  }

  .ac-hero-utp .ac-display {
    grid-column: 1;
    width: 100%;
    margin-bottom: 0;
  }

  .ac-hero-utp .ac-display-line {
    display: block;
    white-space: normal;
  }

  .ac-scroll-hint.ac-scroll-hint--mobile {
    position: fixed !important;
    left: 50% !important;
    right: auto !important;
    bottom: auto !important;
    margin-top: 0;
    transform: translateX(-50%) !important;
    z-index: 30;
    max-width: none;
    width: auto;
    flex-shrink: 0;
    padding: 8px 10px 7px;
    gap: 4px;
  }

  .ac-scroll-hint.ac-scroll-hint--mobile .ac-scroll-sub {
    display: none;
  }

  .ac-scroll-hint.ac-scroll-hint--mobile .ac-scroll-title {
    font-size: 0.5625rem;
    letter-spacing: 0.1em;
    white-space: nowrap;
  }

  .ac-scroll-hint.ac-scroll-hint--mobile .ac-scroll-wheel svg {
    width: 18px;
    height: 24px;
  }

  .ac-hero-body {
    grid-row: 4;
    grid-column: 1;
    position: relative;
    z-index: 5;
    width: 100%;
    margin-top: clamp(-28px, -5vh, -16px);
    padding: 0 var(--gutter) max(12px, env(safe-area-inset-bottom, 12px));
    box-sizing: border-box;
  }

  .ac-hero {
    max-width: none;
    width: 100%;
    text-align: left;
    align-items: flex-start;
  }

  .ac-hero-body .ac-tagline {
    margin-bottom: 10px;
    gap: 8px;
    font-size: 0.625rem;
    letter-spacing: 0.18em;
  }

  .ac-scene .ac-car {
    transform: scale(calc(var(--car-scale) * (1 + var(--p) * 0.02)));
  }

  .ac-pin > .ac-car-wrap {
    grid-row: 3;
    grid-column: 1;
    position: relative;
    left: auto;
    top: auto;
    width: var(--mobile-car-width);
    max-width: calc(100vw - var(--gutter) * 2);
    margin: 0 auto;
    transform: none;
    justify-self: center;
    z-index: 4;
  }

  .ac-pin > .ac-car-wrap .ac-frames {
    aspect-ratio: 3 / 2;
    height: auto;
    overflow: hidden;
  }

  .ac-pin > .ac-car-wrap .ac-frame {
    object-position: center;
  }

  .ac-tagline-icon {
    width: 14px;
    height: 14px;
  }

  .ac-display {
    margin-bottom: 16px;
    align-items: flex-start;
  }

  .ac-display-line {
    font-size: clamp(1.65rem, 9.5vw, 2.35rem);
    line-height: 0.95;
  }

  .ac-hero-body .ac-story {
    margin-bottom: 12px;
  }

  .ac-story-meta {
    justify-content: flex-start;
    gap: 10px;
    margin-bottom: 8px;
    font-size: 0.625rem;
  }

  .ac-story-head {
    max-width: none;
    font-size: 0.9375rem;
    line-height: 1.35;
  }

  .ac-story-body {
    max-width: none;
    font-size: 0.8125rem;
    line-height: 1.55;
    margin-bottom: 12px;
  }

  .ac-bar {
    max-width: 140px;
    margin-inline: 0;
  }

  .ac-hero-body .ac-cta-row {
    justify-content: flex-start;
    width: 100%;
    margin-bottom: 14px;
  }

  .ac-cta-primary {
    width: 100%;
    justify-content: center;
    min-height: 48px;
    padding: 14px 20px;
    font-size: 0.6875rem;
    letter-spacing: 0.1em;
  }

  .ac-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px 12px;
    width: 100%;
    justify-content: stretch;
  }

  .ac-stat-val {
    font-size: clamp(1.125rem, 5vw, 1.5rem);
  }

  .ac-stat-label {
    margin-top: 4px;
    font-size: 0.5rem;
    letter-spacing: 0.12em;
  }

  .ac-scroll-hint:not(.ac-scroll-hint--mobile) {
    padding: 10px 16px 9px;
    gap: 4px;
    max-width: calc(100vw - 32px);
  }

  .ac-scroll-title {
    font-size: 0.625rem;
    letter-spacing: 0.14em;
  }

  .ac-scroll-sub {
    font-size: 0.5625rem;
    text-align: center;
  }
}

/* ── Small phones ── */
@media (max-width: 389px) {
  :root {
    --car-scale: 0.96;
    --scene-height: 340vh;
  }

  .ac-top-phone {
    font-size: 0.75rem;
  }

  .ac-display-line {
    font-size: clamp(1.45rem, 9vw, 1.85rem);
  }

  .ac-tagline {
    letter-spacing: 0.14em;
  }
}

/* ── Short mobile screens ── */
@media (max-width: 899px) and (max-height: 700px) {
  :root {
    --car-scale: 0.92;
    --scene-height: 340vh;
  }

  .ac-tagline {
    margin-bottom: 10px;
  }

  .ac-display {
    margin-bottom: 12px;
  }

  .ac-story {
    margin-bottom: 12px;
  }

  .ac-cta-row {
    margin-bottom: 14px;
  }

  .ac-stats {
    gap: 6px 8px;
  }
}

/* ── Large desktop ── */
@media (min-width: 1280px) {
  :root {
    --content-max: 1280px;
  }

  .ac-left {
    flex-basis: 520px;
  }
}

/* ── Pricing section (interactive car diagram) ── */

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.ac-pricing {
  position: relative;
  z-index: 1;
  margin-top: 0;
  margin-bottom: var(--section-gap);
  padding: var(--section-pad-top) var(--gutter) clamp(90px, 16.8vh, 146px);
  background: transparent;
  content-visibility: auto;
  contain-intrinsic-size: auto 900px;
}

.ac-pricing-inner {
  width: min(100%, var(--content-max));
  margin: 0 auto;
}

.ac-stage--pricing {
  position: relative;
  min-height: auto;
  align-items: flex-start;
  padding-top: 0;
  /* Horizontal inset comes from .ac-pricing — avoid double gutter */
  padding-left: 0;
  padding-right: 0;
}

.ac-section-head {
  max-width: min(46vw, 520px);
  margin: 0;
  text-align: left;
  align-items: flex-start;
  z-index: 2;
}

.ac-pricing-head {
  transform: translateY(calc(-1 * var(--pricing-text-lift)));
}

.ac-section-head .ac-tagline {
  margin-bottom: clamp(16px, 2.5vh, 24px);
}

.ac-section-head .ac-display {
  margin-bottom: clamp(16px, 2.5vh, 20px);
  align-items: flex-start;
}

.ac-section-lead {
  margin: 0 0 clamp(20px, 3vh, 28px);
  max-width: 38ch;
  font-size: clamp(0.8125rem, 1.4vw, 0.9375rem);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.55);
}

.ac-pricing-lead {
  max-width: 34ch;
}

.ac-pricing-cta-row {
  display: flex;
  justify-content: flex-start;
  margin-bottom: clamp(20px, 3vh, 28px);
}

.ac-car-wrap--interactive {
  pointer-events: auto;
  top: var(--pricing-car-top);
}

.ac-car--pricing {
  transform:
    translate(var(--car-shift-x), calc(var(--car-shift-y) + 6%))
    scale(var(--car-scale));
}

.ac-frames--pricing {
  aspect-ratio: 3 / 2;
}

.ac-frames--pricing .ac-frame {
  opacity: 1;
  z-index: 1;
}

.ac-services-list {
  position: absolute;
  inset: 0;
  list-style: none;
  margin: 0;
  padding: 0;
}

.ac-service-item {
  position: absolute;
  top: var(--y);
  left: var(--x);
  transform: translate(-50%, -50%);
  z-index: 10;
}

.ac-service-item.is-active {
  z-index: 1001;
}

.ac-service-trigger {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  border-radius: 50%;
}

.ac-service-dot {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #fff;
  color: #0a0a0a;
  border: 1px solid rgba(0, 0, 0, 0.85);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.9);
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), background 0.2s;
}

.ac-service-dot::before {
  content: "+";
}

.ac-service-item.is-active .ac-service-dot {
  background: var(--gold-bright);
  border-color: rgba(0, 0, 0, 0.7);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.95),
    0 0 14px rgba(212, 168, 83, 0.45);
  transform: scale(1.08);
}

.ac-service-item.is-active .ac-service-dot::before {
  content: "×";
}

.ac-service-item:not(.is-active) .ac-service-dot {
  animation: ac-hotspot-pulse 2.4s ease-in-out infinite;
}

.ac-service-item:nth-child(2n):not(.is-active) .ac-service-dot {
  animation-delay: -0.8s;
}

.ac-service-item:nth-child(3n):not(.is-active) .ac-service-dot {
  animation-delay: -1.6s;
}

@keyframes ac-hotspot-pulse {
  0%, 100% { box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.9); }
  50% { box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.9), 0 0 0 6px rgba(212, 168, 83, 0.22); }
}

.ac-service-card {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 168px;
  max-width: 210px;
  padding: 11px 13px;
  border-radius: 10px;
  background: linear-gradient(145deg, rgba(24, 24, 28, 0.96), rgba(8, 8, 10, 0.98));
  border: 1px solid rgba(212, 168, 83, 0.28);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  pointer-events: none;
}

.ac-service-item.is-active .ac-service-card {
  display: block;
  animation: ac-card-in 0.22s var(--ease);
}

@keyframes ac-card-in {
  from { opacity: 0; transform: translateX(-50%) translateY(6px); }
  to { opacity: 1; transform: translateX(-50%) translateY(0); }
}

.ac-service-item[data-service="1"] .ac-service-card,
.ac-service-item[data-service="6"] .ac-service-card {
  left: 0;
  transform: none;
}

.ac-service-item[data-service="1"].is-active .ac-service-card,
.ac-service-item[data-service="6"].is-active .ac-service-card {
  animation-name: ac-card-in-left;
}

@keyframes ac-card-in-left {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

.ac-service-item[data-service="5"] .ac-service-card {
  left: auto;
  right: 0;
  transform: none;
}

.ac-service-item[data-service="4"] .ac-service-card,
.ac-service-item[data-service="8"] .ac-service-card,
.ac-service-item[data-service="10"] .ac-service-card {
  left: auto;
  right: 0;
  transform: none;
}

.ac-service-name {
  display: block;
  margin-bottom: 6px;
  font-size: 0.625rem;
  font-weight: 600;
  line-height: 1.35;
  color: var(--ink);
}

.ac-service-price {
  display: block;
  font-size: 0.875rem;
  font-weight: 800;
  line-height: 1.1;
  color: var(--gold-bright);
}

.ac-price-from {
  font-size: 0.5625rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.65);
  margin-right: 3px;
}

.ac-pricing-hint {
  display: none;
  margin: 0;
  max-width: 34ch;
  text-align: left;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.45);
}

.ac-pricing-hint strong {
  color: var(--gold-bright);
  font-weight: 700;
}

.ac-pricing-cta {
  justify-content: center;
}

/* ── Gallery section ── */

.ac-gallery {
  position: relative;
  z-index: 1;
  margin-top: 0;
  margin-bottom: var(--section-gap);
  padding: var(--section-pad-top) var(--gutter) var(--section-pad-bottom);
  background: transparent;
  content-visibility: auto;
  contain-intrinsic-size: auto 1100px;
}

.ac-gallery-inner {
  width: min(100%, var(--content-max));
  margin: 0 auto;
}

.ac-gallery-head {
  max-width: none;
  margin-bottom: clamp(28px, 4vh, 44px);
}

.ac-gallery-layout {
  display: flex;
  flex-direction: column;
  gap: clamp(18px, 2.5vh, 28px);
}

.ac-gallery-videos {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(12px, 1.6vw, 18px);
}

.ac-gallery-item--video {
  display: flex;
  flex-direction: column;
  min-height: 0;
  aspect-ratio: 16 / 9;
}

.ac-gallery-strip-wrap {
  position: relative;
  min-width: 0;
}

.ac-gallery-strip-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: clamp(12px, 1.8vh, 18px);
}

.ac-gallery-strip-title {
  margin: 0;
  font-size: clamp(0.6875rem, 1.2vw, 0.8125rem);
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.58);
}

.ac-gallery-strip-controls {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.ac-gallery-strip-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  color: var(--ink);
  cursor: pointer;
  transition: background 0.2s var(--ease), border-color 0.2s var(--ease), transform 0.2s var(--ease);
}

.ac-gallery-strip-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.22);
  transform: translateY(-1px);
}

.ac-gallery-strip-btn:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.ac-gallery-strip-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  transform: none;
}

.ac-gallery-strip {
  display: flex;
  gap: clamp(12px, 1.6vw, 18px);
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding: 4px 2px 12px;
  margin: 0 calc(-1 * var(--gutter));
  padding-inline: var(--gutter);
  scrollbar-width: none;
  cursor: grab;
  touch-action: pan-x pinch-zoom;
}

.ac-gallery-strip.is-dragging {
  cursor: grabbing;
  scroll-snap-type: none;
  scroll-behavior: auto;
  user-select: none;
  touch-action: none;
}

.ac-gallery-strip::-webkit-scrollbar {
  display: none;
}

.ac-gallery-strip-item {
  flex: 0 0 clamp(220px, 28vw, 320px);
  width: clamp(220px, 28vw, 320px);
  height: auto;
  aspect-ratio: 3 / 2;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  cursor: grab;
  touch-action: pan-x;
}

.ac-gallery-strip.is-dragging .ac-gallery-strip-item {
  cursor: grabbing;
}

.ac-gallery-item {
  position: relative;
  margin: 0;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.28);
}

.ac-gallery-item--photo {
  display: block;
  border: 0;
  cursor: grab;
  background: #0a0a0a;
}

.ac-gallery-video {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  background: #0a0a0a;
}

.ac-gallery-item--photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s var(--ease), filter 0.35s var(--ease);
}

.ac-gallery-strip-item img {
  min-height: 100%;
  pointer-events: none;
  -webkit-user-drag: none;
  user-select: none;
}

.ac-gallery-item--photo:hover img,
.ac-gallery-item--photo:focus-visible img {
  transform: scale(1.04);
  filter: brightness(1.06);
}

.ac-gallery-strip.is-dragging .ac-gallery-item--photo:hover img {
  transform: none;
  filter: none;
}

.ac-gallery-item--photo:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.ac-gallery-zoom {
  position: absolute;
  right: 12px;
  bottom: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
  background: rgba(3, 3, 4, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  pointer-events: none;
}

.ac-gallery-caption {
  position: absolute;
  left: 14px;
  bottom: 14px;
  margin: 0;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
  background: rgba(3, 3, 4, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  pointer-events: none;
}

/* ── Reviews section ── */

.ac-reviews {
  position: relative;
  z-index: 1;
  margin-bottom: var(--section-gap);
  padding: var(--section-pad-top) var(--gutter) var(--section-pad-bottom);
  background: transparent;
  content-visibility: auto;
  contain-intrinsic-size: auto 700px;
}

.ac-reviews-inner {
  width: min(100%, var(--content-max));
  margin: 0 auto;
}

.ac-reviews-head {
  max-width: none;
  margin-bottom: clamp(28px, 4vh, 44px);
}

.ac-reviews-strip-wrap {
  min-width: 0;
}

.ac-reviews-strip-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: clamp(12px, 1.8vh, 18px);
}

.ac-reviews-strip-title {
  margin: 0;
  font-size: clamp(0.6875rem, 1.2vw, 0.8125rem);
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.58);
}

.ac-reviews-strip {
  display: flex;
  gap: clamp(12px, 1.6vw, 18px);
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding: 4px 2px 12px;
  margin: 0 calc(-1 * var(--gutter));
  padding-inline: var(--gutter);
  scrollbar-width: none;
  cursor: grab;
  touch-action: pan-x pinch-zoom;
}

.ac-reviews-strip.is-dragging {
  cursor: grabbing;
  scroll-snap-type: none;
  scroll-behavior: auto;
  user-select: none;
  touch-action: none;
}

.ac-reviews-strip::-webkit-scrollbar {
  display: none;
}

.ac-review-card {
  flex: 0 0 clamp(280px, 34vw, 360px);
  width: clamp(280px, 34vw, 360px);
  min-height: clamp(220px, 28vw, 260px);
  margin: 0;
  padding: clamp(18px, 2.2vw, 24px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.22);
  scroll-snap-align: start;
  scroll-snap-stop: always;
  cursor: grab;
}

.ac-reviews-strip.is-dragging .ac-review-card {
  cursor: grabbing;
}

.ac-review-top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.ac-review-name {
  margin: 0;
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  font-weight: 600;
  color: var(--ink);
}

.ac-review-date {
  margin: 0;
  flex-shrink: 0;
  font-size: 0.6875rem;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.42);
}

.ac-review-stars {
  margin: 0 0 12px;
  font-size: 0.8125rem;
  letter-spacing: 0.12em;
  color: var(--gold-bright);
}

.ac-review-text {
  margin: 0;
  font-size: clamp(0.8125rem, 1.35vw, 0.9375rem);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.72);
}

.ac-reviews-source {
  margin: clamp(14px, 2vh, 20px) 0 0;
  font-size: 0.8125rem;
}

.ac-reviews-source a {
  color: var(--gold-bright);
  text-decoration: none;
  border-bottom: 1px solid rgba(240, 215, 140, 0.35);
  transition: color 0.2s var(--ease), border-color 0.2s var(--ease);
}

.ac-reviews-source a:hover {
  color: #fff0c8;
  border-color: rgba(240, 215, 140, 0.7);
}

.ac-lightbox {
  position: fixed;
  inset: 0;
  z-index: 5500;
  display: grid;
  place-items: center;
  padding: clamp(16px, 4vw, 32px);
  background: rgba(3, 3, 4, 0.88);
  backdrop-filter: blur(10px);
}

.ac-lightbox[hidden] {
  display: none;
}

.ac-lightbox-dialog {
  position: relative;
  width: min(100%, 1080px);
  max-height: min(88vh, 900px);
}

.ac-lightbox-image {
  display: block;
  width: 100%;
  max-height: min(88vh, 900px);
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.45);
}

.ac-lightbox-close,
.ac-lightbox-nav {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  background: rgba(3, 3, 4, 0.72);
  color: var(--ink);
  cursor: pointer;
  backdrop-filter: blur(8px);
  transition: background 0.2s var(--ease), transform 0.2s var(--ease);
}

.ac-lightbox-close:hover,
.ac-lightbox-nav:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-1px);
}

.ac-lightbox-close:focus-visible,
.ac-lightbox-nav:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.ac-lightbox-close {
  top: clamp(12px, 3vh, 24px);
  right: clamp(12px, 3vw, 24px);
  z-index: 2;
}

.ac-lightbox-nav {
  top: 50%;
  transform: translateY(-50%);
}

.ac-lightbox-nav:hover {
  transform: translateY(calc(-50% - 1px));
}

.ac-lightbox-nav--prev { left: clamp(8px, 2vw, 16px); }
.ac-lightbox-nav--next { right: clamp(8px, 2vw, 16px); }

.ac-lightbox-meta {
  position: absolute;
  left: 50%;
  bottom: clamp(12px, 3vh, 24px);
  transform: translateX(-50%);
  margin: 0;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(3, 3, 4, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 899px) {
  .ac-pricing {
    margin-bottom: var(--section-gap);
    padding: var(--section-pad-top) var(--gutter) 0;
  }

  .ac-stage--pricing {
    display: grid;
    grid-template-rows: auto auto auto auto;
    align-items: stretch;
    min-height: auto;
    justify-content: stretch;
    gap: clamp(14px, 2.5vh, 20px);
    width: 100%;
    max-width: none;
    padding: 0 0 max(12px, env(safe-area-inset-bottom, 12px));
  }

  .ac-pricing-inner {
    width: 100%;
    max-width: none;
  }

  .ac-stage--pricing::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background: linear-gradient(180deg, transparent 0%, rgba(3, 3, 4, 0.35) 100%);
  }

  .ac-pricing-head {
    display: contents;
  }

  .ac-pricing-intro {
    grid-row: 1;
    position: relative;
    z-index: 3;
    width: 100%;
  }

  .ac-car-wrap--interactive {
    position: relative;
    grid-row: 2;
    align-self: center;
    justify-self: center;
    left: auto;
    top: auto;
    width: var(--mobile-car-width);
    max-width: calc(100vw - var(--gutter) * 2);
    margin: 0 auto;
    transform: none;
    z-index: 6;
    isolation: isolate;
  }

  .ac-service-item.is-active {
    z-index: 20;
  }

  .ac-car--pricing {
    transform: none;
  }

  .ac-pricing-cta-row {
    grid-row: 3;
    position: relative;
    z-index: 3;
    width: 100%;
    margin-bottom: 0;
    pointer-events: auto;
  }

  .ac-pricing-hint {
    grid-row: 4;
    position: relative;
    z-index: 3;
    display: block;
    margin: 0;
  }

  .ac-gallery-head .ac-display-line--inline {
    white-space: normal;
    font-size: clamp(1.65rem, 9.5vw, 2.35rem);
  }

  .ac-pricing-head .ac-display-line--inline {
    white-space: normal;
    font-size: clamp(1.65rem, 9.5vw, 2.35rem);
  }

  .ac-pricing-cta {
    width: 100%;
  }

  .ac-pricing-lead {
    max-width: none;
    margin-bottom: 0;
  }

  .ac-pricing-intro .ac-tagline {
    margin-bottom: 14px;
  }

  .ac-pricing-intro .ac-display {
    margin-bottom: 12px;
  }

  .ac-gallery {
    margin-bottom: var(--section-gap);
    padding: var(--section-pad-top) var(--gutter) var(--section-pad-bottom);
  }

  .ac-gallery-head {
    max-width: none;
  }

  .ac-gallery-videos {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .ac-gallery-item--video {
    min-height: min(52vw, 280px);
    aspect-ratio: auto;
  }

  .ac-gallery-strip-item {
    flex-basis: clamp(240px, 72vw, 300px);
    width: clamp(240px, 72vw, 300px);
  }

  .ac-reviews-head .ac-display-line--inline {
    white-space: normal;
    font-size: clamp(1.65rem, 9.5vw, 2.35rem);
  }

  .ac-review-card {
    flex-basis: clamp(260px, 82vw, 320px);
    width: clamp(260px, 82vw, 320px);
  }

  .ac-lightbox-nav {
    display: none;
  }

  .ac-service-dot {
    width: 20px;
    height: 20px;
    font-size: 0.75rem;
  }

  .ac-service-trigger {
    width: 20px;
    height: 20px;
    touch-action: manipulation;
  }

  .ac-service-card {
    display: none !important;
  }

  .ac-service-mobile-sheet {
    display: none;
    position: fixed;
    left: var(--gutter);
    right: var(--gutter);
    bottom: calc(72px + env(safe-area-inset-bottom, 0px) + 12px);
    z-index: 5000;
    padding: 16px 18px;
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(212, 168, 83, 0.35);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.55);
    pointer-events: auto;
  }

  .ac-service-mobile-sheet.is-visible {
    display: block;
    animation: ac-card-in-mobile 0.24s var(--ease);
  }

  .ac-service-mobile-sheet .ac-service-name {
    font-size: 0.8125rem;
    line-height: 1.45;
  }

  .ac-service-mobile-sheet .ac-service-price {
    font-size: 1rem;
  }

  @keyframes ac-card-in-mobile {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
  }
}

/* ── Phone reveal (как engine-anatomy.ru) ── */

.phone-reveal:not(.is-revealed) {
  cursor: pointer;
}

.phone-reveal__line {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  line-height: 1.15;
}

.ac-top-phone .phone-reveal__line {
  justify-content: flex-end;
}

.phone-reveal__value {
  display: inline;
  line-height: inherit;
  white-space: nowrap;
}

.phone-reveal__eye {
  display: block;
  width: 1em;
  height: 1em;
  min-width: 16px;
  min-height: 16px;
  flex: 0 0 auto;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.75;
  opacity: 0.72;
}

.phone-reveal.is-revealed .phone-reveal__eye {
  display: none;
}

.phone-reveal:not(.is-revealed) .phone-reveal__fade {
  display: inline;
  vertical-align: baseline;
  user-select: none;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(90deg, #000 0%, #000 4%, rgba(0, 0, 0, 0.49) 27%, transparent 70%);
  mask-image: linear-gradient(90deg, #000 0%, #000 4%, rgba(0, 0, 0, 0.49) 27%, transparent 70%);
}

.phone-reveal__hint {
  display: block;
  margin-top: 4px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.42);
  text-align: right;
}

.ac-top-phone.phone-reveal {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-decoration: none;
}

.ac-top-phone.is-revealed .phone-reveal__hint {
  color: rgba(212, 168, 83, 0.75);
}

/* ── CTA / lead form ── */

.ac-cta {
  position: relative;
  z-index: 1;
  padding: 0 var(--gutter) clamp(72px, 12vh, 112px);
  content-visibility: auto;
  contain-intrinsic-size: auto 640px;
}

#zapis {
  scroll-margin-bottom: calc(88px + env(safe-area-inset-bottom, 0px));
}

.ac-cta-inner {
  width: min(100%, var(--content-max));
  margin: 0 auto;
}

.ac-cta-panel {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 0;
  padding: 8px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 24px 64px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  overflow: hidden;
}

.ac-cta-visual {
  position: relative;
  min-height: 420px;
  border-radius: 14px;
  overflow: hidden;
}

.ac-cta-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.ac-cta-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 20%, rgba(3, 3, 4, 0.92) 100%),
    linear-gradient(to top, rgba(3, 3, 4, 0.65), transparent 45%);
}

.ac-cta-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(24px, 4vw, 36px);
  border-radius: 14px;
  background: rgba(8, 8, 10, 0.88);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.ac-cta-tagline {
  margin-bottom: clamp(14px, 2vh, 20px);
}

.ac-cta-lead {
  max-width: 42ch;
  margin-bottom: clamp(20px, 3vh, 28px);
}

.ac-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.ac-cta-call {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--ink);
  text-decoration: none;
  background: linear-gradient(135deg, rgba(61, 139, 255, 0.95), rgba(45, 110, 220, 0.95));
  border: 1px solid rgba(61, 139, 255, 0.35);
  box-shadow: 0 8px 24px rgba(61, 139, 255, 0.25);
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.ac-cta-call svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
}

.ac-cta-call:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(61, 139, 255, 0.32);
}

.ac-lead-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ac-lead-form input,
.ac-lead-form textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: var(--ink);
  font: inherit;
  font-size: 0.9375rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.ac-lead-form input::placeholder,
.ac-lead-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.38);
}

.ac-lead-form input:focus,
.ac-lead-form textarea:focus {
  outline: none;
  border-color: rgba(212, 168, 83, 0.55);
  box-shadow: 0 0 0 3px rgba(212, 168, 83, 0.12);
}

.ac-lead-form textarea {
  min-height: 88px;
  resize: vertical;
}

.ac-lead-submit {
  width: 100%;
  justify-content: center;
  border: none;
  cursor: pointer;
  margin-top: 4px;
}

.ac-lead-form.form-submitting .ac-lead-submit {
  opacity: 0.72;
  pointer-events: none;
}

.ac-form-note {
  margin: 4px 0 0;
  font-size: 0.75rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.42);
}

.ac-form-status {
  display: none;
  margin: 0;
  padding: 12px 14px;
  border-radius: 10px;
  font-size: 0.875rem;
  line-height: 1.45;
}

.ac-form-status.is-visible {
  display: block;
}

.ac-form-status.is-success {
  color: #b8f5c8;
  background: rgba(34, 120, 64, 0.22);
  border: 1px solid rgba(72, 180, 110, 0.35);
}

.ac-form-status.is-error {
  color: #ffc9c9;
  background: rgba(140, 40, 40, 0.22);
  border: 1px solid rgba(200, 80, 80, 0.35);
}

/* ── Lead popup modal ── */

.ac-lead-modal {
  position: fixed;
  inset: 0;
  z-index: 5200;
  display: grid;
  place-items: center;
  padding: max(16px, env(safe-area-inset-top, 0px)) var(--gutter) max(16px, env(safe-area-inset-bottom, 0px));
  overscroll-behavior: none;
}

.ac-lead-modal[hidden] {
  display: none;
}

.ac-lead-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 3, 4, 0.82);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.ac-lead-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 420px);
  max-height: min(90dvh, 640px);
  overflow: auto;
  overscroll-behavior: contain;
  touch-action: pan-y;
  padding: clamp(22px, 4vw, 28px);
  border-radius: 18px;
  background: rgba(12, 12, 14, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow:
    0 28px 72px rgba(0, 0, 0, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  animation: ac-lead-modal-in 0.28s var(--ease);
}

@keyframes ac-lead-modal-in {
  from { opacity: 0; transform: translateY(14px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.ac-lead-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  color: var(--ink);
  cursor: pointer;
}

.ac-lead-modal__close:hover {
  background: rgba(255, 255, 255, 0.1);
}

.ac-lead-modal__tagline {
  margin-bottom: 12px;
}

.ac-lead-modal__title {
  margin: 0 0 10px;
  padding-right: 36px;
  font-family: "FSP DEMO - PODIUM Sharp 4.11", "Anton", sans-serif;
  font-size: clamp(1.5rem, 5vw, 1.85rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--ink);
}

.ac-lead-modal__lead {
  margin: 0 0 20px;
  font-size: 0.875rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.55);
}

.ac-lead-form--modal {
  gap: 12px;
}

.ac-lead-form--modal .ac-lead-submit {
  width: 100%;
  justify-content: center;
}

body.ac-lead-modal-open,
html.ac-lead-modal-open {
  overflow: hidden;
  overscroll-behavior: none;
}

/* ── Footer ── */

.ac-footer {
  position: relative;
  z-index: 1;
  padding: 0 var(--gutter) clamp(28px, 5vh, 40px);
}

.ac-footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px 20px;
  width: min(100%, var(--content-max));
  margin: 0 auto;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.ac-cta-primary,
.ac-cta-call,
.ac-mobile-bar a,
.ac-gallery-strip-btn,
.ac-service-trigger,
.phone-reveal {
  -webkit-tap-highlight-color: transparent;
}

.ac-footer-copy {
  margin: 0;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.42);
}

.ac-footer-phone {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  transition: color 0.2s;
}

.ac-footer-phone:hover {
  color: var(--gold-bright);
}

/* ── Mobile bar ── */

.ac-mobile-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 250;
  padding: 10px 16px calc(10px + env(safe-area-inset-bottom, 0px));
  background: rgba(3, 3, 4, 0.96);
  backdrop-filter: blur(16px);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  gap: 10px;
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.35);
}

.ac-mobile-bar a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;
  text-align: center;
}

.ac-mobile-bar-call {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--ink);
}

.ac-mobile-bar-book {
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  color: #0a0a0a;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 4px 16px rgba(212, 168, 83, 0.3);
}

@media (min-width: 600px) and (max-width: 899px) {
  .ac-gallery-videos {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ac-gallery-item--video:last-child {
    grid-column: 1 / -1;
    max-width: calc(50% - 7px);
    justify-self: center;
  }
}

@media (max-width: 899px) {
  .ac-cta-panel {
    grid-template-columns: 1fr;
  }

  .ac-cta-visual {
    min-height: 220px;
  }

  .ac-cta-visual::after {
    background:
      linear-gradient(to top, rgba(3, 3, 4, 0.92), transparent 55%),
      linear-gradient(180deg, transparent 40%, rgba(3, 3, 4, 0.55) 100%);
  }

  .ac-top-phone .phone-reveal__hint {
    display: none;
  }

  .ac-mobile-bar {
    display: flex;
  }

  body.ac-page {
    padding-bottom: calc(72px + env(safe-area-inset-bottom, 0px));
  }

  .ac-footer {
    padding-bottom: calc(88px + env(safe-area-inset-bottom, 0px));
  }

  .ac-footer-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .ac-cta-head .ac-display-line--inline,
  .ac-cta-body .ac-display-line--inline {
    white-space: normal;
  }

  .ac-lead-form input,
  .ac-lead-form textarea {
    font-size: 16px;
  }
}

@media (max-width: 599px) {
  .ac-cta-body {
    /* Inner card pad only — section already has --gutter */
    padding: 20px 16px 24px;
  }

  .ac-cta-call {
    width: 100%;
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .ac-orb, .ac-anim-up { animation: none; opacity: 1; }
  .ac-scroll-wheel-dot { animation: none; }
  .ac-story { transition: none; opacity: 1; }
  .ac-cta-primary:hover { transform: none; }
  .ac-service-dot { animation: none !important; }
  .ac-service-item.is-active .ac-service-card { animation: none; }
  .ac-gallery-item--photo img { transition: none; }
  .ac-gallery-strip { scroll-behavior: auto; }
  .ac-reviews-strip { scroll-behavior: auto; }
}

@media (min-width: 900px) {
  .ac-scene {
    margin-bottom: clamp(28px, 5vh, 56px);
  }

  .ac-pricing {
    margin-bottom: clamp(28px, 5vh, 56px);
    padding-top: calc(var(--section-pad-top) + var(--pricing-text-lift));
    padding-bottom: clamp(240px, 32vh, 300px);
    overflow: visible;
  }

  .ac-gallery {
    padding-top: clamp(20px, 3.2vh, 36px);
  }

  .ac-stage--pricing {
    overflow: visible;
    padding-bottom: clamp(40px, 6vh, 72px);
  }

  .ac-car-wrap--interactive,
  .ac-frames--pricing {
    overflow: visible;
  }
}
