/* Китовоз — базовые стили сайта. Токены — см. tokens.css (обязательно подключить раньше). */

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--page);
  color: var(--text);
  font-family: var(--font-text);
  -webkit-font-smoothing: antialiased;
  font-variant-numeric: tabular-nums;
  transition: background-color .15s ease, color .15s ease;
}
img { max-width: 100%; display: block; }
a { color: var(--link); text-decoration: none; }
a:hover { color: var(--accent); text-decoration: underline; }
a:focus-visible, button:focus-visible, input:focus-visible, [tabindex]:focus-visible {
  outline: none; box-shadow: var(--focus-ring); border-radius: var(--radius-s);
}

.container { max-width: var(--container); margin: 0 auto; padding: 0 clamp(16px, 3vw, 24px); }

/* ---------- Шапка ---------- */
.site-header { background: var(--surface); border-bottom: 1px solid var(--line); position: sticky; top: 0; z-index: 20; }
/*
 * Шапка реально расползалась на две строки на обычных десктопных ширинах
 * (не только на узких/промежуточных) — причиной был `gap` между КАЖДЫМ
 * прямым потомком контейнера, растущий до 32px на любом сколько-нибудь
 * широком экране (clamp(...,2.5vw,32px)), плюс телефон-заглушка и текстовая
 * подпись переключателя темы, съедавшие ширину без реальной необходимости.
 * Сжато до фиксированных, небольших значений — шапка держится в одну
 * строку начиная ровно с брейкпоинта бургера (900px), а не только на очень
 * широких мониторах.
 */
.site-header .container { height: clamp(60px, 8vw, 72px); display: flex; align-items: center; gap: 14px; }
.site-logo { height: 32px; display: block; flex-shrink: 0; }
.site-nav { display: flex; gap: 16px; font-size: 14.5px; font-weight: 500; margin-right: auto; flex-wrap: nowrap; white-space: nowrap; }
.site-nav a { color: var(--text); }
.site-nav a:hover { text-decoration: none; color: var(--accent); }
.site-nav a[aria-current="page"] { color: var(--accent); font-weight: 600; }
.spacer { flex: 1; }

/* Только иконка (без текстовой подписи) — сама подпись остаётся в title/aria-label для доступности */
.theme-toggle {
  height: 36px; width: 36px; flex-shrink: 0; border-radius: var(--radius-pill); border: 1px solid var(--line2);
  display: flex; align-items: center; justify-content: center; cursor: pointer;
  color: var(--text); user-select: none; background: transparent; font-family: inherit;
}
.theme-toggle:hover { background: var(--tint); }
.theme-toggle .icon { font-size: 16px; }
.theme-toggle .label-wide { display: none; }

.burger {
  width: 44px; height: 44px; flex-shrink: 0; border-radius: var(--radius-m); border: 1px solid var(--line2);
  display: flex; align-items: center; justify-content: center; cursor: pointer; font-size: 20px;
  color: var(--text); user-select: none; background: transparent;
}
.nav-wide, .header-cta-wide, .site-nav-link-wide { display: none; }
@media (min-width: 900px) {
  .nav-wide { display: flex; }
  .header-cta-wide { display: flex; align-items: center; }
  .site-nav-link-wide { display: inline; white-space: nowrap; flex-shrink: 0; }
  .site-nav-link-wide:hover { text-decoration: none; color: var(--accent); }
  .burger, .spacer { display: none; }
}

/*
 * TASK_motion_and_theme.md, часть 3 — вместо жёсткого display:none/flex
 * теперь opacity+visibility, переход 90мс ease-out (выбор «Fade», темп
 * ×0.75). Чтобы это не расталкивало страницу (меню — реальный контент с
 * высотой, не decoration), сам блок выведен из потока в абсолютное
 * позиционирование под шапкой (та уже `position: sticky` — валидный
 * containing block) — раньше, скрытый через display:none, он просто не
 * занимал места; теперь при opacity:0 он остаётся в DOM, но не толкает
 * контент под собой и не ловит клики (pointer-events).
 */
