/* ============ BASE ============ */
:root {
  --bg: #0a0b0a;
  --text: #f2f1ee;
  --muted: #8d918d;
  --line: rgba(255, 255, 255, 0.1);
  --accent: #d94f3d;
  /* фолбэки: Kanit — тайский в техно-стиле, Noto Sans SC — китайский */
  --font-display: 'Exo 2', 'Kanit', 'Noto Sans SC', sans-serif;
  --font-ui: 'Manrope', 'Noto Sans Thai', 'Noto Sans SC', sans-serif;
  --font-body: 'Manrope', 'Noto Sans Thai', 'Noto Sans SC', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 92px; }

body {
  font-family: var(--font-body);
  font-size: 15px;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container {
  width: min(1240px, 100% - 48px);
  margin-inline: auto;
}
.container--narrow { width: min(760px, 100% - 48px); }

/* ============ TYPO / UI ATOMS ============ */
.label {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 20px;
}
.label::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  margin-right: 14px;
  vertical-align: 2px;
}
.section-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(28px, 4vw, 52px);
  line-height: 1.1;
  letter-spacing: -0.01em;
}
.note { font-size: 12px; color: var(--muted); }

.btn {
  display: inline-block;
  padding: 15px 34px;
  border-radius: 999px;
  background: var(--text);
  color: #0a0b0a;
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  border: 1px solid var(--text);
  cursor: pointer;
  transition: opacity 0.25s, transform 0.25s;
}
.btn:hover { opacity: 0.85; transform: translateY(-1px); }
.btn--ghost {
  background: transparent;
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.3);
}
.btn--ghost:hover { border-color: var(--text); opacity: 1; }
.btn--invert {
  background: #0a0b0a;
  color: var(--text);
  border-color: #0a0b0a;
}

.link-arrow {
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  padding-bottom: 4px;
  transition: border-color 0.25s;
}
.link-arrow::after { content: '\2009\2192'; }
.link-arrow:hover { border-color: var(--text); }

/* ============ HEADER ============ */
.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background 0.3s, border-color 0.3s;
  border-bottom: 1px solid transparent;
}
.header.is-scrolled {
  background: rgba(10, 11, 10, 0.82);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
}
.header__inner {
  width: min(1360px, 100% - 72px);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 26px 0;
}
.logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 19px;
  letter-spacing: 0.12em;
  justify-self: start;
}
.nav {
  display: flex;
  gap: 32px;
}
.nav a {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.2s;
}
.nav a:hover { color: var(--text); }
.nav a.is-current { color: var(--accent); }
.header__right {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 20px;
}
/* ---- переключатель языка ---- */
.lang { position: relative; }
.lang__btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 4px;
  border: none;
  background: transparent;
  cursor: pointer;
  color: var(--muted);
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  transition: color 0.2s, border-color 0.2s;
}
.lang__btn:hover { color: var(--text); }
.lang__chev { transition: transform 0.25s; }
.lang.is-open .lang__chev { transform: rotate(180deg); }
.lang__list {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  min-width: 74px;
  padding: 6px;
  background: rgba(12, 13, 12, 0.92);
  backdrop-filter: blur(16px);
  border: 1px solid var(--line);
  border-radius: 14px;
  list-style: none;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, -6px);
  transition: opacity 0.25s, visibility 0.25s, transform 0.25s;
  z-index: 200;
}
.lang.is-open .lang__list { opacity: 1; visibility: visible; transform: translate(-50%, 0); }
.lang__list button {
  display: block;
  width: 100%;
  text-align: center;
  padding: 9px 12px;
  border: none;
  border-radius: 9px;
  background: none;
  cursor: pointer;
  color: var(--muted);
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 500;
  transition: color 0.2s, background 0.2s;
}
.lang__list button:hover { color: var(--text); background: rgba(255, 255, 255, 0.06); }
.lang__list button.is-active { color: var(--accent); }

.header__social {
  color: var(--muted);
  display: grid;
  place-items: center;
  transition: color 0.2s;
}
.header__social:hover { color: var(--text); }
.header.is-hidden { transform: translateY(-100%); }
.header { transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), background 0.3s, border-color 0.3s; }

/* ============ Плавающий бургер + полноэкранное меню ============ */
.menu-fab {
  position: fixed;
  top: 22px;
  right: clamp(20px, 2.5vw, 40px);
  z-index: 320;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(10, 11, 10, 0.55);
  backdrop-filter: blur(10px);
  cursor: pointer;
  display: grid;
  place-items: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.35s, visibility 0.35s, transform 0.35s, border-color 0.25s, background 0.25s;
}
.menu-fab.is-show,
.menu-fab.is-open {
  opacity: 1;
  visibility: visible;
  transform: none;
}
.menu-fab:hover { border-color: var(--accent); background: rgba(217, 79, 61, 0.15); }
.menu-fab span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  grid-area: 1 / 1;
}
.menu-fab span:first-child { transform: translateY(-4px); }
.menu-fab span:last-child { transform: translateY(4px); }
.menu-fab.is-open span:first-child { transform: rotate(45deg); }
.menu-fab.is-open span:last-child { transform: rotate(-45deg); }

.menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 310;
  background:
    radial-gradient(60% 50% at 78% 20%, rgba(217, 79, 61, 0.08), transparent 65%),
    rgba(8, 9, 8, 0.94);
  backdrop-filter: blur(18px);
  clip-path: circle(0px at calc(100% - 47px) 49px);
  visibility: hidden;
  transition:
    clip-path 0.45s cubic-bezier(0.65, 0, 0.35, 1),
    visibility 0s linear 0.45s;
}
.menu-overlay.is-open {
  clip-path: circle(160% at calc(100% - 47px) 49px);
  visibility: visible;
  transition: clip-path 0.45s cubic-bezier(0.65, 0, 0.35, 1);
}
.menu-overlay__inner {
  height: 100%;
  width: min(1240px, 100% - 48px);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  grid-template-rows: 1fr auto;
  align-items: center;
  gap: 40px clamp(40px, 6vw, 96px);
  padding: 90px 0 44px;
}
/* фоновое видео на весь экран меню */
.menu-overlay__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  opacity: 0;
  transform: scale(1.06);
  transition:
    opacity 0.45s ease 0.08s,
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.08s;
}
.menu-overlay.is-open .menu-overlay__media { opacity: 1; transform: none; }
.menu-overlay__media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* затемнение поверх видео — чтобы пункты меню читались */
.menu-overlay__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 9, 8, 0.78) 0%, rgba(8, 9, 8, 0.35) 55%, rgba(8, 9, 8, 0.2) 100%),
    linear-gradient(180deg, rgba(8, 9, 8, 0.45) 0%, transparent 30%, transparent 62%, rgba(8, 9, 8, 0.72) 100%);
}
.menu-overlay__inner { position: relative; z-index: 1; }
.menu-overlay__nav {
  display: grid;
  gap: clamp(6px, 1.6vh, 16px);
  grid-column: 1;
  grid-row: 1;
}
.menu-overlay__nav a {
  display: block;
  width: fit-content;
}
/* пункты «проявляются светом» синхронно с включением фар в видео (класс is-lit из JS) */
.menu-overlay__nav b {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(30px, 5.4vh, 60px);
  line-height: 1.08;
  color: rgba(242, 241, 238, 0.82);
  opacity: 0;
  filter: blur(14px) brightness(2.4);
  transform: translateY(10px);
  transition:
    opacity 0.6s ease var(--d, 0s),
    filter 0.6s ease var(--d, 0s),
    transform 0.6s cubic-bezier(0.22, 1, 0.36, 1) var(--d, 0s),
    color 0.25s;
}
.menu-overlay.is-lit .menu-overlay__nav b {
  opacity: 1;
  filter: none;
  transform: none;
}
.menu-overlay__nav a:hover b { color: var(--accent); }
.menu-overlay__nav a:nth-child(1) b { --d: 0s; }
.menu-overlay__nav a:nth-child(2) b { --d: 0.05s; }
.menu-overlay__nav a:nth-child(3) b { --d: 0.1s; }
.menu-overlay__nav a:nth-child(4) b { --d: 0.15s; }
.menu-overlay__nav a:nth-child(5) b { --d: 0.2s; }
.menu-overlay__nav a:nth-child(6) b { --d: 0.25s; }
.menu-overlay__nav a:nth-child(7) b { --d: 0.3s; }
.menu-overlay__aside {
  grid-column: 1 / -1;
  grid-row: 2;
  display: flex;
  align-items: center;
  gap: 36px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease 0.3s, transform 0.5s cubic-bezier(0.22, 1, 0.36, 1) 0.3s;
}
.menu-overlay.is-lit .menu-overlay__aside { opacity: 1; transform: none; }
.menu-overlay__aside .label { margin: 0; }
.menu-overlay__social { font-size: 13px; color: var(--muted); }
/* языки внутри меню */
.menu-overlay__lang { display: flex; gap: 8px; }
.menu-overlay__lang button {
  min-width: 44px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
  color: var(--muted);
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  transition: color 0.2s, border-color 0.2s;
}
.menu-overlay__lang button:hover { color: var(--text); border-color: rgba(255, 255, 255, 0.45); }
.menu-overlay__lang button.is-active { color: var(--accent); border-color: var(--accent); }

/* тайскому письму нужно больше воздуха по вертикали */
html[lang="th"] .hero-title { line-height: 1.25; }
html[lang="th"] .menu-overlay__nav b { line-height: 1.45; }
html[lang="th"] .feature__title,
html[lang="th"] .section-title { line-height: 1.35; }

/* ============ HERO (scroll scrub) ============ */
.hero-scroll {
  /* высота = «длина» промотки видео скроллом */
  height: 400vh;
  position: relative;
}
.hero-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
}
.hero-frame {
  position: relative;
  height: 100%;
  overflow: hidden;
  background: #0a0b0a;
}
.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.8s;
}
.hero-canvas.is-ready { opacity: 1; }

/* Постер, пока грузится первый кадр */
.hero-fallback {
  position: absolute;
  inset: 0;
  background-color: #0a0b0a;
  background-size: cover;
  background-position: center;
}
.hero-fallback.is-hidden { display: none; }

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 11, 10, 0.45) 0%, transparent 26%),
    linear-gradient(0deg, rgba(10, 11, 10, 0.6) 0%, transparent 42%),
    linear-gradient(90deg, rgba(10, 11, 10, 0.42) 0%, transparent 42%),
    radial-gradient(120% 105% at 50% 42%, transparent 52%, rgba(5, 6, 5, 0.62) 100%);
}

/* киношная атмосфера: дымка + зерно плёнки */
.hero-atmo {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
.hero-atmo::before {
  content: '';
  position: absolute;
  inset: -12%;
  background:
    radial-gradient(42% 34% at 68% 58%, rgba(217, 79, 61, 0.07), transparent 72%),
    radial-gradient(52% 44% at 26% 32%, rgba(255, 255, 255, 0.05), transparent 74%);
  animation: hazeDrift 26s ease-in-out infinite alternate;
}
@keyframes hazeDrift {
  from { transform: translate3d(-2.5%, -1.5%, 0) scale(1); }
  to   { transform: translate3d(2.5%, 2%, 0) scale(1.06); }
}
.hero-atmo::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.055;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='240' height='240' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 240px 240px;
  animation: grain 0.9s steps(8) infinite;
}
@keyframes grain {
  to { background-position: 240px 240px; }
}

