/*
Theme Name: Atlanta VPN Ru
Theme URI: https://atlantavpn.click/
Description: Тема сайта Atlanta VPN Ru. Язык дизайна — «маршрут / скорость обхода»: диагональные срезы вместо скруглений (эхо стрелки в логотипе), направленный градиент синий→лазурь. Палитра снята с официального логотипа (аватар канала, аватар бота, иконка Google Play — три поверхности совпадают).
Version: 1.0.2
Requires at least: 6.0
Tested up to: 7.0
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: atlanta-vpn
*/

/* ============================================================
   1. Переменные и база
   Палитра — с официального логотипа (не с сайтов-клонов: у них
   дефолтные цвета редактора блоков WordPress, не бренд).
   ============================================================ */
:root {
  --bg:            #ffffff;
  --bg-tint:       #f5f7fc;
  --surface:       #ffffff;
  --surface-2:     #eef1f9;
  --ink:           #00020b;
  --text:          #0b0e18;
  --muted:         #5b6072;
  --line:          #e2e5f0;
  --line-strong:   #c7cce0;

  --blue-deep:     #0f47fc;
  --blue-mid:      #0868fa;
  --blue-light:    #0284f6;
  --sweep:         linear-gradient(115deg, var(--blue-deep), var(--blue-light));
  --glow:          rgba(15, 71, 252, .18);

  --green:         #1fb15a;
  --amber:         #e0a238;

  --font-display: "Overpass", "Arial Narrow", sans-serif;
  --font-text:    "Hanken Grotesk", "Segoe UI", sans-serif;
  --font-mono:    "Overpass Mono", ui-monospace, "Courier New", monospace;

  /* Срез угла — эхо стрелки в логотипе: один угол среза "вперёд-вправо". */
  --cut: 16px;
  --radius-sm: 8px;

  --wrap: 1160px;
  --header-h: 68px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-text);
  font-size: 17px;
  line-height: 1.62;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--blue-mid); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.14;
  letter-spacing: -.01em;
  margin: 0 0 .55em;
  color: var(--ink);
}
h1 { font-size: clamp(2.05rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.5rem, 3.4vw, 2.2rem); }
h3 { font-size: clamp(1.14rem, 2.2vw, 1.4rem); }
h4 { font-size: 1.05rem; }

p { margin: 0 0 1.1em; }
ul, ol { margin: 0 0 1.2em; padding-left: 1.3em; }
li { margin-bottom: .5em; }
strong { color: var(--ink); font-weight: 700; }
code, kbd { font-family: var(--font-mono); font-size: .92em; }

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

.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;
}

/* Срез угла "вперёд" — переиспользуемый приём вместо border-radius.
   clip-path режет только правый нижний угол по диагонали. */
.notch {
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - var(--cut)), calc(100% - var(--cut)) 100%, 0 100%);
}
.notch-sm { --cut: 10px; }

