/* ───────────────────────── Шрифт ─────────────────────────
 * Manrope, self-hosted (OFL, assets/fonts/OFL.txt). cyrillic-ext нужен ради
 * казахских букв в ссылке на казахское соглашение. */
@font-face { font-family: 'Manrope'; font-weight: 400; font-display: swap; src: url('assets/fonts/manrope-latin-400-normal.woff2') format('woff2'); unicode-range: U+0000-00FF, U+2000-206F, U+20B8, U+2190-21FF; }
@font-face { font-family: 'Manrope'; font-weight: 400; font-display: swap; src: url('assets/fonts/manrope-cyrillic-400-normal.woff2') format('woff2'); unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; }
@font-face { font-family: 'Manrope'; font-weight: 400; font-display: swap; src: url('assets/fonts/manrope-cyrillic-ext-400-normal.woff2') format('woff2'); unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; }
@font-face { font-family: 'Manrope'; font-weight: 700; font-display: swap; src: url('assets/fonts/manrope-latin-700-normal.woff2') format('woff2'); unicode-range: U+0000-00FF, U+2000-206F, U+20B8, U+2190-21FF; }
@font-face { font-family: 'Manrope'; font-weight: 700; font-display: swap; src: url('assets/fonts/manrope-cyrillic-700-normal.woff2') format('woff2'); unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; }
@font-face { font-family: 'Manrope'; font-weight: 700; font-display: swap; src: url('assets/fonts/manrope-cyrillic-ext-700-normal.woff2') format('woff2'); unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; }
@font-face { font-family: 'Manrope'; font-weight: 800; font-display: swap; src: url('assets/fonts/manrope-latin-800-normal.woff2') format('woff2'); unicode-range: U+0000-00FF, U+2000-206F, U+20B8, U+2190-21FF; }
@font-face { font-family: 'Manrope'; font-weight: 800; font-display: swap; src: url('assets/fonts/manrope-cyrillic-800-normal.woff2') format('woff2'); unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; }
@font-face { font-family: 'Manrope'; font-weight: 800; font-display: swap; src: url('assets/fonts/manrope-cyrillic-ext-800-normal.woff2') format('woff2'); unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; }

/* ───────────────────────── Токены ─────────────────────────
 * Цвета взяты из Aida-PWA/src/theme/tokens.css. Лайм (#5BEB47) — только
 * заливка под тёмным текстом или акцент на тёмном фоне: на белом как цвет
 * текста он не проходит контраст, для этого есть --green-strong. */
:root {
  --ink: #121212;
  --ink-2: #1d1d1d;
  --ink-3: #2a2a2a;
  --text-2: #595959;
  --paper: #ffffff;
  --muted: #f3f3f3;
  --line: #e4e4e4;
  --lime: #5beb47;
  --lime-soft: #eafde6;
  --green-strong: #187742;
  --danger: #e5231b;
  --danger-soft: #fde8e7;
  --kaspi: #f14635;

  --map-ground: #e9ece6;
  --map-city: #fbfbfa;
  --map-street: #e6e6e3;
  --map-avenue: #ffffff;
  --map-river: #b9dcf0;
  --map-border: #9a9a9a;
  --map-mountain: #c9d1c4;
  --map-snow: #ffffff;

  --radius: 20px;
  --radius-lg: 32px;
  --gutter: clamp(16px, 4vw, 40px);
  --section: clamp(72px, 10vw, 128px);
  --font: 'Manrope', system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
  --ease: cubic-bezier(.2, .7, .2, 1);

  color-scheme: light;
}