.mobile-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  border-top: 1px solid var(--line);
  padding: 4px 16px 20px;
  background: var(--surface);
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transition: opacity 90ms ease-out, visibility 90ms ease-out;
}
.mobile-menu.open { opacity: 1; visibility: visible; pointer-events: auto; }
.mobile-menu a { color: var(--text); display: block; padding: 14px 0; border-bottom: 1px solid var(--line); font-size: 17px; font-weight: 600; }
.mobile-menu a.current { color: var(--accent); }
.mobile-menu .btn-primary { margin-top: 8px; text-align: center; }
@media (min-width: 900px) { .mobile-menu { display: none !important; } }

/* ---------- Кнопки ---------- */
.btn-primary, .btn-secondary {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border-radius: var(--radius-pill); font-weight: 600; font-size: 15px; padding: 14px 24px;
  text-decoration: none; cursor: pointer; border: none; font-family: inherit;
}
.btn-primary { background: var(--cta); color: var(--on-cta); }
.btn-primary:hover { background: var(--cta-h); color: var(--on-cta); text-decoration: none; }
.btn-secondary { border: 1.5px solid var(--accent-line); color: var(--accent); background: transparent; padding: 12.5px 24px; }
.btn-secondary:hover { background: var(--tint); text-decoration: none; }
.btn-block { width: 100%; }

/* ---------- Плашка-предупреждение (не переносить в финальный продакшен, см. README) ---------- */
.placeholder-banner { background: var(--w-bg); color: var(--w-fg); font-size: 13px; text-align: center; padding: 8px 16px; }

/* ---------- Секции ---------- */
.section { padding: 64px 0; }
.section + .section { border-top: 1px solid var(--line); }
.section h2 { font-size: clamp(22px, 2.4vw, 28px); line-height: 1.3; font-weight: 700; margin: 0 0 24px; }
.section-head { display: flex; justify-content: space-between; align-items: baseline; gap: 16px; flex-wrap: wrap; margin-bottom: 24px; }
.section-head h2 { margin: 0; }
.section-note { font-size: 13px; color: var(--muted); }
.eyebrow { font-size: 12px; font-weight: 600; color: var(--muted); letter-spacing: .04em; }

/* ---------- Hero (главная) ---------- */
.hero-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 420px), 1fr)); gap: 48px; align-items: center; }
.hero h1, .article-hero h1 {
  font-family: var(--font-display); font-size: clamp(28px, 4vw, 40px); line-height: 1.2; font-weight: 700;
  color: var(--accent); margin: 16px 0 0; text-wrap: balance;
}
.hero p.lead { font-size: 17px; line-height: 28px; color: var(--text2); margin: 20px 0 0; max-width: 520px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 32px; }

.stat-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius-l); overflow: hidden; }
.stat-cell { background: var(--surface); padding: clamp(16px, 3vw, 28px); }
.stat-num { font-family: var(--font-display); font-size: clamp(28px, 5vw, 56px); line-height: 1; font-weight: 700; color: var(--accent); }
.stat-num.small { font-size: clamp(19px, 3.4vw, 40px); line-height: 1.1; }
.stat-label { font-size: 14px; color: var(--text2); margin-top: 10px; }

/* ---------- Таблицы ---------- */
.table-wrap { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-m); overflow-x: auto; }
.t-price, .t-compare, .t-spec { min-width: 640px; }
.t-row { display: grid; align-items: center; }
.t-price .t-head { background: var(--tint); font-size: 13px; font-weight: 600; color: var(--text2); }
.t-price .t-head > div, .t-price .t-row > div { padding: 14px 20px; }
.t-price .t-row { border-top: 1px solid var(--line); min-height: 64px; }
.t-price .col-method { display: flex; gap: 12px; align-items: center; font-weight: 600; color: var(--text); }
.t-price .col-method svg { width: 22px; height: 22px; color: var(--accent); flex-shrink: 0; }
.t-price .col-price { font-family: var(--font-display); font-weight: 600; font-size: 18px; color: var(--accent); }
.t-price .col-for { font-size: 14px; color: var(--text2); }