.hero-ui {
  position: absolute;
  inset: 0;
  z-index: 2;
}
.hero-kicker {
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: rgba(242, 241, 238, 0.92);
  margin-bottom: 26px;
  text-shadow: 0 1px 14px rgba(0, 0, 0, 0.9), 0 0 3px rgba(0, 0, 0, 0.7);
}

/* сцена 1: заголовок-история (гаснет при промотке) */
.hero-intro {
  position: absolute;
  left: clamp(24px, 5.5vw, 88px);
  top: 50%;
  transform: translateY(-54%);
  max-width: 62%;
  will-change: opacity, transform;
}
.hero-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(42px, 6vw, 104px);
  line-height: 1.02;
  letter-spacing: -0.015em;
}
.hero-title em {
  font-style: normal;
  font-weight: 700;
}
.hero-title i {
  font-style: normal;
  color: var(--accent);
}

/* сцена 2: одна строка на чистом кадре */
.hero-mid {
  position: absolute;
  left: clamp(24px, 5.5vw, 88px);
  bottom: clamp(110px, 18vh, 170px);
  opacity: 0;
  will-change: opacity;
}
.hero-mid__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(26px, 3vw, 46px);
  line-height: 1.1;
  margin-bottom: 14px;
  text-shadow: 0 3px 24px rgba(0, 0, 0, 0.8), 0 0 4px rgba(0, 0, 0, 0.5);
}
.hero-mid__stats {
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: rgba(242, 241, 238, 0.95);
  text-shadow: 0 1px 14px rgba(0, 0, 0, 0.9), 0 0 3px rgba(0, 0, 0, 0.7);
}

/* сцена 3: оффер */
.hero-final {
  position: absolute;
  left: clamp(24px, 5.5vw, 88px);
  top: 50%;
  transform: translateY(-54%);
  opacity: 0;
  will-change: opacity, transform;
}
.hero-final .hero-kicker { margin-bottom: 16px; }
.hero-final__line {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(22px, 2.6vw, 40px);
  letter-spacing: -0.01em;
  margin-bottom: 28px;
  text-shadow: 0 3px 24px rgba(0, 0, 0, 0.8), 0 0 4px rgba(0, 0, 0, 0.5);
}
.hero-final .link-arrow { text-shadow: 0 1px 12px rgba(0, 0, 0, 0.85); }


/* CTA-пилюля с круглой стрелкой */
.hero-cta {
  position: absolute;
  left: clamp(24px, 5vw, 80px);
  bottom: clamp(24px, 5vh, 48px);
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding: 9px 10px 9px 26px;
  border: 1.5px solid var(--accent);
  border-radius: 999px;
  font-family: var(--font-ui);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: background 0.25s, transform 0.25s;
}
.hero-cta:hover { background: rgba(217, 79, 61, 0.12); transform: translateY(-2px); }
.hero-cta__icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent);
  color: #0a0b0a;
  display: grid;
  place-items: center;
  font-size: 17px;
}


/* ============ SECTIONS ============ */
.section { padding: clamp(96px, 12vw, 160px) 0 0; }
.section:last-of-type { padding-bottom: clamp(96px, 12vw, 160px); }
.section-head { margin-bottom: clamp(48px, 7vw, 88px); }

/* reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.is-visible { opacity: 1; transform: none; }

/* ============ BENEFITS: красная плитка ============ */
.feature {
  position: relative;
  overflow: hidden;
  background: #d83c24;
}
.feature__bg {
  position: absolute;
  inset: 0;
  background: url('assets/img/benefits-red.webp') right center / cover no-repeat;
}
.feature__inner {
  position: relative;
  z-index: 1;
  width: min(1360px, 100% - 48px);
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  /* секция встаёт целиком под фиксированной шапкой */
  min-height: calc(100vh - 92px);
  padding: clamp(48px, 7vh, 80px) 0 34px;
}
.feature__cols {
  flex: 1;
  display: grid;
  grid-template-columns: 1.05fr 1.3fr;
  gap: clamp(40px, 5vw, 90px);
  align-items: center;
}
.feature__left {
  align-self: center;
}
.feature__label {
  font-family: var(--font-ui);
  font-size: 11px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 34px;
}
.feature__label::before {
  content: '///';
  letter-spacing: 0.1em;
  margin-right: 16px;
  opacity: 0.85;
}
.feature__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(30px, 3.4vw, 54px);
  line-height: 1.08;
  color: #fff;
}
.feature__dash {
  display: block;
  width: 26px;
  height: 2px;
  background: rgba(255, 255, 255, 0.9);
  margin: 30px 0;
}
.feature__sub {
  color: rgba(255, 255, 255, 0.85);
  font-size: 16px;
  line-height: 1.85;
}

/* статичная pill-кнопка (как в хиро) */
.cta-pill {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding: 9px 10px 9px 26px;
  border: 1.5px solid var(--accent);
  border-radius: 999px;
  font-family: var(--font-ui);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: background 0.25s, transform 0.25s;
}
.cta-pill:hover { background: rgba(217, 79, 61, 0.12); transform: translateY(-2px); }
.cta-pill__icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent);
  color: #0a0b0a;
  display: grid;
  place-items: center;
  font-size: 17px;
}

