/* ==========================================================================
   ООО «АВГ» — Автоимпорт. Единая таблица стилей.
   1. Токены  2. База  3. Утилиты  4. Рельс/шапка/меню  5. Кнопки
   6. Герой   7. Секции главной  8. Подвал  9. Внутренние страницы
   10. Формы  11. Появление/движение  12. Адаптив
   ========================================================================== */

/* ---------- 1. Токены ---------- */
:root {
  --bg-void:   #060D0A;
  --bg-deep:   #0A1A13;
  --green-900: #0E2A1E;
  --green-700: #14402C;
  --green-500: #1E5A3C;
  --mist:      #D9E7DF;
  --mist-dim:  #9FB5A9;
  --white:     #FFFFFF;
  --gold:      #C9A24C;
  --line:      rgba(217, 231, 223, .14);
  --line-dark: rgba(14, 42, 30, .16);

  --rail: 64px;
  --shell: 1440px;
  --gutter: clamp(20px, 5vw, 72px);
  --section-y: clamp(80px, 10vw, 160px);

  --ease: cubic-bezier(.16, 1, .3, 1);
  --dur: 700ms;

  --font-head: 'Oswald', 'Arial Narrow', 'Segoe UI', sans-serif;
  --font-body: 'Manrope', 'Segoe UI', Arial, sans-serif;
  --font-mono: 'Consolas', 'SFMono-Regular', ui-monospace, monospace;

  --grain: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.82' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- 2. База ---------- */
*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg-deep);
  color: var(--mist);
  font-family: var(--font-body);
  font-size: clamp(15px, 1.05vw, 17px);
  line-height: 1.65;
  font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .02em;
  line-height: .95;
  margin: 0;
  color: var(--white);
}
h1 { font-size: clamp(44px, 7vw, 96px); font-weight: 700; }
h2 { font-size: clamp(32px, 4.5vw, 64px); }
h3 { font-size: clamp(22px, 2.4vw, 32px); }
h4 { font-size: clamp(17px, 1.4vw, 21px); letter-spacing: .04em; }

p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

a { color: inherit; text-decoration: none; }
img, picture, svg { max-width: 100%; height: auto; display: block; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
ul { margin: 0; padding: 0; list-style: none; }

::selection { background: var(--gold); color: var(--bg-void); }

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--gold); color: var(--bg-void);
  padding: 12px 20px; font-size: 12px; letter-spacing: .16em; text-transform: uppercase;
}
.skip:focus { left: 0; }

/* ---------- 3. Утилиты ---------- */
.container {
  width: 100%;
  max-width: var(--shell);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section { padding-block: var(--section-y); position: relative; }

.section--light {
  background: var(--mist);
  color: var(--green-900);
}
.section--light h1, .section--light h2, .section--light h3, .section--light h4 { color: var(--green-900); }
.section--light .overline { color: rgba(14, 42, 30, .55); }
.section--light .rule { background: var(--line-dark); }

.section--void { background: var(--bg-void); }

.overline {
  display: block;
  font-size: 11px;
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: .22em;
  color: var(--mist-dim);
  font-weight: 700;
}

.rule { height: 1px; background: var(--line); border: 0; margin: 0; }

.lead { font-size: clamp(16px, 1.3vw, 19px); color: var(--mist); }
.section--light .lead { color: rgba(14, 42, 30, .82); }

.muted { color: var(--mist-dim); }
.section--light .muted { color: rgba(14, 42, 30, .6); }

.gold { color: var(--gold); }

.grain::after {
  content: "";
  position: absolute; inset: 0;
  background-image: var(--grain);
  opacity: .05;
  mix-blend-mode: overlay;
  pointer-events: none;
}

.section-head {
  display: grid;
  gap: 18px;
  max-width: 760px;
  margin-bottom: clamp(40px, 5vw, 72px);
}

/* ---------- 4. Рельс, шапка, меню ---------- */
.rail {
  position: fixed;
  left: 0; top: 0;
  width: var(--rail);
  height: 100vh;
  height: 100svh;
  z-index: 90;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding-block: 22px 26px;
  background: rgba(6, 13, 10, .55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-right: 1px solid var(--line);
}

.rail__socials {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-block: auto;
}
.rail__socials a {
  color: var(--mist-dim);
  transition: color var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.rail__socials a:hover { color: var(--white); transform: translateY(-2px); }
.rail__socials svg { width: 18px; height: 18px; }

.rail__mark {
  writing-mode: vertical-rl;
  font-size: 10px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--mist);
  opacity: .45;
  font-weight: 700;
}


.hdr {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 95;
  height: 96px;
  display: flex;
  align-items: center;
  transition: height var(--dur) var(--ease), background var(--dur) var(--ease), border-color var(--dur) var(--ease);
  border-bottom: 1px solid transparent;
}
.hdr.is-stuck {
  height: 68px;
  background: rgba(10, 26, 19, .92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
}
.hdr__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
}

.brand { display: flex; align-items: center; gap: 14px; min-width: 0; }
.brand__logo {
  height: 40px; width: auto; display: block; flex-shrink: 0;
  filter: drop-shadow(0 0 4px rgba(201,162,76,.55)) drop-shadow(0 0 11px rgba(201,162,76,.4)) drop-shadow(0 0 22px rgba(58,168,110,.35));
  animation: logoGlow 3.2s ease-in-out infinite;
  transition: filter 300ms var(--ease);
}
.brand:hover .brand__logo {
  filter: drop-shadow(0 0 6px rgba(201,162,76,.75)) drop-shadow(0 0 16px rgba(201,162,76,.6)) drop-shadow(0 0 30px rgba(58,168,110,.5));
}
@keyframes logoGlow {
  0%, 100% { filter: drop-shadow(0 0 4px rgba(201,162,76,.55)) drop-shadow(0 0 11px rgba(201,162,76,.4)) drop-shadow(0 0 22px rgba(58,168,110,.35)); }
  50% { filter: drop-shadow(0 0 6px rgba(201,162,76,.8)) drop-shadow(0 0 16px rgba(201,162,76,.6)) drop-shadow(0 0 30px rgba(58,168,110,.5)); }
}
@media (prefers-reduced-motion: reduce) {
  .brand__logo { animation: none; }
}
.brand__mark {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 26px;
  letter-spacing: .12em;
  color: var(--white);
  line-height: 1;
}
.brand__sub {
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--mist-dim);
  white-space: nowrap;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 1.6vw, 28px);
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  -webkit-overflow-scrolling: touch;
}
.nav::-webkit-scrollbar { display: none; }
.nav a {
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--mist-dim);
  padding-block: 6px;
  position: relative;
  transition: color 400ms var(--ease);
  white-space: nowrap;
}
.nav a::after {
  content: "";
  position: absolute; left: 0; right: 100%; bottom: 0;
  height: 2px; background: var(--gold);
  transition: right var(--dur) var(--ease);
}
.nav a:hover { color: var(--white); }
.nav a:hover::after { right: 0; }
.nav a[aria-current="page"] { color: var(--white); }
.nav a[aria-current="page"]::after { right: 0; }

