/* ==========================================================================
   Dota 2 Voice Spam — общий стиль сайта
   Палитра совпадает с интерфейсом приложения (App.xaml)
   ========================================================================== */

:root {
  --bg:        #0E1015;
  --bg-soft:   #12141A;
  --panel:     #15171C;
  --panel-hi:  #1E212A;
  --panel-top: #262A35;
  --stroke:    #262B36;
  --stroke-hi: #333947;
  --text:      #E8EAF0;
  --dim:       #8D95A6;
  --dim-2:     #6B7386;
  --accent:    #E04B37;
  --accent-hi: #F05A45;
  --accent-lo: #8F2B1F;
  /* Кнопки: фон чуть светлее акцента, текст тёмный — так надпись читается
     заметно лучше, чем белым по красному (контраст 5.3:1 против 4.0:1). */
  --btn-bg:    #EE5B45;
  --btn-bg-hi: #FA6D55;
  --on-accent: #14161B;
  --ok:        #3FA96B;
  --warn:      #D9A441;

  --radius:    14px;
  --radius-sm: 9px;
  --maxw:      1120px;

  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
          "Helvetica Neue", Arial, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, SFMono-Regular, "SF Mono", Menlo,
          Consolas, "Liberation Mono", monospace;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-hi); }

h1, h2, h3, h4 {
  margin: 0 0 .5em;
  line-height: 1.2;
  letter-spacing: -0.02em;
  font-weight: 700;
}

h1 { font-size: clamp(2.1rem, 5.2vw, 3.4rem); }
h2 { font-size: clamp(1.5rem, 3.2vw, 2.05rem); }
h3 { font-size: 1.12rem; letter-spacing: -0.01em; }

p { margin: 0 0 1rem; }

code, kbd, samp, pre { font-family: var(--mono); font-size: .875em; }

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

.lead {
  font-size: 1.12rem;
  color: var(--dim);
  max-width: 62ch;
}

.dim { color: var(--dim); }
.nowrap { white-space: nowrap; }

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(14, 16, 21, .82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--stroke);
}

.site-header .wrap {
  display: flex;
  align-items: center;
  gap: 20px;
  height: 64px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  color: var(--text);
  font-weight: 700;
  letter-spacing: -0.01em;
  white-space: nowrap;
}
.brand:hover { color: var(--text); }

.brand-logo {
  width: 34px; height: 34px;
  flex: none;
  display: block;
  border-radius: 9px;
  box-shadow: 0 3px 12px rgba(0, 0, 0, .45);
}
.brand-name  { font-size: 1rem; }
.brand-name span { color: var(--dim); font-weight: 500; }

.nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav a {
  color: var(--dim);
  font-size: .94rem;
  font-weight: 500;
  padding: 8px 13px;
  border-radius: var(--radius-sm);
  transition: background .15s, color .15s;
}
.nav a:hover { color: var(--text); background: var(--panel-hi); }
.nav a.active { color: var(--text); background: var(--panel-hi); }

.nav-toggle {
  display: none;
  margin-left: auto;
  width: 40px; height: 40px;
  border: 1px solid var(--stroke-hi);
  border-radius: var(--radius-sm);
  background: var(--panel);
  color: var(--text);
  cursor: pointer;
  align-items: center;
  justify-content: center;
}
.nav-toggle svg { width: 18px; height: 18px; }

@media (max-width: 720px) {
  .nav-toggle { display: inline-flex; }
  .nav {
    position: absolute;
    top: 64px; left: 0; right: 0;
    margin: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    padding: 10px 16px 16px;
    background: var(--bg);
    border-bottom: 1px solid var(--stroke);
  }
  .nav[hidden] { display: none; }
  .nav a { padding: 11px 13px; }
}

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