/* колонка цифр за вертикальным разделителем */
.feature__list {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: clamp(26px, 4.8vh, 48px);
  border-left: 1px solid rgba(255, 255, 255, 0.4);
  padding-left: clamp(36px, 4.5vw, 80px);
  align-self: stretch;
}
.feature-item {
  display: grid;
  grid-template-columns: 44px minmax(150px, 190px) 1fr;
  gap: clamp(20px, 2.4vw, 40px);
  align-items: center;
}
.feature-item:nth-child(1) { --stagger: 0s; }
.feature-item:nth-child(2) { --stagger: 0.08s; }
.feature-item:nth-child(3) { --stagger: 0.16s; }
.feature-item:nth-child(4) { --stagger: 0.24s; }
.feature-item:nth-child(5) { --stagger: 0.32s; }
/* каскад появления пунктов */
.feature__list .feature-item.reveal { transition-delay: var(--stagger, 0s); }
.feature-item__tick {
  width: 44px;
  height: 1.5px;
  background: rgba(255, 255, 255, 0.85);
}
.feature-item__num {
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-family: var(--font-display);
  color: #fff;
  white-space: nowrap;
}
.feature-item__num b {
  font-weight: 500;
  font-size: clamp(40px, 4.6vw, 74px);
  line-height: 0.95;
}
.feature-item__num span {
  font-weight: 400;
  font-size: clamp(15px, 1.3vw, 20px);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.feature-item__body b {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
}
.feature-item__body p {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.75);
  max-width: 30ch;
  margin-top: 6px;
}

/* ============ PROMO VIDEO ============ */
.promo {
  position: relative;
  height: 100vh;
  overflow: hidden;
  margin-top: clamp(64px, 8vw, 120px);
}
.promo video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.promo__sound {
  position: absolute;
  right: clamp(20px, 2.5vw, 40px);
  bottom: clamp(20px, 3vh, 36px);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(10, 11, 10, 0.5);
  backdrop-filter: blur(8px);
  color: var(--text);
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: border-color 0.25s, background 0.25s;
}
.promo__sound:hover { border-color: var(--accent); background: rgba(217, 79, 61, 0.15); }
.promo__sound .promo__wave { display: none; }
.promo__sound.is-on .promo__wave { display: block; }
.promo__sound.is-on .promo__slash { display: none; }

/* ============ MODELS: витрина с вращающимся байком ============ */
.showcase {
  position: relative;
  min-height: calc(100vh - 92px);
  margin-top: clamp(64px, 8vw, 120px);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.showcase__slide {
  flex: 1;
  display: none;
  grid-template-columns: minmax(280px, 1fr) minmax(0, 1.7fr) minmax(220px, 0.9fr);
  gap: clamp(24px, 3vw, 56px);
  align-items: center;
  width: min(1400px, 100% - 48px);
  margin-inline: auto;
  padding: 40px 0 96px;
}
.showcase__slide.is-active {
  display: grid;
  animation: slideIn 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
@keyframes slideIn {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: none; }
}
.showcase__name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(28px, 3.2vw, 48px);
  letter-spacing: 0.01em;
  margin-bottom: 18px;
}
.showcase__price {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(20px, 2vw, 30px);
  color: var(--accent);
  margin-bottom: 26px;
}
.showcase__desc {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
  max-width: 34ch;
  margin-bottom: 14px;
}
.showcase__colors {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 32px;
}
/* кружочки выбора цвета */
.showcase__swatches {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 32px;
}
.showcase__swatches-label {
  font-family: var(--font-ui);
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--muted);
  margin-right: 6px;
}
.swatch {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--c);
  border: 1px solid rgba(255, 255, 255, 0.25);
  cursor: pointer;
  transition: box-shadow 0.25s, transform 0.25s;
}
.swatch:hover { transform: scale(1.15); }
.swatch.is-active {
  box-shadow: 0 0 0 3px var(--bg), 0 0 0 4.5px var(--accent);
}
.showcase__media video { transition: opacity 0.35s ease; }
.showcase__media video.is-swapping { opacity: 0; }
.showcase__media {
  position: relative;
}
.showcase__media video {
  width: 100%;
  max-height: calc(100vh - 260px);
  object-fit: contain;
  display: block;
}
/* все четыре кромки видео растворяются в цвет фона страницы */
.showcase__media::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, var(--bg), transparent 16%),
    linear-gradient(0deg, var(--bg), transparent 16%),
    linear-gradient(90deg, var(--bg), transparent 15%),
    linear-gradient(270deg, var(--bg), transparent 15%);
}
.showcase__specs {
  display: grid;
  gap: clamp(24px, 4.5vh, 44px);
  justify-self: end;
}
.showcase__specs li {
  display: flex;
  align-items: center;
  gap: 20px;
}
.spec-icon {
  flex-shrink: 0;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(8, 9, 8, 0.6);
  display: grid;
  place-items: center;
  color: var(--text);
}
.showcase__specs b {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 22px;
  line-height: 1.25;
}
.showcase__specs i {
  display: block;
  font-style: normal;
  font-family: var(--font-ui);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-top: 5px;
}

/* переключатель моделей */
.showcase__nav {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 28px;
  width: min(1400px, 100% - 48px);
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 20px;
}
.showcase__arrow {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: transparent;
  color: var(--text);
  font-size: 17px;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: border-color 0.25s, background 0.25s;
}
.showcase__arrow:hover { border-color: var(--accent); background: rgba(217, 79, 61, 0.1); }
.showcase__nav-label {
  font-family: var(--font-ui);
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--muted);
}
/* вторая подпись + стрелка прижаты вправо, табы — строго по центру */
.showcase__nav-label:nth-of-type(2) { margin-left: auto; }
.showcase__tabs {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  gap: clamp(32px, 5vw, 88px);
}
.showcase__tabs button {
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-ui);
  font-size: 16px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 10px 4px 14px;
  position: relative;
  transition: color 0.25s;
}
.showcase__tabs button::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.showcase__tabs button.is-active { color: var(--text); }
.showcase__tabs button.is-active::after { transform: scaleX(1); }