.hdr .hdr__cta { display: inline-flex; }

/* ---------- 5. Кнопки ---------- */
.btn {
  --btn-bg: var(--white);
  --btn-fg: var(--green-900);
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 30px;
  border-radius: 2px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  overflow: hidden;
  isolation: isolate;
  color: var(--btn-fg);
  background: var(--btn-bg);
  transition: color 500ms var(--ease);
}
.btn svg { width: 14px; height: 10px; flex-shrink: 0; transition: transform 500ms var(--ease); }
.btn:hover svg { transform: translateX(4px); }
.btn::before {
  content: "";
  position: absolute; inset: 0;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 600ms var(--ease);
  z-index: -1;
}
.btn:hover::before { transform: scaleX(1); }

.btn-ghost {
  --btn-bg: transparent;
  --btn-fg: var(--mist);
  border: 1px solid var(--line);
  transition: border-color 500ms var(--ease), color 500ms var(--ease);
}
.btn-ghost::before { background: rgba(201, 162, 76, .14); }
.btn-ghost:hover { border-color: var(--gold); color: var(--white); }

.section--light .btn-ghost { --btn-fg: var(--green-900); border-color: var(--line-dark); }
.section--light .btn-ghost:hover { border-color: var(--gold); color: var(--green-900); }

.btn-sm { padding: 13px 22px; font-size: 11px; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--mist);
  transition: color 400ms var(--ease), gap 400ms var(--ease);
}
.link-arrow svg { width: 14px; height: 10px; transition: transform 500ms var(--ease); }
.link-arrow:hover { color: var(--gold); }
.link-arrow:hover svg { transform: translateX(5px); }

