/* ВЕГАС — «Ночной борт». Тёмная кинематографичная неон-система. Bespoke, не связан с генератором. */
@import url('assets/fonts.css');

:root {
  --bg: #0c0612;
  --bg-2: #160f1e;
  --ink: #fff5fc;
  --muted: #c9a8c0;
  --accent: #ff2fd0;
  --accent-2: #ffb703;
  --line: rgba(255,255,255,.10);
  --display: 'Bebas Neue', sans-serif;
  --body: 'Manrope', system-ui, sans-serif;
  --shell: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3 { margin: 0; font-weight: 800; letter-spacing: -.01em; }

/* film grain overlay */
.grain {
  position: fixed; inset: 0; z-index: 1; pointer-events: none; opacity: .05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.eyebrow {
  font-family: var(--body);
  text-transform: uppercase;
  letter-spacing: .28em;
  font-size: .7rem;
  font-weight: 700;
  color: var(--accent);
  margin: 0 0 18px;
}
.kicker {
  display: inline-flex; align-items: center; gap: 12px;
  text-transform: uppercase; letter-spacing: .2em; font-size: .74rem; font-weight: 700;
  color: var(--muted); margin: 0 0 26px;
}
.kicker span { width: 34px; height: 2px; background: var(--accent); }

/* buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 30px; border-radius: 2px; font-weight: 700; font-size: .92rem;
  letter-spacing: .04em; cursor: pointer; border: 1px solid transparent;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
}
.btn--solid {
  background: var(--accent); color: #12010f;
  box-shadow: 0 0 0 rgba(255,47,208,0);
}
.btn--solid:hover { transform: translateY(-2px); box-shadow: 0 14px 40px rgba(255,47,208,.4); }
.btn--line { background: transparent; color: var(--ink); border-color: rgba(255,255,255,.35); }
.btn--line:hover { border-color: var(--accent-2); color: var(--accent-2); }
.btn--block { width: 100%; }

/* NAV */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 40;
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px clamp(20px, 5vw, 56px);
  transition: background .3s ease, padding .3s ease, border-color .3s ease;
  border-bottom: 1px solid transparent;
}
.nav.is-stuck {
  background: rgba(12,6,18,.82); backdrop-filter: blur(14px);
  border-bottom-color: var(--line); padding-top: 14px; padding-bottom: 14px;
}
.nav__brand {
  font-family: var(--display); font-size: 1.7rem; letter-spacing: .08em;
  display: inline-flex; align-items: center; gap: 12px;
}
.nav__dot { width: 11px; height: 11px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 14px var(--accent); }
.nav__links { display: flex; gap: 30px; }
.nav__links a { font-size: .82rem; font-weight: 600; color: var(--muted); letter-spacing: .04em; transition: color .2s; }
.nav__links a:hover { color: var(--ink); }
.nav__cta {
  padding: 11px 22px; border: 1px solid var(--accent); border-radius: 2px;
  font-size: .8rem; font-weight: 700; letter-spacing: .04em; color: var(--ink);
  transition: background .2s, color .2s;
}
.nav__cta:hover { background: var(--accent); color: #12010f; }

/* HERO */
.hero {
  position: relative; min-height: 100vh; display: flex; flex-direction: column;
  justify-content: center; padding: 120px clamp(20px, 5vw, 56px) 90px; overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; opacity: .38; filter: saturate(1.15) contrast(1.05); }
.hero__glow {
  position: absolute; inset: 0; z-index: 1;
  background:
    radial-gradient(circle at 18% 22%, rgba(255,47,208,.42), transparent 42%),
    radial-gradient(circle at 82% 8%, rgba(255,183,3,.28), transparent 40%),
    linear-gradient(180deg, rgba(12,6,18,.35), var(--bg) 92%);
}
.hero__inner { position: relative; z-index: 3; max-width: 900px; }
.hero__title {
  font-family: var(--display); font-weight: 400;
  font-size: clamp(3.6rem, 12vw, 9rem); line-height: .9; letter-spacing: .01em;
  text-transform: uppercase; margin: 0 0 28px;
}
.hero__title em { font-style: normal; color: var(--accent); text-shadow: 0 0 40px rgba(255,47,208,.55); }
.hero__lead { max-width: 560px; font-size: 1.12rem; color: var(--muted); margin: 0 0 36px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 16px; }
.hero__marquee {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 3;
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  padding: 16px 0; overflow: hidden; white-space: nowrap; background: rgba(12,6,18,.4);
}
.marquee__track {
  display: inline-flex; gap: 26px; align-items: center;
  font-family: var(--display); font-size: 1.3rem; letter-spacing: .12em; color: var(--muted);
  animation: marquee 26s linear infinite; will-change: transform;
}
.marquee__track span:nth-child(even) { color: var(--accent); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* COUNTERS */
.counters {
  display: grid; grid-template-columns: repeat(3, 1fr);
  max-width: var(--shell); margin: 0 auto; padding: 90px clamp(20px,5vw,56px);
  gap: 40px;
}
.counters__item { border-left: 2px solid var(--accent); padding-left: 24px; }
.counters__num {
  display: block; font-family: var(--display); font-weight: 400;
  font-size: clamp(3rem, 6vw, 5rem); line-height: 1; color: var(--ink); margin-bottom: 14px;
}
.counters__num--word { color: var(--accent-2); }
.counters__label { color: var(--muted); font-size: .95rem; }

/* generic block */
.block { max-width: var(--shell); margin: 0 auto; padding: 70px clamp(20px,5vw,56px); }
.block__head { max-width: 720px; margin-bottom: 46px; }
.block h2 { font-size: clamp(2rem, 4.5vw, 3.4rem); line-height: 1.02; }
.block h2 em { font-style: normal; color: var(--accent); }
.block__lead { color: var(--muted); font-size: 1.08rem; margin: 18px 0 0; }

/* ADS grid */
.ads-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-bottom: 36px;
}
.ads-card {
  background: var(--bg-2); border: 1px solid var(--line); border-radius: 4px;
  padding: 28px 24px 30px; transition: transform .25s ease, border-color .25s ease, box-shadow .25s;
}
.ads-card:hover { transform: translateY(-6px); border-color: rgba(255,47,208,.5); box-shadow: 0 20px 50px rgba(0,0,0,.5); }
.ads-card--wide { grid-column: span 2; }
.ads-card--accent { background: linear-gradient(160deg, rgba(255,47,208,.18), var(--bg-2)); border-color: rgba(255,47,208,.4); }
.ads-card__no { font-family: var(--display); font-size: 2rem; color: var(--accent); display: block; margin-bottom: 14px; }
.ads-card h3 { font-size: 1.25rem; margin-bottom: 10px; }
.ads-card p { color: var(--muted); font-size: .97rem; margin: 0; }

/* FLEET filmstrip */
.fleet { padding: 70px 0 80px; }
.fleet__head {
  max-width: var(--shell); margin: 0 auto 40px; padding: 0 clamp(20px,5vw,56px);
  display: flex; justify-content: space-between; align-items: flex-end; gap: 30px; flex-wrap: wrap;
}
.fleet h2 { font-size: clamp(2rem,4.5vw,3.2rem); line-height: 1.02; }
.fleet__hint { color: var(--muted); max-width: 320px; font-size: .95rem; margin: 0; }
.fleet__hint span { color: var(--accent-2); font-weight: 700; white-space: nowrap; }
.filmstrip {
  display: flex; gap: 18px; overflow-x: auto; scroll-snap-type: x mandatory;
  padding: 6px clamp(20px,5vw,56px) 30px; cursor: grab;
  scrollbar-width: thin; scrollbar-color: var(--accent) transparent;
}
.filmstrip.is-drag { cursor: grabbing; scroll-snap-type: none; }
.filmstrip::-webkit-scrollbar { height: 6px; }
.filmstrip::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 3px; }
.film-card {
  flex: 0 0 300px; scroll-snap-align: start;
  background: var(--bg-2); border: 1px solid var(--line); border-radius: 6px; overflow: hidden;
  display: flex; flex-direction: column; transition: border-color .25s, transform .25s;
}
.film-card:hover { border-color: rgba(255,47,208,.5); transform: translateY(-4px); }
.film-card__img { aspect-ratio: 4/3; overflow: hidden; background: #000; }
.film-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.film-card:hover .film-card__img img { transform: scale(1.06); }
.film-card__meta { padding: 18px 20px 6px; }
.film-card__meta h3 { font-size: 1.15rem; }
.film-card__meta span { display: block; color: var(--accent-2); font-size: .78rem; text-transform: uppercase; letter-spacing: .1em; margin: 6px 0 10px; }
.film-card__meta strong { display: block; font-size: 1.05rem; color: var(--ink); }
.film-card__pick {
  margin: 16px 20px 20px; padding: 12px; border-radius: 2px; cursor: pointer;
  background: transparent; border: 1px solid rgba(255,255,255,.25); color: var(--ink);
  font-weight: 700; font-size: .82rem; letter-spacing: .04em; transition: background .2s, color .2s, border-color .2s;
}
.film-card__pick:hover { background: var(--accent); color: #12010f; border-color: var(--accent); }

/* RENTAL */
.block--rental { border-top: 1px solid var(--line); }
.rental__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.rental__cards { display: grid; gap: 18px; }
.rental__cards article {
  border: 1px solid var(--line); border-left: 3px solid var(--accent-2);
  border-radius: 4px; padding: 24px 26px; background: rgba(255,255,255,.02);
}
.rental__cards h3 { font-size: 1.2rem; margin-bottom: 8px; }
.rental__cards p { color: var(--muted); margin: 0; }

/* PROCESS */
.process {
  max-width: var(--shell); margin: 0 auto; padding: 70px clamp(20px,5vw,56px) 90px;
  display: grid; grid-template-columns: .8fr 1.2fr; gap: 50px; align-items: start;
}
.process__intro { position: sticky; top: 110px; }
.process h2 { font-size: clamp(2rem,4.5vw,3.2rem); line-height: 1.02; }
.steps { list-style: none; margin: 0; padding: 0; display: grid; gap: 2px; }
.step {
  display: grid; grid-template-columns: 90px 1fr; gap: 24px; align-items: baseline;
  padding: 28px 0; border-top: 1px solid var(--line);
}
.step:last-child { border-bottom: 1px solid var(--line); }
.step__no { font-family: var(--display); font-size: 2.6rem; color: var(--accent); }
.step h3 { font-size: 1.3rem; grid-column: 2; }
.step p { color: var(--muted); grid-column: 2; margin: 8px 0 0; }

/* LEAD */
.lead { max-width: var(--shell); margin: 0 auto; padding: 40px clamp(20px,5vw,56px) 90px; }
.lead__grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 56px; align-items: start; }
.lead__copy { position: sticky; top: 110px; }
.lead h2 { font-size: clamp(2rem,4vw,3rem); line-height: 1.04; }
.lead__mail { display: inline-block; margin-top: 22px; color: var(--accent); font-weight: 700; border-bottom: 1px solid var(--accent); }
.lead__form {
  display: grid; grid-template-columns: 1fr 1fr; gap: 18px;
  background: var(--bg-2); border: 1px solid var(--line); border-radius: 8px; padding: 30px;
}
.field { display: flex; flex-direction: column; gap: 8px; }
.field--full { grid-column: 1 / -1; }
.field label { font-size: .78rem; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); }
.field input, .field select, .field textarea {
  background: #0c0810; border: 1px solid var(--line); border-radius: 3px; color: var(--ink);
  padding: 13px 14px; font-family: var(--body); font-size: .95rem; transition: border-color .2s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--accent); }