.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 12px 20px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--stroke-hi);
  background: var(--panel-hi);
  color: var(--text);
  font: inherit;
  font-size: .96rem;
  font-weight: 600;
  cursor: pointer;
  transition: background .15s, border-color .15s, transform .1s;
}
.btn:hover { background: var(--panel-top); border-color: #3F4658; color: var(--text); }
.btn:active { transform: translateY(1px); }
.btn svg { width: 17px; height: 17px; flex: none; }

.btn-accent {
  background: var(--btn-bg);
  border-color: var(--btn-bg);
  color: var(--on-accent);
  font-weight: 700;
  box-shadow: 0 4px 18px rgba(224, 75, 55, .22);
}
.btn-accent:hover {
  background: var(--btn-bg-hi);
  border-color: var(--btn-bg-hi);
  color: var(--on-accent);
}

.btn-sm { padding: 8px 15px; font-size: .9rem; }
.btn-sm svg { width: 15px; height: 15px; }

.btn-lg { padding: 14px 24px; font-size: 1.02rem; }

/* Кнопка внутри навигации: правила .nav a специфичнее .btn, поэтому цвета
   приходится задать здесь явно — иначе надпись наследует серый цвет ссылок. */
.nav a.btn-sm { margin-left: 8px; }
.nav a.btn-accent,
.nav a.btn-accent:hover {
  color: var(--on-accent);
  font-weight: 700;
}
.nav a.btn-accent { background: var(--btn-bg); }
.nav a.btn-accent:hover { background: var(--btn-bg-hi); }
@media (max-width: 720px) {
  .nav a.btn-sm { margin: 8px 0 0; justify-content: center; }
}

.dl-meta {
  margin-top: 14px;
  font-size: .86rem;
  color: var(--dim-2);
}
.dl-meta b { color: var(--dim); font-weight: 600; }

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

/* ---------- Секции --------------------------------------------------- */

section { padding: 72px 0; }
section.tight { padding: 48px 0; }

.section-head { max-width: 68ch; margin-bottom: 36px; }
.section-head p:last-child { margin-bottom: 0; }

.eyebrow {
  display: inline-block;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.rule { height: 1px; background: var(--stroke); border: 0; margin: 0; }

/* ---------- Герой ---------------------------------------------------- */

.hero {
  position: relative;
  padding: 88px 0 76px;
  overflow: hidden;
  border-bottom: 1px solid var(--stroke);
}

.hero::before {
  content: "";
  position: absolute;
  top: -280px; left: 50%;
  width: 900px; height: 620px;
  transform: translateX(-50%);
  background: radial-gradient(ellipse at center, rgba(224, 75, 55, .17), transparent 62%);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.022) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 40%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 40%, transparent 100%);
  pointer-events: none;
}

.hero .wrap { position: relative; z-index: 1; }

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  gap: 56px;
  align-items: center;
}

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

.hero-logo {
  width: 92px; height: 92px;
  display: block;
  border-radius: 21px;
  margin-bottom: 24px;
  box-shadow: 0 16px 44px rgba(0, 0, 0, .6), 0 0 0 1px rgba(255, 255, 255, .05);
}
@media (max-width: 560px) {
  .hero-logo { width: 76px; height: 76px; border-radius: 17px; margin-bottom: 20px; }
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 13px 6px 9px;
  border: 1px solid var(--stroke-hi);
  border-radius: 999px;
  background: var(--panel);
  color: var(--dim);
  font-size: .84rem;
  font-weight: 500;
  margin-bottom: 22px;
}
.badge b { color: var(--text); font-weight: 600; }
.dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--ok);
  box-shadow: 0 0 0 3px rgba(63, 169, 107, .18);
}

.hero h1 { margin-bottom: 18px; }
.hero h1 em {
  font-style: normal;
  color: var(--accent);
}
.hero .lead { font-size: 1.16rem; margin-bottom: 28px; }

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  margin-top: 26px;
  font-size: .88rem;
  color: var(--dim-2);
}
.hero-meta span { display: inline-flex; align-items: center; gap: 7px; }
.hero-meta svg { width: 15px; height: 15px; opacity: .8; }

/* ---------- Макет окна приложения ------------------------------------ */

.app-shot {
  border: 1px solid var(--stroke-hi);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: 0 24px 60px rgba(0, 0, 0, .5);
  overflow: hidden;
}

.app-bar {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 11px 14px;
  background: var(--panel-top);
  border-bottom: 1px solid var(--stroke-hi);
  font-size: .82rem;
  color: var(--dim);
}
.app-bar i {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: #3C4354;
  display: block;
}
.app-bar i:first-child { background: var(--accent); }
.app-bar span { margin-left: 6px; }

.app-body { padding: 14px; display: grid; gap: 8px; }

