/* OmniSocial — витрина. Палитра снята с wazzup24.ru: белый фон, серые подложки,
   зелёные кнопки. Их #21ba4c затемнён до #15803d: с белой надписью сочный тон даёт
   контраст 2.6 при норме 4.5 (у образца ровно так же), тёмный — 5.0. Мелкий
   акцентный текст берёт --brand-ink: на сером #efeff2 сам --brand не дотягивает. */

:root {
  --bg: #ffffff;
  --bg-alt: #f7f7f9;
  --bg-dark: #efeff2;
  --bg-dark-soft: #efeff2;

  --fg: #202227;
  --fg-dark: #202227;
  --muted: #5b5e66;
  --muted-dark: #5b5e66;

  --line: #e3e3e8;
  --line-dark: rgba(255, 255, 255, .13);

  --brand: #15803d;
  --brand-ink: #14722f;
  --on-brand: #ffffff;
  --brand-2: #11652f;
  --brand-soft: #e7f7ec;
  --ok: #15803d;
  --warn: #b4763a;

  --radius: 12px;
  --radius-lg: 16px;
  --shadow: 0 6px 20px rgba(32, 34, 39, .07);
  --shadow-lg: 0 18px 44px rgba(32, 34, 39, .12);

  --wrap: 1160px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation: none !important; transition: none !important; }
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font: 17px/1.65 -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg { max-width: 100%; }

h1, h2, h3 { letter-spacing: -.025em; line-height: 1.12; margin: 0; font-weight: 700; }
h1 { font-size: clamp(34px, 5.2vw, 60px); }
h2 { font-size: clamp(28px, 3.6vw, 42px); }
h3 { font-size: clamp(19px, 2vw, 22px); line-height: 1.3; }
p { margin: 0; }

a { color: inherit; }

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }

.section { padding: 92px 0; }
/* Липкая шапка 68px — иначе переход по якорю прячет заголовок под ней. */
section[id], header[id] { scroll-margin-top: 84px; }
.section--alt { background: var(--bg-alt); }
.section--dark { background: var(--bg-dark); color: var(--fg-dark); }
.section--tight { padding: 64px 0; }

.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--brand-ink);
  margin-bottom: 14px;
}
.section--dark .eyebrow { color: var(--brand-ink); }

.lead { font-size: clamp(17px, 1.8vw, 20px); color: var(--muted); }
.section--dark .lead { color: var(--muted-dark); }

.head { max-width: 760px; margin-bottom: 48px; }
.head--center { margin-left: auto; margin-right: auto; text-align: center; }
.head p { margin-top: 16px; }

/* ---------- Кнопки ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid transparent;
  border-radius: 10px;
  padding: 14px 26px;
  font-size: 16px;
  font-weight: 650;
  text-decoration: none;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, border-color .15s ease;
  white-space: nowrap;
}
/* display у .btn перебивает браузерное [hidden]{display:none} — без этого
   ненастроенная кнопка мессенджера остаётся видимой и ведёт на «#». */
.btn[hidden] { display: none; }
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: var(--brand);
  color: var(--on-brand);
}
.btn--primary:hover { background: var(--brand-2); }

.btn--ghost { background: transparent; border-color: var(--brand); color: var(--brand-ink); }
.btn--ghost:hover { border-color: var(--brand-ink); background: var(--brand-soft); }