/* ───────────────────────── База ───────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 88px; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
img { height: auto; }
h1, h2, h3, p, ul, ol, dl, dd, figure { margin: 0; }
ul, ol { padding: 0; list-style: none; }
a { color: inherit; }
button, input, select, textarea { font: inherit; color: inherit; }
[hidden] { display: none !important; }
:focus-visible { outline: 3px solid var(--lime); outline-offset: 3px; border-radius: 6px; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

.skip {
  position: absolute; left: 12px; top: -60px; z-index: 100;
  background: var(--ink); color: #fff; padding: 10px 16px; border-radius: 10px; text-decoration: none;
}
.skip:focus { top: 12px; }

.wrap { width: 100%; max-width: 1200px; margin-inline: auto; padding-inline: var(--gutter); }
.wrap--narrow { max-width: 860px; }

h2 { font-size: clamp(32px, 5vw, 56px); line-height: 1.05; font-weight: 800; letter-spacing: -0.03em; text-wrap: balance; }
h3 { font-size: 20px; line-height: 1.25; font-weight: 700; letter-spacing: -0.01em; }

/* ───────────────────────── Кнопки ───────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 44px; padding: 10px 20px;
  border: 2px solid transparent; border-radius: 999px;
  font-weight: 700; font-size: 16px; line-height: 1; text-decoration: none; white-space: nowrap;
  cursor: pointer;
  transition: transform .2s var(--ease), background-color .2s, color .2s, border-color .2s, box-shadow .2s;
}
.btn:active { transform: scale(.97); }
.btn--lg { min-height: 56px; padding: 16px 28px; font-size: 17px; }
.btn--block { width: 100%; }
.btn--dark { background: var(--ink); color: #fff; }
.btn--dark:hover { background: var(--ink-3); }
.btn--lime { background: var(--lime); color: var(--ink); box-shadow: 0 8px 24px -10px rgba(91, 235, 71, .8); }
.btn--lime:hover { background: #74f262; box-shadow: 0 12px 28px -10px rgba(91, 235, 71, .9); }
.btn--ghost { background: transparent; color: var(--ink); border-color: rgba(18, 18, 18, .18); }
.btn--ghost:hover { border-color: var(--ink); }
.btn--outline-dark { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn--outline-dark:hover { background: var(--ink); color: var(--lime); }

/* ───────────────────────── Шапка ───────────────────────── */
.header {
  position: sticky; top: 0; z-index: 50;
  padding-top: env(safe-area-inset-top, 0px);
  background: rgba(243, 243, 243, .82);
  -webkit-backdrop-filter: saturate(1.4) blur(14px);
  backdrop-filter: saturate(1.4) blur(14px);
  transition: box-shadow .25s, background-color .25s;
}
.header.is-scrolled { background: rgba(255, 255, 255, .9); box-shadow: 0 1px 0 var(--line); }
.header__row { display: flex; align-items: center; gap: 24px; height: 72px; }