.t-compare .t-head > div { padding: 14px 20px; font-size: 14px; font-weight: 600; }
.t-compare .t-head .col-a { background: var(--tint); color: var(--accent); }
.t-compare .t-head .col-b { background: var(--panel); color: #fff; }
.t-compare .t-row { border-top: 1px solid var(--line); font-size: 15px; }
.t-compare .t-row > div { padding: 14px 20px; }
.t-compare .col-k { color: var(--muted); }

.t-spec .t-row { border-top: 1px solid var(--line); padding: 12px 0; }
.t-spec .t-row:first-child { border-top: none; }
.t-spec .col-k { color: var(--muted); }

.chip { display: inline-flex; align-items: center; padding: 3px 10px; border-radius: var(--radius-pill); font-size: 12px; font-weight: 600; }
.chip-s { background: var(--s-bg); color: var(--s-fg); }
.chip-r { background: var(--r-bg); color: var(--r-fg); }
.chip-w { background: var(--w-bg); color: var(--w-fg); }

.min-w-6 { min-width: 760px; }
.sticky-col { position: sticky; left: 0; background: inherit; }

/* ---------- Карточки ---------- */
.grid-auto { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 16px; }
.grid-auto-300 { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr)); gap: 16px; }
.card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-m); padding: 24px; display: flex; flex-direction: column; gap: 12px; }
.card-tint { background: var(--secondary); border-radius: var(--radius-m); padding: 28px; display: flex; flex-direction: column; gap: 12px; }
.step-num { font-family: var(--font-display); font-weight: 700; font-size: 28px; color: var(--accent); }
.step-head { display: flex; justify-content: space-between; align-items: center; }
.step-title { font-weight: 600; font-size: 17px; }
.step-text, .card-text { font-size: 14px; line-height: 1.5; color: var(--text2); }

.case-tag { font-size: 12px; font-weight: 600; color: var(--muted); letter-spacing: .04em; }
.case-num { font-family: var(--font-display); font-size: clamp(32px, 3.6vw, 44px); line-height: 1; font-weight: 700; color: var(--accent); }
.case-what { font-size: 15px; font-weight: 600; }
.case-spec { border-top: 1px solid var(--line); padding-top: 14px; display: grid; grid-template-columns: 40% 1fr; row-gap: 8px; font-size: 14px; }
.case-spec span:nth-child(odd) { color: var(--muted); }

.icon-circle { width: 48px; height: 48px; border-radius: 50%; background: var(--surface); color: var(--accent); display: flex; align-items: center; justify-content: center; }
.audience-cta { font-size: 14px; font-weight: 600; color: var(--accent); margin-top: auto; }