.field textarea { resize: vertical; }
.form-message { grid-column: 1 / -1; margin: 0; font-size: .9rem; }
.form-message.is-error { color: #ff6b6b; }
.form-message.is-success { color: var(--accent-2); }
.mail-link { grid-column: 1 / -1; color: var(--accent); font-weight: 700; }
.is-hidden { display: none; }

/* REQUISITES */
.requisites { border-top: 1px solid var(--line); }
.requisites .shell { max-width: var(--shell); margin: 0 auto; padding: 40px clamp(20px,5vw,56px); }
.requisites details { border: 1px solid var(--line); border-radius: 6px; padding: 6px 22px; background: rgba(255,255,255,.02); }
.requisites summary { cursor: pointer; padding: 16px 0; font-weight: 700; letter-spacing: .02em; }
.req-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px 30px; padding: 12px 0 22px; }
.req-grid div { display: flex; flex-direction: column; gap: 4px; }
.req-grid span { font-size: .74rem; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); }
.req-grid strong { font-size: .92rem; font-weight: 600; }

/* FOOTER */
.footer { border-top: 1px solid var(--line); padding: 50px clamp(20px,5vw,56px) 40px; max-width: var(--shell); margin: 0 auto; }
.footer__top { display: flex; justify-content: space-between; align-items: center; gap: 24px; flex-wrap: wrap; }
.footer__brand { font-family: var(--display); font-size: 1.8rem; letter-spacing: .08em; }
.footer__links { display: flex; flex-wrap: wrap; gap: 22px; }
.footer__links a { color: var(--muted); font-size: .88rem; transition: color .2s; }
.footer__links a:hover { color: var(--accent); }
.footer__legal { color: var(--muted); font-size: .85rem; margin: 30px 0 0; }
.footer__legal a { color: var(--muted); }