/* ============================================================
   2. Шапка
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .25s ease;
}
.site-header.scrolled { box-shadow: 0 6px 24px rgba(15, 20, 40, .08); }
.site-header__inner { display: flex; align-items: center; gap: 18px; min-height: var(--header-h); }

.site-logo { display: inline-flex; align-items: center; gap: 10px; flex-shrink: 0; }
.site-logo:hover { text-decoration: none; }
.site-logo__icon { width: 32px; height: 32px; flex-shrink: 0; }
.site-logo__text {
  font-family: var(--font-display); font-weight: 800; font-size: 1.2rem;
  color: var(--ink); letter-spacing: -.01em; white-space: nowrap;
}
.site-logo__text b {
  background: var(--sweep); -webkit-background-clip: text; background-clip: text; color: transparent;
}

.nav { margin-left: auto; }
.nav ul { display: flex; gap: 22px; list-style: none; margin: 0; padding: 0; }
.nav li { margin: 0; }
.nav a {
  color: var(--muted); font-size: .95rem; white-space: nowrap;
  padding: 6px 0; border-bottom: 2px solid transparent;
  transition: color .18s ease, border-color .18s ease;
}
.nav a:hover, .nav .current-menu-item > a { color: var(--ink); border-bottom-color: var(--blue-light); text-decoration: none; }

.header-cta { flex-shrink: 0; }
.header-cta__short { display: none; }

.burger {
  display: none; width: 42px; height: 42px; flex-shrink: 0;
  background: transparent; border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm); cursor: pointer; padding: 0; place-items: center;
}
.burger span { display: block; width: 19px; height: 2px; background: var(--ink); position: relative; transition: background .18s ease; }
.burger span::before, .burger span::after {
  content: ""; position: absolute; left: 0; width: 19px; height: 2px; background: var(--ink);
  transition: transform .22s ease;
}
.burger span::before { top: -6px; }
.burger span::after { top: 6px; }
.burger.open span { background: transparent; }
.burger.open span::before { transform: translateY(6px) rotate(45deg); }
.burger.open span::after { transform: translateY(-6px) rotate(-45deg); }

.mobile-nav { display: none; border-top: 1px solid var(--line); background: var(--bg-tint); padding: 10px 0 18px; }
.mobile-nav.open { display: block; }
.mobile-nav ul { list-style: none; margin: 0; padding: 0; }
.mobile-nav li { margin: 0; border-bottom: 1px solid var(--line); }
.mobile-nav li:last-child { border-bottom: 0; }
.mobile-nav a { display: block; padding: 13px 20px; color: var(--ink); font-size: 1rem; }

@media (max-width: 980px) {
  .nav { display: none; }
  .burger { display: grid; }
  .header-cta { margin-left: auto; }
}
@media (max-width: 480px) {
  .header-cta__full { display: none; }
  .header-cta__short { display: inline; }
  .btn--header { padding: 9px 14px; font-size: .85rem; }
}
@media (max-width: 360px) {
  .site-logo__text { display: none; }
}

/* ============================================================
   3. Кнопки
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--font-text); font-weight: 700; font-size: 1rem;
  padding: 13px 26px; border: 1px solid transparent;
  cursor: pointer; text-align: center; white-space: normal; max-width: 100%;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, background .18s ease;
}
.btn--primary {
  background: var(--sweep); color: #fff; box-shadow: 0 8px 22px var(--glow);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%);
}
.btn--primary:hover { box-shadow: 0 12px 30px var(--glow); transform: translateX(2px); color: #fff; text-decoration: none; }
.btn--ghost {
  background: transparent; color: var(--ink); border-color: var(--line-strong);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%);
}
.btn--ghost:hover { border-color: var(--blue-mid); color: var(--blue-mid); transform: translateX(2px); text-decoration: none; }
.btn--header { padding: 10px 20px; font-size: .93rem; }
.btn--wide { width: 100%; }
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

/* ============================================================
   4. Первый экран
   ============================================================ */
.hero {
  position: relative; overflow: hidden; padding: 60px 0 52px;
  background:
    radial-gradient(720px 400px at 84% -6%, rgba(15, 71, 252, .07), transparent 62%),
    var(--bg);
}
.hero__grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 440px); gap: 46px; align-items: center; }
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono); font-size: .78rem; letter-spacing: .06em; text-transform: uppercase;
  color: var(--blue-mid); border: 1px solid rgba(15, 71, 252, .28);
  padding: 6px 14px; margin-bottom: 20px;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%);
}
.hero__eyebrow::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 8px var(--green); }
.hero h1 { margin-bottom: .45em; }
.hero h1 em { font-style: normal; background: var(--sweep); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero__lead { font-size: 1.13rem; color: var(--muted); max-width: 46ch; margin-bottom: 26px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 26px; }
.hero__note { font-family: var(--font-mono); font-size: .8rem; color: var(--muted); }

/* Иллюстрация первого экрана. */
.hero__media { display: flex; justify-content: center; }
.hero__media img { display: block; width: 100%; max-width: 420px; height: auto; }

@media (max-width: 900px) {
  .hero { padding: 44px 0 40px; }
  .hero__grid { grid-template-columns: 1fr; gap: 32px; }
  .hero__media img { max-width: 320px; }
}

/* ============================================================
   5. Секции
   ============================================================ */
.section { padding: 60px 0; }
.section--tint { background: var(--bg-tint); }

/* Диагональный разделитель между секциями — "линия скорости". */
.section--slant {
  clip-path: polygon(0 18px, 100% 0, 100% calc(100% - 18px), 0 100%);
  margin: -18px 0;
  padding-top: 78px; padding-bottom: 78px;
}

.section__head { max-width: 720px; margin-bottom: 36px; }
.section__head--center { margin-inline: auto; text-align: center; }
.section__label {
  font-family: var(--font-mono); font-size: .76rem; letter-spacing: .09em; text-transform: uppercase;
  color: var(--blue-mid); margin-bottom: 12px;
}
.section__lead { color: var(--muted); font-size: 1.04rem; margin-bottom: 0; }
.lead { font-size: 1.1rem; color: var(--muted); }

/* ============================================================
   6. Карточки и сетки
   ============================================================ */
.grid { display: grid; gap: 20px; }
.grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
@media (max-width: 900px) { .grid--3, .grid--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 620px) { .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; } }