/* ---------- 6. Герой ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
}
.hero__bg {
  position: absolute; inset: -10% 0 0;
  background: radial-gradient(120% 90% at 30% 20%, var(--green-500) 0%, var(--green-900) 45%, var(--bg-void) 100%);
  z-index: -2;
  will-change: transform;
}
.hero__bg::before {
  content: "";
  position: absolute; inset: 0;
  background-image: var(--grain);
  opacity: .05;
  mix-blend-mode: overlay;
}
.hero__bg::after {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(120% 80% at 50% 45%, transparent 35%, rgba(6, 13, 10, .85) 100%);
}

.hero__slides { position: absolute; inset: 0; }
.hero__slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 900ms var(--ease), visibility 0s linear 900ms;
}
.hero__slide.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity 900ms var(--ease), visibility 0s linear 0s;
}

.hero__ghost {
  position: absolute;
  left: 3%;
  top: 38%;
  transform: translateY(-50%);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(220px, 46vh, 520px);
  line-height: .78;
  letter-spacing: -.02em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(217, 231, 223, .10);
  z-index: -1;
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  will-change: transform;
}

.hero__car {
  position: absolute;
  left: -4%;
  bottom: 21%;
  width: min(56%, 940px);
  filter: drop-shadow(0 40px 60px rgba(0, 0, 0, .55));
  animation: floaty 9s ease-in-out infinite;
}
@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.hero__grid { display: flex; justify-content: flex-end; width: 100%; }
.hero__content {
  width: min(520px, 46%);
  display: grid;
  gap: 22px;
  justify-items: start;
}
.hero__content h1 { text-wrap: balance; }
.hero__content .rule { width: 100%; }

.hero__price { display: grid; gap: 6px; }
.hero__price b {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(30px, 3vw, 40px);
  color: var(--white);
  letter-spacing: .01em;
}

.hero__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px; height: 48px;
  display: none;
  place-content: center;
  color: var(--mist-dim);
  z-index: 4;
  transition: color 400ms var(--ease), transform 400ms var(--ease);
}
.hero__arrow svg { width: 13px; height: 24px; }
.hero__arrow:hover { color: var(--white); }
.hero__arrow--prev { left: 6px; }
.hero__arrow--next { right: 6px; }
.hero__arrow--prev:hover { transform: translate(-3px, -50%); }
.hero__arrow--next:hover { transform: translate(3px, -50%); }

.hero__tabs {
  position: absolute;
  left: 0; right: 0;
  bottom: 86px;
  z-index: 3;
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
}
.hero__tabs::-webkit-scrollbar { display: none; }
.tab {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  border: 1px solid var(--line);
  border-radius: 2px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--mist-dim);
  white-space: nowrap;
  background: rgba(6, 13, 10, .35);
  transition: background 400ms var(--ease), color 400ms var(--ease), border-color 400ms var(--ease);
}
.tab::before { content: "+"; color: var(--gold); font-size: 13px; line-height: 1; }
.tab:hover { color: var(--white); border-color: var(--gold); }
.tab.is-active { background: var(--mist); color: var(--green-900); border-color: var(--mist); }
.tab.is-active::before { color: var(--green-900); }

.hero__bar {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 56px;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-inline: clamp(12px, 3vw, 28px);
  background: rgba(6, 13, 10, .6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid var(--line);
}
.hero__bar button {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--mist-dim);
  transition: color 400ms var(--ease);
  min-height: 44px;
}
.hero__bar button:hover { color: var(--white); }
.hero__bar svg { width: 9px; height: 16px; }
.hero__bar .is-hidden-sm { display: none; }

.dots { display: flex; align-items: center; gap: 9px; }
.dots button {
  width: 7px; height: 7px;
  border-radius: 99px;
  background: rgba(217, 231, 223, .28);
  padding: 0;
  min-height: 0;
  transition: width 600ms var(--ease), background 600ms var(--ease);
}
.dots button.is-active { width: 26px; background: var(--gold); }

/* ---------- 7. Секции главной ---------- */
/* Телеметрия */
.telemetry {
  border: 1px solid var(--line);
  background: rgba(217, 231, 223, .035);
  backdrop-filter: blur(8px);
  border-radius: 4px;
  padding: clamp(22px, 3vw, 34px);
  display: grid;
  gap: 28px;
  grid-template-columns: 1fr;
}
.telemetry__id { display: flex; align-items: center; gap: 16px; }
.telemetry__badge {
  width: 54px; height: 54px;
  display: grid; place-content: center;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: .08em;
  border-radius: 2px;
}
.telemetry__bars { display: grid; gap: 20px; }
.bar__top {
  display: flex; justify-content: space-between; align-items: baseline;
  font-size: 11px; letter-spacing: .16em; text-transform: uppercase;
  margin-bottom: 9px;
}
.bar__track { height: 2px; background: rgba(217, 231, 223, .12); position: relative; overflow: hidden; }
.bar__fill {
  position: absolute; inset: 0 auto 0 0;
  width: 0;
  background: var(--gold);
  transition: width 1400ms var(--ease);
}
.telemetry__note { font-size: 12px; color: var(--mist-dim); }

/* Цифры */
.stats { display: grid; grid-template-columns: 1fr; }
.stat {
  padding-block: clamp(26px, 3vw, 42px);
  border-top: 1px solid var(--line);
  display: grid;
  gap: 8px;
}
.stat b {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(56px, 7vw, 110px);
  line-height: .9;
  color: var(--white);
  letter-spacing: -.01em;
}

/* О компании */
.about__banner {
  position: relative;
  height: clamp(240px, 40vh, 420px);
  overflow: hidden;
  background: var(--bg-void);
}
.about__banner img { width: 100%; height: 100%; object-fit: cover; opacity: .85; }
.about__banner::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(6, 13, 10, .5) 0%, transparent 40%, rgba(217, 231, 223, .12) 100%);
}
.about__wordmark {
  position: absolute;
  left: var(--gutter);
  bottom: -.14em;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(80px, 14vw, 220px);
  line-height: .8;
  letter-spacing: .02em;
  color: var(--white);
  opacity: .95;
  z-index: 2;
  text-shadow: 0 20px 60px rgba(0, 0, 0, .45);
}
.about__grid { display: grid; gap: clamp(30px, 4vw, 56px); }
.about__label {
  font-family: var(--font-head);
  font-size: clamp(30px, 4vw, 52px);
  line-height: .95;
  color: var(--green-900);
  text-transform: uppercase;
}
.about__card {
  border: 1px solid var(--line-dark);
  background: rgba(255, 255, 255, .5);
  border-radius: 4px;
  overflow: hidden;
}
.about__card img { width: 100%; height: 220px; object-fit: cover; }
.about__req {
  padding: 22px;
  font-family: var(--font-mono);
  font-size: 12.5px;
  line-height: 1.9;
  color: rgba(14, 42, 30, .78);
  display: grid;
  gap: 2px;
}
.about__req b { color: var(--green-900); font-family: var(--font-head); letter-spacing: .06em; font-size: 15px; }

/* Карточки разделов */
.cards { display: grid; gap: 18px; grid-template-columns: 1fr; }
.card {
  position: relative;
  display: grid;
  gap: 12px;
  align-content: start;
  padding: clamp(24px, 2.4vw, 34px);
  background: rgba(255, 255, 255, .03);
  border: 1px solid var(--line);
  border-radius: 4px;
  transition: transform var(--dur) var(--ease), border-color var(--dur) var(--ease), background var(--dur) var(--ease);
  min-height: 100%;
}
.card:hover { transform: translateY(-4px); border-color: var(--gold); background: rgba(255, 255, 255, .06); }
.card__num {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 32px;
  color: var(--gold);
  line-height: 1;
}
.card p { color: var(--mist-dim); font-size: 15px; }
.card .link-arrow { margin-top: 6px; }
.card:hover .link-arrow svg { transform: translateX(5px); }
.card::after {
  content: "";
  position: absolute; inset: 0;
  border: 1px solid transparent;
  border-radius: 4px;
  pointer-events: none;
}