/* reveal animation */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .marquee__track { animation: none; }
  html { scroll-behavior: auto; }
}

/* RESPONSIVE */
@media (max-width: 960px) {
  .nav__links { display: none; }
  .counters { grid-template-columns: 1fr; gap: 26px; }
  .ads-grid { grid-template-columns: 1fr 1fr; }
  .ads-card--wide { grid-column: span 2; }
  .rental__grid, .process, .lead__grid { grid-template-columns: 1fr; }
  .process__intro, .lead__copy { position: static; }
}
@media (max-width: 620px) {
  body { font-size: 16px; }
  .nav__cta { display: none; }
  .ads-grid { grid-template-columns: 1fr; }
  .ads-card--wide { grid-column: auto; }
  .lead__form { grid-template-columns: 1fr; padding: 22px; }
  .req-grid { grid-template-columns: 1fr; }
  .step { grid-template-columns: 60px 1fr; gap: 16px; }
  .step__no { font-size: 2rem; }
}


/* === Этап 1: фундамент (авто-добавлено) === */
img { height: auto; }
.skip-link {
  position: absolute; left: -9999px; top: 12px; z-index: 999;
  padding: 10px 18px; background: #111; color: #fff; border-radius: 6px;
  font-size: .9rem; text-decoration: none;
}
.skip-link:focus { left: 12px; }
:focus-visible { outline: 3px solid currentColor; outline-offset: 2px; }