.card {
  background: var(--surface); border: 1px solid var(--line); padding: 24px;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 16px), calc(100% - 16px) 100%, 0 100%);
  transition: border-color .2s ease, transform .2s ease;
}
.card:hover { border-color: var(--blue-mid); transform: translateX(3px); }
.card > :last-child { margin-bottom: 0; }
.card__icon {
  width: 42px; height: 42px; display: grid; place-items: center; margin-bottom: 16px;
  background: var(--bg-tint); border: 1px solid var(--line);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%);
}
.card__icon svg { width: 21px; height: 21px; color: var(--blue-mid); }
.card h3 { margin-bottom: .5em; }
.card p { color: var(--muted); margin-bottom: 0; font-size: .97rem; }

.stat { text-align: left; }
.stat__num {
  font-family: var(--font-mono); font-weight: 400;
  font-size: clamp(1.7rem, 4vw, 2.3rem); color: var(--ink); line-height: 1.1;
  display: block; margin-bottom: 6px;
}
.stat__num b { background: var(--sweep); -webkit-background-clip: text; background-clip: text; color: transparent; font-weight: 700; }
.stat__label { color: var(--muted); font-size: .92rem; }

/* ============================================================
   7. Тарифы
   ============================================================ */
.plans { display: grid; gap: 22px; grid-template-columns: repeat(3, minmax(0, 1fr)); align-items: start; }
.plans--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
@media (max-width: 1080px) { .plans--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 940px) { .plans:not(.plans--4) { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; } }
@media (max-width: 620px) { .plans--4 { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; } }

.plan {
  position: relative; background: var(--surface); border: 1px solid var(--line); padding: 28px 24px;
  
  transition: border-color .2s ease, transform .2s ease;
}
.plan:hover { transform: translateX(3px); border-color: var(--blue-mid); }
.plan--best { border-color: var(--blue-mid); box-shadow: 0 16px 40px var(--glow); }
.plan__badge {
  position: absolute; top: -13px; left: 24px;
  font-family: var(--font-mono); font-size: .72rem; letter-spacing: .05em; text-transform: uppercase;
  color: #fff; background: var(--sweep); padding: 4px 13px; font-weight: 700;
}
.plan__name { font-family: var(--font-display); font-weight: 800; font-size: 1.25rem; margin-bottom: 4px; }
.plan__term { font-family: var(--font-mono); font-size: .8rem; color: var(--muted); margin-bottom: 18px; }
.plan__price { display: flex; align-items: baseline; gap: 7px; margin-bottom: 4px; }
.plan__price b { font-family: var(--font-mono); font-weight: 400; font-size: 2.3rem; color: var(--ink); line-height: 1; }
.plan__price span { color: var(--muted); font-size: .95rem; }
.plan__total { font-size: .89rem; color: var(--muted); margin-bottom: 18px; }
.plan__save {
  display: inline-block; font-family: var(--font-mono); font-size: .76rem;
  color: var(--green); border: 1px solid rgba(31, 177, 90, .34); padding: 3px 10px; margin-bottom: 18px;
}
.plan ul { list-style: none; padding: 0; margin: 0 0 22px; }
.plan li { position: relative; padding-left: 26px; margin-bottom: 10px; font-size: .95rem; color: var(--text); }
.plan li::before {
  content: ""; position: absolute; left: 0; top: .5em; width: 13px; height: 7px;
  border-left: 2px solid var(--blue-mid); border-bottom: 2px solid var(--blue-mid); transform: rotate(-45deg);
}

/* ============================================================
   8. Шаги
   ============================================================ */
.steps { counter-reset: step; display: grid; gap: 18px; }
.step {
  position: relative; padding-left: 62px; background: var(--surface); border: 1px solid var(--line);
  padding-block: 22px; padding-right: 24px;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 14px), calc(100% - 14px) 100%, 0 100%);
}
.step::before {
  counter-increment: step; content: counter(step);
  position: absolute; left: 20px; top: 20px; width: 30px; height: 30px;
  display: grid; place-items: center; font-family: var(--font-mono); font-size: .95rem; font-weight: 700;
  background: var(--sweep); color: #fff;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 7px), calc(100% - 7px) 100%, 0 100%);
}
.step h3 { margin-bottom: .4em; font-size: 1.1rem; }
.step > :last-child { margin-bottom: 0; }
.step p { color: var(--muted); font-size: .97rem; }