/* Галерея-полоса */
.showcase { position: relative; background: var(--bg-void); overflow: hidden; }
.showcase__media { position: relative; height: clamp(380px, 68vh, 720px); }
.showcase__media img {
  width: 100%; height: 100%; object-fit: cover;
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity 900ms var(--ease), transform 6s linear;
}
.showcase__media img.is-active { opacity: 1; }
.showcase__media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(6, 13, 10, .55) 0%, transparent 45%, rgba(6, 13, 10, .9) 100%);
}
.showcase__caption {
  position: absolute;
  left: 0; right: 0; bottom: clamp(76px, 9vw, 104px);
  z-index: 2;
  display: grid;
  gap: 10px;
  justify-items: center;
  text-align: center;
}
.showcase__note { font-size: 11px; color: var(--mist-dim); }

/* CTA */
.cta { position: relative; overflow: hidden; background: var(--bg-void); }
.cta__bg { position: absolute; inset: 0; }
.cta__bg img { width: 100%; height: 100%; object-fit: cover; opacity: .35; }
.cta__bg::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(6, 13, 10, .8), rgba(6, 13, 10, .94));
}
.cta__inner {
  position: relative;
  display: grid;
  gap: 26px;
  justify-items: center;
  text-align: center;
  max-width: 780px;
  margin-inline: auto;
}
.cta__actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

/* ---------- 8. Подвал ---------- */
.ftr {
  background: var(--bg-void);
  border-top: 1px solid var(--line);
  padding-block: clamp(56px, 7vw, 88px) 28px;
}
.ftr__grid { display: grid; gap: 44px; grid-template-columns: 1fr; }
.ftr__mark {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(52px, 6vw, 72px);
  line-height: .9;
  letter-spacing: .08em;
  color: var(--white);
  opacity: .9;
}
.ftr__nav { display: grid; gap: 10px; }
.ftr__nav a, .ftr__contacts a {
  font-size: 13px;
  color: var(--mist-dim);
  transition: color 400ms var(--ease);
}
.ftr__nav a:hover, .ftr__contacts a:hover { color: var(--gold); }
.ftr__contacts { display: grid; gap: 10px; font-size: 13px; color: var(--mist-dim); }
.ftr__contacts b { color: var(--mist); font-weight: 700; }
.ftr__bottom {
  margin-top: clamp(36px, 5vw, 56px);
  padding-top: 22px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  font-size: 11.5px;
  color: var(--mist-dim);
}
.ftr__socials { display: flex; gap: 18px; }
.ftr__socials a { color: var(--mist-dim); }
.ftr__socials a:hover { color: var(--white); }
.ftr__socials svg { width: 17px; height: 17px; }

/* ---------- 9. Внутренние страницы ---------- */
.phero {
  position: relative;
  min-height: 52vh;
  display: flex;
  align-items: flex-end;
  padding-block: 150px clamp(40px, 5vw, 64px);
  overflow: hidden;
  isolation: isolate;
  background: var(--green-900);
}
.phero__bg { position: absolute; inset: 0; z-index: -2; }
.phero__bg img { width: 100%; height: 100%; object-fit: cover; opacity: .5; }
.phero__bg::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(115deg, rgba(6, 13, 10, .92) 15%, rgba(14, 42, 30, .72) 55%, rgba(6, 13, 10, .9) 100%);
}
.phero__ghost {
  position: absolute;
  right: 2%;
  top: 42%;
  transform: translateY(-40%);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(160px, 34vh, 380px);
  line-height: .8;
  color: transparent;
  -webkit-text-stroke: 1px rgba(217, 231, 223, .10);
  z-index: -1;
  pointer-events: none;
  user-select: none;
  will-change: transform;
}
.phero__inner { display: grid; gap: 20px; max-width: 900px; }
.crumbs { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--mist-dim); }
.crumbs a { transition: color 400ms var(--ease); }
.crumbs a:hover { color: var(--white); }
.crumbs span[aria-current] { color: var(--gold); }

.next-section {
  display: grid;
  gap: 14px;
  padding-block: clamp(50px, 6vw, 80px);
  border-top: 1px solid var(--line);
}
.next-section a {
  font-family: var(--font-head);
  font-size: clamp(30px, 5vw, 58px);
  text-transform: uppercase;
  color: var(--white);
  display: inline-flex;
  align-items: center;
  gap: 20px;
  transition: color 500ms var(--ease), gap 500ms var(--ease);
}
.next-section a:hover { color: var(--gold); gap: 32px; }
.next-section svg { width: 34px; height: 18px; }

/* Услуги */
.svc { display: grid; gap: 18px; grid-template-columns: 1fr; }
.svc__item {
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: clamp(24px, 2.6vw, 36px);
  display: grid;
  gap: 14px;
  align-content: start;
  background: rgba(255, 255, 255, .025);
  transition: transform var(--dur) var(--ease), border-color var(--dur) var(--ease), background var(--dur) var(--ease);
}
.svc__item:hover { transform: translateY(-4px); border-color: var(--gold); background: rgba(255, 255, 255, .05); }
.svc__icon {
  width: 46px; height: 46px;
  display: grid; place-content: center;
  border: 1px solid var(--line);
  border-radius: 2px;
  color: var(--gold);
}
.svc__icon svg { width: 22px; height: 22px; }
.checklist { display: grid; gap: 9px; font-size: 14px; color: var(--mist-dim); }
.checklist li { display: flex; gap: 10px; align-items: flex-start; }
.checklist li::before {
  content: "";
  width: 6px; height: 6px;
  margin-top: 9px;
  flex-shrink: 0;
  background: var(--gold);
  transform: rotate(45deg);
}