/* ---------- Безопасность (B7) ---------- */
.safety-panel { background: var(--panel); color: #fff; border-radius: var(--radius-l); padding: clamp(24px, 4vw, 48px); display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr)); gap: 40px; }
.safety-panel h2 { color: #fff; }
.safety-panel p { font-size: 16px; line-height: 1.6; opacity: .85; margin: 12px 0 0; }
.doc-card { margin-top: 24px; background: var(--surface); border-radius: var(--radius-m); padding: 16px; display: flex; gap: 14px; align-items: center; color: var(--text); }
.doc-thumb { width: 56px; height: 72px; border-radius: 6px; background: repeating-linear-gradient(45deg, var(--tint) 0 5px, var(--surface) 5px 10px); border: 1px solid var(--line); flex-shrink: 0; }
.safety-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1px; background: rgba(255,255,255,.18); border-radius: var(--radius-m); overflow: hidden; }
.safety-item { background: var(--panel); padding: 20px; display: flex; flex-direction: column; gap: 10px; }
.safety-item svg { width: 24px; height: 24px; color: #6EC0EF; }
.safety-item .title { font-weight: 600; }
.safety-item .text { font-size: 14px; line-height: 1.5; opacity: .8; }

/* ---------- FAQ ---------- */
.faq-layout { display: flex; flex-wrap: wrap; gap: 40px; }
.faq-intro { flex: 1 1 260px; }
.faq-intro p { font-size: 15px; color: var(--text2); margin: 12px 0 0; line-height: 1.5; }
.faq-list { flex: 2 1 480px; min-width: 0; display: flex; flex-direction: column; gap: 8px; }
.faq-item { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-m); }
.faq-q { display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 18px 20px; cursor: pointer; font-weight: 600; font-size: 16px; min-height: 24px; background: none; border: none; width: 100%; text-align: left; font-family: inherit; color: var(--text); }
.faq-sign { font-size: 22px; color: var(--accent); line-height: 1; flex-shrink: 0; }
.faq-a { padding: 0 20px 20px; font-size: 15px; line-height: 1.6; color: var(--text2); display: none; }
.faq-item.open .faq-a { display: block; }

/* ---------- Футер ---------- */
.site-footer { background: var(--footer); color: #fff; margin-top: 32px; }
.site-footer .container { padding: 56px clamp(16px, 3vw, 24px) 32px; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr)); gap: 32px; }
.footer-brand { display: flex; flex-direction: column; gap: 16px; }
.footer-brand img { width: 180px; }
.footer-brand-text { font-size: 14px; line-height: 1.6; opacity: .75; }
.manager-card { display: flex; gap: 14px; align-items: flex-start; }
.manager-photo { width: 56px; height: 56px; border-radius: 50%; background: repeating-linear-gradient(45deg, #2E2B5C 0 5px, #3A3770 5px 10px); flex-shrink: 0; }
.manager-info { font-size: 14px; line-height: 1.6; }
.manager-info div:first-child { opacity: .75; }
.manager-info a { color: #6EC0EF; }
.footer-col { font-size: 14px; line-height: 1.9; }
.footer-col-title { opacity: .6; font-size: 12px; letter-spacing: .04em; }
.footer-col a { color: #fff; display: block; }
.footer-legal { font-size: 13px; line-height: 1.7; opacity: .75; }
.footer-legal-title { opacity: .8; font-size: 12px; letter-spacing: .04em; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.15); margin-top: 40px; padding-top: 20px; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 12px; opacity: .6; }

/* ---------- Статья ---------- */
.article-main { max-width: var(--container); margin: 0 auto; padding: 0 clamp(16px, 3vw, 24px) 96px; }
.article-hero { padding: 40px 0 48px; max-width: 820px; }
.breadcrumbs { font-size: 13px; color: var(--muted); display: flex; gap: 8px; flex-wrap: wrap; }
.article-meta { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 20px; font-size: 13px; }
.meta-chip { background: var(--surface); border: 1px solid var(--line); padding: 4px 12px; border-radius: var(--radius-pill); }
.meta-chip.updated { background: var(--s-bg); color: var(--s-fg); padding: 5px 12px; font-weight: 600; border: none; }

.tldr { margin-top: 28px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-m); padding: 24px 28px; position: relative; overflow: hidden; }
.tldr::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 4px; background: var(--panel); }
.tldr p { font-size: 18px; line-height: 1.55; margin: 10px 0 0; }

.article-layout { display: flex; gap: 48px; align-items: flex-start; flex-wrap: wrap; }
.toc-desktop { flex: 0 0 240px; position: sticky; top: 24px; max-width: 100%; display: none; }
@media (min-width: 900px) { .toc-desktop { display: block; } .toc-mobile { display: none !important; } }
.toc-desktop nav { display: flex; flex-direction: column; border-left: 2px solid var(--line); }
.toc-desktop a { padding: 8px 14px; margin-left: -2px; border-left: 2px solid transparent; font-size: 14px; line-height: 1.4; color: var(--text2); }
.toc-desktop a:hover { text-decoration: none; }
.toc-desktop a.active { border-left-color: var(--accent); background: var(--tint); color: var(--accent); font-weight: 600; }
.toc-cta { margin-top: 24px; background: var(--panel); color: #fff; border-radius: var(--radius-m); padding: 20px; }
.toc-cta-title { font-weight: 600; font-size: 15px; }
.toc-cta-sub { font-size: 13px; opacity: .8; margin-top: 6px; line-height: 1.5; }
.toc-cta a { display: block; margin-top: 14px; background: var(--surface); color: var(--accent); text-align: center; padding: 10px; border-radius: var(--radius-pill); font-weight: 600; font-size: 14px; }

.toc-mobile { position: sticky; top: 0; z-index: 10; flex: 1 1 100%; margin: 0 calc(-1 * clamp(16px, 3vw, 24px)); background: var(--page); border-bottom: 1px solid var(--line); }
.toc-mobile-head { display: flex; justify-content: space-between; align-items: center; padding: 14px clamp(16px, 3vw, 24px); font-weight: 600; font-size: 15px; cursor: pointer; user-select: none; color: var(--text); background: none; border: none; width: 100%; font-family: inherit; }
.toc-mobile-list { display: none; flex-direction: column; padding: 0 clamp(16px, 3vw, 24px) 12px; }
.toc-mobile.open .toc-mobile-list { display: flex; }
.toc-mobile-list a { padding: 10px 12px; border-radius: 8px; font-size: 15px; color: var(--text2); }
.toc-mobile-list a.active { background: var(--tint); color: var(--accent); font-weight: 600; }
.toc-mobile-list a:hover { text-decoration: none; }

.article-body { flex: 1 1 560px; min-width: 0; max-width: 820px; }
.article-body section { margin-bottom: 56px; }
.article-body h3 { font-size: 20px; line-height: 28px; font-weight: 600; margin: 28px 0 10px; }
.article-body ul { margin: 0; padding-left: 20px; font-size: 17px; line-height: 28px; color: var(--text); }
.info-box { background: var(--i-bg); border-radius: var(--radius-m); padding: 20px 24px; font-size: 17px; line-height: 1.55; }
.info-box b { color: var(--link); }
.risk-box, .warn-box { border-radius: 8px; padding: 14px 16px; font-size: 15px; line-height: 1.5; display: flex; gap: 10px; }
.risk-box { background: var(--r-bg); }
.warn-box { background: var(--w-bg); }
.risk-box svg, .warn-box svg { width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px; }
.risk-box svg { color: var(--r-fg); }
.warn-box svg { color: var(--w-fg); }

.calc-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-l); display: flex; flex-wrap: wrap; overflow: hidden; }
.calc-fields { flex: 1 1 320px; padding: 28px; display: flex; flex-direction: column; gap: 18px; }
.calc-fields label { display: flex; flex-direction: column; gap: 6px; font-size: 13px; font-weight: 600; color: var(--text2); }
.calc-fields input { font: inherit; font-size: 17px; font-weight: 500; color: var(--text); padding: 12px 14px; border: 1px solid var(--line2); border-radius: var(--radius-m); background: var(--surface); }
.calc-fields input:focus { outline: none; border-color: var(--link); box-shadow: var(--focus-ring); }
.method-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 6px; }
.method-chip { padding: 10px 12px; border-radius: 6px; border: 1.5px solid var(--line); background: var(--surface); color: var(--text); font-size: 14px; font-weight: 600; cursor: pointer; text-align: center; font-family: inherit; }
.method-chip.active { border-color: var(--cta); background: var(--cta); color: var(--on-cta); }
.calc-result { flex: 1 1 280px; background: var(--tint); padding: 28px; display: flex; flex-direction: column; gap: 14px; }
.calc-total { font-family: var(--font-display); font-size: clamp(32px, 4vw, 44px); line-height: 1; font-weight: 700; color: var(--accent); }
.calc-sub { font-size: 14px; color: var(--text2); }
.calc-breakdown { border-top: 1px solid var(--line2); padding-top: 12px; display: flex; flex-direction: column; gap: 8px; font-size: 14px; }
.calc-breakdown-row { display: flex; justify-content: space-between; gap: 12px; }
.calc-breakdown-row span:first-child { color: var(--muted); }
.calc-result .btn-primary { margin-top: auto; text-align: center; }
.calc-hint { font-size: 13px; color: var(--muted); margin: 10px 0 0; }