/* ============================================================
   9. Таблицы — карточки на ≤640px
   ============================================================ */
.table-wrap { overflow-x: auto; margin: 0 0 26px; border: 1px solid var(--line); }
table.data { width: 100%; border-collapse: collapse; min-width: 540px; font-size: .95rem; }
table.data th, table.data td { text-align: left; padding: 13px 16px; border-bottom: 1px solid var(--line); vertical-align: top; }
table.data thead th { background: var(--bg-tint); font-family: var(--font-display); font-weight: 800; font-size: .9rem; color: var(--ink); }
table.data tbody tr:last-child td { border-bottom: 0; }
table.data td { color: var(--text); }
table.data td strong { color: var(--ink); }
table.data .mono { font-family: var(--font-mono); font-size: .88rem; }

@media (max-width: 640px) {
  .table-wrap { overflow-x: visible; border: 0; }
  table.data { min-width: 0; }
  table.data thead {
    position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
    overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
  }
  table.data, table.data tbody, table.data tr, table.data td { display: block; width: 100%; }
  table.data tr { border: 1px solid var(--line); margin-bottom: 12px; overflow: hidden; background: var(--surface); }
  table.data tr:last-child { margin-bottom: 0; }
  table.data td { padding: 10px 14px 10px 44%; position: relative; min-height: 20px; }
  table.data tr td:last-child { border-bottom: 0; }
  table.data td::before {
    content: attr(data-label); position: absolute; left: 14px; top: 10px; width: 38%;
    font-weight: 700; font-size: .82rem; color: var(--muted); font-family: var(--font-text);
  }
}

/* ============================================================
   10. FAQ-аккордеон
   ============================================================ */
.faq { display: grid; gap: 12px; }
.faq__item { background: var(--surface); border: 1px solid var(--line); overflow: hidden; transition: border-color .2s ease; }
.faq__item.open { border-color: var(--blue-mid); }
.faq__question {
  width: 100%; display: flex; align-items: flex-start; gap: 14px; background: transparent; border: 0;
  cursor: pointer; padding: 18px 20px; text-align: left;
  font-family: var(--font-display); font-weight: 800; font-size: 1.03rem; color: var(--ink); line-height: 1.4;
}
.faq__question::after {
  content: ""; flex-shrink: 0; margin-left: auto; margin-top: .35em; width: 9px; height: 9px;
  border-right: 2px solid var(--blue-mid); border-bottom: 2px solid var(--blue-mid);
  transform: rotate(45deg); transition: transform .25s ease;
}
.faq__item.open .faq__question::after { transform: rotate(-135deg); }
.faq__answer { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .28s ease; }
.faq__answer > div { overflow: hidden; }
.faq__item.open .faq__answer { grid-template-rows: 1fr; }
.faq__answer p { padding: 0 20px; margin: 0 0 16px; color: var(--muted); font-size: .98rem; }
.faq__answer p:first-child { padding-top: 2px; }

/* ============================================================
   11. Отзывы и звёзды
   ============================================================ */
.star-rating { position: relative; display: inline-flex; line-height: 0; vertical-align: middle; }
.star-rating__bg, .star-rating__fg { display: flex; gap: 2px; }
.star-rating__bg { color: var(--line-strong); opacity: .7; }
.star-rating__fg { position: absolute; top: 0; left: 0; bottom: 0; overflow: hidden; white-space: nowrap; color: var(--amber); }
.star-rating svg { width: var(--star-size, 20px); height: var(--star-size, 20px); flex-shrink: 0; fill: currentColor; stroke: currentColor; }

.rating-summary {
  display: flex; flex-wrap: wrap; align-items: center; gap: 18px;
  background: var(--surface); border: 1px solid var(--line); padding: 22px 24px; margin-bottom: 30px;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 16px), calc(100% - 16px) 100%, 0 100%);
}
.rating-summary__num { font-family: var(--font-mono); font-weight: 400; font-size: 2.6rem; color: var(--ink); line-height: 1; }
.rating-summary__meta { color: var(--muted); font-size: .93rem; }