/* Процесс — таймлайн */
.tl { position: relative; display: grid; }
.tl__line {
  position: absolute;
  left: 27px; top: 0; bottom: 0;
  width: 1px;
  background: var(--line);
}
.tl__line span {
  position: absolute; left: 0; top: 0;
  width: 1px; height: 0;
  background: var(--gold);
  transition: height 200ms linear;
}
.tl__item {
  position: relative;
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 22px;
  padding-block: clamp(26px, 3vw, 44px);
  border-top: 1px solid var(--line);
}
.tl__item:first-child { border-top: 0; }
.tl__num {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 30px;
  color: var(--gold);
  line-height: 1;
  background: var(--bg-deep);
  padding-block: 4px;
  position: relative;
  z-index: 2;
}
.tl__body { display: grid; gap: 12px; align-content: start; }
.tl__meta { font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: var(--mist-dim); }

/* Гарантии */
.guarantee { display: grid; gap: clamp(30px, 4vw, 56px); }
.guarantee__list { display: grid; gap: 26px; }
.guarantee__item { display: grid; grid-template-columns: 44px 1fr; gap: 18px; align-items: start; }
.guarantee__item svg { width: 26px; height: 26px; color: var(--gold); }
.glass {
  border: 1px solid var(--line);
  background: rgba(217, 231, 223, .04);
  backdrop-filter: blur(10px);
  border-radius: 4px;
  padding: clamp(26px, 3vw, 40px);
  display: grid;
  gap: 20px;
  align-content: start;
}
.glass ul { display: grid; gap: 14px; }
.glass li { display: grid; gap: 4px; padding-bottom: 14px; border-bottom: 1px solid var(--line); }
.glass li:last-child { border-bottom: 0; padding-bottom: 0; }
.glass b { color: var(--white); font-size: 15px; }
.glass span { font-size: 13.5px; color: var(--mist-dim); }

/* Договор */
.doc-frame {
  border: 1px solid var(--line);
  border-radius: 4px;
  background: rgba(255, 255, 255, .04);
  overflow: hidden;
  height: clamp(420px, 70vh, 780px);
}
.doc-frame iframe, .doc-frame embed, .doc-frame object { width: 100%; height: 100%; border: 0; }
.doc-fallback { padding: 32px; display: grid; gap: 16px; justify-items: start; }

/* Реквизиты — таблица спецификаций */
.specs { display: grid; }
.specs__row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 6px 24px;
  padding-block: 18px;
  border-top: 1px solid var(--line);
  align-items: center;
}
.specs__row:last-child { border-bottom: 1px solid var(--line); }
.specs__key { font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: var(--mist-dim); }
.specs__val {
  display: flex; align-items: center; gap: 14px; justify-content: space-between;
  color: var(--white);
  font-size: 15px;
  word-break: break-word;
}
.copy {
  flex-shrink: 0;
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 10px; letter-spacing: .16em; text-transform: uppercase;
  color: var(--mist-dim);
  border: 1px solid var(--line);
  border-radius: 2px;
  padding: 8px 12px;
  min-height: 34px;
  transition: color 400ms var(--ease), border-color 400ms var(--ease);
}
.copy:hover { color: var(--white); border-color: var(--gold); }
.copy.is-done { color: var(--gold); border-color: var(--gold); }

/* FAQ */
.faq { display: grid; }
.faq__item { border-top: 1px solid var(--line); }
.faq__item:last-child { border-bottom: 1px solid var(--line); }
.faq__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  text-align: left;
  padding: clamp(20px, 2.4vw, 30px) 0 clamp(20px, 2.4vw, 30px) 22px;
  font-family: var(--font-head);
  font-size: clamp(17px, 1.8vw, 23px);
  text-transform: uppercase;
  letter-spacing: .02em;
  color: var(--mist);
  position: relative;
  transition: color 400ms var(--ease);
  min-height: 44px;
}
.faq__q::before {
  content: "";
  position: absolute; left: 0; top: 50%;
  transform: translateY(-50%) scaleY(0);
  width: 2px; height: 60%;
  background: var(--gold);
  transition: transform 500ms var(--ease);
}
.faq__q:hover { color: var(--white); }
.faq__q[aria-expanded="true"] { color: var(--white); }
.faq__q[aria-expanded="true"]::before { transform: translateY(-50%) scaleY(1); }
.faq__icon { position: relative; width: 14px; height: 14px; flex-shrink: 0; }
.faq__icon::before, .faq__icon::after {
  content: "";
  position: absolute; left: 0; top: 50%;
  width: 14px; height: 1.5px;
  background: var(--gold);
  transition: transform 500ms var(--ease);
}
.faq__icon::after { transform: rotate(90deg); }
.faq__q[aria-expanded="true"] .faq__icon::after { transform: rotate(0deg); }
.faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 600ms var(--ease);
  padding-left: 22px;
}
.faq__a > div { padding-bottom: clamp(20px, 2.4vw, 30px); max-width: 74ch; color: var(--mist-dim); }

/* Портфолио */
.filters { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 32px; }
.filter {
  padding: 11px 18px;
  border: 1px solid var(--line);
  border-radius: 2px;
  font-size: 11px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  color: var(--mist-dim);
  min-height: 44px;
  transition: color 400ms var(--ease), border-color 400ms var(--ease), background 400ms var(--ease);
}
.filter:hover { color: var(--white); border-color: var(--gold); }
.filter.is-active { background: var(--mist); color: var(--green-900); border-color: var(--mist); }