.section--dark .btn--ghost { border-color: var(--brand); color: var(--brand-ink); }
.section--dark .btn--ghost:hover { border-color: var(--brand-ink); background: #fff; }

.btn--lg { padding: 16px 28px; font-size: 17px; }
.btn--wa { background: #25d366; color: #06280f; }
.btn--tg { background: #2aabee; color: #04263a; }
.btn--mail { background: #fff; color: var(--fg); border-color: var(--line); }

/* ---------- Шапка ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255, 255, 255, .88);
  backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid var(--line);
  color: var(--fg);
}
.site-header.is-stuck { background: rgba(255, 255, 255, .97); box-shadow: 0 1px 12px rgba(16, 32, 26, .06); }

.nav { display: flex; align-items: center; gap: 28px; height: 68px; }

.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; font-weight: 700; font-size: 19px; letter-spacing: -.02em; }
.brand__mark { width: 30px; height: 30px; flex: none; }

.nav__links { display: flex; gap: 26px; margin-left: 12px; }
.nav__links a { text-decoration: none; font-size: 15px; color: var(--muted); transition: color .15s ease; }
.nav__links a:hover { color: var(--brand-ink); }

.nav__actions { display: flex; align-items: center; gap: 14px; margin-left: auto; }
.nav__login { text-decoration: none; font-size: 15px; color: var(--muted); }
.nav__login:hover { color: var(--brand-ink); }
.nav .btn { padding: 10px 20px; font-size: 15px; }

.burger {
  display: none;
  margin-left: auto;
  width: 42px; height: 42px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: transparent;
  cursor: pointer;
  padding: 0;
  align-items: center;
  justify-content: center;
}
.burger span { display: block; width: 18px; height: 2px; background: var(--fg); position: relative; }
.burger span::before, .burger span::after { content: ""; position: absolute; left: 0; width: 18px; height: 2px; background: var(--fg); }
.burger span::before { top: -6px; }
.burger span::after { top: 6px; }

/* ---------- Первый экран ---------- */

.hero {
  position: relative;
  background: var(--bg);
  color: var(--fg);
  padding: 76px 0 88px;
  border-bottom: 1px solid var(--line);
}

.hero .wrap { position: relative; z-index: 1; }
.hero__grid { display: grid; grid-template-columns: minmax(0, 1.14fr) minmax(0, 1fr); gap: 44px; align-items: center; }

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 1px solid var(--line);
  background: var(--bg-alt);
  border-radius: 999px;
  padding: 7px 15px 7px 9px;
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 24px;
}
.hero__badge b { color: var(--fg); font-weight: 650; }
.dot { width: 8px; height: 8px; border-radius: 50%; background: var(--brand); box-shadow: 0 0 0 4px rgba(21, 128, 61, .16); flex: none; }

.hero h1 { margin-bottom: 22px; }
.hero h1 .grad { color: var(--brand-ink); }
.hero__lead { font-size: clamp(17px, 1.9vw, 21px); color: var(--muted); max-width: 560px; }

.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin: 34px 0 18px; }
.hero__note { font-size: 14.5px; color: var(--muted); }

.chips { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 30px; list-style: none; padding: 0; }
.chips li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 999px;
  padding: 7px 14px;
  font-size: 14px;
  color: var(--fg);
}
.chips li[data-soon] { color: var(--muted); border-style: dashed; }
.chips .ch-dot { width: 9px; height: 9px; border-radius: 3px; flex: none; }

/* ---------- Мок интерфейса ---------- */

.mock {
  border-radius: var(--radius-lg);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.mock__bar { display: flex; align-items: center; gap: 7px; padding: 12px 16px; border-bottom: 1px solid var(--line); background: var(--bg-alt); }
.mock__bar i { width: 10px; height: 10px; border-radius: 50%; background: #d3dbd7; }
.mock__bar span { margin-left: 10px; font-size: 12.5px; color: var(--muted); }

.mock__body { display: grid; grid-template-columns: 172px minmax(0, 1fr); min-height: 372px; }
.mock__list { border-right: 1px solid var(--line); padding: 10px 8px; background: #f9f9fb; }
.mock__conv { display: grid; grid-template-columns: 26px 1fr; gap: 8px; padding: 9px 8px; border-radius: 9px; margin-bottom: 4px; }
.mock__conv.is-active { background: var(--brand-soft); }
.mock__ava { width: 26px; height: 26px; border-radius: 50%; display: grid; place-items: center; font-size: 11px; font-weight: 700; color: #fff; }
.mock__meta { min-width: 0; }
.mock__name { font-size: 12.5px; color: var(--fg); font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.mock__last { font-size: 11px; color: var(--muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.mock__badge { font-size: 10px; padding: 1px 6px; border-radius: 999px; background: var(--brand-ink); color: #fff; margin-left: 4px; }

.mock__chat { display: flex; flex-direction: column; padding: 14px; gap: 10px; }
.mock__chat-head { display: flex; align-items: center; gap: 9px; padding-bottom: 12px; border-bottom: 1px solid var(--line); }
.mock__chat-head .mock__ava { width: 30px; height: 30px; font-size: 12px; }
.mock__chan { font-size: 10.5px; padding: 2px 8px; border-radius: 999px; border: 1px solid var(--line); color: var(--muted); }

.bubble { max-width: 78%; padding: 9px 13px; border-radius: 12px; font-size: 13.5px; line-height: 1.45; }
.bubble--in { background: #f1f1f5; color: var(--fg); border-bottom-left-radius: 4px; }
.bubble--out { background: var(--brand); color: var(--on-brand); align-self: flex-end; border-bottom-right-radius: 4px; }
.bubble small { display: block; margin-top: 4px; font-size: 10.5px; opacity: .7; }
.bubble--ai { background: #e7f7ec; border: 1px dashed rgba(21, 128, 61, .5); color: #14532d; align-self: flex-end; }

.mock__composer { margin-top: auto; display: flex; align-items: center; gap: 9px; border-top: 1px solid var(--line); padding-top: 12px; }
.mock__input { flex: 1; height: 32px; border-radius: 999px; background: #f1f1f5; }
.mock__send { width: 32px; height: 32px; border-radius: 50%; background: var(--brand-ink); }

/* ---------- Полоса доверия ---------- */

.proof { background: var(--bg-dark); color: var(--fg-dark); padding: 34px 0; }
.proof__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.proof__num { font-size: clamp(24px, 3vw, 32px); font-weight: 700; letter-spacing: -.03em; }
.proof__cap { font-size: 14px; color: var(--muted-dark); margin-top: 4px; }

/* ---------- Карточки ---------- */

.grid { display: grid; gap: 22px; }
.grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: #cbcbd4; }
.card h3 { margin-bottom: 10px; }
.card p { color: var(--muted); font-size: 15.5px; }
.card__ico {
  width: 46px; height: 46px;
  border-radius: 11px;
  display: grid; place-items: center;
  background: var(--brand-soft);
  color: var(--brand-ink);
  margin-bottom: 16px;
}
.card__ico svg { width: 23px; height: 23px; }

.card--pain { background: #fff; border-color: #ece0dc; }
.card--pain .card__ico { background: #f8ece7; color: #b4523a; }

/* ---------- Блоки «решение» ---------- */

.feature { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 56px; align-items: center; padding: 46px 0; }
.feature + .feature { border-top: 1px solid var(--line); }
.feature--flip .feature__media { order: -1; }
.feature h3 { font-size: clamp(23px, 2.6vw, 30px); margin-bottom: 14px; }
.feature p { color: var(--muted); }
.feature ul { list-style: none; padding: 0; margin: 20px 0 0; display: grid; gap: 11px; }
.feature li { display: grid; grid-template-columns: 22px 1fr; gap: 11px; align-items: start; font-size: 15.5px; }
.feature li svg { width: 20px; height: 20px; color: var(--ok); margin-top: 2px; }

.panel {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow);
  padding: 22px;
}
.panel__row { display: flex; align-items: center; gap: 12px; padding: 12px; border-radius: 10px; background: #fff; border: 1px solid var(--line); }
.panel__row + .panel__row { margin-top: 10px; }
.panel__row .mock__ava { width: 32px; height: 32px; font-size: 12px; }
.panel__row b { font-size: 15px; }
.panel__row span { font-size: 13.5px; color: var(--muted); display: block; }
.tag { font-size: 12px; padding: 3px 9px; border-radius: 999px; background: var(--brand-soft); color: var(--brand-ink); font-weight: 600; margin-left: auto; white-space: nowrap; }
.tag--gray { background: #eef1f0; color: var(--muted); }
.tag--green { background: #e7f7ec; color: var(--ok); }

/* ---------- Каналы ---------- */

.chan { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.chan__item { display: flex; gap: 16px; align-items: flex-start; padding: 22px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; }
.chan__logo { width: 44px; height: 44px; border-radius: 11px; display: grid; place-items: center; flex: none; color: #fff; font-weight: 700; }
.mock__ava[style*="25d366"], .chan__logo[style*="25d366"],
.mock__ava[style*="2aabee"], .chan__logo[style*="2aabee"],
.chan__logo[style*="f09433"] { color: #0b2410; }
.chan__item h3 { font-size: 18px; margin-bottom: 6px; }
.chan__item p { font-size: 14.5px; color: var(--muted); }
.chan__item[data-soon] { opacity: .78; border-style: dashed; }

/* ---------- ИИ-блок ---------- */

.ai__grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr); gap: 54px; align-items: center; }
/* Заголовок здесь вне .head, поэтому отступ до абзаца задаётся отдельно. */
.ai__grid h2 { margin-bottom: 16px; }
.ai__list { list-style: none; padding: 0; margin: 24px 0 0; display: grid; gap: 12px; }
.ai__list li { display: grid; grid-template-columns: 22px 1fr; gap: 12px; font-size: 16px; color: var(--fg); }
.ai__list svg { width: 20px; height: 20px; color: var(--brand-ink); margin-top: 2px; }
.ai__note { margin-top: 26px; font-size: 14.5px; color: var(--muted); border-left: 3px solid var(--brand); padding-left: 14px; }

.dialog { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 20px; display: grid; gap: 11px; box-shadow: var(--shadow); }
.dialog .bubble { max-width: 88%; }

/* ---------- Сравнение ---------- */

.tablewrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; }
table.cmp { width: 100%; border-collapse: collapse; min-width: 660px; }
table.cmp th, table.cmp td { padding: 16px 18px; text-align: left; border-bottom: 1px solid var(--line); font-size: 15.5px; vertical-align: top; }
table.cmp thead th { font-size: 14px; color: var(--muted); font-weight: 650; background: #f9f9fb; }
table.cmp thead th:nth-child(2) { color: var(--brand-ink); }
table.cmp tbody tr:last-child td { border-bottom: none; }
table.cmp td:first-child { font-weight: 600; width: 34%; }
table.cmp td:nth-child(2) { background: rgba(21, 128, 61, .06); }
.yes, .no { display: inline-flex; align-items: center; gap: 8px; }
.yes svg { color: var(--ok); width: 19px; height: 19px; flex: none; }
.no svg { color: #b0bab5; width: 19px; height: 19px; flex: none; }
.cmp__note { font-size: 13.5px; color: var(--muted); margin-top: 14px; }

/* ---------- Шаги ---------- */

.steps { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; counter-reset: s; }
.step { padding: 26px; border-radius: var(--radius); background: #fff; border: 1px solid var(--line); position: relative; }
.step::before {
  counter-increment: s;
  content: counter(s);
  display: grid; place-items: center;
  width: 38px; height: 38px; border-radius: 10px;
  background: var(--brand);
  color: var(--on-brand); font-weight: 700; font-size: 17px;
  margin-bottom: 16px;
}
.step h3 { font-size: 18px; margin-bottom: 8px; }
.step p { color: var(--muted); font-size: 15px; }

/* ---------- Тарифы ---------- */

.toggle { display: inline-flex; align-items: center; gap: 4px; padding: 5px; border-radius: 999px; background: #e8e8ee; border: 1px solid var(--line); margin: 0 auto 40px; }
.toggle button { border: none; background: transparent; padding: 9px 20px; border-radius: 999px; font: inherit; font-size: 15px; font-weight: 600; color: var(--muted); cursor: pointer; }
.toggle button.is-on { background: #fff; color: var(--fg); box-shadow: 0 1px 4px rgba(16, 32, 26, .12); }
.toggle .save { font-size: 12.5px; color: var(--brand-ink); font-weight: 700; margin-left: 6px; }

.plans { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; align-items: start; }
.plan { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 30px 26px; display: flex; flex-direction: column; height: 100%; }
.plan--hot { border-color: var(--brand); box-shadow: var(--shadow); position: relative; }
.plan--hot::after {
  content: "Выбирают чаще";
  position: absolute; top: -13px; left: 26px;
  background: var(--brand);
  color: var(--on-brand); font-size: 12.5px; font-weight: 650; padding: 5px 13px; border-radius: 999px;
}
.plan h3 { font-size: 21px; }
.plan__desc { color: var(--muted); font-size: 14.5px; margin-top: 6px; min-height: 44px; }
.plan__price { margin: 20px 0 4px; display: flex; align-items: baseline; gap: 7px; }
.plan__price b { font-size: 38px; font-weight: 700; letter-spacing: -.03em; }
.plan__price span { color: var(--muted); font-size: 15px; }
.plan__old { font-size: 14px; color: #8f9a95; text-decoration: line-through; height: 21px; }
.plan ul { list-style: none; padding: 0; margin: 22px 0 26px; display: grid; gap: 11px; }
.plan li { display: grid; grid-template-columns: 20px 1fr; gap: 10px; font-size: 15px; align-items: start; }
.plan li svg { width: 18px; height: 18px; color: var(--ok); margin-top: 3px; }
.plan li.off { color: #6b6e76; }
.plan li.off svg { color: #c6cfcb; }
.plan .btn { margin-top: auto; width: 100%; }

.plans__foot { margin-top: 30px; display: grid; gap: 10px; text-align: center; color: var(--muted); font-size: 15px; }

/* ---------- FAQ ---------- */

.faq { max-width: 860px; margin: 0 auto; }
.faq details { border: 1px solid var(--line); border-radius: var(--radius); background: #fff; padding: 0; margin-bottom: 12px; overflow: hidden; }
.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 56px 20px 22px;
  font-weight: 650;
  font-size: 17px;
  position: relative;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "";
  position: absolute; right: 24px; top: 27px;
  width: 10px; height: 10px;
  border-right: 2px solid var(--muted); border-bottom: 2px solid var(--muted);
  transform: rotate(45deg);
  transition: transform .2s ease;
}
.faq details[open] summary::after { transform: rotate(-135deg); top: 31px; }
.faq .faq__a { padding: 0 22px 22px; color: var(--muted); font-size: 16px; }
.faq .faq__a p + p { margin-top: 12px; }

/* ---------- Финальный CTA ---------- */

.final .wrap { text-align: center; }
.final h2 { max-width: 760px; margin: 0 auto 18px; }
.final .lead { max-width: 620px; margin: 0 auto; }
.final__ways { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-top: 34px; }
.final__note { margin-top: 22px; font-size: 14.5px; color: var(--muted); }

/* ---------- Подвал ---------- */

.site-footer { background: var(--bg-dark-soft); color: var(--muted); padding: 54px 0 34px; font-size: 15px; border-top: 1px solid var(--line); }
.footer__grid { display: grid; grid-template-columns: minmax(0, 1.4fr) repeat(3, minmax(0, 1fr)); gap: 32px; }
.footer__grid h4 { font-size: 14px; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); margin: 0 0 14px; font-weight: 650; }
.footer__grid ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer__grid a { text-decoration: none; }
.footer__grid a:hover { color: var(--brand-ink); }
.footer__brand .brand { color: var(--fg); margin-bottom: 12px; }
.footer__bottom { margin-top: 38px; padding-top: 22px; border-top: 1px solid var(--line); display: flex; flex-wrap: wrap; gap: 14px; justify-content: space-between; font-size: 13.5px; color: var(--muted); }

/* ---------- Адаптив ---------- */

@media (max-width: 1000px) {
  .hero__grid, .ai__grid { grid-template-columns: minmax(0, 1fr); gap: 44px; }
  .feature, .feature--flip .feature__media { grid-template-columns: minmax(0, 1fr); order: 0; }
  .feature { gap: 32px; }
  .grid--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .chan, .steps, .plans { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .plan--hot { order: -1; }
  .footer__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 860px) {
  .nav__links, .nav__login { display: none; }
  .burger { display: inline-flex; }
  .nav .btn { display: none; }
  .nav__actions { margin-left: auto; }
}

@media (max-width: 720px) {
  .hero__badge-tail { display: none; }
  .section { padding: 66px 0; }
  .hero { padding: 54px 0 64px; }
  .grid--2, .grid--3, .grid--4, .chan, .steps, .plans { grid-template-columns: minmax(0, 1fr); }
  .proof__grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .mock__body { grid-template-columns: minmax(0, 1fr); }
  .mock__list { display: none; }
  .footer__grid { grid-template-columns: minmax(0, 1fr); }
  .btn { width: 100%; }
  .hero__cta .btn, .final__ways .btn { width: 100%; }
  .nav .btn { width: auto; }
}

/* ---------- Мобильное меню ---------- */

.mobile-menu {
  display: none;
  position: fixed;
  inset: 68px 0 auto;
  background: #fff;
  border-bottom: 1px solid var(--line);
  padding: 18px 24px 26px;
  z-index: 55;
  transform: translateY(-120%);
  transition: transform .25s ease;
}
.mobile-menu.is-open { transform: translateY(0); }
@media (max-width: 860px) { .mobile-menu { display: block; } }
.mobile-menu ul { list-style: none; padding: 0; margin: 0 0 18px; display: grid; gap: 4px; }
.mobile-menu a { display: block; padding: 12px 4px; text-decoration: none; color: var(--fg); font-size: 17px; border-bottom: 1px solid var(--line); }
.mobile-menu .btn { width: 100%; }