.app-row {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 10px;
  padding: 11px 12px;
  border: 1px solid var(--stroke);
  border-radius: var(--radius-sm);
  background: var(--panel-hi);
  font-size: .9rem;
}
.app-row.live {
  border-color: var(--accent);
  background: linear-gradient(90deg, rgba(224,75,55,.14), rgba(224,75,55,.03));
}
.app-row .name {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.app-row .bar {
  width: 62px; height: 4px;
  border-radius: 2px;
  background: var(--stroke-hi);
  position: relative;
  overflow: hidden;
}
.app-row .bar b {
  position: absolute; inset: 0 auto 0 0;
  background: var(--accent);
  border-radius: 2px;
  display: block;
}
.app-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 12px 14px;
  border-top: 1px solid var(--stroke);
  background: var(--bg-soft);
  font-size: .82rem;
  color: var(--dim);
}
.app-foot .state { display: inline-flex; align-items: center; gap: 8px; color: var(--ok); }

/* ---------- Клавиши -------------------------------------------------- */

.kbd {
  display: inline-block;
  padding: 2px 8px;
  border: 1px solid var(--stroke-hi);
  border-bottom-width: 2px;
  border-radius: 6px;
  background: var(--panel-top);
  color: var(--text);
  font-family: var(--mono);
  font-size: .8em;
  font-weight: 600;
  line-height: 1.5;
  white-space: nowrap;
}

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

.grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(272px, 1fr));
}
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }

.card {
  padding: 24px;
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  background: linear-gradient(180deg, var(--panel) 0%, var(--bg-soft) 100%);
  transition: border-color .18s, transform .18s;
}
.card:hover { border-color: var(--stroke-hi); }
.card h3 { margin-bottom: 8px; }
.card p:last-child { margin-bottom: 0; color: var(--dim); }

.card-icon {
  width: 38px; height: 38px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: rgba(224, 75, 55, .13);
  border: 1px solid rgba(224, 75, 55, .26);
  color: var(--accent);
  margin-bottom: 16px;
}
.card-icon svg { width: 19px; height: 19px; }

/* ---------- Сравнение «до / после» ----------------------------------- */

.compare { display: grid; gap: 16px; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }

.compare .card { background: var(--panel); }
.compare ul { margin: 0; padding: 0; list-style: none; }
.compare li {
  display: flex;
  gap: 11px;
  padding: 9px 0;
  border-top: 1px solid var(--stroke);
  color: var(--dim);
  font-size: .95rem;
}
.compare li:first-child { border-top: 0; }
.compare li svg { width: 17px; height: 17px; flex: none; margin-top: 4px; }
.compare .bad  li svg { color: var(--dim-2); }
.compare .good li { color: var(--text); }
.compare .good li svg { color: var(--ok); }

/* ---------- Схема работы --------------------------------------------- */

.flow {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  counter-reset: flow;
}
.flow-step {
  position: relative;
  padding: 20px;
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  background: var(--panel);
}
.flow-step::before {
  counter-increment: flow;
  content: counter(flow);
  display: grid;
  place-items: center;
  width: 26px; height: 26px;
  border-radius: 8px;
  background: rgba(224, 75, 55, .14);
  color: var(--accent);
  font-family: var(--mono);
  font-size: .82rem;
  font-weight: 700;
  margin-bottom: 13px;
}
.flow-step h3 { font-size: 1rem; margin-bottom: 6px; }
.flow-step p { margin: 0; color: var(--dim); font-size: .92rem; }

/* ---------- Шаги установки ------------------------------------------- */

.steps { counter-reset: step; margin: 0; padding: 0; list-style: none; }

.step {
  counter-increment: step;
  position: relative;
  padding: 0 0 40px 62px;
}
.step::before {
  content: counter(step);
  position: absolute;
  left: 0; top: 0;
  width: 40px; height: 40px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  background: var(--panel-top);
  border: 1px solid var(--stroke-hi);
  color: var(--text);
  font-family: var(--mono);
  font-weight: 700;
  font-size: .96rem;
}
.step::after {
  content: "";
  position: absolute;
  left: 20px; top: 48px; bottom: 8px;
  width: 1px;
  background: var(--stroke);
}
.step:last-child { padding-bottom: 0; }
.step:last-child::after { display: none; }
.step h3 { margin-bottom: 10px; padding-top: 7px; }
.step > :last-child { margin-bottom: 0; }

@media (max-width: 560px) {
  .step { padding-left: 50px; }
  .step::before { width: 34px; height: 34px; font-size: .88rem; }
  .step::after { left: 17px; top: 42px; }
}