/* === Этап 2: функциональность === */

/* --- фильтр парка --- */
.fleet-filter {
  max-width: var(--shell); margin: 0 auto 26px;
  padding: 0 clamp(20px,5vw,56px);
  display: flex; flex-wrap: wrap; gap: 10px;
}
.fleet-filter__chip {
  padding: 9px 20px; border-radius: 999px; cursor: pointer;
  background: transparent; border: 1px solid rgba(255,255,255,.25);
  color: var(--muted); font-family: var(--body); font-weight: 700;
  font-size: .8rem; letter-spacing: .06em; text-transform: uppercase;
}
.fleet-filter__chip:hover { border-color: var(--accent); color: var(--ink); }
.fleet-filter__chip[aria-pressed="true"] {
  border-color: var(--accent); color: var(--accent);
  box-shadow: 0 0 14px rgba(255,47,208,.45), inset 0 0 10px rgba(255,47,208,.12);
  text-shadow: 0 0 12px rgba(255,47,208,.6);
}
.film-card.is-filtered { display: none; }
@media (prefers-reduced-motion: no-preference) {
  .fleet-filter__chip { transition: border-color .2s ease, color .2s ease, box-shadow .2s ease; }
}

/* --- лайтбокс авто --- */
.film-card__img[role="button"] { cursor: zoom-in; }
.film-card__img[role="button"]:focus-visible { outline: 3px solid var(--accent); outline-offset: -3px; }
.car-modal {
  position: fixed; inset: 0; z-index: 80;
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
}
.car-modal[hidden] { display: none; }
.car-modal__backdrop { position: absolute; inset: 0; background: rgba(6,2,10,.82); backdrop-filter: blur(6px); }
.car-modal__panel {
  position: relative; z-index: 1; width: min(560px, 100%); max-height: 90vh; overflow: auto;
  background: var(--bg-2); border: 1px solid rgba(255,47,208,.5); border-radius: 6px;
  box-shadow: 0 0 40px rgba(255,47,208,.28), 0 30px 80px rgba(0,0,0,.6);
}
.car-modal__img { max-width: 100%; width: 100%; aspect-ratio: 4/3; object-fit: cover; background: #000; }
.car-modal__body { padding: 22px 26px 26px; }
.car-modal__title { font-family: var(--display); font-weight: 400; font-size: 2rem; letter-spacing: .03em; margin: 0 0 4px; }
.car-modal__class { display: block; color: var(--accent-2); font-size: .78rem; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 10px; }
.car-modal__price { display: block; font-size: 1.15rem; font-weight: 700; color: var(--accent); text-shadow: 0 0 16px rgba(255,47,208,.5); margin-bottom: 20px; }
.car-modal__close {
  position: absolute; top: 10px; right: 10px; z-index: 2;
  width: 40px; height: 40px; border-radius: 50%; cursor: pointer;
  background: rgba(12,6,18,.75); border: 1px solid rgba(255,255,255,.3); color: var(--ink);
  font-size: 1.1rem; line-height: 1; display: flex; align-items: center; justify-content: center;
}
.car-modal__close:hover { border-color: var(--accent); color: var(--accent); box-shadow: 0 0 14px rgba(255,47,208,.5); }
@media (prefers-reduced-motion: no-preference) {
  .car-modal__panel { animation: carModalIn .28s ease; }
  @keyframes carModalIn { from { opacity: 0; transform: translateY(18px) scale(.97); } to { opacity: 1; transform: none; } }
}
body.car-modal-open { overflow: hidden; }

/* --- калькулятор --- */
.calc { max-width: var(--shell); margin: 0 auto; padding: 30px clamp(20px,5vw,56px) 80px; }
.calc__inner { display: grid; grid-template-columns: .9fr 1.1fr; gap: 50px; align-items: center; }
.calc h2 { font-size: clamp(2rem,4.5vw,3.2rem); line-height: 1.02; }
.calc__panel {
  background: var(--bg-2); border: 1px solid rgba(255,47,208,.35); border-radius: 8px;
  padding: 28px; box-shadow: 0 0 30px rgba(255,47,208,.12);
}
.calc__row { display: flex; flex-wrap: wrap; gap: 18px; margin-bottom: 22px; }
.calc__field { display: flex; flex-direction: column; gap: 8px; flex: 1 1 200px; min-width: 0; }
.calc__field label { font-size: .78rem; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); }
.calc__field select {
  background: #0c0810; border: 1px solid var(--line); border-radius: 3px; color: var(--ink);
  padding: 13px 14px; font-family: var(--body); font-size: .95rem; max-width: 100%;
}
.calc__field select:focus { outline: none; border-color: var(--accent); }
.calc__stepper { display: flex; align-items: stretch; gap: 8px; }
.calc__stepper button {
  width: 46px; border-radius: 3px; cursor: pointer; flex: 0 0 auto;
  background: transparent; border: 1px solid rgba(255,255,255,.3); color: var(--ink);
  font-size: 1.2rem; line-height: 1;
}
.calc__stepper button:hover { border-color: var(--accent); color: var(--accent); }
.calc__stepper input {
  width: 100%; min-width: 0; text-align: center;
  background: #0c0810; border: 1px solid var(--line); border-radius: 3px; color: var(--ink);
  padding: 13px 8px; font-family: var(--body); font-size: .95rem;
}
.calc__stepper input:focus { outline: none; border-color: var(--accent); }
.calc__result { display: flex; align-items: baseline; gap: 16px; flex-wrap: wrap; border-top: 1px solid var(--line); padding-top: 18px; }
.calc__result-label { font-size: .78rem; text-transform: uppercase; letter-spacing: .12em; color: var(--muted); }
.calc__sum {
  font-family: var(--display); font-weight: 400; font-size: clamp(2.4rem, 5vw, 3.6rem);
  line-height: 1; color: var(--accent); text-shadow: 0 0 26px rgba(255,47,208,.6);
}
.calc__note { color: var(--muted); font-size: .82rem; margin: 10px 0 20px; }
@media (max-width: 960px) {
  .calc__inner { grid-template-columns: 1fr; gap: 30px; }
}