.works { display: grid; gap: 18px; grid-template-columns: 1fr; }
.work {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
  background: var(--bg-void);
  display: block;
  width: 100%;
  text-align: left;
  transition: transform var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.work:hover { transform: translateY(-4px); border-color: var(--gold); }
.work img { width: 100%; aspect-ratio: 45 / 32; object-fit: cover; transition: transform 1200ms var(--ease); }
.work:hover img { transform: scale(1.04); }
.work__body {
  position: absolute; inset: auto 0 0 0;
  padding: 20px;
  display: grid;
  gap: 6px;
  background: linear-gradient(180deg, transparent, rgba(6, 13, 10, .92));
}
.work__body b { font-family: var(--font-head); font-size: 19px; text-transform: uppercase; color: var(--white); letter-spacing: .03em; }
.work__meta { font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--gold); }
.work[hidden] { display: none; }

.lightbox {
  position: fixed; inset: 0; z-index: 120;
  background: rgba(6, 13, 10, .95);
  backdrop-filter: blur(8px);
  display: grid;
  place-items: center;
  padding: clamp(16px, 4vw, 60px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 500ms var(--ease), visibility 0s linear 500ms;
}
.lightbox.is-open { opacity: 1; visibility: visible; transition: opacity 500ms var(--ease), visibility 0s linear 0s; }
.lightbox img { max-height: 76vh; width: auto; border: 1px solid var(--line); }
.lightbox__figure { display: grid; gap: 16px; justify-items: center; text-align: center; max-width: 1100px; }
.lightbox__close {
  position: absolute; top: 18px; right: 18px;
  width: 48px; height: 48px;
  display: grid; place-content: center;
  color: var(--mist);
  border: 1px solid var(--line);
  border-radius: 2px;
}
.lightbox__close:hover { color: var(--white); border-color: var(--gold); }
.lightbox__nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 48px; height: 48px;
  display: grid; place-content: center;
  color: var(--mist-dim);
}
.lightbox__nav:hover { color: var(--white); }
.lightbox__nav svg { width: 13px; height: 24px; }
.lightbox__prev { left: 10px; }
.lightbox__next { right: 10px; }

/* ---------- 10. Формы ---------- */
.form { display: grid; gap: 20px; }
.field { display: grid; gap: 8px; }
.field label { font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: var(--mist-dim); }
.field input, .field textarea, .field select {
  width: 100%;
  background: rgba(217, 231, 223, .04);
  border: 1px solid var(--line);
  border-radius: 2px;
  color: var(--white);
  font: inherit;
  font-size: 15px;
  padding: 15px 16px;
  min-height: 48px;
  transition: border-color 400ms var(--ease), background 400ms var(--ease);
}
.field textarea { min-height: 132px; resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: rgba(159, 181, 169, .55); }
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--gold); background: rgba(217, 231, 223, .07); outline: none; }
.field.has-error input, .field.has-error textarea { border-color: #C4564F; }
.field__error { font-size: 12px; color: #E08A84; display: none; }
.field.has-error .field__error { display: block; }

.check { display: flex; gap: 12px; align-items: flex-start; font-size: 13px; color: var(--mist-dim); cursor: pointer; }
.check input { width: 18px; height: 18px; margin-top: 3px; accent-color: var(--gold); flex-shrink: 0; }
.check a { color: var(--mist); text-decoration: underline; text-underline-offset: 3px; }
.check.has-error { color: #E08A84; }

.form__status {
  display: none;
  border: 1px solid var(--gold);
  background: rgba(201, 162, 76, .1);
  border-radius: 2px;
  padding: 18px 20px;
  font-size: 14px;
  color: var(--white);
}
.form__status.is-visible { display: block; }
.form__status.is-error { border-color: #c0503f; background: rgba(192, 80, 63, .12); }
.form__status a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }

.contact-grid { display: grid; gap: clamp(32px, 4vw, 56px); }
.contact-list { display: grid; gap: 22px; }
.contact-list__item { display: grid; gap: 5px; padding-bottom: 20px; border-bottom: 1px solid var(--line); }
.contact-list__item:last-child { border-bottom: 0; }
.contact-list a { color: var(--white); font-size: clamp(17px, 1.7vw, 21px); font-family: var(--font-head); letter-spacing: .04em; }
.contact-list a:hover { color: var(--gold); }
.messengers { display: flex; flex-wrap: wrap; gap: 10px; }
.map {
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  position: relative;
  background: linear-gradient(140deg, var(--green-900), var(--bg-void));
}
.map__frame {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: 0;
  filter: grayscale(.5) invert(92%) contrast(90%) hue-rotate(160deg);
}
.map__grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 42px 42px;
  opacity: .5;
  pointer-events: none;
}
.map__pin { position: relative; color: var(--gold); justify-self: center; }
.map__pin svg { width: 30px; height: 30px; }
.map__link {
  position: absolute; right: 12px; bottom: 12px; z-index: 1;
  background: var(--bg-void); color: var(--white);
  border: 1px solid var(--line); border-radius: 4px;
  padding: 8px 14px; font-size: 13px; letter-spacing: .04em;
}
.map__link:hover { color: var(--gold); border-color: var(--gold); }

/* ---------- 11. Появление / движение ---------- */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 900ms var(--ease), transform 900ms var(--ease);
  transition-delay: var(--delay, 0ms);
}
.reveal.is-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
  .hero__car { animation: none; }
}