.substeps { margin: 0 0 1rem; padding-left: 1.15rem; color: var(--dim); }
.substeps li { margin-bottom: .4rem; }
.substeps strong, .substeps b { color: var(--text); font-weight: 600; }

/* ---------- Выноски -------------------------------------------------- */

.note {
  display: flex;
  gap: 13px;
  padding: 15px 17px;
  border: 1px solid var(--stroke-hi);
  border-left: 3px solid var(--dim-2);
  border-radius: var(--radius-sm);
  background: var(--panel);
  margin: 0 0 1rem;
  font-size: .94rem;
  color: var(--dim);
}
.note > svg { width: 18px; height: 18px; flex: none; margin-top: 3px; color: var(--dim-2); }
.note p { margin: 0; }
.note p + p { margin-top: .5rem; }
.note strong { color: var(--text); font-weight: 600; }
.note.warn { border-left-color: var(--warn); }
.note.warn > svg { color: var(--warn); }
.note.ok { border-left-color: var(--ok); }
.note.ok > svg { color: var(--ok); }

/* ---------- Код ------------------------------------------------------ */

.code {
  margin: 0 0 1rem;
  padding: 14px 16px;
  border: 1px solid var(--stroke);
  border-radius: var(--radius-sm);
  background: #0B0D11;
  color: var(--text);
  overflow-x: auto;
  font-size: .85rem;
  line-height: 1.6;
}
.code .c { color: var(--dim-2); }

p code, li code, td code {
  padding: 2px 6px;
  border: 1px solid var(--stroke);
  border-radius: 5px;
  background: var(--panel-hi);
  color: #F0C9C2;
  overflow-wrap: break-word;
}

/* ---------- Таблица -------------------------------------------------- */

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  background: var(--panel);
}
table {
  width: 100%;
  min-width: 520px;
  border-collapse: collapse;
  font-size: .94rem;
}
th, td {
  padding: 13px 18px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--stroke);
}
th {
  background: var(--panel-hi);
  color: var(--text);
  font-weight: 600;
  font-size: .84rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  white-space: nowrap;
}
td { color: var(--dim); }
td:first-child { color: var(--text); font-weight: 500; }
tr:last-child td { border-bottom: 0; }

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

.price-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  align-items: start;
}

.price {
  position: relative;
  padding: 28px;
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  background: linear-gradient(180deg, var(--panel) 0%, var(--bg-soft) 100%);
}
.price.featured {
  border-color: rgba(224, 75, 55, .55);
  box-shadow: 0 18px 50px rgba(0, 0, 0, .42);
}

