/* ============================================================================
 * Чисто.Дом — сайт-витрина (FEAT-869, ADR-078 §6)
 * Статическая реализация hifi-макетов docs/design/ai-chat-demo-site/.
 * 0 build-шагов · 0 внешних зависимостей · self-host Golos Text.
 * Токены и типографика — точно по handoff README/макетам.
 * ==========================================================================*/

/* ── Self-hosted Golos Text (variable, subset) — 0 external CDN (§3 spec) ─────
 * Golos Text распространяется Google Fonts как ВАРИАТИВНЫЙ шрифт: один woff2 на
 * unicode-subset покрывает всю ось веса. Веса макетов 400/500/600/700/800 берутся
 * из вариационной оси. `src:` указывает ТОЛЬКО на собственные ассеты — никогда на
 * gstatic/googleapis. font-display: swap → 0 FOIT, system-fallback до загрузки.
 * Лицензия: SIL OFL 1.1 — assets/fonts/OFL.txt. Файлы согласованы с 868 (тот же
 * self-host Golos Text) и заимствованы из subset-раздела соседа ai-sales-demo.
 */
@font-face {
  font-family: "Golos Text";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("fonts/golos-text-cyrillic-ext.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: "Golos Text";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("fonts/golos-text-cyrillic.woff2") format("woff2");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
@font-face {
  font-family: "Golos Text";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("fonts/golos-text-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7,
    U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF,
    U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "Golos Text";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("fonts/golos-text-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193,
    U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ── Токены (handoff Design Tokens) ─────────────────────────────────────────*/
:root {
  --accent: #2563eb;
  --accent-hover: #1d4ed8;
  --accent-tint: #eff4ff;
  --text: #16181d;
  --text-2nd: #5f6774; /* AA на белом */
  --text-faint: #9aa3b0; /* только подписи ≥13px */
  --bg: #ffffff;
  --bg-soft: #fafbfc;
  --bg-muted: #f2f4f6;
  --border: #e7eaee;
  --border-soft: #eef0f3;
  --ok: #22a06b;

  --r-btn: 12px;
  --r-card: 14px;
  --r-pill: 999px;

  --shadow-card: 0 12px 32px rgba(15, 23, 42, 0.1);
  --shadow-card-max: 0 12px 32px rgba(15, 23, 42, 0.14);
  --shadow-primary: 0 8px 20px rgba(37, 99, 235, 0.25);

  --content: 1200px;
  --pad-x: 48px;
  --mono: ui-monospace, Menlo, monospace;

  --transition: 150ms ease;
}

/* ── База ───────────────────────────────────────────────────────────────────*/
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  -webkit-text-size-adjust: 100%;
}
body {
  margin: 0;
  font-family: "Golos Text", system-ui, -apple-system, "Segoe UI", Roboto,
    sans-serif;
  color: var(--text);
  background: var(--bg);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: var(--accent);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover {
  color: var(--accent-hover);
  text-decoration: underline;
}
h1,
h2,
h3,
h4,
p {
  margin: 0;
}
.container {
  max-width: var(--content);
  margin: 0 auto;
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
}

/* Служебные */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: absolute;
  left: 8px;
  top: -48px;
  z-index: 100;
  background: var(--accent);
  color: #fff;
  padding: 10px 18px;
  border-radius: var(--r-btn);
  transition: top var(--transition);
}
.skip-link:focus {
  top: 8px;
  text-decoration: none;
}

/* ── Фокус-видимость (a11y — SG) ────────────────────────────────────────────*/
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}
.field:focus-visible,
input:focus-visible {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}

/* ── Типографика ────────────────────────────────────────────────────────────*/
.h1 {
  font-size: 52px;
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.02em;
  text-wrap: balance;
}
.h1--page {
  font-size: 44px;
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.h2 {
  font-size: 38px;
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.h2--inner {
  font-size: 30px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.h3 {
  font-size: 24px;
  line-height: 1.25;
  font-weight: 700;
}
.lead {
  font-size: 18px;
  line-height: 1.55;
  color: var(--text-2nd);
}
.overline {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-faint);
}
.footnote {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--text-faint);
}

/* ── Кнопки / капсулы ───────────────────────────────────────────────────────*/
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: inherit;
  font-size: 16px;
  font-weight: 600;
  padding: 15px 26px;
  border-radius: var(--r-btn);
  border: 1px solid transparent;
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition),
    color var(--transition);
  text-decoration: none;
}
.btn:hover {
  text-decoration: none;
}
.btn--primary {
  background: var(--accent);
  color: #fff;
  box-shadow: var(--shadow-primary);
}
.btn--primary:hover {
  background: var(--accent-hover);
  color: #fff;
}
.btn--secondary {
  background: #fff;
  border-color: var(--border);
  color: var(--text);
}
.btn--secondary:hover {
  border-color: #d5dae1;
  color: var(--text);
}
.btn--block {
  width: 100%;
}
.btn--sm {
  font-size: 14px;
  padding: 10px 18px;
}
.link-arrow {
  color: var(--accent);
  font-size: 16px;
  font-weight: 600;
}
.chip {
  display: inline-flex;
  align-items: center;
  font-size: 13px;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: var(--r-pill);
  background: #fff;
  border: 1px solid var(--border);
  color: var(--text);
}
.chip--accent {
  background: var(--accent-tint);
  color: var(--accent);
  font-weight: 600;
  border-color: transparent;
}
.chip--muted {
  background: var(--bg-muted);
  color: var(--text-2nd);
  border-color: transparent;
}

/* ── Шапка ──────────────────────────────────────────────────────────────────*/
.site-header {
  border-bottom: 1px solid var(--border-soft);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  padding-bottom: 18px;
}
.logo {
  display: inline-flex;
  align-items: baseline;
  gap: 2px;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--text);
}
.logo:hover {
  text-decoration: none;
  color: var(--text);
}
.logo__dot {
  color: var(--accent);
}
.main-nav {
  display: flex;
  gap: 28px;
  font-size: 15px;
  font-weight: 500;
}
.main-nav a {
  color: var(--text);
}
.main-nav a[aria-current="page"] {
  color: var(--accent);
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}
.header-phone {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
}
.header-phone:hover {
  color: var(--text);
  text-decoration: none;
}

/* Бургер (CSS-only, checkbox-хак) */
.nav-toggle {
  display: none;
}
.burger {
  display: none;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
  padding: 6px;
}
.burger span {
  width: 20px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
}
.burger span:last-child {
  width: 14px;
}

/* ── Секции ─────────────────────────────────────────────────────────────────*/
.section {
  padding-top: 64px;
  padding-bottom: 64px;
}
.section--soft {
  background: var(--bg-soft);
  border-top: 1px solid var(--border-soft);
}
.section--soft-bounded {
  background: var(--bg-soft);
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
}
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: 28px;
}