/* ---------- 12. Адаптив ---------- */
@media (min-width: 560px) {
  .stats { grid-template-columns: repeat(3, 1fr); }
  .stat { border-top: 1px solid var(--line); border-left: 1px solid var(--line); padding-inline: clamp(16px, 2vw, 28px); }
  .stat:first-child { border-left: 0; padding-left: 0; }
  .cards, .svc, .works { grid-template-columns: repeat(2, 1fr); }
  .hero__bar .is-hidden-sm { display: inline; }
  .specs__row { grid-template-columns: 260px 1fr; }
}

@media (min-width: 768px) {
  .telemetry { grid-template-columns: minmax(240px, .8fr) 1.4fr; align-items: center; gap: 40px; }
  .telemetry__bars { grid-template-columns: repeat(3, 1fr); gap: 26px; }
  .telemetry__note { grid-column: 1 / -1; }
  .contact-grid { grid-template-columns: 1.1fr .9fr; }
  .guarantee { grid-template-columns: 1fr 1fr; }
  .tl__item { grid-template-columns: 96px 1fr; gap: 32px; }
  .tl__num { font-size: 40px; }
  .tl__line { left: 47px; }
  .form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
}

@media (min-width: 1024px) {
  body { padding-left: var(--rail); }
  .hero__arrow { display: grid; }
  .rail { display: flex; }
  .hdr { left: var(--rail); }
  .cards, .svc, .works { grid-template-columns: repeat(3, 1fr); }
  .about__grid { grid-template-columns: minmax(120px, .8fr) 3fr 2.2fr; }
  .ftr__grid { grid-template-columns: 1.2fr 1fr 1.2fr; gap: 56px; }
}

@media (max-width: 1023px) {
  .hdr { height: auto; padding-block: 14px; }
  .hdr.is-stuck { height: auto; }
  .hdr__inner { flex-wrap: wrap; row-gap: 10px; }
  .nav { order: 3; flex: 1 0 100%; justify-content: flex-start; gap: 20px; }
  .hero { min-height: 0; }
  .hero__slide {
    position: absolute;
    display: block;
    padding-block: 104px 92px;
  }
  .hero__slide.is-active { position: relative; }
  .hero__ghost {
    position: static;
    display: block;
    transform: none !important;
    font-size: clamp(110px, 20vh, 200px);
    text-align: left;
    margin-bottom: -.16em;
    padding-inline: var(--gutter);
  }
  .hero__car,
  .hero__photo {
    position: static;
    width: min(100%, 620px);
    margin: 0 auto 24px;
    padding-inline: var(--gutter);
  }
  .hero__grid { justify-content: flex-start; }
  .hero__content { width: 100%; }
  .hero__tabs { position: static; margin-top: 28px; padding-bottom: 4px; }
  .hero__bar { position: relative; }
  .about__wordmark { bottom: -.1em; }
}

@media (max-width: 1023px) {
  .hero__slides { position: relative; inset: auto; }
}

@media (max-width: 559px) {
  .brand__sub { display: none; }
  .hero__bar { padding-inline: 14px; }
  .hero__bar button span { display: none; }
  .dots button.is-active { width: 20px; }
  .btn:not(.btn-sm) { width: 100%; justify-content: center; padding-inline: 20px; }
  .cta__actions .btn { width: auto; }
  .about__req { font-size: 11.5px; }
}

/* ---------- 13. Компоненты страниц ---------- */
.hdr__side { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }

.hero__content h1,
.hero__content h2 {
  font-size: clamp(38px, 4.4vw, 64px);
  font-weight: 700;
  line-height: .96;
}

.telemetry__route {
  display: block;
  font-family: var(--font-head);
  font-size: clamp(17px, 1.6vw, 21px);
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--white);
  font-weight: 600;
}
.section--light .telemetry__route,
.map .telemetry__route { color: var(--white); }

.about__head { position: relative; }

.stack { display: grid; gap: 18px; align-content: start; }
.stack--lg { gap: clamp(22px, 2.4vw, 32px); }

.grid-2 { display: grid; gap: clamp(28px, 4vw, 56px); align-items: start; }
@media (min-width: 768px) { .grid-2 { grid-template-columns: 1fr 1fr; } }

.doc-actions { display: flex; flex-wrap: wrap; gap: 14px; }

.note { font-size: 12.5px; line-height: 1.6; color: var(--mist-dim); }
.section--light .note { color: rgba(14, 42, 30, .62); }

.reviews { display: grid; gap: 18px; align-items: start; }
@media (min-width: 768px) { .reviews { grid-template-columns: repeat(3, 1fr); } }
.review {
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: clamp(24px, 2.4vw, 32px);
  display: grid;
  gap: 18px;
  align-content: space-between;
  background: rgba(255, 255, 255, .03);
}
.review[hidden] { display: none; }
.review p { font-size: 15px; display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 4; overflow: hidden; }
.review.is-open p { -webkit-line-clamp: unset; overflow: visible; }
.review__more {
  justify-self: start;
  border: 0;
  padding: 0;
  background: none;
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  cursor: pointer;
}
.review__more:hover { color: var(--white); }
.section--light .review__more:hover { color: var(--green-900); }
.review footer { display: grid; gap: 5px; }
.review b { font-family: var(--font-head); font-size: 16px; letter-spacing: .04em; text-transform: uppercase; color: var(--white); }
.review span { font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--mist-dim); }
.review footer span:last-child { color: var(--gold); letter-spacing: .08em; }

.pagination { display: flex; align-items: center; justify-content: center; gap: 20px; margin-top: 32px; }
.pagination .filter { min-width: 120px; }
.pagination .filter:disabled { opacity: .35; pointer-events: none; }
.pagination__status { font-size: 11px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--mist-dim); }
.section--light .pagination__status { color: rgba(14, 42, 30, .55); }