.logo { display: inline-flex; color: var(--ink); flex: none; }
.logo svg { height: 26px; width: auto; aspect-ratio: 436 / 150; }
.logo--light { color: #fff; }

.nav { display: flex; gap: 4px; margin-left: auto; }
.nav a {
  padding: 8px 12px; border-radius: 999px;
  font-size: 15px; font-weight: 700; text-decoration: none; color: var(--text-2);
  transition: color .2s, background-color .2s;
}
.nav a:hover, .nav a.is-active { color: var(--ink); background: rgba(18, 18, 18, .06); }

/* Переключатель языка: текущий язык — не ссылка, а метка */
.lang { display: flex; align-items: center; gap: 2px; padding: 3px; border-radius: 999px; background: rgba(18, 18, 18, .06); font-size: 13px; font-weight: 800; }
.lang a, .lang__current { padding: 6px 10px; border-radius: 999px; text-decoration: none; }
.lang__current { background: #fff; color: var(--ink); }
.lang a { color: var(--text-2); transition: color .2s, background-color .2s; }
.lang a:hover { color: var(--ink); background: rgba(255, 255, 255, .6); }

.burger { display: none; }

@media (max-width: 980px) {
  .lang { margin-left: auto; }
  .header__cta { margin-left: 0; }
  .burger {
    display: grid; place-content: center; gap: 6px;
    width: 44px; height: 44px; padding: 0; border: 0; border-radius: 999px;
    background: var(--ink); cursor: pointer;
  }
  .burger span { display: block; width: 18px; height: 2px; background: #fff; border-radius: 2px; transition: transform .25s var(--ease); }
  .burger[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
  .burger[aria-expanded="true"] span:last-child { transform: translateY(-4px) rotate(-45deg); }

  .nav {
    position: absolute; left: 0; right: 0; top: 100%;
    flex-direction: column; gap: 2px; margin: 0;
    padding: 12px var(--gutter) 20px;
    background: #fff; box-shadow: 0 16px 32px -16px rgba(0, 0, 0, .25);
    visibility: hidden; opacity: 0; transform: translateY(-8px);
    transition: opacity .2s, transform .25s var(--ease), visibility 0s .25s;
  }
  .nav.is-open { visibility: visible; opacity: 1; transform: none; transition: opacity .2s, transform .25s var(--ease); }
  .nav a { padding: 14px 12px; font-size: 18px; color: var(--ink); }
}
@media (max-width: 420px) {
  .header__cta { display: none; }
  .burger { margin-left: auto; }
}

/* ───────────────────────── Первый экран ───────────────────────── */
.hero {
  background: var(--muted);
  overflow: hidden;
  padding-block: clamp(32px, 6vw, 72px) clamp(56px, 8vw, 104px);
}
.hero__grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr); gap: clamp(24px, 4vw, 56px); align-items: center; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 14px 8px 10px; border-radius: 999px; background: #fff;
  font-size: 14px; font-weight: 700;
}
.dot { width: 10px; height: 10px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 0 0 rgba(91, 235, 71, .7); animation: pulse 2.2s infinite; }
@keyframes pulse { 70% { box-shadow: 0 0 0 10px rgba(91, 235, 71, 0); } 100% { box-shadow: 0 0 0 0 rgba(91, 235, 71, 0); } }

.hero__title {
  margin-top: 20px;
  font-size: clamp(40px, 6vw, 76px); line-height: 1; font-weight: 800; letter-spacing: -0.045em;
}
.mark { position: relative; white-space: nowrap; z-index: 0; }
.mark::after {
  content: ''; position: absolute; z-index: -1;
  left: -0.06em; right: -0.08em; bottom: 0.04em; height: 0.36em;
  background: var(--lime); border-radius: 0.1em;
  transform-origin: left; animation: swipe .9s .3s var(--ease) both;
}
@keyframes swipe { from { transform: scaleX(0); } }

.hero__lead { margin-top: 24px; max-width: 32em; font-size: clamp(17px, 1.6vw, 20px); color: var(--text-2); }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }

.hero__facts { display: grid; grid-template-columns: repeat(3, auto); justify-content: start; gap: 12px 32px; margin-top: 40px; padding-top: 28px; border-top: 1px solid rgba(18, 18, 18, .1); }
.hero__facts dt { font-size: clamp(24px, 2.6vw, 30px); font-weight: 800; letter-spacing: -0.03em; line-height: 1.1; }
.hero__facts dd { margin-top: 4px; font-size: 14px; color: var(--text-2); }

/* У фото белая непрозрачная подложка, и белая рама с ней сливается — вырезать
 * фон нельзя, а mix-blend-mode перекрашивает раму в цвет под ней. Поэтому фото
 * стоит на белой карточке, а лайм живёт позади неё. */
.hero__visual { position: relative; padding: 0 clamp(16px, 3vw, 28px) clamp(16px, 3vw, 28px) 0; }
.hero__disc {
  position: absolute; inset: clamp(16px, 3vw, 28px) 0 0 clamp(16px, 3vw, 28px);
  border-radius: 40px;
  background: var(--lime);
}
.hero__stage {
  position: relative; overflow: hidden;
  border-radius: 40px; background: #fff;
  box-shadow: 0 30px 60px -36px rgba(0, 0, 0, .35);
}
.hero__bike {
  width: 100%;
  animation: ride-in 1s .1s var(--ease) both;
}
@keyframes ride-in { from { opacity: 0; transform: translateX(40px); } }

.chip {
  position: absolute; display: flex; align-items: center; gap: 10px;
  padding: 12px 16px; border-radius: 16px; background: #fff;
  box-shadow: 0 18px 40px -18px rgba(0, 0, 0, .35);
  font-weight: 700; font-size: 15px;
  animation: float 5s ease-in-out infinite;
}
.chip--price { left: 0; top: 10%; flex-direction: column; align-items: flex-start; gap: 0; }
.chip--price .chip__label { font-size: 12px; color: var(--text-2); font-weight: 700; }
.chip--price strong { font-size: 26px; font-weight: 800; letter-spacing: -0.03em; }
.chip--unlock { right: 2%; bottom: 8%; animation-delay: -2.5s; }
.chip__icon { display: grid; place-items: center; width: 28px; height: 28px; border-radius: 50%; background: var(--lime); color: var(--ink); }
.chip__icon svg { width: 16px; height: 16px; }
@keyframes float { 50% { transform: translateY(-8px); } }

@media (max-width: 900px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__visual { order: -1; max-width: 560px; margin-inline: auto; width: 100%; }
  .hero__title { margin-top: 16px; }
}
@media (max-width: 520px) {
  .hero__facts { grid-template-columns: 1fr 1fr 1fr; gap: 12px 16px; }
  .hero__facts dd { font-size: 13px; }
  .hero__actions .btn { flex: 1 1 100%; }
  .chip { padding: 8px 12px; font-size: 13px; }
  .chip--price strong { font-size: 20px; }
}

/* ───────────────────────── Секции ───────────────────────── */
.section { padding-block: var(--section); }
.section--muted { background: var(--muted); }
.section--dark { background: var(--ink); color: #fff; }
.section--dark .section__lead { color: rgba(255, 255, 255, .66); }

.section__head { max-width: 760px; margin-bottom: clamp(40px, 6vw, 64px); }
.section__head--split { max-width: none; display: flex; align-items: flex-end; justify-content: space-between; gap: 32px; }
.section__head--split > div { max-width: 640px; }
.section__lead { margin-top: 20px; font-size: clamp(17px, 1.6vw, 20px); color: var(--text-2); max-width: 36em; }

.kicker {
  display: inline-flex; align-items: center; gap: 10px; margin-bottom: 16px;
  font-size: 14px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; color: var(--green-strong);
}
.kicker::before { content: ''; width: 24px; height: 3px; border-radius: 2px; background: var(--lime); }
.kicker--lime { color: var(--lime); }

/* Появление при прокрутке — только если JS включён и движение не выключено */
.js .reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.js .reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .js .reveal { opacity: 1; transform: none; } }

/* ───────────────────────── Велосипед ───────────────────────── */
.bike { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr); gap: clamp(24px, 5vw, 64px); align-items: center; }
.bike__stage { position: relative; background: #fff; border-radius: var(--radius-lg); }
.bike__stage img { width: 100%; border-radius: var(--radius-lg); }
.pin {
  position: absolute; left: var(--x); top: var(--y); translate: -50% -50%;
  display: grid; place-items: center; width: 34px; height: 34px; border-radius: 50%;
  background: var(--ink); color: var(--lime); font-weight: 800; font-size: 15px;
  box-shadow: 0 0 0 6px rgba(18, 18, 18, .12);
}
.pin::after { content: ''; position: absolute; inset: -6px; border-radius: 50%; border: 2px solid var(--ink); opacity: 0; animation: ping 2.8s infinite; }
.pin:nth-of-type(2)::after { animation-delay: .5s; }
.pin:nth-of-type(3)::after { animation-delay: 1s; }
.pin:nth-of-type(4)::after { animation-delay: 1.5s; }
.pin:nth-of-type(5)::after { animation-delay: 2s; }
@keyframes ping { 0% { transform: scale(.8); opacity: .6; } 80%, 100% { transform: scale(1.6); opacity: 0; } }

.features { display: grid; gap: 4px; counter-reset: f; }
.features li { display: flex; gap: 16px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.features li:last-child { border-bottom: 0; }
.features__n {
  flex: none; display: grid; place-items: center; width: 34px; height: 34px; border-radius: 50%;
  background: var(--lime-soft); color: var(--green-strong); font-weight: 800; font-size: 15px;
}
.features p { margin-top: 4px; color: var(--text-2); font-size: 16px; }

@media (max-width: 900px) {
  .bike { grid-template-columns: 1fr; }
  .pin { width: 28px; height: 28px; font-size: 13px; }
}

/* ───────────────────────── Аренда через Kaspi ───────────────────────── */
.rent { display: grid; grid-template-columns: minmax(0, 1fr) 320px; gap: clamp(32px, 5vw, 72px); align-items: center; }

.steps { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.step {
  position: relative; padding: 28px; border-radius: var(--radius);
  background: var(--ink-2); border: 1px solid rgba(255, 255, 255, .07);
  transition: border-color .25s, transform .25s var(--ease);
}
.step:hover { border-color: rgba(91, 235, 71, .5); transform: translateY(-3px); }
.step__n { display: block; margin-bottom: 36px; font-size: 15px; font-weight: 800; color: var(--lime); letter-spacing: .04em; }
.step p { margin-top: 8px; font-size: 16px; color: rgba(255, 255, 255, .66); }

.phone {
  justify-self: center; width: 100%; max-width: 300px;
  padding: 12px; border-radius: 44px; background: #2b2b2b;
  box-shadow: inset 0 0 0 2px #3a3a3a, 0 40px 80px -30px rgba(91, 235, 71, .35);
  rotate: 3deg;
}
.phone__screen { border-radius: 34px; background: #f5f5f5; color: var(--ink); padding: 14px 16px 18px; overflow: hidden; }
.phone__bar { display: flex; align-items: center; justify-content: space-between; font-size: 12px; font-weight: 700; }
.phone__notch { width: 72px; height: 20px; border-radius: 12px; background: #2b2b2b; }
.phone__bar span:last-child { letter-spacing: -2px; font-size: 9px; }
.phone__app { display: flex; align-items: center; gap: 8px; margin-top: 18px; font-weight: 700; font-size: 14px; }
.kaspi-tag { padding: 3px 8px; border-radius: 8px; background: var(--kaspi); color: #fff; font-size: 12px; font-weight: 800; }
.phone__card { margin-top: 14px; padding: 14px; border-radius: 18px; background: #fff; }
.phone__card img { width: 70%; margin: -4px auto 4px; }
.phone__muted { font-size: 12px; color: var(--text-2); }
.phone__code { font-size: 20px; font-weight: 800; letter-spacing: -0.02em; margin-bottom: 8px; }
.phone__row { display: flex; justify-content: space-between; padding: 7px 0; border-top: 1px solid #eee; font-size: 13px; }
.phone__row span:first-child { color: var(--text-2); }
.phone__row span:last-child { font-weight: 700; }
.phone__row--total span:last-child { font-size: 17px; font-weight: 800; }
.phone__pay { margin-top: 14px; padding: 14px; border-radius: 14px; background: var(--kaspi); color: #fff; text-align: center; font-weight: 800; }

/* Два способа аренды: Kaspi — основной, веб-приложение — второй */
.way__head { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; margin-bottom: 28px; }
.way__head h3 { font-size: clamp(21px, 2.4vw, 28px); font-weight: 800; letter-spacing: -0.02em; }
.way__badge { padding: 7px 14px; border-radius: 999px; background: var(--lime); color: var(--ink); font-size: 13px; font-weight: 800; }

.way--web {
  margin-top: clamp(48px, 6vw, 72px); padding: clamp(24px, 3vw, 40px);
  border: 1px solid rgba(255, 255, 255, .14); border-radius: var(--radius-lg);
}
.way--web .way__badge { background: rgba(255, 255, 255, .14); color: #fff; }

.web { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr); gap: clamp(24px, 4vw, 56px); }
.web__steps { display: grid; gap: 18px; counter-reset: w; }
.web__steps li { position: relative; padding-left: 52px; counter-increment: w; }
.web__steps li::before {
  content: counter(w); position: absolute; left: 0; top: -2px;
  display: grid; place-items: center; width: 34px; height: 34px; border-radius: 50%;
  background: rgba(91, 235, 71, .16); color: var(--lime); font-weight: 800; font-size: 15px;
}
.web__steps h4 { margin: 0; font-size: 18px; font-weight: 700; }
.web__steps p { margin-top: 6px; font-size: 16px; color: rgba(255, 255, 255, .66); }

.web__side { display: flex; flex-direction: column; padding: clamp(20px, 2.5vw, 28px); border-radius: var(--radius); background: var(--ink-2); }
.web__title { margin-bottom: 18px; font-size: 14px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; color: rgba(255, 255, 255, .6); }
.web__side .ticks li { font-size: 16px; }
.web__side .btn { margin-top: auto; }
.web__side .ticks { margin-bottom: 28px; }

@media (max-width: 900px) { .web { grid-template-columns: 1fr; } }

.rent__note {
  display: flex; gap: 12px; align-items: flex-start; margin-top: 40px; max-width: 760px;
  font-size: 15px; color: rgba(255, 255, 255, .6);
}
.rent__note svg { flex: none; width: 20px; height: 20px; margin-top: 2px; color: var(--lime); }

@media (max-width: 1040px) { .rent { grid-template-columns: 1fr; } .phone { rotate: 0deg; } }
@media (max-width: 620px) { .steps { grid-template-columns: 1fr; } .step__n { margin-bottom: 16px; } }

/* ───────────────────────── Тарифы ───────────────────────── */
.tariff { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 16px; }
.tariff__card { padding: clamp(24px, 3vw, 36px); border-radius: var(--radius-lg); background: var(--muted); }
.tariff__card--main { background: var(--lime); }
.tariff__card--warn { background: var(--danger-soft); }
.tariff__label { font-size: 14px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.tariff__price { margin-top: 20px; font-size: clamp(56px, 8vw, 104px); line-height: 1; font-weight: 800; letter-spacing: -0.05em; }
.tariff__price span { font-size: .5em; letter-spacing: 0; }
.tariff__card--warn .tariff__price { color: var(--danger); }
.tariff__desc { margin-top: 12px; font-size: 17px; font-weight: 700; }
.tariff__card:not(.tariff__card--main) .tariff__desc { color: var(--text-2); }

.timeline { margin-top: 40px; }
.timeline__track { position: relative; display: flex; height: 12px; border-radius: 99px; overflow: hidden; }
.timeline__paid { flex: 0 0 45%; background: var(--lime); }
.timeline__extra { flex: 1; background: repeating-linear-gradient(90deg, var(--lime) 0 14px, transparent 14px 24px); opacity: .7; }
.timeline__labels { position: relative; display: flex; justify-content: space-between; margin-top: 12px; font-size: 14px; font-weight: 700; color: var(--text-2); }
.timeline__mid { position: absolute; left: 45%; translate: -50% 0; white-space: nowrap; color: var(--green-strong); }
@media (max-width: 520px) { .timeline__mid { display: none; } }

.calc { margin-top: 40px; padding: clamp(20px, 3vw, 28px); border-radius: var(--radius); border: 1px solid var(--line); }
.calc__label { font-weight: 800; font-size: 14px; letter-spacing: .06em; text-transform: uppercase; }
.calc__row { display: flex; flex-wrap: wrap; align-items: center; gap: 16px 32px; margin-top: 12px; }
.calc__out { font-size: clamp(22px, 2.6vw, 30px); font-weight: 800; letter-spacing: -0.02em; min-width: 12ch; }
.calc__out strong { color: var(--text-2); font-weight: 700; }

input[type="range"] {
  flex: 1 1 280px; height: 44px; margin: 0; background: transparent; cursor: pointer;
  -webkit-appearance: none; appearance: none;
}
input[type="range"]::-webkit-slider-runnable-track { height: 8px; border-radius: 99px; background: linear-gradient(90deg, var(--lime) var(--fill, 35%), var(--muted) var(--fill, 35%)); }
input[type="range"]::-moz-range-track { height: 8px; border-radius: 99px; background: var(--muted); }
input[type="range"]::-moz-range-progress { height: 8px; border-radius: 99px; background: var(--lime); }
input[type="range"]::-webkit-slider-thumb { -webkit-appearance: none; width: 28px; height: 28px; margin-top: -10px; border-radius: 50%; background: var(--ink); border: 4px solid #fff; box-shadow: 0 2px 8px rgba(0, 0, 0, .3); }
input[type="range"]::-moz-range-thumb { width: 20px; height: 20px; border-radius: 50%; background: var(--ink); border: 4px solid #fff; box-shadow: 0 2px 8px rgba(0, 0, 0, .3); }

@media (max-width: 820px) { .tariff { grid-template-columns: 1fr; } }

/* ───────────────────────── Зоны ───────────────────────── */
.zones { display: grid; grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr); gap: clamp(24px, 4vw, 56px); align-items: center; }
.map svg { width: 100%; height: auto; border-radius: var(--radius-lg); background: var(--map-ground); box-shadow: 0 30px 60px -40px rgba(0, 0, 0, .4); }
.map figcaption { margin-top: 12px; font-size: 14px; color: var(--text-2); }

.z { stroke-width: 2.5; }
.z--ride { fill: rgba(18, 18, 18, .025); stroke: rgba(18, 18, 18, .35); stroke-dasharray: 2 6; stroke-linecap: round; }
.z--park { fill: rgba(91, 235, 71, .35); stroke: var(--green-strong); }
.z--ban { fill: rgba(229, 35, 27, .22); stroke: var(--danger); }
.map__bikes circle { fill: var(--ink); stroke: var(--lime); stroke-width: 4; }

.legend { display: grid; gap: 12px; }
.legend__item { display: flex; gap: 16px; padding: 20px; border-radius: var(--radius); background: #fff; }
.legend__swatch { flex: none; width: 44px; height: 44px; border-radius: 12px; border: 2.5px solid; }
.legend__item--park .legend__swatch { background: rgba(91, 235, 71, .35); border-color: var(--green-strong); }
.legend__item--ride .legend__swatch { background: #fbfbfa; border-style: dashed; border-color: rgba(18, 18, 18, .4); }
.legend__item--ban .legend__swatch { background: rgba(229, 35, 27, .22); border-color: var(--danger); }
.legend p { margin-top: 4px; font-size: 15px; color: var(--text-2); }

.parking {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(24px, 4vw, 56px); align-items: center;
  margin-top: clamp(40px, 6vw, 72px); padding: clamp(20px, 3vw, 40px); border-radius: var(--radius-lg); background: #fff;
}
.parking img { width: 100%; }
.parking__title { font-size: clamp(26px, 3vw, 36px); font-weight: 800; letter-spacing: -0.03em; margin-bottom: 20px; }

.ticks { display: grid; gap: 14px; }
.ticks li { position: relative; padding-left: 36px; font-size: 17px; }
.ticks li::before {
  content: ''; position: absolute; left: 0; top: 1px; width: 24px; height: 24px; border-radius: 50%;
  background: var(--lime) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6.5 12.5l3.5 3.5 7.5-8' fill='none' stroke='%23121212' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / 18px no-repeat;
}

@media (max-width: 900px) {
  .zones, .parking { grid-template-columns: 1fr; }
}

/* ───────────────────────── Плюсы ───────────────────────── */
.benefits__art { width: min(340px, 40%); flex: none; }

.cards { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.card {
  padding: 28px; border-radius: var(--radius); background: var(--muted);
  transition: background-color .25s, transform .25s var(--ease);
}
.card:hover { background: var(--lime-soft); transform: translateY(-3px); }
.card__icon { display: grid; place-items: center; width: 52px; height: 52px; margin-bottom: 24px; border-radius: 16px; background: var(--ink); }
.card__icon svg { width: 26px; height: 26px; fill: none; stroke: var(--lime); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.card p { margin-top: 8px; font-size: 16px; color: var(--text-2); }

.safety {
  display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr); align-items: center; gap: clamp(24px, 4vw, 56px);
  margin-top: 16px; padding: clamp(20px, 3vw, 40px); border-radius: var(--radius-lg); background: var(--lime-soft);
}
.safety img { width: 100%; border-radius: var(--radius); }
.safety h3 { font-size: clamp(26px, 3vw, 36px); font-weight: 800; letter-spacing: -0.03em; margin-bottom: 20px; }

@media (max-width: 980px) { .cards { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 760px) {
  .section__head--split { flex-direction: column; align-items: flex-start; }
  .benefits__art { width: min(340px, 100%); }
  .safety { grid-template-columns: 1fr; }
}
@media (max-width: 560px) { .cards { grid-template-columns: 1fr; } }

/* ───────────────────────── Партнёрство ───────────────────────── */
.formats { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.format { padding: 28px; border-radius: var(--radius); background: var(--ink-2); border: 1px solid rgba(255, 255, 255, .07); }
.format__tag { display: inline-block; margin-bottom: 40px; padding: 6px 12px; border-radius: 999px; background: var(--lime); color: var(--ink); font-size: 13px; font-weight: 800; }
.format p { margin-top: 10px; font-size: 16px; color: rgba(255, 255, 255, .66); }

.partner { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr); gap: clamp(24px, 4vw, 56px); margin-top: 16px; }
.partner__offer { display: flex; flex-direction: column; padding: clamp(24px, 3vw, 40px); border-radius: var(--radius-lg); background: linear-gradient(160deg, #1f3a1b, var(--ink-2) 70%); }
.partner__offer h3, .form h3 { font-size: clamp(24px, 2.6vw, 32px); font-weight: 800; letter-spacing: -0.03em; margin-bottom: 24px; }
.ticks--lime li { color: rgba(255, 255, 255, .88); }
.partner__note { margin-top: auto; padding-top: 32px; font-size: 15px; color: rgba(255, 255, 255, .6); }
.form__hint a { white-space: nowrap; }

.form { padding: clamp(24px, 3vw, 40px); border-radius: var(--radius-lg); background: #fff; color: var(--ink); }
.form__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field { display: grid; gap: 6px; }
.field--wide { grid-column: 1 / -1; }
.field span { font-size: 14px; font-weight: 700; }
.field em { font-style: normal; font-weight: 400; color: var(--text-2); }
.field input, .field select, .field textarea {
  width: 100%; min-height: 52px; padding: 12px 16px;
  border: 1.5px solid var(--line); border-radius: 14px; background: var(--muted);
  font-size: 16px; transition: border-color .2s, background-color .2s;
}
.field textarea { resize: vertical; min-height: 96px; }
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6 9l6 6 6-6' fill='none' stroke='%23121212' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; background-size: 20px; padding-right: 44px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--ink); background: #fff; }
.field [aria-invalid="true"] { border-color: var(--danger); background: var(--danger-soft); }
.form__error { margin-top: 14px; color: var(--danger); font-weight: 700; font-size: 15px; }
.form .btn { margin-top: 20px; }
.form__hint { margin-top: 12px; font-size: 14px; color: var(--text-2); text-align: center; }

@media (max-width: 900px) {
  .formats { grid-template-columns: 1fr; }
  .format__tag { margin-bottom: 20px; }
  .partner { grid-template-columns: 1fr; }
}
@media (max-width: 520px) { .form__grid { grid-template-columns: 1fr; } }

/* ───────────────────────── FAQ ───────────────────────── */
.faq { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  padding: 24px 0; cursor: pointer; list-style: none;
  font-size: clamp(18px, 2vw, 21px); font-weight: 700;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ''; flex: none; width: 36px; height: 36px; border-radius: 50%;
  background: var(--muted) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 5v14M5 12h14' fill='none' stroke='%23121212' stroke-width='2.4' stroke-linecap='round'/%3E%3C/svg%3E") center / 18px no-repeat;
  transition: transform .25s var(--ease), background-color .25s;
}
.faq details[open] summary::after { transform: rotate(45deg); background-color: var(--lime); }
.faq summary:hover::after { background-color: var(--lime); }
.faq details p { padding: 0 60px 24px 0; color: var(--text-2); }
.faq a { color: var(--green-strong); font-weight: 700; }

/* ───────────────────────── Финальный CTA ───────────────────────── */
.cta { background: var(--lime); padding-block: clamp(56px, 8vw, 96px); }
.cta__row { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 28px; }
.cta h2 { max-width: 16ch; }
.cta__actions { display: flex; flex-wrap: wrap; gap: 12px; }

/* ───────────────────────── Подвал ───────────────────────── */
.footer { background: var(--ink); color: rgba(255, 255, 255, .7); padding-block: 64px calc(32px + env(safe-area-inset-bottom, 0px)); font-size: 15px; }
.footer__top { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 32px; padding-bottom: 40px; border-bottom: 1px solid rgba(255, 255, 255, .1); }
.footer__brand .logo svg { height: 32px; }
.footer__brand p { margin-top: 16px; max-width: 24ch; }
.footer__lang { font-weight: 700; text-decoration: none; border-bottom: 1px solid rgba(255, 255, 255, .3); }
.footer__lang:hover { color: var(--lime); border-color: var(--lime); }
.footer__col { display: grid; align-content: start; gap: 10px; }
.footer__col h2 { margin-bottom: 6px; font-size: 13px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; color: #fff; }
.footer__col a { text-decoration: none; transition: color .2s; }
.footer__col a:hover { color: var(--lime); }
.footer__legal { display: grid; gap: 6px; padding-top: 28px; font-size: 14px; color: rgba(255, 255, 255, .5); }
.footer__agree { margin-top: 8px; }
.footer__agree a { color: rgba(255, 255, 255, .85); }
.footer__agree a:hover { color: var(--lime); }

@media (max-width: 860px) { .footer__top { grid-template-columns: 1fr 1fr; } .footer__brand { grid-column: 1 / -1; } }
@media (max-width: 460px) { .footer__top { grid-template-columns: 1fr; } }