/* Анимация появления секций (reduced-motion отключает) */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  animation: reveal-in 400ms ease forwards;
}
@keyframes reveal-in {
  to {
    opacity: 1;
    transform: none;
  }
}

/* ── Герой ──────────────────────────────────────────────────────────────────*/
.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  padding-top: 64px;
  padding-bottom: 56px;
}
.hero__body {
  display: flex;
  flex-direction: column;
  gap: 24px;
  justify-content: center;
}
.availability {
  display: inline-flex;
  align-self: flex-start;
  align-items: center;
  gap: 8px;
  background: var(--bg-muted);
  border-radius: var(--r-pill);
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-2nd);
}
.dot-ok {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ok);
  display: inline-block;
}
.hero__lead {
  max-width: 44ch;
}
.hero__cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.trust {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 14px;
  color: var(--text-2nd);
  border-top: 1px solid var(--border-soft);
  padding-top: 20px;
  margin-top: 8px;
}
.trust b {
  color: var(--text);
  font-weight: 700;
}
.media {
  border-radius: var(--r-card);
  background: repeating-linear-gradient(
    45deg,
    #f2f4f6 0 14px,
    #e9edf1 14px 28px
  );
  display: flex;
  align-items: flex-end;
  padding: 16px;
  min-height: 420px;
}
.media__note {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--text-faint);
  background: #fff;
  border-radius: 8px;
  padding: 6px 10px;
}

/* ── Гриды карточек ─────────────────────────────────────────────────────────*/
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.grid-5 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.feature {
  background: var(--bg-soft);
  border: 1px solid var(--border-soft);
  border-radius: var(--r-card);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.feature__num {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--accent-tint);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-weight: 800;
  font-size: 16px;
}
.feature__title {
  font-size: 17px;
  font-weight: 700;
}
.feature__text {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--text-2nd);
}