.review { background: var(--surface); border: 1px solid var(--line); padding: 22px; clip-path: polygon(0 0, 100% 0, 100% calc(100% - 14px), calc(100% - 14px) 100%, 0 100%); }
.review__head { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; flex-wrap: wrap;}
.review__avatar {
  width: 40px; height: 40px; flex-shrink: 0; display: grid; place-items: center;
  background: var(--bg-tint); border: 1px solid var(--line);
  font-family: var(--font-display); font-weight: 800; color: var(--blue-mid);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%);
}
.review__name { font-weight: 700; color: var(--ink); font-size: .98rem; }
.review__date { font-family: var(--font-mono); font-size: .76rem; color: var(--muted); }
.review__stars { margin-left: auto; }
.review p { color: var(--text); font-size: .97rem; margin-bottom: 0; }

/* ============================================================
   12. Прочие блоки
   ============================================================ */
.callout {
  background: var(--bg-tint); border: 1px solid var(--line); border-left: 3px solid var(--blue-mid);
  padding: 22px 24px; margin: 0 0 26px;
}
.callout > :last-child { margin-bottom: 0; }
.callout--warn { border-left-color: var(--amber); background: #fdf6e9; }

.pill-row { display: flex; flex-wrap: wrap; gap: 9px; margin-bottom: 22px; }
.pill { font-family: var(--font-mono); font-size: .8rem; color: var(--muted); border: 1px solid var(--line-strong); padding: 5px 13px; }
.pill--on { color: var(--green); border-color: rgba(31, 177, 90, .34); }

.cta-band {
  text-align: center; padding: 54px 0;
  background: radial-gradient(620px 300px at 50% 0%, var(--glow), transparent 65%), var(--bg-tint);
  border-block: 1px solid var(--line);
}
.cta-band h2 { margin-bottom: .4em; }
.cta-band p { color: var(--muted); max-width: 54ch; margin-inline: auto; margin-bottom: 24px; }

.av-breadcrumb, .atv-breadcrumb { font-size: .86rem; color: var(--muted); padding: 18px 0 0; }
.atv-breadcrumb__link { color: var(--muted); }
.atv-breadcrumb__link:hover { color: var(--blue-mid); }
.atv-breadcrumb__sep { margin: 0 8px; opacity: .5; }
.atv-breadcrumb__current { color: var(--ink); }

.page-head { padding: 26px 0 40px; }
.page-head h1 { margin-bottom: .35em; }
.page-head .lead { max-width: 66ch; margin-bottom: 0; }

/* Шапка страницы с иллюстрацией справа от заголовка. */
.page-head__grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 280px); gap: 40px; align-items: center; }
.page-head__media { display: flex; justify-content: center; }
.page-head__media img { display: block; width: 100%; max-width: 280px; height: auto; }

@media (max-width: 900px) {
  .page-head__grid { grid-template-columns: 1fr; gap: 24px; }
  .page-head__media { justify-content: flex-start; }
  .page-head__media img { max-width: 200px; }
}

.content > h2 { margin-top: 1.6em; }
.content > h3 { margin-top: 1.4em; }

/* ============================================================
   13. Подвал
   ============================================================ */
.site-footer { background: var(--bg-tint); border-top: 1px solid var(--line); padding: 46px 0 28px; }
.site-footer__grid { display: grid; grid-template-columns: minmax(0, 1.4fr) repeat(2, minmax(0, 1fr)); gap: 32px; margin-bottom: 32px; }
@media (max-width: 820px) { .site-footer__grid { grid-template-columns: 1fr; gap: 26px; } }
.site-footer h4 { font-family: var(--font-mono); font-size: .76rem; letter-spacing: .09em; text-transform: uppercase; color: var(--muted); font-weight: 700; margin-bottom: 14px; }
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin-bottom: 9px; }
.site-footer a { color: var(--text); font-size: .95rem; }
.site-footer a:hover { color: var(--blue-mid); }
.site-footer__about { color: var(--muted); font-size: .95rem; max-width: 42ch; }
.site-footer__bottom {
  border-top: 1px solid var(--line); padding-top: 22px; display: flex; flex-wrap: wrap; gap: 14px;
  justify-content: space-between; color: var(--muted); font-size: .85rem;
}
.site-footer__disclaimer { max-width: 76ch; }

/* ============================================================
   14. Доступность
   ============================================================ */
:focus-visible { outline: 2px solid var(--blue-mid); outline-offset: 3px; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}
@media (max-width: 360px) {
	.review__stars {
		margin-left: 0;
	}
	
}