/* ============================================================
   Welkoma - главная страница (бывшая /l7, решение владельца 09.08).
   Выросла из l7/style-l7.css плюс дропдаун выбора языка (.lang);
   версии-эксперименты /l2-/l7 удалены 10.08, история - в git.
   ============================================================ */

:root {
  --ink: #1d241f;           /* основной текст */
  --ink-2: #5b665f;         /* вторичный текст */
  --ink-3: #8b958e;         /* подписи */
  --bg: #faf8f3;            /* фон страницы, тёплая бумага */
  --bg-2: #f1ede2;          /* чередующиеся секции */
  --paper: #ffffff;         /* бумага: чек, карточки */
  --dark: #142a1e;          /* тёмные секции: отчёты, форма */
  --dark-2: #1d3c2b;        /* карточки на тёмном */
  --dark-line: #2f5941;     /* контуры на тёмном */
  /* зелёный = брендовый канон: те же значения, что --brand в design-system/
     tokens.css и в логотипе, чтобы лендинг, кабинет и знак были одной краской */
  --go: #1E6B45;            /* сигнальный: кнопки, ссылки, «включено» */
  --go-2: #175537;          /* наведение (темнее, как в кабинете) */
  --go-soft: #E9F1EC;       /* мягкая подложка */
  --go-line: #bedccb;
  --paid: #1E6B45;          /* «оплачен», «включено» - тот же зелёный */
  --paid-soft: #E9F1EC;
  --warn: #a86a15;          /* «доделываем» */
  --warn-soft: #fbf2e2;
  --line: #e3ded1;
  --line-2: #efebe0;

  --font: "Golos Text", "Segoe UI", system-ui, -apple-system, sans-serif;
  --font-head: "Prata", "Georgia", serif;
  --r: 12px;
  --r-lg: 18px;
  --r-xl: 26px;
  --wrap: 1180px;
  --sh: 0 22px 50px rgba(29, 36, 31, 0.12);
  --sh-sm: 0 6px 18px rgba(29, 36, 31, 0.07);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; overflow-x: hidden; scroll-padding-top: 76px; }

body {
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  padding-top: 62px;              /* высота фиксированной шапки */
}

/* height:auto обязателен: у фото в разметке стоят width/height 640 (борьба
   со сдвигами при загрузке), без него атрибут height растягивает картинку */
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
b, strong { font-weight: 600; }

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 22px; }
.wrap--narrow { max-width: 880px; }
.center { text-align: center; margin-top: 30px; }

.vh {
  position: absolute; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap;
}

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