/* --- FAQ --- */
.faq { max-width: var(--shell); margin: 0 auto; padding: 70px clamp(20px,5vw,56px) 80px; border-top: 1px solid var(--line); }
.faq__head { max-width: 720px; margin-bottom: 40px; }
.faq h2 { font-size: clamp(2rem,4.5vw,3.2rem); line-height: 1.02; }
.faq h2 em { font-style: normal; color: var(--accent); }
.faq__list { display: grid; gap: 12px; }
.faq__item {
  background: var(--bg-2); border: 1px solid var(--line); border-radius: 6px;
}
.faq__item summary {
  cursor: pointer; list-style: none; position: relative;
  padding: 20px 56px 20px 24px; font-weight: 700; letter-spacing: .01em;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+"; position: absolute; right: 22px; top: 50%; transform: translateY(-50%);
  font-family: var(--display); font-size: 1.5rem; color: var(--accent);
}
.faq__item[open] { border-color: rgba(255,47,208,.5); box-shadow: 0 0 22px rgba(255,47,208,.14); }
.faq__item[open] summary { color: var(--accent); text-shadow: 0 0 16px rgba(255,47,208,.4); }
.faq__item[open] summary::after { content: "\2212"; }
.faq__body { padding: 0 24px 22px; }
.faq__body p { margin: 0; color: var(--muted); }
@media (prefers-reduced-motion: no-preference) {
  .faq__item { transition: border-color .25s ease, box-shadow .25s ease; }
}

/* --- sticky mobile CTA --- */
.mobile-cta { display: none; }
@media (max-width: 900px) {
  body { padding-bottom: calc(74px + env(safe-area-inset-bottom)); }
  .mobile-cta {
    display: block; position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
    padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
    background: rgba(12,6,18,.9); backdrop-filter: blur(14px);
    border-top: 1px solid rgba(255,47,208,.35);
  }
  .mobile-cta.is-off { display: none; }
  .mobile-cta__btn {
    display: flex; align-items: center; justify-content: center;
    padding: 14px; border-radius: 2px;
    background: var(--accent); color: #12010f;
    font-weight: 700; font-size: .95rem; letter-spacing: .06em; text-transform: uppercase;
    box-shadow: 0 0 24px rgba(255,47,208,.45);
  }
}

/* --- печать реквизитов --- */
.print-req {
  margin: 0 0 20px; padding: 11px 22px; border-radius: 2px; cursor: pointer;
  background: transparent; border: 1px solid rgba(255,255,255,.3); color: var(--ink);
  font-family: var(--body); font-weight: 700; font-size: .82rem; letter-spacing: .04em;
}
.print-req:hover { border-color: var(--accent); color: var(--accent); }
@media print {
  body.print-requisites * { visibility: hidden; }
  body.print-requisites .requisites,
  body.print-requisites .requisites * { visibility: visible; }
  body.print-requisites .requisites {
    position: absolute; left: 0; top: 0; width: 100%; margin: 0; padding: 0;
    border: 0; background: #fff;
  }
  body.print-requisites .requisites * {
    color: #000 !important; background: none !important;
    box-shadow: none !important; text-shadow: none !important; border-color: #999 !important;
  }
  body.print-requisites .print-req { display: none; }
}