.mini-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-card);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.mini-card__title {
  font-size: 16px;
  font-weight: 700;
}
.mini-card__desc {
  font-size: 13.5px;
  color: var(--text-2nd);
  line-height: 1.5;
}
.mini-card__price {
  margin-top: auto;
  font-size: 14px;
  font-weight: 700;
  color: var(--accent);
}

.step {
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-top: 2px solid var(--border);
  padding-top: 16px;
}
.step--first {
  border-top-color: var(--accent);
}
.step__num {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--text-faint);
}
.step--first .step__num {
  color: var(--accent);
}
.step__title {
  font-size: 17px;
  font-weight: 700;
}
.step__text {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--text-2nd);
}

.review {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-card);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.review__stars {
  color: var(--accent);
  font-size: 14px;
  letter-spacing: 2px;
}
.review__text {
  font-size: 15px;
  line-height: 1.65;
  color: var(--text);
}
.review__author {
  font-size: 13.5px;
  color: var(--text-faint);
  margin-top: auto;
}

/* ── Финальный CTA ──────────────────────────────────────────────────────────*/
.cta-band {
  padding-top: 72px;
  padding-bottom: 72px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}
.cta-band__title {
  max-width: 24ch;
  text-wrap: balance;
}
.cta-band__text {
  font-size: 17px;
  color: var(--text-2nd);
  max-width: 48ch;
  line-height: 1.55;
}

/* ── Услуги ─────────────────────────────────────────────────────────────────*/
.services-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.service {
  border: 1px solid var(--border);
  border-radius: var(--r-card);
  padding: 32px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
}
.service__head {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.service__titleline {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.service__desc {
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--text-2nd);
}
.service__note {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--text-faint);
}
.service__cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  font-size: 14.5px;
  line-height: 1.55;
}
.col-label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.col-label--in {
  color: var(--ok);
}
.col-label--out {
  color: var(--text-faint);
}
.col-list {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.col-list--in {
  color: var(--text);
}
.col-list--out {
  color: var(--text-2nd);
}

/* ── Цены ───────────────────────────────────────────────────────────────────*/
.plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  align-items: stretch;
}
.plan {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-card);
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.plan--featured {
  border: 2px solid var(--accent);
  box-shadow: var(--shadow-card);
  position: relative;
}
.plan__badge {
  position: absolute;
  top: -12px;
  left: 26px;
  background: var(--accent);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: var(--r-pill);
}
.plan__name {
  font-size: 17px;
  font-weight: 700;
}
.plan__price {
  font-size: 30px;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.plan__meta {
  font-size: 14px;
  color: var(--text-faint);
}
.plan__list {
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--text-2nd);
}
.plan .btn {
  margin-top: auto;
  padding: 12px;
  font-size: 15px;
  width: 100%;
}

.narrow {
  max-width: 760px;
}
.terms {
  display: flex;
  flex-direction: column;
  font-size: 15.5px;
  line-height: 1.5;
}
.terms__row {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 0;
  border-top: 1px solid var(--border-soft);
}
.terms__row:last-child {
  border-bottom: 1px solid var(--border-soft);
}
.terms__val {
  font-weight: 600;
  white-space: nowrap;
}
.terms__val--ok {
  color: var(--ok);
}

.faq {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.faq__q {
  font-size: 16.5px;
  font-weight: 700;
  margin-bottom: 6px;
}
.faq__a {
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-2nd);
}

/* ── Контакты ───────────────────────────────────────────────────────────────*/
.contacts-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 56px;
}
.contacts-col {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.contact-rows {
  display: flex;
  flex-direction: column;
  font-size: 16px;
  line-height: 1.5;
}
.contact-row {
  display: flex;
  gap: 20px;
  padding: 16px 0;
  border-top: 1px solid var(--border-soft);
}
.contact-row:last-child {
  border-bottom: 1px solid var(--border-soft);
}
.contact-row__label {
  width: 110px;
  flex: none;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-faint);
  padding-top: 3px;
}
.contact-row__value {
  font-weight: 600;
}
.contact-row__value span {
  font-weight: 400;
  font-size: 14px;
  color: var(--text-2nd);
}
.callback {
  background: var(--bg-soft);
  border: 1px solid var(--border-soft);
  border-radius: var(--r-card);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 420px;
}
.callback__title {
  font-size: 17px;
  font-weight: 700;
}
.callback__hint {
  font-size: 13.5px;
  color: var(--text-2nd);
  line-height: 1.5;
}
.field {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-btn);
  padding: 14px 16px;
  font-size: 16px;
  font-family: inherit;
  color: var(--text);
  width: 100%;
}
.field::placeholder {
  color: var(--text-faint);
}
.map-placeholder {
  border-radius: var(--r-card);
  background: repeating-linear-gradient(
    45deg,
    #f2f4f6 0 14px,
    #e9edf1 14px 28px
  );
  display: flex;
  align-items: flex-end;
  padding: 16px;
  min-height: 620px;
}