/* ============ GALLERY: галерея деталей ============ */
.gallery { padding-top: clamp(96px, 12vw, 160px); }
.gallery .section-head { margin-bottom: clamp(32px, 5vw, 56px); }
.gallery__track {
  display: flex;
  gap: clamp(14px, 1.6vw, 24px);
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scrollbar-width: none;
  padding-inline: max(24px, calc((100vw - 1240px) / 2));
  cursor: grab;
}
.gallery__track::-webkit-scrollbar { display: none; }
.gallery__track.is-dragging { cursor: grabbing; }
.gallery__item {
  position: relative;
  flex: 0 0 auto;
  width: clamp(300px, 40vw, 660px);
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 6px;
  cursor: pointer;
}
.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.06);
  opacity: 0;
  transition:
    transform 1.2s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.9s ease;
  user-select: none;
  -webkit-user-drag: none;
}
.gallery__item.is-visible img { transform: scale(1); opacity: 1; }
.gallery__item::after {
  content: '';
  position: absolute;
  inset: 55% 0 0;
  background: linear-gradient(0deg, rgba(5, 6, 5, 0.78), transparent);
  pointer-events: none;
}
.gallery__item figcaption {
  position: absolute;
  left: 26px;
  right: 26px;
  bottom: 22px;
  z-index: 1;
}
.gallery__item figcaption b {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(16px, 1.5vw, 21px);
  margin-bottom: 4px;
}
.gallery__item figcaption span {
  font-size: 13px;
  color: rgba(242, 241, 238, 0.75);
}
.gallery__plus {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(10, 11, 10, 0.45);
  backdrop-filter: blur(6px);
  color: var(--text);
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  transition: background 0.25s, border-color 0.25s, transform 0.25s;
}
.gallery__plus:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #0a0b0a;
  transform: scale(1.08);
}

/* прогресс и стрелки */
.gallery__controls {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-top: clamp(24px, 3.5vw, 44px);
}
.gallery__progress {
  flex: 1;
  height: 2px;
  background: rgba(255, 255, 255, 0.12);
  position: relative;
  overflow: hidden;
}
.gallery__progress i {
  position: absolute;
  inset: 0;
  background: var(--accent);
  transform-origin: left;
  transform: scaleX(0.15);
  transition: transform 0.2s linear;
}
.gallery__arrows { display: flex; gap: 12px; }
.gallery__arrow {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: transparent;
  color: var(--text);
  font-size: 17px;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: border-color 0.25s, background 0.25s;
}
.gallery__arrow:hover { border-color: var(--accent); background: rgba(217, 79, 61, 0.1); }

/* панель с подробностями */
.gallery-drawer {
  position: fixed;
  inset: 0;
  z-index: 200;
  pointer-events: none;
  visibility: hidden;
}
.gallery-drawer.is-open { pointer-events: auto; visibility: visible; }
.gallery-drawer__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 6, 5, 0.6);
  opacity: 0;
  transition: opacity 0.4s;
}
.gallery-drawer.is-open .gallery-drawer__backdrop { opacity: 1; }
.gallery-drawer__panel {
  position: absolute;
  top: 12px;
  right: 12px;
  bottom: 12px;
  width: min(460px, calc(100vw - 24px));
  background: #111211;
  border: 1px solid var(--line);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transform: translateX(calc(100% + 24px));
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}
.gallery-drawer.is-open .gallery-drawer__panel { transform: none; }
.gallery-drawer__close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: rgba(10, 11, 10, 0.55);
  backdrop-filter: blur(6px);
  color: var(--text);
  font-size: 20px;
  cursor: pointer;
  transition: background 0.25s;
}
.gallery-drawer__close:hover { background: var(--accent); color: #0a0b0a; }
.gallery-drawer__img { aspect-ratio: 4 / 2.9; flex-shrink: 0; }
.gallery-drawer__img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.gallery-drawer__body {
  padding: 28px 30px 20px;
  overflow-y: auto;
  flex: 1;
}
.gallery-drawer__body .label { margin-bottom: 14px; }
.gallery-drawer__body h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 23px;
  line-height: 1.25;
  margin-bottom: 18px;
}
.gallery-drawer__text p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--muted);
}
.gallery-drawer__text p + p { margin-top: 14px; }
.gallery-drawer__nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 22px 20px;
  border-top: 1px solid var(--line);
}
.gallery-drawer__nav .gallery__arrow { width: 42px; height: 42px; }
.gallery-drawer__dots { display: flex; gap: 8px; }
.gallery-drawer__dots span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  transition: background 0.25s;
}
.gallery-drawer__dots span.is-active { background: var(--accent); }