/* Светлая секция: инверсия компонентов */
.section--light .link-arrow { color: var(--green-900); }
.section--light .link-arrow:hover { color: var(--gold); }
.section--light .checklist { color: rgba(14, 42, 30, .78); }
.section--light .specs__row { border-color: var(--line-dark); }
.section--light .specs__key { color: rgba(14, 42, 30, .55); }
.section--light .specs__val { color: var(--green-900); }
.section--light .copy { color: rgba(14, 42, 30, .6); border-color: var(--line-dark); }
.section--light .copy:hover { color: var(--green-900); border-color: var(--gold); }
.section--light .review { background: rgba(255, 255, 255, .58); border-color: var(--line-dark); }
.section--light .review p { color: rgba(14, 42, 30, .86); }
.section--light .review b { color: var(--green-900); }
.section--light .review span { color: rgba(14, 42, 30, .58); }

/* Кнопка-карточка портфолио */
.work { padding: 0; }

/* Лайтбокс: подпись */
.lightbox b { font-family: var(--font-head); font-size: clamp(18px, 2vw, 24px); text-transform: uppercase; letter-spacing: .04em; color: var(--white); }
.lightbox figcaption { gap: 8px; }

/* Чекбокс с ошибкой */
.check { flex-wrap: wrap; }
.check .field__error { flex-basis: 100%; }
.check.has-error .field__error { display: block; }

/* ---------- 14. Секция с роликом (в движении) ---------- */
.reel { overflow: hidden; }

.reel__grid {
  display: grid;
  gap: clamp(28px, 4vw, 64px);
  align-items: center;
}
@media (min-width: 900px) {
  .reel__grid { grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr); }
}

.reel__media {
  position: relative;
  width: min(100%, 600px);
  justify-self: center;
  isolation: isolate;
}
.reel__media picture { display: block; position: relative; z-index: 1; }
.reel__media img { width: 100%; }

.reel__ghost {
  position: absolute;
  left: 50%;
  top: -5%;
  transform: translateX(-50%);
  z-index: 0;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(104px, 15vw, 210px);
  line-height: .8;
  letter-spacing: -.01em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(14, 42, 30, .22);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
}

.reel__tag {
  position: absolute;
  left: 7%;
  bottom: 12%;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 13px;
  border: 1px solid var(--line-dark);
  border-radius: 2px;
  background: rgba(217, 231, 223, .74);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--green-900);
  white-space: nowrap;
}
.reel__tag i {
  width: 6px; height: 6px;
  border-radius: 99px;
  background: var(--gold);
  animation: reel-pulse 2.4s var(--ease) infinite;
}
@keyframes reel-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .3; transform: scale(.7); }
}

.reel__facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(12px, 2vw, 26px);
  padding-top: 22px;
  border-top: 1px solid var(--line-dark);
}
.reel__facts b {
  display: block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1;
  color: var(--green-900);
  margin-bottom: 8px;
}
.reel__facts span {
  font-size: 10.5px;
  line-height: 1.4;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(14, 42, 30, .55);
}

@media (max-width: 559px) {
  .reel__tag { left: 5%; bottom: 8%; font-size: 9.5px; letter-spacing: .14em; }
  .reel__facts { grid-template-columns: 1fr 1fr; gap: 16px; }
  .reel__facts li:last-child { grid-column: 1 / -1; }
}

@media (prefers-reduced-motion: reduce) {
  .reel__tag i { animation: none; }
}

/* ---------- 15. Герой: фотография вместо силуэта ---------- */
.hero__photo {
  position: absolute;
  left: -5%;
  top: 46%;
  transform: translateY(-50%);
  width: min(58%, 980px);
  z-index: 0;
  pointer-events: none;
  display: block;
}
.hero__photo img { width: 100%; }

/* Нижняя полоса героя без переключения слайдов */
.hero__bar--static {
  justify-content: space-between;
  gap: 16px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--mist-dim);
}
.hero__bar--static span { white-space: nowrap; }
.hero__bar-rule {
  flex: 1 1 auto;
  height: 1px;
  min-width: 24px;
  background: var(--line);
}

@media (max-width: 1023px) {
  .hero__photo {
    position: static;
    width: min(100%, 620px);
    margin: 0 auto 20px;
    padding-inline: var(--gutter);
    transform: none;
  }
}

@media (max-width: 639px) {
  .hero__bar--static { justify-content: center; }
  .hero__bar--static span:first-child,
  .hero__bar-rule { display: none; }
  .hero__bar--static span { font-size: 10px; letter-spacing: .14em; white-space: normal; text-align: center; }
}

/* ---------- 16. Секция «Активная поставка» ---------- */
.delivery {
  display: grid;
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
}
@media (min-width: 900px) {
  .delivery { grid-template-columns: minmax(0, .72fr) minmax(0, 1.28fr); }
}

.delivery__media {
  margin: 0;
  width: min(100%, 440px);
  justify-self: center;
}
.delivery__media img { width: 100%; }

.delivery__panel {
  display: grid;
  gap: clamp(16px, 2vw, 24px);
  align-content: center;
}

.route {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
}
@media (min-width: 768px) {
  .route { grid-template-columns: repeat(4, 1fr); }
}
.route li {
  background: var(--bg-deep);
  padding: 15px 17px;
  display: grid;
  gap: 7px;
  font-size: 12.5px;
  line-height: 1.35;
  color: var(--mist-dim);
}
.route span {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: .1em;
  color: var(--gold);
}