/* ── Подвал ─────────────────────────────────────────────────────────────────*/
.site-footer {
  background: var(--bg-soft);
  border-top: 1px solid var(--border-soft);
  padding-top: 40px;
  padding-bottom: 40px;
}
.site-footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-brand__logo {
  display: inline-flex;
  align-items: baseline;
  gap: 2px;
  font-size: 18px;
  font-weight: 800;
}
.footer-legal {
  font-size: 13.5px;
  color: var(--text-faint);
  line-height: 1.6;
}
.footer-cols {
  display: flex;
  gap: 56px;
  font-size: 14.5px;
  line-height: 2;
  color: var(--text-2nd);
  padding-right: 96px;
}
.footer-col {
  display: flex;
  flex-direction: column;
}
.footer-col__title {
  color: var(--text);
  font-weight: 600;
}
.footer-col a {
  color: var(--text-2nd);
}
.footer-note {
  font-size: 12.5px;
  color: var(--text-faint);
  max-width: 26ch;
  line-height: 1.6;
  text-align: right;
}
/* Цены: у колонок подвала воздух под зону виджета (макет) */
.site-footer--prices .footer-cols {
  padding-right: 400px;
}

/* ── Зона виджета: свободна. Виджет монтирует loader-сниппет, НЕ этот сайт.
 * Здесь НЕ должно быть плавающих CTA / «наверх» / cookie-баннеров. Десктоп-отступ
 * 20px, мобайл 16px — резерв под лончер 56px (см. spec «Зона виджета»). ─────*/

/* ── Адаптив ────────────────────────────────────────────────────────────────*/
@media (max-width: 1024px) {
  :root {
    --pad-x: 32px;
  }
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid-5 {
    grid-template-columns: repeat(2, 1fr);
  }
  .service {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .footer-cols {
    padding-right: 0;
  }
  .site-footer--prices .footer-cols {
    padding-right: 0;
  }
}

@media (max-width: 768px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 24px;
    padding-top: 40px;
  }
  .contacts-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .grid-3 {
    grid-template-columns: 1fr;
  }
  .plans {
    grid-template-columns: 1fr;
  }
  .section-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .map-placeholder {
    min-height: 320px;
  }
}

@media (max-width: 620px) {
  :root {
    --pad-x: 20px;
  }
  .section {
    padding-top: 32px;
    padding-bottom: 32px;
  }
  .h1 {
    font-size: 32px;
    line-height: 1.12;
  }
  .h1--page {
    font-size: 32px;
  }
  .h2 {
    font-size: 24px;
  }
  .h2--inner {
    font-size: 24px;
  }
  .lead {
    font-size: 15px;
  }
  .grid-4 {
    gap: 10px;
  }
  .feature {
    padding: 16px;
  }
  /* Мобайл: навигация → бургер */
  .main-nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    flex-direction: column;
    gap: 0;
    background: #fff;
    border-bottom: 1px solid var(--border-soft);
    padding: 8px 20px 16px;
    z-index: 40;
  }
  .main-nav a {
    padding: 12px 0;
    border-top: 1px solid var(--border-soft);
  }
  .nav-toggle:checked ~ .main-nav {
    display: flex;
  }
  .burger {
    display: flex;
  }
  .site-header__inner {
    position: relative;
    flex-wrap: wrap;
  }
  .header-actions {
    gap: 14px;
  }
  .header-phone--full {
    display: none;
  }
  .hero__cta {
    flex-direction: column;
  }
  .hero__cta .btn {
    width: 100%;
  }
  .media {
    min-height: 180px;
  }
  .service {
    padding: 20px;
  }
  .service__cols {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/* Резерв зоны лончера на мобайле (16px) — нижний воздух страницы */
@media (max-width: 620px) {
  .cta-band {
    padding-bottom: 96px;
  }
}

/* ── prefers-reduced-motion: отключить появление секций и transition ────────*/
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    animation: none;
  }
  *,
  *::before,
  *::after {
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
  }
}