/* ============ OUTRO: финал с промоткой и формой ============ */
.outro-scroll {
  position: relative;
  height: 300vh;
  margin-top: clamp(64px, 8vw, 120px);
}
.outro-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  background: #060707;
}
.outro-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.8s;
}
.outro-canvas.is-ready { opacity: 1; }
.outro-fallback {
  position: absolute;
  inset: 0;
  background-color: #060707;
  background-size: cover;
  background-position: center;
}
.outro-fallback.is-hidden { display: none; }
.outro-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(120% 100% at 50% 45%, transparent 48%, rgba(4, 5, 5, 0.62) 100%);
}
.outro-form {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 24px;
  opacity: 0;
  transform: translateY(36px);
  pointer-events: none;
  will-change: opacity, transform;
}
.outro-form .section-title { margin-bottom: 16px; }
.outro-form__sub {
  color: rgba(242, 241, 238, 0.75);
  font-size: 15px;
  max-width: 46ch;
  margin-bottom: 36px;
}
.outro-form .cta-form {
  width: min(440px, 100%);
  text-align: left;
}
.outro-form .cta-form .btn {
  justify-self: stretch;
  text-align: center;
}
.cta-form { display: grid; gap: 8px; }
.cta-form input,
.cta-form select {
  width: 100%;
  padding: 18px 2px;
  border: none;
  border-bottom: 1px solid var(--line);
  background: transparent;
  color: var(--text);
  font: inherit;
  outline: none;
  border-radius: 0;
  transition: border-color 0.25s;
  appearance: none;
  -webkit-appearance: none;
}
.cta-form select:invalid { color: var(--muted); }
.cta-form option { color: #111; }
.cta-form input:focus,
.cta-form select:focus { border-bottom-color: var(--text); }
.cta-form input::placeholder { color: var(--muted); }
.cta-form .btn { margin-top: 32px; justify-self: start; }
.cta-form .note { margin-top: 8px; }
.cta-form__status {
  margin-top: 10px;
  font-size: 13px;
  color: var(--accent);
  min-height: 1em;
}

/* ============ STATIONS: полноэкранная карта + стеклянная панель ============ */
.stations {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: clamp(90px, 10vw, 140px) 0;
  overflow: hidden;
  background: #101110;
}
/* карта на весь экран */
.stations__leaflet { position: absolute; inset: 0; z-index: 0; }
.stations .leaflet-container {
  background: #101110;
  font-family: var(--font-ui);
}
/* виньетка по краям, чтобы карта сливалась с тёмной темой */
.stations__vignette {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(115% 100% at 62% 50%, transparent 52%, rgba(6, 7, 7, 0.66) 100%),
    linear-gradient(180deg, rgba(6, 7, 7, 0.55) 0%, transparent 22%, transparent 80%, rgba(6, 7, 7, 0.6) 100%);
}
.stations__content {
  position: relative;
  z-index: 2;
  width: min(1240px, 100% - 48px);
  pointer-events: none; /* пропускаем курсор к карте мимо панели */
}
.stations__info { pointer-events: auto; }
/* стеклянная панель (glassmorphism) */
.stations__info {
  max-width: 560px;
  background: rgba(14, 15, 14, 0.42);
  backdrop-filter: blur(18px) saturate(1.15);
  -webkit-backdrop-filter: blur(18px) saturate(1.15);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  padding: clamp(26px, 3vw, 44px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}
.stations__sub {
  color: rgba(242, 241, 238, 0.78);
  max-width: 52ch;
  margin: 18px 0 28px;
}
/* маркеры станций: красная точка + пульсирующее кольцо */
.st-marker {
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 10px rgba(217, 79, 61, 0.95);
}
.st-marker::after {
  content: "";
  position: absolute;
  inset: -7px;
  border-radius: 50%;
  border: 1.5px solid var(--accent);
  animation: stPulse 2.4s ease-out infinite;
}
@keyframes stPulse {
  0% { transform: scale(0.4); opacity: 0.8; }
  70%, 100% { transform: scale(1.2); opacity: 0; }
}
/* подпись острова */
.st-isle-label {
  color: rgba(242, 241, 238, 0.38);
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-align: center;
  white-space: nowrap;
}
/* координаты по углам, как в референсе */
.gmap__coord {
  position: absolute;
  z-index: 3;
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: rgba(242, 241, 238, 0.5);
  pointer-events: none;
}
.gmap__coord--tl { top: 26px; left: 30px; }
.gmap__coord--br { bottom: 24px; right: 30px; }
/* кнопки зума */
.gmap__zoom {
  position: absolute;
  z-index: 3;
  top: 24px;
  right: 26px;
  display: grid;
  gap: 6px;
}
.gmap__zoom button {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(10, 11, 10, 0.65);
  backdrop-filter: blur(6px);
  color: var(--text);
  font-family: var(--font-ui);
  font-size: 16px;
  line-height: 1;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}
.gmap__zoom button:hover { border-color: var(--accent); color: var(--accent); }
/* атрибуция тайлов */
.gmap__attr {
  position: absolute;
  z-index: 3;
  left: 30px;
  bottom: 24px;
  font-size: 9px;
  color: rgba(242, 241, 238, 0.3);
  pointer-events: none;
}
.stations__points { max-width: 440px; }
.stations__points ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px 24px;
}
.stations__points li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-ui);
  font-weight: 500;
  font-size: 13.5px;
  color: rgba(242, 241, 238, 0.88);
  white-space: nowrap;
}
.stations__points li i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 6px rgba(217, 79, 61, 0.85);
  flex-shrink: 0;
}
.stations__cap {
  margin-top: 12px;
  font-size: 12.5px;
  color: rgba(242, 241, 238, 0.55);
}

/* ============ B2B: байки для бизнеса ============ */
.b2b { padding: clamp(60px, 7vw, 110px) 0; }
/* скролл-слайдер: полноэкранные кадры с моушн-сменой */
.b2b { padding-top: 0; }
.b2b-scroll { height: 340vh; position: relative; }
.b2b-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  background: #070808;
}
.b2b-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
}
.b2b-slide:first-child { opacity: 1; }
.b2b-slide__bg {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  will-change: transform;
}
/* затемнение слева и по краям для читаемости текста */
.b2b-slide__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 8, 8, 0.84) 0%, rgba(7, 8, 8, 0.45) 45%, rgba(7, 8, 8, 0.1) 75%),
    linear-gradient(180deg, rgba(7, 8, 8, 0.4) 0%, transparent 28%, transparent 72%, rgba(7, 8, 8, 0.55) 100%);
}
.b2b-slide__content {
  position: relative;
  z-index: 1;
  height: 100%;
  width: min(1240px, 100% - 48px);
  margin-inline: auto;
  display: flex;
  align-items: flex-end;
  padding-bottom: clamp(56px, 9vh, 110px);
}
.b2b-slide__inner { max-width: 600px; will-change: transform, opacity; }
.b2b-slide__title {
  font-family: var(--font-ui);
  font-weight: 500;
  font-size: clamp(19px, 1.9vw, 27px);
  line-height: 1.45;
  color: rgba(242, 241, 238, 0.92);
  max-width: 46ch;
  margin-bottom: 24px;
}
.b2b-checks {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, max-content));
  gap: 10px 36px;
}
.b2b-checks li {
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-family: var(--font-ui);
  font-weight: 500;
  font-size: 14.5px;
  color: rgba(242, 241, 238, 0.85);
}
.b2b-checks li em {
  font-style: normal;
  color: var(--accent);
  font-weight: 600;
  flex-shrink: 0;
}
.b2b-slide__cta { margin-top: 28px; }
/* постоянный заголовок секции */
.b2b-head {
  position: absolute;
  z-index: 2;
  top: clamp(76px, 10vh, 120px);
  left: 50%;
  transform: translateX(-50%);
  width: min(1240px, 100% - 48px);
  pointer-events: none;
}
.b2b-head__cats {
  position: relative;
  height: 20px;
  margin-bottom: 16px;
}
.b2b-head__cats .label {
  position: absolute;
  left: 0;
  top: 0;
  margin: 0;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.45s ease, transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
.b2b-head__cats .label.is-active { opacity: 1; transform: none; }
.b2b-head__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(30px, 4vw, 56px);
  line-height: 1.05;
}
.b2b-head__sub {
  margin-top: 10px;
  color: rgba(242, 241, 238, 0.6);
  font-size: 14.5px;
}