.price-tag {
  position: absolute;
  top: -11px; right: 22px;
  padding: 3px 12px;
  border-radius: 999px;
  background: var(--btn-bg);
  color: var(--on-accent);
  font-size: .73rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.price h3 { margin-bottom: 4px; }
.price .sub { color: var(--dim); font-size: .93rem; margin-bottom: 20px; }

.price-amount {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 22px;
}
.price-amount b {
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
}
.price-amount span { color: var(--dim); font-size: .95rem; }

.price-list { margin: 0 0 24px; padding: 0; list-style: none; }
.price-list li {
  display: flex;
  gap: 11px;
  padding: 8px 0;
  color: var(--dim);
  font-size: .95rem;
}
.price-list svg { width: 17px; height: 17px; flex: none; margin-top: 4px; color: var(--ok); }
.price-list b { color: var(--text); font-weight: 600; }

.price > .btn { width: 100%; justify-content: center; }

.price-note {
  margin: 20px 0 0;
  font-size: .88rem;
  color: var(--dim-2);
}

/* ---------- Требования ----------------------------------------------- */

.specs {
  display: grid;
  gap: 0;
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  background: var(--panel);
  overflow: hidden;
}
.spec {
  display: grid;
  grid-template-columns: 210px 1fr;
  gap: 16px;
  padding: 15px 20px;
  border-bottom: 1px solid var(--stroke);
  font-size: .95rem;
}
.spec:last-child { border-bottom: 0; }
.spec dt { color: var(--dim); }
.spec dd { margin: 0; color: var(--text); }
@media (max-width: 560px) {
  .spec { grid-template-columns: 1fr; gap: 3px; }
}

/* ---------- Юридический документ ------------------------------------- */

.doc { max-width: 78ch; }

.doc h2 {
  font-size: 1.22rem;
  margin: 42px 0 14px;
  scroll-margin-top: 84px;
}
.doc h2:first-child { margin-top: 0; }

.doc p {
  margin-bottom: .7rem;
  color: var(--dim);
  font-size: .97rem;
}
.doc p strong, .doc li strong { color: var(--text); font-weight: 600; }
.doc ul { margin: 0 0 1rem; padding-left: 1.25rem; color: var(--dim); font-size: .97rem; }
.doc li { margin-bottom: .4rem; }

.doc-head {
  padding-bottom: 26px;
  margin-bottom: 34px;
  border-bottom: 1px solid var(--stroke);
}
.doc-head .lead { margin-bottom: 0; }
.doc-date { font-size: .9rem; color: var(--dim-2); margin-top: 14px; }

.toc {
  padding: 20px 24px;
  margin-bottom: 38px;
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  background: var(--panel);
}
.toc h3 { font-size: .84rem; letter-spacing: .1em; text-transform: uppercase; color: var(--dim); margin-bottom: 12px; }
.toc ol { margin: 0; padding-left: 1.2rem; columns: 2; column-gap: 32px; }
.toc li { margin-bottom: .3rem; font-size: .92rem; break-inside: avoid; }
.toc a { color: var(--dim); }
.toc a:hover { color: var(--text); }
@media (max-width: 620px) { .toc ol { columns: 1; } }

.fill {
  padding: 1px 7px;
  border-radius: 5px;
  background: rgba(217, 164, 65, .16);
  border: 1px dashed rgba(217, 164, 65, .5);
  color: var(--warn);
  font-family: var(--mono);
  font-size: .82em;
  white-space: nowrap;
}

/* ---------- Финальный призыв ----------------------------------------- */

.cta {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 56px 32px;
  border: 1px solid var(--stroke-hi);
  border-radius: var(--radius);
  background: linear-gradient(180deg, var(--panel) 0%, var(--bg-soft) 100%);
}
.cta::before {
  content: "";
  position: absolute;
  top: -180px; left: 50%;
  width: 620px; height: 360px;
  transform: translateX(-50%);
  background: radial-gradient(ellipse at center, rgba(224, 75, 55, .15), transparent 65%);
  pointer-events: none;
}
.cta > * { position: relative; }
.cta h2 { margin-bottom: 12px; }
.cta .lead { margin: 0 auto 26px; }
.cta .btn-row { justify-content: center; }

/* ---------- Контакты ------------------------------------------------- */

.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 26px;
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  background: linear-gradient(180deg, var(--panel) 0%, var(--bg-soft) 100%);
  transition: border-color .18s;
}
.contact-card:hover { border-color: var(--stroke-hi); }
.contact-card .card-icon { margin-bottom: 0; flex: none; }
.contact-card h3 { margin-bottom: 4px; }
.contact-card p { margin-bottom: 10px; color: var(--dim); font-size: .95rem; }
.contact-card .value {
  font-family: var(--mono);
  font-size: 1rem;
  font-weight: 600;
  color: var(--accent);
}
.contact-card .value:hover { color: var(--accent-hi); }

.checklist { margin: 0; padding: 0; list-style: none; }
.checklist li {
  display: flex;
  gap: 12px;
  padding: 11px 0;
  border-bottom: 1px solid var(--stroke);
  color: var(--dim);
  font-size: .95rem;
}
.checklist li:last-child { border-bottom: 0; }
.checklist li svg { width: 17px; height: 17px; flex: none; margin-top: 4px; color: var(--accent); }
.checklist b { color: var(--text); font-weight: 600; }

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

.site-footer {
  border-top: 1px solid var(--stroke);
  padding: 36px 0;
  background: var(--bg-soft);
}
.site-footer .wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 28px;
  font-size: .89rem;
  color: var(--dim-2);
}
.site-footer nav { margin-left: auto; display: flex; flex-wrap: wrap; gap: 20px; }
.site-footer nav a { color: var(--dim); }
.site-footer nav a:hover { color: var(--text); }
.site-footer .fine { flex-basis: 100%; color: var(--dim-2); font-size: .84rem; }

/* ---------- Мелочи --------------------------------------------------- */

::selection { background: rgba(224, 75, 55, .32); }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-radius: 4px;
}

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