.spec-box { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-m); padding: 4px 20px; font-size: 15px; }
.spec-box .t-row { display: grid; grid-template-columns: 50% 1fr; padding: 12px 0; border-bottom: 1px solid var(--line); }
.spec-box .t-row:last-child { border-bottom: none; }
.spec-box .col-k { color: var(--muted); }
.spec-total { font-family: var(--font-display); font-weight: 600; color: var(--accent); }

.estimate-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-m); overflow: hidden; }
.estimate-head { padding: 14px 20px; font-weight: 600; }
.estimate-rows { padding: 4px 20px; }
.estimate-row { display: flex; justify-content: space-between; gap: 12px; padding: 11px 0; border-bottom: 1px solid var(--line); font-size: 15px; }
.estimate-row span:first-child { color: var(--muted); }
.estimate-total { display: flex; justify-content: space-between; gap: 12px; padding: 16px 0; align-items: baseline; }
.estimate-total span:last-child { font-family: var(--font-display); font-weight: 700; font-size: 22px; color: var(--accent); }
.estimate-note { padding: 12px 20px; background: var(--zebra); border-top: 1px solid var(--line); font-size: 13px; color: var(--text2); }

.anticase-box { background: var(--r-bg); border-radius: var(--radius-l); padding: 28px; display: flex; flex-direction: column; gap: 14px; }
.anticase-label { display: flex; gap: 10px; align-items: center; color: var(--r-fg); font-weight: 700; font-size: 13px; letter-spacing: .04em; }
.anticase-label svg { width: 18px; height: 18px; }
.anticase-title { font-size: clamp(20px, 2.2vw, 24px); line-height: 1.3; font-weight: 700; }
.anticase-box p { font-size: 16px; line-height: 1.6; margin: 0; color: var(--text); }
.anticase-stats { display: flex; gap: 24px; flex-wrap: wrap; border-top: 1px solid rgba(176,67,42,.25); padding-top: 14px; }
.anticase-stat-num { font-family: var(--font-display); font-weight: 700; font-size: 28px; color: var(--r-fg); }
.anticase-stat-num.neutral { color: var(--text); }
.anticase-stat-label { font-size: 13px; color: var(--text2); }
.anticase-conclusion { font-size: 14px; font-weight: 600; }

.related-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr)); gap: 12px; }
.related-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-m); padding: 18px 20px; display: flex; flex-direction: column; gap: 8px; color: var(--text); }
.related-card:hover { border-color: var(--accent-line); text-decoration: none; }
.related-cat { font-size: 12px; font-weight: 600; color: var(--muted); }
.related-title { font-weight: 600; font-size: 16px; line-height: 1.35; }
.related-date { font-size: 13px; color: var(--muted); }

/* ---------- Мобильные правки ---------- */
@media (max-width: 767px) {
  .section { padding: 40px 0; }
  .t-price, .t-compare { min-width: 560px; }
}

/* TASK_motion_and_theme.md, часть 4 — «уменьшить движение»: выключить всё, кроме спиннеров (их на сайте нет, правило на будущее) */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .animate-spin { animation-duration: 1s !important; animation-iteration-count: infinite !important; }
}