/* === Этап 3: тонировка фото и микро-детали === */
#fleet img, .neolb__img, .car-modal__img, .lightbox__img {
  filter: saturate(1.12) contrast(1.06);
}
::selection { background: #ff2fd0; color: #12010f; }
html { scrollbar-color: #ff2fd0 #160f1e; }
::-webkit-scrollbar { width: 11px; height: 11px; }
::-webkit-scrollbar-track { background: #160f1e; }
::-webkit-scrollbar-thumb { background: #ff2fd0; border-radius: 6px; border: 2px solid #160f1e; }

/* === Этап 3: wow === */

.neo-glow { position: fixed; width: 340px; height: 340px; border-radius: 50%; pointer-events: none;
  z-index: 5; transform: translate(-50%,-50%); mix-blend-mode: screen; opacity: .5;
  background: radial-gradient(circle, rgba(255,47,208,.28), rgba(255,183,3,.08) 45%, transparent 70%); }
@media (pointer: coarse), (prefers-reduced-motion: reduce) { .neo-glow { display: none; } }


/* === Этап 4: отзывы === */
.neorev { padding: clamp(48px,6vw,76px) clamp(18px,4vw,48px); }
.neorev__wrap { max-width: 1200px; margin: 0 auto; }
.neorev__title { margin: 0 0 30px; }
.neorev__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.neorev__item { margin: 0; padding: 24px 24px 20px; border-left: 3px solid #ff2fd0; position: relative; }
.neorev__item::before { content: "\201C"; position: absolute; top: 6px; right: 16px; font-size: 3rem; line-height: 1; color: #ff2fd0; opacity: .35; font-family: Georgia, serif; }
.neorev__item blockquote { margin: 0 0 14px; font-size: 1.02rem; line-height: 1.55; }
.neorev__item figcaption { font-size: .82rem; opacity: .75; }
.neorev__note { margin-top: 16px; font-size: .74rem; opacity: .5; }
@media (max-width: 900px) { .neorev__grid { grid-template-columns: 1fr; } }
.neorev__item { background: rgba(255,255,255,.04); }

/* === Этап 4: тап-таргеты === */
@media (max-width: 900px) {
  nav a, footer a { padding-top: 8px; padding-bottom: 8px; }
}

/* === Этап 4: анти-переполнение v2 === */
@media (max-width: 900px) {
  html, body { overflow-x: clip; }
}

/* === Этап 4: форма на мобиле (анти-min-content) === */
@media (max-width: 900px) {
  #lead * { min-width: 0; }
  #lead input, #lead select, #lead textarea { width: 100%; }
  #lead .neoconsent input[type="checkbox"] { width: 16px; flex: 0 0 auto; }
}

/* === Этап 4: рекламный шоукейс === */
.neoads { margin: 34px 0 0; }
.neoads img { width: 100%; height: auto; display: block; border-radius: 6px;
  border: 1px solid #ff2fd0; box-shadow: 0 18px 50px rgba(0,0,0,.18); }
.neoads figcaption { margin-top: 10px; font-size: .82rem; opacity: .75;
  padding-left: 12px; border-left: 3px solid #ff2fd0; }

/* === Этап 5: согласие ПДн === */
.neoconsent { display: flex; gap: 10px; align-items: flex-start; font-size: .82rem;
  line-height: 1.5; opacity: .9; grid-column: 1 / -1; margin: 4px 0 2px; }
.neoconsent input { margin-top: 3px; width: 16px; height: 16px; flex: 0 0 auto;
  accent-color: #ff2fd0; }
.neoconsent a { text-decoration: underline; }

/* === Этап 6: аудит (доверие, форма, форматы) === */
.neotrust { display:flex; flex-wrap:wrap; gap:8px 22px; justify-content:center; align-items:center;
  padding:14px 20px; font-size:.82rem; letter-spacing:.02em; opacity:.92;
  border-top:1px solid #ff2fd055; border-bottom:1px solid #ff2fd055; }
.neotrust span { white-space:nowrap; }
.neotrust span::before { content:"✓ "; color:#ff2fd0; font-weight:700; }
.neoformats { list-style:none; margin:26px 0 0; padding:0; display:grid;
  grid-template-columns:repeat(6,1fr); gap:10px; }
.neoformats li { display:flex; flex-direction:column; align-items:center; gap:8px;
  padding:14px 6px; font-size:.78rem; text-align:center; border:1px solid #ff2fd044;
  border-radius:8px; color:inherit; }
.neoformats svg { color:#ff2fd0; }
.neomore { grid-column:1/-1; margin:2px 0; }
.neomore summary { cursor:pointer; font-size:.85rem; opacity:.8; padding:8px 0; }
.neomore summary:hover { opacity:1; }
.neomore__grid { display:grid; grid-template-columns:1fr 1fr; gap:18px; padding-top:12px; }
.neonote { grid-column:1/-1; font-size:.8rem; opacity:.65; margin:8px 0 0; line-height:1.5; }
@media (max-width:900px){ .neoformats { grid-template-columns:repeat(3,1fr); } }
@media (max-width:600px){ .neomore__grid { grid-template-columns:1fr; } .neoformats { grid-template-columns:repeat(2,1fr); } }

/* === P1: юрссылки в футере === */
footer a[href^="privacy"], footer a[href^="terms"], footer a[href^="mailto"] {
  opacity: .62; font-size: .86em; }
footer a[href^="privacy"]:hover, footer a[href^="terms"]:hover, footer a[href^="mailto"]:hover { opacity: 1; }

/* === Волна 1: интеграция === */

.neotrust { font-family: var(--display); font-size: 1.05rem; letter-spacing: .1em; text-transform: uppercase; border-color: rgba(255,47,208,.35); background: rgba(12,6,18,.5); }
.neotrust span::before { content: ""; } .neotrust span + span::before { content: "•  "; color: var(--accent); text-shadow: 0 0 8px var(--accent); }
.neoformats li { border-color: rgba(255,47,208,.3); background: var(--bg-2); transition: box-shadow .25s, border-color .25s; }
.neoformats li:hover { border-color: var(--accent); box-shadow: 0 0 18px rgba(255,47,208,.35); }
.neorev__item::before { color: var(--accent); text-shadow: 0 0 10px var(--accent); opacity: .8; }

/* === Волна 2: паспарту — фото вплавляются в тёмный фон === */
.film-card__img { position: relative; overflow: hidden; }
.film-card__img::after { content: ""; position: absolute; inset: 0; pointer-events: none;
  box-shadow: inset 0 0 44px 22px #0c061266, inset 0 0 90px 46px #0c061240; }
.film-card__img img { filter: brightness(.9) saturate(1.05) contrast(1.04); }
.neoads { position: relative; }
.neoads::after { content: ""; position: absolute; inset: 0; pointer-events: none; border-radius: 6px;
  box-shadow: inset 0 0 46px 24px #0c061259; }
.neoads figcaption { position: relative; }

/* === Волна 3: композиционный ритм === */
/* акт «Парк + Калькулятор»: секции сшиваются */
#fleet:has(+ #calc) { padding-bottom: clamp(14px, 2.2vw, 28px); }
#fleet + #calc { padding-top: clamp(14px, 2.2vw, 28px); }
/* акт «Отзывы + FAQ» */
#reviews:has(+ #faq) { padding-bottom: clamp(16px, 2.4vw, 30px); }
#reviews + #faq { padding-top: clamp(16px, 2.4vw, 30px); }
/* вдох перед актом отзывов */
* + #reviews { margin-top: clamp(8px, 1.6vw, 22px); }
/* сценарии/сравнение прижаты к trust-полосе */
.neotrust + .neoscen, .neotrust + .neocompare { padding-top: clamp(18px, 2.6vw, 30px); }

/* === Волна 5: футер-подвал === */
.neofoot { margin-top: clamp(30px,4vw,54px); padding: clamp(28px,4vw,46px) clamp(20px,4vw,48px) 26px; border-top: 1px solid #ff2fd055; }
.neofoot__grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 26px; }
.neofoot__brand strong { font-size: 1.15rem; }
.neofoot__brand p { margin: 8px 0 0; font-size: .85rem; opacity: .7; max-width: 32ch; }
.neofoot__col { display: flex; flex-direction: column; gap: 8px; font-size: .88rem; }
.neofoot__col span { font-size: .68rem; text-transform: uppercase; letter-spacing: .12em; opacity: .55; }
.neofoot__col a { opacity: .85; } .neofoot__col a:hover { opacity: 1; color: #ff2fd0; }
.neofoot__legal { max-width: 1200px; margin: 26px auto 0; font-size: .74rem; opacity: .5; }
@media (max-width: 900px) { .neofoot__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .neofoot__grid { grid-template-columns: 1fr; } }
.neofoot__brand strong { font-family: var(--display); letter-spacing: .06em; font-size: 1.5rem; }


/* === Итерация 2: модули === */

/* Лента доверия — неоновые вывески-чипы */
.neotrust { border-top: none; border-bottom: none; background: transparent; gap: 14px 16px; padding: 26px clamp(18px,4vw,48px); }
.neotrust span { border: 1px solid rgba(255,47,208,.5); border-radius: 3px; padding: 10px 18px;
  box-shadow: 0 0 16px rgba(255,47,208,.2), inset 0 0 14px rgba(255,47,208,.1);
  text-shadow: 0 0 9px rgba(255,47,208,.55); }
.neotrust span::before, .neotrust span + span::before { content: ""; }

/* Отзывы — бегущая неон-лента */
.neorev--band { padding-left: 0; padding-right: 0; }
.neorev--band .neorev__wrap { padding: 0 clamp(18px,4vw,48px); }
.neorev--band .neorev__title { margin-bottom: 22px; }
.neorev__band { overflow: hidden; border-top: 1px solid rgba(255,47,208,.4); border-bottom: 1px solid rgba(255,47,208,.4);
  background: rgba(22,15,30,.65); }
.neorev__track { display: flex; width: max-content; animation: neorevRun 46s linear infinite; }
.neorev__band:hover .neorev__track, .neorev__track:focus-within { animation-play-state: paused; }
.neorev__set { display: flex; align-items: center; gap: clamp(30px,4vw,60px); padding: 20px clamp(15px,2vw,30px); }
.neorev__q { margin: 0; white-space: nowrap; font-size: 1.04rem; }
.neorev__q::before { content: "✦"; margin-right: 12px; color: var(--accent); text-shadow: 0 0 10px var(--accent); }
.neorev__q span { color: var(--muted); font-size: .84rem; }
@keyframes neorevRun { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) {
  .neorev__track { animation: none; width: auto; flex-wrap: wrap; }
  .neorev__set { flex-wrap: wrap; row-gap: 12px; }
  .neorev__set[aria-hidden="true"] { display: none; }
  .neorev__q { white-space: normal; }
}

/* Калькулятор — неоновый слайдер срока */
.calc__field--range { flex: 1.2 1 240px; }
.calc__days { display: flex; align-items: baseline; gap: 10px; }
.calc__days output { font-family: var(--display); font-size: clamp(2.2rem,4vw,3rem); line-height: 1; color: var(--accent);
  text-shadow: 0 0 16px rgba(255,47,208,.7), 0 0 40px rgba(255,47,208,.35); }
.calc__days span { font-size: .75rem; text-transform: uppercase; letter-spacing: .14em; color: var(--muted); }
.calc__field--range input[type="range"] { -webkit-appearance: none; appearance: none; width: 100%; height: 4px;
  margin: 16px 0 8px; border-radius: 2px; background: linear-gradient(90deg, var(--accent), rgba(255,47,208,.15));
  box-shadow: 0 0 10px rgba(255,47,208,.45); cursor: pointer; }
.calc__field--range input[type="range"]:focus { outline: 2px solid var(--accent); outline-offset: 6px; }
.calc__field--range input[type="range"]::-webkit-slider-thumb { -webkit-appearance: none; width: 22px; height: 22px;
  border-radius: 50%; background: #0c0810; border: 2px solid var(--accent); box-shadow: 0 0 14px var(--accent); }
.calc__field--range input[type="range"]::-moz-range-thumb { width: 20px; height: 20px; border-radius: 50%;
  background: #0c0810; border: 2px solid var(--accent); box-shadow: 0 0 14px var(--accent); }
.calc__range-ends { display: flex; justify-content: space-between; font-size: .72rem; letter-spacing: .08em; color: var(--muted); }

/* Футер — широкая неон-строка навигации + юрстрока */
.neofoot { margin-top: clamp(36px,5vw,60px); border-top: 1px solid rgba(255,47,208,.45);
  box-shadow: 0 -1px 18px rgba(255,47,208,.18); padding: clamp(24px,3.4vw,40px) clamp(20px,4vw,48px) 20px; }
.neofoot__nav { max-width: 1200px; margin: 0 auto; display: flex; flex-wrap: wrap; align-items: center;
  gap: 10px clamp(18px,2.6vw,36px); font-family: var(--display); font-size: 1.15rem; letter-spacing: .09em; text-transform: uppercase; }
.neofoot__nav a { opacity: .85; }
.neofoot__nav a:hover { opacity: 1; color: var(--accent); text-shadow: 0 0 10px rgba(255,47,208,.8); }
.neofoot__logo { color: var(--accent); text-shadow: 0 0 12px rgba(255,47,208,.75); font-size: 1.4rem; opacity: 1 !important; }
.neofoot__mail { margin-left: auto; font-family: var(--body); text-transform: none; letter-spacing: 0; font-size: .88rem;
  border: 1px solid rgba(255,47,208,.45); border-radius: 999px; padding: 7px 16px; }
.neofoot__legal { max-width: 1200px; margin: 22px auto 0; padding-top: 14px; border-top: 1px dashed rgba(255,47,208,.3);
  display: flex; flex-wrap: wrap; gap: 6px 18px; font-size: .74rem; opacity: .6; }
.neofoot__legal a { text-decoration: underline; text-underline-offset: 3px; }
@media (max-width: 700px) { .neofoot__mail { margin-left: 0; } }

/* === Итерация 3: легенда === */
.vscen { border-top: 1px solid var(--line); }
.vscen__list { list-style: none; margin: 0; padding: 0; }
.vscen__item {
  display: grid; grid-template-columns: 150px 260px 1fr; gap: 20px; align-items: baseline;
  padding: 22px 0; border-top: 1px solid var(--line);
}
.vscen__item:last-child { border-bottom: 1px solid var(--line); }
.vscen__no {
  font-family: var(--display); font-size: 1.15rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--accent); text-shadow: 0 0 14px rgba(255,47,208,.6);
}
.vscen__item h3 { font-size: 1.25rem; margin: 0; }
.vscen__item p { margin: 0; color: var(--muted); font-size: .98rem; }
.vscen__item:hover .vscen__no { text-shadow: 0 0 22px rgba(255,47,208,.95); }
@media (max-width: 900px) {
  .vscen__item { grid-template-columns: 1fr; gap: 6px; padding: 18px 0; }
  .vscen__no { font-size: 1rem; }
}