/* ============ FAQ: номера, круглые иконки, липкий заголовок ============ */
.faq { padding-bottom: 0; }
.faq-scroll { position: relative; height: 300vh; }
.faq-sticky {
  position: sticky;
  top: 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
}
.faq-sticky .faq__grid { width: min(1240px, 100% - 48px); }
.faq__grid {
  display: grid;
  grid-template-columns: minmax(260px, 380px) 1fr;
  gap: clamp(32px, 5vw, 90px);
  align-items: start;
}
.faq__intro { position: sticky; top: 120px; }
/* трек байкера слева от списка */
.faq__list { position: relative; padding-left: 56px; }
.faq__track {
  position: absolute;
  left: 14px;
  top: 0;
  bottom: 0;
  width: 3px;
}
.faq__track::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.09);
  border-radius: 2px;
}
/* красная дорожка, растущая за байкером */
.faq__trail {
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 0;
  border-radius: 2px;
  background: linear-gradient(180deg, rgba(217, 79, 61, 0.2), var(--accent));
  box-shadow: 0 0 12px rgba(217, 79, 61, 0.55);
}
/* байкер (вид сверху), едет к открытому вопросу */
.faq__rider {
  position: absolute;
  left: 50%;
  top: 0;
  /* холст иконки с прозрачными полями: глиф занимает ~38% ширины */
  width: 96px;
  filter: drop-shadow(0 0 10px rgba(217, 79, 61, 0.55));
  transform: translate(-50%, -50%) translateY(var(--y, 0px));
  will-change: transform;
}
.faq__rider img { display: block; width: 100%; height: auto; }
/* плавное раскрытие карточки ответа */
@supports (interpolate-size: allow-keywords) {
  :root { interpolate-size: allow-keywords; }
  .faq__item::details-content {
    block-size: 0;
    overflow: clip;
    transition: block-size 0.55s cubic-bezier(0.22, 1, 0.36, 1), content-visibility 0.55s allow-discrete;
  }
  .faq__item[open]::details-content { block-size: auto; }
}
.faq__item p {
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity 0.5s ease 0.12s, transform 0.5s cubic-bezier(0.22, 1, 0.36, 1) 0.12s;
}
.faq__item[open] p { opacity: 1; transform: none; }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__item:first-of-type { border-top: 1px solid var(--line); }
.faq__item summary {
  display: grid;
  grid-template-columns: 56px 1fr 40px;
  align-items: center;
  gap: 18px;
  padding: 24px 0;
  cursor: pointer;
  list-style: none;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__num {
  font-style: normal;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.08em;
  color: rgba(242, 241, 238, 0.32);
  transition: color 0.3s;
}
.faq__item summary span {
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: clamp(15px, 1.4vw, 18px);
  transition: color 0.25s, transform 0.3s;
}
.faq__ico {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  font-weight: 400;
  font-size: 17px;
  color: var(--muted);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.25s, color 0.25s, background 0.25s;
}
.faq__item summary:hover span { color: var(--accent); transform: translateX(4px); }
.faq__item summary:hover .faq__ico { border-color: var(--accent); color: var(--accent); }
.faq__item[open] .faq__num { color: var(--accent); }
.faq__item[open] .faq__ico {
  transform: rotate(45deg);
  border-color: var(--accent);
  color: #0a0b0a;
  background: var(--accent);
}
.faq__item p {
  color: var(--muted);
  padding: 0 56px 26px 74px;
  max-width: 60ch;
}

/* ============ Мессенджеры под формой ============ */
.outro-form__or {
  margin-top: 26px;
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.outro-msgr { display: flex; gap: 12px; margin-top: 14px; justify-content: center; flex-wrap: wrap; }
.msgr-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 12px 22px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 13px;
  transition: border-color 0.25s, color 0.25s;
}
.msgr-btn:hover { border-color: var(--accent); color: var(--accent); }

/* ============ FOOTER (в стилистике макета) ============ */
.footer {
  border-top: 1px solid var(--line);
  margin-top: 0;
  padding: clamp(48px, 6vw, 84px) 0 36px;
  background: #070808;
}
.footer__brand {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
  margin-bottom: clamp(60px, 7.5vw, 100px);
}
.footer__brand .logo { font-size: 22px; }
.footer__tag {
  text-align: right;
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  line-height: 1.8;
}
/* иерархия: контакты ярче всех, локации спокойнее всех */
.footer__grid .footer__col:nth-child(1) li { color: rgba(242, 241, 238, 0.5); font-size: 13.5px; }
.footer__grid .footer__col:nth-child(2) li { color: rgba(242, 241, 238, 0.96); font-size: 15.5px; }
.footer__grid .footer__col:nth-child(3) li { color: rgba(242, 241, 238, 0.8); }
.footer__grid .footer__col:nth-child(4) li { color: rgba(242, 241, 238, 0.62); font-size: 14px; }
.footer__grid .footer__col:nth-child(2) { transition-delay: 0.07s; }
.footer__grid .footer__col:nth-child(3) { transition-delay: 0.14s; }
.footer__grid .footer__col:nth-child(4) { transition-delay: 0.21s; }
.footer__grid .footer__col:nth-child(5) { transition-delay: 0.28s; }
.footer__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr) auto;
  gap: 36px 44px;
  align-items: start;
}
.footer__label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  font-family: var(--font-ui);
  font-weight: 600;
}
.footer__col ul { display: grid; gap: 11px; margin-top: 22px; }
.footer__col li {
  font-family: var(--font-ui);
  font-size: 14.5px;
  color: rgba(242, 241, 238, 0.85);
}
.footer__col li a {
  padding-bottom: 2px;
  background-image: linear-gradient(currentColor, currentColor);
  background-size: 0% 1px;
  background-repeat: no-repeat;
  background-position: 0 100%;
  transition: color 0.25s, background-size 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.footer__col li a:hover { color: var(--text); background-size: 100% 1px; }
.footer__col li i {
  font-style: normal;
  display: inline-block;
  color: var(--muted);
  font-size: 12px;
  transition: color 0.25s, transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.footer__col li a:hover i { color: var(--accent); transform: translate(3px, -3px); }
/* колонка автора — за вертикальным разделителем */
.footer__col--credit { padding-left: clamp(12px, 2vw, 32px); }
.footer__ig {
  display: flex;
  width: fit-content;
  align-items: center;
  gap: 9px;
  margin-top: 14px;
  font-family: var(--font-ui);
  font-size: 13.5px;
  color: var(--muted);
  transition: color 0.2s;
}
.footer__ig:hover { color: var(--text); }
.footer__ig svg { color: var(--muted); }
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  border-top: 1px solid var(--line);
  margin-top: clamp(40px, 5vw, 64px);
  padding-top: 26px;
}
.footer__copy {
  color: var(--muted);
  font-size: 11.5px;
  font-family: var(--font-ui);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.footer__end { display: flex; align-items: center; gap: 26px; }
.footer__slogan {
  color: var(--muted);
  font-size: 11.5px;
  font-family: var(--font-ui);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.footer__up {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  color: var(--muted);
  font-size: 16px;
  transition: color 0.25s, border-color 0.25s, transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.footer__up:hover {
  color: var(--accent);
  border-color: var(--accent);
  transform: translateY(-3px);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 960px) {
  .showcase { min-height: auto; }
  .showcase__slide {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 24px 0 120px;
  }
  .showcase__media { order: -1; }
  .showcase__media video { max-height: 56vh; }
  .showcase__specs {
    justify-self: start;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    width: 100%;
  }
  .showcase__nav-label { display: none; }
  .showcase__arrow[data-dir="1"] { margin-left: auto; }
  .feature__inner { min-height: auto; padding: 72px 0 40px; }
  .feature__cols { grid-template-columns: 1fr; gap: 48px; }
  .feature__list {
    border-left: none;
    padding-left: 0;
    gap: 30px;
  }
  .feature-item {
    grid-template-columns: 26px minmax(110px, 140px) 1fr;
    gap: 16px;
  }
  .feature-item__tick { width: 26px; }
  .feature__bg { background-position: 78% center; }
  .feature__bg::after {
    background:
      linear-gradient(180deg, var(--bg) 0%, transparent 14%, transparent 86%, var(--bg) 100%),
      rgba(10, 11, 10, 0.55);
  }
  .models-grid { grid-template-columns: 1fr; }
  .cta { grid-template-columns: 1fr; }
  /* меню: колонка по центру, фоновое видео остаётся */
  .menu-overlay__inner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 48px;
    padding: 80px 0 40px;
  }
}

@media (max-width: 640px) {
  .feature { min-height: auto; }
  .feature-item__body b { font-size: 20px; }

  .nav, .header__social { display: none; }
  /* язык — без рамки, вплотную к бургеру */
  .header__inner { grid-template-columns: auto 1fr; }
  .header__right { grid-column: 2; justify-self: end; margin-right: 52px; }
  .stations { min-height: auto; }
    .b2b-slide__bg { background-position: 72% center; }
  .faq__grid { grid-template-columns: 1fr; }
  .faq__intro { position: static; }
  .faq__list { padding-left: 42px; }
  .faq__track { left: 8px; }
  .faq__rider { width: 64px; }
  .faq__item p { padding: 0 0 24px 74px; }
  /* станции: под панелью остаётся окно с картой Пангана */
  .stations__content { margin-bottom: 380px; }
  .b2b-checks { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__col--credit {
    grid-column: 1 / -1;
    padding-left: 0;
    padding-top: 8px;
  }
  /* на мобильных бургер виден всегда */
  .menu-fab { opacity: 1; visibility: visible; transform: none; top: 12px; }
  /* крестик панели деталей — слева, чтобы не пересекался с бургером */
  .gallery-drawer__close { right: auto; left: 16px; }

  .hero-scroll { height: 300vh; }
  .hero-intro { max-width: 88%; top: 44%; }
  .hero-title { font-size: clamp(30px, 8.4vw, 46px); }
  .hero-mid { bottom: 120px; }
  .hero-mid__stats { font-size: 10px; letter-spacing: 0.28em; }
  .hero-final { top: 42%; max-width: 88%; }
  .hero-cta { left: 24px; bottom: 26px; }
  .hero-counter { right: 20px; bottom: 96px; }
}