.btn {
  display: inline-block; text-decoration: none; text-align: center;
  font-family: var(--font); font-weight: 600; font-size: 16px;
  border: 0; border-radius: 999px; cursor: pointer;
  padding: 13px 24px; transition: background .18s, color .18s, transform .18s;
}
.btn--go { background: var(--go); color: #fff; }
.btn--go:hover { background: var(--go-2); }
.btn--line {
  background: transparent; color: var(--ink);
  box-shadow: inset 0 0 0 1.5px var(--ink);
}
.btn--line:hover { background: var(--ink); color: #fff; }
.btn--big { padding: 16px 30px; font-size: 17px; }
.btn--sm { padding: 9px 18px; font-size: 14.5px; }
.btn--wide { display: block; width: 100%; }

/* ---------- шапка ---------- */

.hd {
  /* fixed, а не sticky: у html стоит overflow-x:hidden, sticky с ним не липнет */
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  background: rgba(250, 248, 243, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.hd__in { display: flex; align-items: center; gap: 26px; height: 62px; }
.hd__logo {
  display: flex; align-items: center; gap: 9px;
  font-weight: 700; font-size: 19px; text-decoration: none;
}
/* логотип в кривых: design-system/logo, правила - wiki/15 */
.hd__logo img { display: block; height: 26px; width: auto; }
.hd__mark {
  display: inline-flex; align-items: center; justify-content: center;
  width: 32px; height: 32px; border-radius: 9px;
  background: var(--go); color: #fff; font-weight: 700; font-size: 17px;
}
.hd__mark img { display: block; width: 19px; height: auto; }
.ft__logo { display: block; height: 28px; width: auto; }
.hd__nav { display: flex; gap: 20px; margin-left: auto; }
.hd__nav a {
  text-decoration: none; font-size: 15px; color: var(--ink-2);
  transition: color .5s ease;
}
.hd__nav a:hover { color: var(--ink); }

/* ---------- выбор языка (как на прежней главной, в светлой гамме) ---------- */

.lang { position: relative; }
.lang__btn {
  display: inline-flex; align-items: center; gap: 7px;
  background: transparent; border: 1.5px solid var(--line);
  color: var(--ink-2); border-radius: 999px; padding: 8px 14px;
  font: 600 13.5px var(--font); cursor: pointer;
}
.lang__btn:hover { border-color: var(--ink-2); color: var(--ink); }
.lang__list {
  position: absolute; top: calc(100% + 10px); right: 0;
  list-style: none; background: var(--paper);
  border: 1px solid var(--line); border-radius: 14px;
  box-shadow: var(--sh); padding: 6px; min-width: 160px; z-index: 60;
}
.lang__list a {
  display: block; width: 100%; text-align: left;
  padding: 9px 14px; border-radius: 9px;
  font: 500 14.5px var(--font); color: var(--ink);
  text-decoration: none; cursor: pointer;
}
.lang__list a:hover { background: var(--bg-2); }
.lang__list a.is-active { color: var(--go); font-weight: 700; }

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

.hero { padding: 56px 0 64px; }
.hero__in {
  display: grid; grid-template-columns: 1.06fr .94fr;
  gap: 56px; align-items: start;
}
h1 {
  font-family: var(--font-head);
  font-size: clamp(32px, 4.3vw, 50px);
  line-height: 1.12; letter-spacing: -0.2px; font-weight: 400;
}
h1 em {
  font-style: normal; color: var(--go);
  /* подчёркивание-пунктир: цена - строка из чека */
  border-bottom: 3px dotted var(--go-line);
}
/* цена в товарах - отдельной строкой под заголовком; шрифт - тот же
   заголовочный Prata (правка владельца 09.08: без жирного гротеска) */
.h1__price {
  display: block; margin-top: 12px;
  font-size: clamp(20px, 2.6vw, 27px); line-height: 1.25;
  color: var(--ink);
}
.hero__sub {
  margin-top: 18px; font-size: 18px; color: var(--ink-2); max-width: 560px;
}
.hero__cta { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 26px; }
.hero__facts { list-style: none; margin-top: 30px; display: grid; gap: 12px; }
.hero__facts li {
  display: grid; gap: 2px; padding-left: 30px; position: relative;
}
.hero__facts li::before {
  content: "✓"; position: absolute; left: 0; top: 0;
  width: 21px; height: 21px; border-radius: 50%;
  background: var(--paid-soft); color: var(--paid);
  font-size: 13px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.hero__facts b { font-size: 16px; }
.hero__facts span { font-size: 14.5px; color: var(--ink-2); }

/* переключатель ниши (механика с /l5) */

.niche {
  margin-top: 28px; padding: 18px 20px;
  border: 1px solid var(--line); border-radius: var(--r-lg);
  background: var(--paper); box-shadow: var(--sh-sm);
}
.niche__q { font-weight: 700; font-size: 16px; }
.niche__chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.chip {
  font-family: var(--font); font-size: 14.5px; font-weight: 600;
  padding: 8px 15px; border-radius: 999px;
  border: 1px solid var(--line); background: var(--paper); color: var(--ink-2);
  cursor: pointer; transition: all .15s ease;
}
.chip:hover { border-color: var(--go-2); color: var(--go); }
.chip.is-on { background: var(--go); border-color: var(--go); color: #fff; }
.niche__out {
  margin-top: 14px; font-size: 15px; color: var(--ink-2);
  border-top: 1px solid var(--line-2); padding-top: 13px;
}
.niche__out b { color: var(--ink); }

/* чек - сигнатурный визуал (с /l6) */

.hero__show { position: relative; }
.rcpt {
  position: relative;
  background: var(--paper);
  border-radius: 6px 6px 0 0;
  box-shadow: var(--sh);
  padding: 26px 28px 34px;
  max-width: 420px;
  margin: 0 auto;
  font-variant-numeric: tabular-nums;
  /* зубчатый нижний край чека */
  --notch: 12px;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - var(--notch)),
    95% 100%, 90% calc(100% - var(--notch)), 85% 100%,
    80% calc(100% - var(--notch)), 75% 100%, 70% calc(100% - var(--notch)),
    65% 100%, 60% calc(100% - var(--notch)), 55% 100%,
    50% calc(100% - var(--notch)), 45% 100%, 40% calc(100% - var(--notch)),
    35% 100%, 30% calc(100% - var(--notch)), 25% 100%,
    20% calc(100% - var(--notch)), 15% 100%, 10% calc(100% - var(--notch)),
    5% 100%, 0 calc(100% - var(--notch)));
}
.rcpt__hd {
  display: grid; grid-template-columns: auto 1fr; grid-column-gap: 12px;
  align-items: center; padding-bottom: 14px;
  border-bottom: 1.5px dashed var(--line);
}
.rcpt__hd b { font-size: 16px; }
.rcpt__hd small { grid-column: 2; color: var(--ink-3); font-size: 13px; }
.rcpt__hd .hd__mark { grid-row: span 2; }
.rcpt__lines { list-style: none; margin: 14px 0 6px; display: grid; gap: 9px; }
.rcpt__lines li { display: flex; align-items: baseline; font-size: 15px; }
.rcpt__lines span { order: 1; color: var(--ink); }
.rcpt__lines li::before {
  content: ""; order: 2; flex: 1;
  border-bottom: 1.5px dotted var(--line);
  margin: 0 8px; transform: translateY(-3px);
}
.rcpt__lines b { order: 3; color: var(--paid); font-size: 13.5px; font-weight: 600; }
.rcpt__total {
  display: flex; align-items: baseline; justify-content: space-between;
  margin-top: 12px; padding-top: 13px;
  border-top: 1.5px dashed var(--line);
  font-weight: 700;
}
.rcpt__total span { font-size: 15px; letter-spacing: .04em; text-transform: uppercase; }
.rcpt__total b { font-size: 27px; }
.rcpt__total small { font-size: 15px; color: var(--ink-2); font-weight: 500; }
.rcpt__eq { text-align: right; color: var(--ink-2); font-size: 14px; margin-top: 2px; }
.rcpt__free {
  margin-top: 14px; padding: 10px 14px; border-radius: 10px;
  background: var(--go-soft); color: var(--ink);
  display: flex; justify-content: space-between; align-items: baseline;
  font-size: 15px;
}
.rcpt__free b { color: var(--go); font-size: 18px; }
.rcpt__stamp {
  position: absolute; right: 16px; top: 84px;
  transform: rotate(-12deg);
  border: 2px solid var(--paid); color: var(--paid);
  border-radius: 8px; padding: 3px 10px;
  font-size: 12px; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; opacity: .82; pointer-events: none;
}

/* карточка ночного заказа поверх чека */

.night {
  position: relative; z-index: 2;
  max-width: 340px; margin: -26px 0 0 auto;
  background: var(--dark); color: #fff;
  border-radius: var(--r-lg); box-shadow: var(--sh);
  padding: 16px 18px;
}
.night__hd {
  display: flex; align-items: center; gap: 8px;
  font-size: 13.5px; color: #a7c0af;
}
.night__dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #4fd694; box-shadow: 0 0 0 4px rgba(79, 214, 148, 0.18);
}
.night__body { display: grid; margin-top: 9px; font-size: 14.5px; color: #cfdfd4; }
.night__body b { color: #fff; font-size: 15.5px; }
.night__pay {
  margin-top: 8px; display: inline-block;
  background: rgba(79, 214, 148, 0.14); color: #6fe2ab;
  border-radius: 7px; padding: 3px 9px; font-size: 13.5px; font-weight: 600;
}
.night__note { margin-top: 10px; font-size: 13px; color: #a7c0af; }
.hero__disc {
  margin-top: 16px; text-align: center;
  font-size: 12.5px; color: var(--ink-3);
}

/* ---------- каркас секций ---------- */

.sec { padding: 72px 0; }
.sec--tint { background: var(--bg-2); }
.sec--dark { background: var(--dark); color: #fff; }
.eyeb {
  font-size: 13px; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--go); margin-bottom: 12px;
}
.eyeb--light { color: #7fc9a1; }
h2 {
  font-family: var(--font-head); font-weight: 400;
  font-size: clamp(25px, 3.2vw, 36px);
  line-height: 1.18; letter-spacing: -0.2px; max-width: 780px;
}
.lead { margin-top: 14px; color: var(--ink-2); font-size: 17.5px; }
.lead--light { color: #b7cfc0; }
.disc { margin-top: 26px; font-size: 13px; color: var(--ink-3); }
.disc--light { color: #7d9b89; }

/* ---------- «ваш день»: тумблер ---------- */

.day { margin-top: 34px; }
.day__tabs {
  display: inline-flex; gap: 4px; padding: 4px;
  background: var(--paper); border: 1px solid var(--line);
  border-radius: 999px; box-shadow: var(--sh-sm);
}
.day__tab {
  font-family: var(--font); font-size: 15.5px; font-weight: 600;
  border: 0; background: transparent; color: var(--ink-2);
  border-radius: 999px; padding: 9px 20px; cursor: pointer;
  transition: background .18s, color .18s;
}
.day__tab.is-on { background: var(--ink); color: #fff; }
.day--with .day__tab.is-on { background: var(--go); }
.day__list { list-style: none; margin-top: 22px; display: grid; gap: 10px; }
.day__list li {
  display: grid; grid-template-columns: 62px 1fr; gap: 14px;
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--r); padding: 15px 18px;
  align-items: baseline;
}
.day__list time {
  font-weight: 700; font-variant-numeric: tabular-nums;
  color: var(--ink-3); font-size: 15px;
}
.day__list .t-now, .day__list .t-with { font-size: 16px; }
.day__list .t-with { display: none; color: var(--ink); }
.day--with .day__list .t-now { display: none; }
.day--with .day__list .t-with { display: block; }
.day--with .day__list time { color: var(--go); }
.day--with .day__list li { border-color: var(--go-line); background: #fbfdf9; }
.day__note { margin-top: 14px; font-size: 14px; color: var(--ink-2); }

/* ---------- три прилавка ---------- */

.ways {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 22px; margin-top: 36px;
}
.way {
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 24px 22px 22px;
  display: flex; flex-direction: column; gap: 10px;
}
.way__n {
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--go-soft); color: var(--go);
  font-weight: 700; font-size: 15px;
  display: flex; align-items: center; justify-content: center;
}
.way h3 { font-size: 20px; }
.way > p:not(.way__n) { color: var(--ink-2); font-size: 15.5px; }

/* телефоны-макеты трёх прилавков: рамка и вид - как демо на главной
   странице; высота одна на всех, чтобы карточки читались рядом */

.ph {
  width: 100%; max-width: 292px; height: 420px;
  margin: auto auto 0;                 /* прижат к низу карточки, по центру */
  border: 7px solid #14211a; border-radius: 28px;
  background: #fff; overflow: hidden; box-shadow: var(--sh);
  display: flex; flex-direction: column;
  font-size: 12.5px; line-height: 1.35;
}

/* сайт: адресная строка + каталог */
.ph__wbbar {
  display: flex; align-items: center; justify-content: center; gap: 6px;
  position: relative; background: #f4f2ec; color: var(--ink-2);
  padding: 8px 12px; font-size: 11.5px;
}
.ph__wbbar i { font-style: normal; font-size: 10px; }
.ph__wbbar em { font-style: normal; position: absolute; right: 12px; color: var(--ink-3); }
.ph__wbhead {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 10px 14px 2px;
}
.ph__wblogo { font-family: var(--font-head); font-size: 16px; }
.ph__wbhead > span { color: var(--ink-2); font-size: 11.5px; }
.ph__wbgrid {
  flex: 1; display: grid; grid-template-columns: 1fr 1fr;
  gap: 8px; padding: 8px 14px; align-content: start; overflow: hidden;
}
.ph__wbgrid span { display: grid; gap: 1px; }
.ph__wbgrid img { border-radius: 8px; aspect-ratio: 1; object-fit: cover; margin-bottom: 3px; }
.ph__wbgrid em { font-style: normal; font-size: 11px; color: var(--ink-2); }
.ph__wbgrid b { font-size: 11.5px; }
.ph__btn {
  margin: 8px 14px 12px; background: var(--ink); color: #fff;
  border-radius: 999px; text-align: center; padding: 9px; font-weight: 600;
}

/* бот: чат с кнопками */
.ph--tg { background: #eef3fb; }
.ph__tgbar { display: grid; background: #4f7fd9; color: #fff; padding: 9px 14px; }
.ph__tgbar small { color: #cfdefa; font-size: 10.5px; }
.ph__chat {
  flex: 1; display: grid; gap: 8px; padding: 10px 0;
  align-content: start; overflow: hidden;
}
.bub {
  background: #fff; border-radius: 12px 12px 12px 4px;
  padding: 7px 11px; margin: 0 34px 0 10px; box-shadow: var(--sh-sm);
}
.bub--card { display: grid; gap: 3px; max-width: 150px; }
.bub--card img { border-radius: 8px; aspect-ratio: 1; object-fit: cover; }
.bub--card span { color: var(--ink-2); }
.chip-m {
  justify-self: end; background: #dbe7fb; border-radius: 12px 12px 4px 12px;
  padding: 7px 11px; margin: 0 10px 0 34px;
}
.chip-m--go { background: var(--go); color: #fff; font-weight: 600; }

/* витрина-приложение: шапка «✕ Botanika ⋮», категории, карточки,
   главная кнопка и вкладки - как mini app на главной странице */
.ph__matop {
  display: flex; align-items: center; justify-content: space-between;
  padding: 8px 12px; border-bottom: 1px solid #ececf0;
}
.ph__matop i { font-style: normal; color: #9aa0a6; }
.ph__matop > span { display: grid; text-align: center; line-height: 1.15; }
.ph__matop small { color: var(--ink-3); font-size: 10px; }
.ph__machips { display: flex; gap: 6px; padding: 8px 12px 2px; overflow: hidden; }
.ph__machips span {
  flex-shrink: 0; background: #f2f2f7; border-radius: 999px;
  padding: 4px 11px; font-size: 11px; font-weight: 500;
}
.ph__machips .is-on { background: #007aff; color: #fff; }
.ph__magrid {
  flex: 1; display: grid; grid-template-columns: 1fr 1fr;
  gap: 9px; padding: 8px 12px; align-content: start; overflow: hidden;
}
.ph__magrid span {
  display: grid; gap: 1px; background: #fff; border-radius: 12px;
  overflow: hidden; box-shadow: 0 1px 5px rgba(0, 0, 0, 0.09);
  padding-bottom: 7px;
}
.ph__magrid img { aspect-ratio: 1; object-fit: cover; margin-bottom: 4px; }
.ph__magrid em { font-style: normal; font-size: 11px; color: var(--ink-2); padding: 0 8px; }
.ph__magrid b { font-size: 11.5px; padding: 0 8px; }
.ph__mamain {
  margin: 0 12px 8px; background: #007aff; color: #fff;
  border-radius: 999px; text-align: center; padding: 9px; font-weight: 600;
}
.ph__matabs {
  display: flex; justify-content: space-around;
  border-top: 1px solid #ececf0; padding: 7px 6px 9px;
  font-size: 10px; color: var(--ink-3);
}
.ph__matabs .is-on { color: #007aff; font-weight: 600; }

/* ---------- полосы-акценты ---------- */

.strip {
  margin-top: 34px; background: var(--paper);
  border: 1px solid var(--line); border-left: 4px solid var(--go);
  border-radius: var(--r); padding: 18px 22px;
  font-size: 16px; color: var(--ink-2);
}
.strip strong { color: var(--ink); }
.strip--soft { border-left-color: var(--warn); }
.strip--help { border-left-color: var(--warn); }
.strip--niche { border-left-color: #c65fa4; }

/* ---------- «руками -> само» ---------- */

.ready { margin-top: 36px; }
.ready__list { list-style: none; display: grid; gap: 10px; }
.ready__list li {
  display: grid; grid-template-columns: 1fr 1.1fr; gap: 16px;
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--r); padding: 15px 20px; align-items: center;
}
.ready__list span { color: var(--ink-2); font-size: 15.5px; position: relative; padding-right: 26px; }
.ready__list span::after {
  content: "→"; position: absolute; right: 2px; top: 50%;
  transform: translateY(-50%); color: var(--go); font-weight: 700;
}
.ready__list b { font-size: 16px; font-weight: 600; }

/* ---------- отчёты (тёмная секция) ---------- */

.rep {
  display: grid; grid-template-columns: 1.25fr .75fr;
  gap: 26px; margin-top: 38px; align-items: start;
}
.dash {
  background: var(--dark-2); border: 1px solid var(--dark-line);
  border-radius: var(--r-lg); overflow: hidden;
  font-variant-numeric: tabular-nums;
}
.dash__bar {
  display: flex; align-items: center; gap: 5px;
  padding: 10px 14px; border-bottom: 1px solid var(--dark-line);
}
.dash__bar i { width: 9px; height: 9px; border-radius: 50%; background: #3f6b52; }
.dash__bar span { margin-left: 8px; color: #a7c0af; font-size: 13px; }
.dash__kpi {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--dark-line);
}
.dash__kpi div { background: var(--dark-2); padding: 13px 14px; display: grid; }
.dash__kpi small { color: #8fb59e; font-size: 12px; }
.dash__kpi strong { font-size: 19px; margin-top: 3px; }
.dash__kpi em {
  font-style: normal; color: #6fe2ab; font-size: 12.5px; margin-top: 2px;
}
.dash__grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px; padding: 14px;
}
.dash__panel {
  background: rgba(255, 255, 255, 0.035); border: 1px solid var(--dark-line);
  border-radius: var(--r); padding: 12px;
}
.dash__panel small { color: #8fb59e; font-size: 12px; }
.dash__bars {
  display: grid; grid-template-columns: repeat(7, 1fr);
  gap: 6px; align-items: end; height: 84px; margin-top: 10px;
}
.dash__bars span {
  height: var(--h); border-radius: 4px 4px 0 0;
  background: linear-gradient(180deg, #63c793, #1E6B45);
}
.dash__days {
  display: grid; grid-template-columns: repeat(7, 1fr);
  gap: 6px; margin-top: 5px; text-align: center;
}
.dash__days b { color: #8fb59e; font-size: 10.5px; font-weight: 500; }
.dash__stack {
  display: flex; gap: 3px; height: 12px; border-radius: 6px;
  overflow: hidden; margin-top: 10px;
}
.dash__stack span:nth-child(1) { background: #63c793; }
.dash__stack span:nth-child(2) { background: #7fb2e8; }
.dash__stack span:nth-child(3) { background: #f0b95c; }
.dash__leg { display: grid; gap: 4px; margin-top: 9px; }
.dash__leg b {
  display: flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 500; color: #cfdfd4;
}
.dash__leg i { width: 9px; height: 9px; border-radius: 3px; }
.dash__leg .c1 { background: #63c793; }
.dash__leg .c2 { background: #7fb2e8; }
.dash__leg .c3 { background: #f0b95c; }
.dash__sub { display: block; margin-top: 12px; }
.dash__top { display: grid; gap: 6px; margin-top: 8px; }
.dash__top b {
  display: grid; grid-template-columns: 1fr auto; grid-column-gap: 8px;
  font-size: 12px; font-weight: 500; color: #cfdfd4; align-items: center;
}
.dash__top i {
  grid-column: 1 / -1; height: 5px; border-radius: 3px;
  background: linear-gradient(90deg, #63c793, #1E6B45);
  width: var(--w); margin-top: 2px;
}
.dash__top u { text-decoration: none; color: #8fb59e; }
.rep__side { display: grid; gap: 18px; }
.note {
  background: var(--dark-2); border: 1px solid var(--dark-line);
  border-radius: var(--r-lg); padding: 15px 17px; font-size: 14.5px;
  color: #cfdfd4; display: grid; gap: 7px;
}
.note__hd { display: flex; align-items: center; gap: 8px; }
.note__ava {
  width: 26px; height: 26px; border-radius: 8px; background: var(--go);
  color: #fff; font-weight: 700; font-size: 14px;
  display: flex; align-items: center; justify-content: center;
}
.note__hd b { color: #fff; }
.note__hd small { margin-left: auto; color: #8fb59e; }
.note p b { color: #fff; }
.rep__list { list-style: none; display: grid; gap: 11px; }
.rep__list li {
  font-size: 15px; color: #b7cfc0; padding-left: 24px; position: relative;
}
.rep__list li::before {
  content: "▪"; position: absolute; left: 4px; color: #63c793;
}
.rep__list b { color: #fff; font-weight: 600; }

/* ---------- плитки повторных продаж ---------- */

.tiles {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 18px; margin-top: 36px;
}
.tile {
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 20px;
}
.tile span { font-size: 26px; }
.tile h3 { font-size: 17.5px; margin-top: 10px; }
.tile p { color: var(--ink-2); font-size: 14.5px; margin-top: 6px; }

/* ---------- шаги запуска ---------- */

.steps {
  list-style: none;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 18px; margin-top: 36px;
}
.steps li {
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 20px;
  display: flex; flex-direction: column; gap: 8px;
}
.steps__n {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--go); color: #fff; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.steps h3 { font-size: 18px; }
.steps p { color: var(--ink-2); font-size: 14.5px; }
.steps em {
  margin-top: auto; font-style: normal; font-weight: 600; font-size: 13.5px;
  color: var(--go); background: var(--go-soft);
  border-radius: 7px; padding: 3px 10px; align-self: start;
}

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

.plans {
  display: grid; grid-template-columns: 1.05fr .95fr;
  gap: 22px; margin-top: 38px; align-items: start;
}
.plan {
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--r-xl); padding: 26px;
}
.plan--main { border: 2px solid var(--go); box-shadow: var(--sh); position: relative; }
.plan__badge {
  position: absolute; top: -13px; left: 24px;
  background: var(--go); color: #fff; font-size: 12.5px; font-weight: 700;
  border-radius: 999px; padding: 4px 13px; letter-spacing: .03em;
}
.plan h3 { font-size: 22px; }
.cur-toggle {
  display: inline-flex;
  gap: 4px;
  background: #fff;
  border: 1px solid rgba(14, 41, 33, 0.18);
  border-radius: 999px;
  padding: 4px;
  margin: 4px 0 18px;
}
.cur-toggle button {
  border: none;
  background: transparent;
  color: var(--ink-2);
  font-size: 13px;
  font-weight: 600;
  font-family: inherit;
  padding: 7px 16px;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease;
}
.cur-toggle button.is-on { background: var(--ink-1, #0e2921); color: #fff; }

.plan__price { margin-top: 6px; display: flex; align-items: baseline; gap: 7px; }
.plan__price b { font-size: 34px; font-weight: 700; }
.plan__price span { color: var(--ink-2); }
.plan__price--soon { color: var(--ink-2); font-size: 15.5px; margin-top: 10px; }
.plan__for { color: var(--ink-2); font-size: 15px; margin-top: 3px; }
.plan ul { list-style: none; display: grid; gap: 8px; margin: 18px 0; }
.plan ul li { padding-left: 26px; position: relative; font-size: 15.5px; }
.plan ul li::before {
  content: "✓"; position: absolute; left: 0; top: 1px;
  color: var(--paid); font-weight: 700;
}
.plan__mini { margin-top: 12px; font-size: 13.5px; color: var(--ink-2); }
.plan__more { display: grid; gap: 22px; }
.guar {
  list-style: none; display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 18px; margin-top: 34px;
}
.guar li {
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--r); padding: 16px 18px; display: grid; gap: 4px;
}
.guar b { font-size: 15.5px; }
.guar span { font-size: 14px; color: var(--ink-2); }

/* ---------- работает / доделываем ---------- */

.road {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 22px; margin-top: 36px;
}
.road__col { border-radius: var(--r-lg); padding: 24px; }
.road__col--now { background: var(--paid-soft); border: 1px solid #bfdccb; }
.road__col--soon { background: var(--warn-soft); border: 1px solid #ecd9b7; }
.road__col h3 { font-size: 18px; margin-bottom: 14px; }
.road__col--now h3 { color: var(--paid); }
.road__col--soon h3 { color: var(--warn); }
.road__col ul { list-style: none; display: grid; gap: 9px; }
.road__col li { padding-left: 26px; position: relative; font-size: 15.5px; }
.road__col--now li::before {
  content: "✓"; position: absolute; left: 0; color: var(--paid); font-weight: 700;
}
.road__col--soon li::before {
  content: "…"; position: absolute; left: 0; color: var(--warn); font-weight: 700;
}
.road__note { margin-top: 22px; font-size: 15px; color: var(--ink-2); }

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

.faq { margin-top: 34px; display: grid; gap: 10px; }
.faq details {
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--r); padding: 0 20px;
}
.faq details[open] { border-color: var(--go-line); }
.faq summary {
  cursor: pointer; font-weight: 600; font-size: 16.5px;
  padding: 16px 26px 16px 0; list-style: none; position: relative;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; position: absolute; right: 0; top: 14px;
  font-size: 22px; color: var(--go); transition: transform .18s;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { padding-bottom: 18px; color: var(--ink-2); font-size: 15.5px; }

/* ---------- форма ---------- */

.sec--start h2 { max-width: none; }
.lead-form { margin-top: 30px; display: grid; gap: 12px; }
.lead-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.lead-form input[type="text"], .lead-form select {
  font-family: var(--font); font-size: 16px; color: var(--ink);
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--r); padding: 13px 16px; width: 100%;
}
.lead-form input:focus, .lead-form select:focus {
  outline: 2px solid var(--go-2); outline-offset: 1px;
}
.hp { position: absolute !important; left: -9999px; width: 1px; height: 1px; opacity: 0; }
.lead-form__ok {
  background: rgba(79, 214, 148, 0.14); color: #6fe2ab;
  border-radius: var(--r); padding: 12px 16px; font-weight: 600;
}
.lead-form__note { font-size: 12.5px; color: #7d9b89; }
.lead-form__note a { color: #a7c0af; }

/* ---------- футер ---------- */

.ft { background: var(--dark); color: #b7cfc0; padding: 44px 0 30px; }
.ft__in { display: grid; grid-template-columns: 1.2fr .8fr; gap: 30px; }
.ft__in > div p { margin-top: 12px; font-size: 14.5px; }
.ft__links { display: grid; gap: 8px; justify-items: start; }
.ft__links a { font-size: 14.5px; color: #b7cfc0; text-decoration: none; }
.ft__links a:hover { color: #fff; }
.ft__legal { grid-column: 1 / -1; margin-top: 18px; font-size: 13px; color: #7d9b89; }

/* ---------- липкая кнопка и cookie ---------- */

.sticky {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
  background: var(--ink); color: #fff;
  display: none; align-items: center; justify-content: space-between;
  gap: 12px; padding: 11px 18px;
}
.sticky span { display: grid; font-size: 13px; color: #bcc6bf; }
.sticky b { color: #fff; font-size: 15px; }
.cookie {
  position: fixed; left: 16px; bottom: 16px; z-index: 70;
  max-width: 420px; background: var(--paper);
  border: 1px solid var(--line); border-radius: var(--r-lg);
  box-shadow: var(--sh); padding: 16px 18px;
  display: grid; gap: 10px; font-size: 13.5px; color: var(--ink-2);
}
.cookie .btn { justify-self: start; }

/* ---------- появление при скролле ---------- */

.an { animation: rise .7s cubic-bezier(.2, .7, .3, 1) both; animation-delay: var(--d, 0s); }
@keyframes rise {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: none; }
}
.rev { opacity: 0; transform: translateY(16px); transition: opacity .55s, transform .55s; }
.rev.is-vis { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .an { animation: none; }
  .rev { opacity: 1; transform: none; transition: none; }
}

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

@media (max-width: 1020px) {
  .hero__in { grid-template-columns: 1fr; gap: 40px; }
  .hero__show { max-width: 480px; }
  .ways { grid-template-columns: 1fr; }
  .way .ph { margin-top: 14px; }
  .rep { grid-template-columns: 1fr; }
  .tiles { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .plans { grid-template-columns: 1fr; }
  .guar { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
  body { font-size: 16px; }
  .hd__nav { display: none; }
  .hero { padding: 34px 0 46px; }
  .hero__sub { font-size: 16.5px; }
  .btn--big { width: 100%; }
  .hero__cta { flex-direction: column; }
  .rcpt { padding: 20px 18px 30px; }
  .rcpt__stamp { top: 70px; right: 8px; }
  .night { margin-top: -14px; max-width: 300px; }
  .sec { padding: 52px 0; }
  .day__list li { grid-template-columns: 1fr; gap: 4px; }
  .ready__list li { grid-template-columns: 1fr; gap: 8px; }
  .ready__list span { padding-right: 0; }
  .ready__list span::after { content: none; }
  .tiles { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .road { grid-template-columns: 1fr; }
  .lead-form__row { grid-template-columns: 1fr; }
  .ft__in { grid-template-columns: 1fr; }
  .sticky { display: flex; }
  .cookie { left: 10px; right: 10px; max-width: none; bottom: 66px; }
}

/* ============================================================
   Редизайн 08.2026 (landing/REDESIGN_2026-08.md, согласовано на preview/):
   hero-слайдер трёх мест, секция «что ещё внутри» с группами и перечнем,
   отраслевые наборы, чек и ниша в секции цены.
   ============================================================ */

/* ---------- hero: слайдер трёх мест ---------- */
.hero__in--tabs { grid-template-areas: "top show" "bottom bottom"; row-gap: 34px; }
.hero__top { grid-area: top; }
.hero__bottom { grid-area: bottom; }
.hero__in--tabs .hero__show { grid-area: show; display: grid; }

.places { list-style: none; margin-top: 26px; display: grid; gap: 18px; }
.places li {
  display: grid; grid-template-columns: 34px 1fr; gap: 14px; align-items: start;
}
.places__n {
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--go-soft); color: var(--go);
  font-weight: 700; font-size: 15px;
  display: flex; align-items: center; justify-content: center;
  transition: background .5s ease, color .5s ease;
}
/* пункт - кнопка (клавиатура и скринридер), но выглядит обычным текстом */
.places__btn {
  width: 100%; text-align: left; background: none; border: 0; padding: 0;
  font: inherit; color: inherit; cursor: pointer; display: block;
}
.places b { display: block; font-size: 17px; margin-bottom: 3px; transition: color .5s ease; }
.places span { font-size: 15.5px; color: var(--ink-2); line-height: 1.5; transition: color .5s ease; }
.places li:not(.is-on) b { color: var(--ink-2); }
.places li:not(.is-on) span { color: var(--ink-3); }
.places li.is-on .places__n { background: var(--go); color: #fff; }
.places li.is-on b { color: var(--ink); }
.places li.is-on span { color: var(--ink-2); }

.shot {
  grid-area: 1 / 1; opacity: 0; visibility: hidden;
  transition: opacity .5s ease, visibility 0s linear .5s;
}
.shot.is-on {
  opacity: 1; visibility: visible;
  transition: opacity .5s ease, visibility 0s;
}

.hero__sum {
  font-size: 17.5px; line-height: 1.5;
  padding-left: 16px; border-left: 3px solid var(--go-line);
}
.act { margin-top: 24px; display: flex; flex-wrap: wrap; align-items: center; gap: 14px 26px; }
.act__second {
  order: 2; font-size: 16px; color: var(--go); font-weight: 600;
  text-decoration: none; border-bottom: 1px solid var(--go-line);
}
.act__second:hover { border-bottom-color: var(--go); }
.act__note { order: 3; flex-basis: 100%; font-size: 14px; color: var(--ink-3); }
.calm {
  margin-top: 24px; padding-top: 18px; border-top: 1px solid var(--line);
  font-size: 15px; color: var(--ink-2);
  display: flex; flex-wrap: wrap; gap: 8px 14px;
}
.calm span { display: inline-flex; align-items: center; gap: 7px; }
.calm span::before {
  content: "✓"; width: 19px; height: 19px; border-radius: 50%;
  background: var(--paid-soft); color: var(--paid);
  font-size: 12px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}

/* ---------- группы «что ещё внутри» и табы ниш ---------- */
.grp { margin-top: 30px; display: flex; flex-wrap: wrap; gap: 10px; }
.grp__btn {
  font-family: var(--font); font-size: 15.5px; font-weight: 600;
  color: var(--ink-2); background: var(--paper);
  border: 1px solid var(--line); border-radius: 999px;
  padding: 10px 20px; cursor: pointer;
  transition: background .15s, color .15s, border-color .15s;
}
.grp__btn:hover { border-color: var(--go-line); }
.grp__btn.is-on { background: var(--go); border-color: var(--go); color: #fff; }
.grp__pane { display: none; margin-top: 26px; }
.grp__pane.is-on { display: block; }

.gcards { display: grid; gap: 16px; grid-template-columns: repeat(3, 1fr); }
.gcards article {
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--r); padding: 18px 20px;
}
.gcards h3 {
  font-family: var(--font); font-size: 16px; font-weight: 600;
  margin-bottom: 6px; display: flex; align-items: center;
  flex-wrap: wrap; gap: 8px; line-height: 1.3;
}
.gcards p { font-size: 14.5px; color: var(--ink-2); line-height: 1.5; }
.more__tag {
  font-style: normal; font-size: 12px; font-weight: 600;
  color: var(--go); background: var(--go-soft);
  padding: 3px 9px; border-radius: 999px;
}

/* ---------- полный перечень с фильтром по тарифу ---------- */
.full { margin-top: 40px; border-top: 1px solid var(--line); padding-top: 26px; }
.full__hd {
  display: flex; flex-wrap: wrap; align-items: center;
  justify-content: space-between; gap: 12px;
}
.full__hd h3 { font-family: var(--font); font-size: 18px; font-weight: 600; }
.full__f { display: flex; gap: 7px; }
.full__f button {
  font-family: var(--font); font-size: 13px; font-weight: 600;
  color: var(--ink-2); background: transparent;
  border: 1px solid var(--line); border-radius: 999px;
  padding: 5px 13px; cursor: pointer;
}
.full__f button.is-on { background: var(--go); border-color: var(--go); color: #fff; }
.full__hint { margin-top: 12px; font-size: 14px; color: var(--ink-2); }
.full__list {
  margin-top: 18px; list-style: none;
  columns: 3; column-gap: 30px; font-size: 14.5px;
}
.full__list li {
  break-inside: avoid; padding: 4px 0 4px 18px; position: relative;
  color: var(--ink-2); transition: opacity .15s;
}
.full__list li::before {
  content: "·"; position: absolute; left: 4px; color: var(--go); font-weight: 700;
}
.full__list li.is-dim { opacity: .32; }

/* ---------- цена: ниша слева, чек справа ---------- */
.price__top {
  display: grid; grid-template-columns: 1.1fr .9fr;
  gap: 40px; align-items: center; margin: 8px 0 26px;
}
.price__check .rcpt { max-width: 420px; margin: 0 auto; }
.price__check .disc { margin-top: 14px; }

@media (max-width: 1020px) {
  .hero__in--tabs { grid-template-areas: "top" "show" "bottom"; row-gap: 24px; }
  .price__top { grid-template-columns: 1fr; gap: 26px; }
}
@media (max-width: 980px) {
  .gcards { grid-template-columns: repeat(2, 1fr); }
  .full__list { columns: 2; }
}
@media (max-width: 680px) {
  /* кнопка шапки: не давала отступов и липла к логотипу (превью 27-29.08) */
  .hd__in { height: 54px; gap: 12px; }
  body { padding-top: 54px; }
  html { scroll-padding-top: 66px; }
  body { padding-top: 54px; }
  html { scroll-padding-top: 66px; }
  .hd .btn--sm {
    font-size: 13px; padding: 8px 14px; white-space: nowrap;
    line-height: 1.2; margin-left: auto;
  }
  .places b { font-size: 16.5px; }
  .act .btn { width: 100%; }
  .act__second { margin-top: 2px; }
  .gcards { grid-template-columns: 1fr; }
  .full__list { columns: 1; }
  .grp__btn { font-size: 14px; padding: 9px 15px; }
}

/* ---------- автоплей слайдера мест: дорожка и стекающая капля ---------- */
.places li { position: relative; }
.places li:not(:last-child)::before {
  content: ""; position: absolute; left: 16px; top: 40px; bottom: -12px;
  width: 2px; border-radius: 2px; background: var(--line-2);
}
/* след капли: растёт от активного номера к следующему ровно за такт автоплея */
.places--auto li.is-on:not(:last-child)::after {
  content: ""; position: absolute; left: 15px; top: 40px;
  width: 4px; height: 0; border-radius: 4px;
  background: linear-gradient(180deg, rgba(30, 107, 69, .12), var(--go) 82%);
  animation: vdDrip var(--vd-auto, 6000ms) linear forwards;
}
/* на последнем пункте капать некуда - номер мягко пульсирует до перезапуска */
.places--auto li.is-on:last-child .places__n {
  animation: vdPulse 1.6s ease-in-out infinite;
}
.places--auto.is-paused li.is-on::after,
.places--auto.is-paused li.is-on:last-child .places__n {
  animation-play-state: paused;
}
@keyframes vdDrip { from { height: 0; } to { height: calc(100% - 28px); } }
@keyframes vdPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(30, 107, 69, 0); }
  50% { box-shadow: 0 0 0 7px rgba(30, 107, 69, .16); }
}
