/*
Theme Name: AdGuard VPN Ru
Theme URI: https://adguard-vpn.click/
Description: Тема сайта AdGuard VPN Ru. Палитра снята с CSS официального сайта adguard-vpn.com — переменные VPN-продукта: оливковый #74a352, оранжевый #d58500, бирюза #5eb0b7. Язык дизайна — «сетевая консоль»: светлая база, тонированные полосы во всю ширину, моноширинные показания, градиентная нить-разделитель.
Author: AdGuard VPN Ru
Version: 1.0.0
Text Domain: agvpn
*/

/* ══════════════════════════════════════════════════════════
   Токены. Палитра снята пипеткой с CSS офсайта, из блока
   переменных именно VPN-продукта (--vpngreen400 и соседи),
   а не блокировщика AdGuard — у них разные акценты.
   ══════════════════════════════════════════════════════════ */
:root {
	--bg: #ffffff;
	--surface: #f6f6f6;      /* --gray-10 офсайта */
	--tint: #f1f6ec;         /* подложка карточек, производная от акцента */
	--tint-2: #eef5f6;       /* бирюзовая подложка */
	--tint-warm: #fdf4e6;    /* оранжевая подложка */

	--line: #e4e4e4;         /* --gray-20 */
	--line-soft: #efefef;

	--ink: #131313;          /* --black */
	--ink-2: #3d3d3d;        /* --gray-80 */
	--muted: #5b5b5b;        /* --gray-70 */
	--dim: #7f7f7f;          /* --gray-60 */

	--accent: #74a352;       /* --vpngreen400 */
	--accent-dk: #568040;    /* --vpngreen700 */
	--accent-dp: #5c8141;    /* --vpn-pressed-main-button */
	--accent-soft: #b2cc9e;  /* --vpn-disabled-main-button */

	--orange: #d58500;       /* --vpnorange700 */
	--teal: #5eb0b7;         /* --vpnseagreen */
	--slate: #575770;        /* --vpnslateblue700 */
	--slate-dk: #464558;     /* --vpnslateblue800 */
	--red: #bf4829;          /* --vpnred */

	--font-display: "Play", "Trebuchet MS", Verdana, sans-serif;
	--font-text: "PT Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
	--font-mono: "Fira Code", ui-monospace, "Cascadia Mono", Consolas, monospace;

	--radius: 10px;
	--radius-sm: 6px;
	--wrap: 1140px;
	--header-h: 64px;
}

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

body {
	margin: 0;
	background: var(--bg);
	color: var(--ink);
	font-family: var(--font-text);
	font-size: 17px;
	line-height: 1.62;
	-webkit-font-smoothing: antialiased;
}

img, svg, video { max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
p { margin: 0 0 16px; }

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

/* ── Типографика ─────────────────────────────────────────── */
h1, h2, h3, h4 {
	font-family: var(--font-display);
	font-weight: 700;
	line-height: 1.16;
	letter-spacing: -0.01em;
	margin: 0 0 15px;
}
h1 { font-size: clamp(1.95rem, 4.4vw, 3rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.5rem, 3vw, 2.05rem); margin-top: 46px; }
h3 { font-size: clamp(1.12rem, 1.9vw, 1.28rem); margin-top: 28px; }
h4 { font-size: 1.02rem; margin-top: 20px; }

.lead { font-size: 1.11rem; color: var(--muted); max-width: 680px; margin-bottom: 22px; }

/* Надзаголовок-«метка»: моноширинный, в духе консольной строки */
.eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-family: var(--font-mono);
	font-size: .74rem;
	font-weight: 500;
	letter-spacing: .1em;
	text-transform: uppercase;
	color: var(--accent-dk);
	margin-bottom: 12px;
}
.eyebrow::before {
	content: "";
	width: 20px; height: 2px;
	background: linear-gradient(90deg, var(--accent), var(--teal));
	border-radius: 2px;
}
.eyebrow--orange { color: var(--orange); }
.eyebrow--orange::before { background: linear-gradient(90deg, var(--orange), #e8b45c); }
.eyebrow--slate { color: var(--slate); }
.eyebrow--slate::before { background: linear-gradient(90deg, var(--slate), var(--teal)); }

strong, b { font-weight: 700; }
.nowrap { white-space: nowrap; }
.num { font-family: var(--font-mono); font-variant-numeric: tabular-nums; font-feature-settings: "tnum"; }

/* Ссылка в тексте — подчёркивание акцентом, без смены цвета текста */
a.inline {
	border-bottom: 1px solid var(--accent-soft);
	transition: border-color .15s ease, color .15s ease;
}
a.inline:hover { border-bottom-color: var(--accent); color: var(--accent-dk); }

ul, ol { margin: 0 0 17px; padding-left: 20px; }
li { margin-bottom: 8px; }
.entry-content ul { list-style: none; padding-left: 0; }
.entry-content ul li { position: relative; padding-left: 24px; }
.entry-content ul li::before {
	content: "";
	position: absolute;
	left: 2px; top: .62em;
	width: 8px; height: 8px;
	border-radius: 2px;
	background: var(--accent);
}

/* ── Градиентная нить: разделитель секций ────────────────── */
.rule {
	height: 2px;
	border: 0;
	margin: 0;
	background: linear-gradient(90deg, var(--accent) 0%, var(--teal) 46%, rgba(94, 176, 183, 0) 100%);
}

/* ── Кнопки ──────────────────────────────────────────────── */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	font-family: var(--font-display);
	font-weight: 700;
	font-size: .95rem;
	line-height: 1;
	padding: 14px 24px;
	border-radius: var(--radius-sm);
	border: 1px solid transparent;
	background: var(--surface);
	color: var(--ink);
	cursor: pointer;
	white-space: nowrap;
	transition: background .16s ease, border-color .16s ease, color .16s ease;
}
.btn--go { background: var(--accent); color: #fff; }
.btn--go:hover { background: var(--accent-dk); }
.btn--go:active { background: var(--accent-dp); }
.btn--ghost { background: transparent; border-color: var(--line); color: var(--ink); }
.btn--ghost:hover { border-color: var(--accent); color: var(--accent-dk); }
.btn--light { background: #fff; border-color: var(--line); }
.btn--light:hover { border-color: var(--accent); color: var(--accent-dk); }
.btn--lg { padding: 16px 30px; font-size: 1rem; }
.btn--sm { padding: 10px 16px; font-size: .85rem; }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }

/* ── Шапка ───────────────────────────────────────────────── */
.site-header {
	position: sticky;
	top: 0;
	z-index: 60;
	background: rgba(255, 255, 255, .95);
	backdrop-filter: saturate(160%) blur(8px);
	border-bottom: 1px solid var(--line);
}
.site-header__inner {
	display: flex;
	align-items: center;
	gap: 16px;
	min-height: var(--header-h);
}
.logo { display: inline-flex; align-items: center; gap: 9px; flex-shrink: 0; }
.logo__icon {
	width: 30px; height: 30px;
	border-radius: 8px;
	background: linear-gradient(140deg, var(--accent), var(--accent-dk));
	display: grid; place-items: center;
	flex-shrink: 0;
}
.logo__icon svg { width: 17px; height: 17px; }
.logo__text {
	font-family: var(--font-display);
	font-size: 1.08rem;
	font-weight: 700;
	letter-spacing: -0.01em;
}
.logo__text span { color: var(--dim); font-weight: 400; }

.nav { display: flex; gap: 18px; margin-left: 18px; }
.nav a {
	font-size: .92rem;
	padding: 4px 0;
	color: var(--ink-2);
	border-bottom: 2px solid transparent;
	transition: color .15s ease, border-color .15s ease;
}
.nav a:hover { color: var(--accent-dk); border-bottom-color: var(--accent); }

.header-cta { display: flex; align-items: center; gap: 9px; margin-left: auto; }
.header-cta__short { display: none; }

.burger {
	display: none;
	width: 40px; height: 40px;
	border: 1px solid var(--line);
	border-radius: var(--radius-sm);
	background: #fff;
	cursor: pointer;
	padding: 8px;
	color: var(--ink);
}
.burger svg { width: 22px; height: 22px; }

.mobile-nav { display: none; border-top: 1px solid var(--line); background: #fff; }
.mobile-nav.open { display: block; }
.mobile-nav .wrap { display: flex; flex-direction: column; padding-top: 4px; padding-bottom: 12px; }
.mobile-nav a { padding: 11px 0; border-bottom: 1px solid var(--line-soft); color: var(--ink-2); }
.mobile-nav a:last-child { border-bottom: 0; }

/* ── Секции: полосы во всю ширину вразбивку ──────────────── */
main { display: block; }
.section { padding: 62px 0; }
.section--tight { padding: 42px 0; }
.section--band { background: var(--surface); }
.section--tint { background: var(--tint); }
.section--tint2 { background: var(--tint-2); }
.section--slate { background: var(--slate-dk); color: #fff; }
.section--slate h2, .section--slate h3 { color: #fff; }
.section--slate .lead { color: #cfcfe0; }
.section--slate .eyebrow { color: #a9d68b; }
.section--slate .card { background: rgba(255, 255, 255, .06); }
.section--slate .card p { color: #cfcfe0; }

.section__head { max-width: 720px; margin-bottom: 30px; }
.section__head h2 { margin-top: 0; }
.section__head .lead { margin-bottom: 0; }

/* ── Первый экран: текст слева, панель подключения справа ── */
.hero {
	padding: 80px 0;
	position: relative;
	background-image:
		linear-gradient(90deg, rgba(255,255,255,.8) 0%, rgba(255,255,255,.7) 40%, rgba(255,255,255,.55) 62%, rgba(255,255,255,.15) 82%),
  url("images/bg.jpg");
	background-size: cover;
	background-position: center 30%;
	background-repeat: no-repeat;
}
@media (max-width: 760px) {
	.hero {
		background-image:
			linear-gradient(180deg, rgba(255,255,255,.97) 0%, rgba(255,255,255,.93) 55%, rgba(255,255,255,.75) 100%),
			url("images/bg.jpg");
		background-position: center 20%;
	}
}
.hero__grid {
	display: grid;
	grid-template-columns: 1.02fr .98fr;
	gap: 40px;
	align-items: start;
}
.hero h1 { margin-bottom: 16px; }
.hero .lead { font-size: 1.15rem; }
.hero__note {
	margin-top: 16px;
	font-family: var(--font-mono);
	font-size: .76rem;
	color: var(--dim);
	letter-spacing: .02em;
}

/* Панель подключения — витрина вместо картинки */
.panel {
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: #fff;
	overflow: hidden;
}
.panel__head {
	display: flex;
	align-items: center;
	gap: 9px;
	padding: 12px 16px;
	background: var(--slate-dk);
	color: #fff;
	font-family: var(--font-mono);
	font-size: .78rem;
	letter-spacing: .06em;
	text-transform: uppercase;
}
.panel__dot {
	width: 8px; height: 8px;
	border-radius: 50%;
	background: var(--accent);
	box-shadow: 0 0 0 3px rgba(116, 163, 82, .28);
	flex-shrink: 0;
}
.panel__row {
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 12px;
	align-items: center;
	padding: 11px 16px;
	border-bottom: 1px solid var(--line-soft);
}
.panel__row:last-child { border-bottom: 0; }
.panel__row span { color: var(--muted); font-size: .93rem; }
.panel__row b {
	font-family: var(--font-mono);
	font-size: .95rem;
	font-weight: 600;
	font-variant-numeric: tabular-nums;
}
.panel__row--hi { background: var(--tint); }
.panel__row--hi b { color: var(--accent-dk); }
.panel__foot {
	padding: 12px 16px;
	background: var(--surface);
	font-size: .82rem;
	color: var(--muted);
}

/* ── Показания: моноширинные цифры в строку ──────────────── */
.readouts {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1px;
	background: var(--line);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	overflow: hidden;
}
.readout { background: #fff; padding: 20px 18px; }
.readout__value {
	font-family: var(--font-mono);
	font-size: 1.72rem;
	font-weight: 600;
	line-height: 1;
	letter-spacing: -0.03em;
	font-variant-numeric: tabular-nums;
	margin-bottom: 7px;
	color: var(--accent-dk);
}
.readout--orange .readout__value { color: var(--orange); }
.readout--teal .readout__value { color: #3f8f96; }
.readout--slate .readout__value { color: var(--slate); }
.readout__label { font-size: .85rem; color: var(--muted); line-height: 1.4; }

/* ── Карточки: без рамки, на подложке ────────────────────── */
.grid { display: grid; gap: 16px; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

.card {
	background: var(--tint);
	border: 1px solid transparent;
	border-radius: var(--radius);
	padding: 22px;
	transition: border-color .16s ease, background .16s ease;
}
.card--hover:hover { border-color: var(--accent); background: #fff; }
.card--plain { background: #fff; border-color: var(--line); }
.card--teal { background: var(--tint-2); }
.card--warm { background: var(--tint-warm); }
.card h3 { margin-top: 0; }
.card p:last-child { margin-bottom: 0; }
.card__icon {
	width: 38px; height: 38px;
	border-radius: 9px;
	background: #fff;
	display: grid; place-items: center;
	margin-bottom: 14px;
	border: 1px solid var(--line);
}
.card__icon svg { width: 19px; height: 19px; color: var(--accent-dk); stroke: currentColor; }
.card--teal .card__icon svg { color: #3f8f96; }
.card--warm .card__icon svg { color: var(--orange); }
.card__idx {
	display: block;
	font-family: var(--font-mono);
	font-size: .78rem;
	color: var(--dim);
	margin-bottom: 8px;
}

/* ── Шаги ────────────────────────────────────────────────── */
.steps { counter-reset: st; display: grid; gap: 14px; }
.step {
	display: grid;
	grid-template-columns: 40px 1fr;
	gap: 16px;
	padding: 18px 20px;
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius);
}
.step__num {
	font-family: var(--font-mono);
	font-size: 1.05rem;
	font-weight: 600;
	color: var(--accent-dk);
	background: var(--tint);
	border-radius: 8px;
	display: grid;
	place-items: center;
	height: 34px;
}
.step h3 { margin: 0 0 6px; font-size: 1.05rem; }
.step p:last-child { margin-bottom: 0; }

/* ── Таблицы ─────────────────────────────────────────────── */
.table-wrap {
	overflow-x: auto;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	margin-bottom: 18px;
}
table.data { width: 100%; border-collapse: collapse; min-width: 560px; background: #fff; }
table.data th, table.data td { padding: 12px 15px; text-align: left; border-bottom: 1px solid var(--line-soft); }
table.data th {
	background: var(--surface);
	font-family: var(--font-display);
	font-weight: 700;
	font-size: .85rem;
	letter-spacing: .02em;
}
table.data tr:last-child td { border-bottom: 0; }
table.data td { font-size: .95rem; }
table.data .num, table.data td.num { font-family: var(--font-mono); font-variant-numeric: tabular-nums; }
table.data tr.row-hi td { background: var(--tint); }
.table-note { font-size: .84rem; color: var(--dim); margin: -6px 0 22px; }

/* ── Тарифы ──────────────────────────────────────────────── */
.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.plan {
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 24px;
	background: #fff;
	display: flex;
	flex-direction: column;
	transition: border-color .16s ease;
}
.plan:hover { border-color: var(--accent); }
.plan--best { border-color: var(--accent); background: var(--tint); }
.plan__tag {
	display: inline-block;
	font-family: var(--font-mono);
	font-size: .7rem;
	letter-spacing: .08em;
	text-transform: uppercase;
	color: #fff;
	background: var(--accent);
	padding: 3px 8px;
	border-radius: 4px;
	margin-bottom: 10px;
}
.plan__name { font-family: var(--font-display); font-weight: 700; font-size: 1.16rem; margin-bottom: 4px; }
.plan__price {
	font-family: var(--font-mono);
	font-size: 2rem;
	font-weight: 600;
	line-height: 1.1;
	letter-spacing: -0.03em;
	font-variant-numeric: tabular-nums;
	margin: 10px 0 2px;
}
.plan__per { font-size: .86rem; color: var(--muted); margin-bottom: 14px; }
.plan__list { list-style: none; padding: 0; margin: 0 0 18px; font-size: .93rem; }
.plan__list li { position: relative; padding-left: 22px; margin-bottom: 7px; color: var(--muted); }
.plan__list li::before {
	content: "";
	position: absolute; left: 2px; top: .58em;
	width: 7px; height: 7px; border-radius: 2px;
	background: var(--accent);
}
.plan__list li.off { color: var(--dim); }
.plan__list li.off::before { background: var(--line); }
.plan .btn { margin-top: auto; width: 100%; }

/* ── Плюсы и минусы ──────────────────────────────────────── */
.pros-cons { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.pc {
	border-radius: var(--radius);
	padding: 22px;
}
.pc--plus { background: var(--tint); }
.pc--minus { background: var(--tint-warm); }
.pc h3 { margin: 0 0 12px; font-size: 1.05rem; }
/* Селекторы намеренно включают ul: внутри .entry-content правило
   `.entry-content ul li::before` имеет ту же специфичность, и без ul
   оно перебивает эти маркеры — «минусы» становятся зелёными.
   С ul специфичность равная, а объявлены эти правила ниже по файлу. */
.pc ul { list-style: none; padding: 0; margin: 0; }
.pc ul li { position: relative; padding-left: 24px; margin-bottom: 9px; font-size: .95rem; }
.pc ul li::before {
	content: "";
	position: absolute; left: 0; top: .5em;
	width: 10px; height: 10px; border-radius: 3px;
}
.pc--plus ul li::before { background: var(--accent); }
.pc--minus ul li::before { background: var(--orange); }

/* ── TL;DR ───────────────────────────────────────────────── */
.tldr {
	background: var(--tint);
	border-left: 3px solid var(--accent);
	border-radius: 0 var(--radius) var(--radius) 0;
	padding: 17px 20px;
	margin: 20px 0 8px;
}
.tldr p { margin: 0; }
.tldr p + p { margin-top: 9px; }

/* ── Хлебные крошки и шапка страницы ─────────────────────── */
.page-head { padding: 28px; }
.crumbs {
	font-family: var(--font-mono);
	font-size: .76rem;
	color: var(--dim);
	margin-bottom: 16px;
}
.crumbs a:hover { color: var(--accent-dk); }
.crumbs__sep { margin: 0 7px; }

/* ── FAQ-аккордеон ───────────────────────────────────────── */
.faq { border-top: 1px solid var(--line); }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__question {
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 14px;
	background: none;
	border: 0;
	padding: 17px 0;
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 1.02rem;
	text-align: left;
	color: var(--ink);
	cursor: pointer;
}
.faq__question:hover { color: var(--accent-dk); }
.faq__mark {
	flex-shrink: 0;
	width: 22px; height: 22px;
	position: relative;
}
.faq__mark::before, .faq__mark::after {
	content: "";
	position: absolute;
	background: var(--accent);
	border-radius: 2px;
	transition: transform .2s ease;
}
.faq__mark::before { left: 0; top: 10px; width: 22px; height: 2px; }
.faq__mark::after { left: 10px; top: 0; width: 2px; height: 22px; }
.faq__item.open .faq__mark::after { transform: scaleY(0); }
/* Раскрытие через grid-template-rows — дешевле для браузера, чем max-height */
.faq__body { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .24s ease; }
.faq__item.open .faq__body { grid-template-rows: 1fr; }
.faq__body > div { overflow: hidden; }
.faq__body p { margin: 0 0 15px; color: var(--muted); }

/* ── Рейтинг звёздами: процентная заливка ────────────────── */
.stars { display: inline-flex; position: relative; line-height: 0; vertical-align: middle; }
.stars__row { display: flex; gap: 2px; width: max-content; flex: 0 0 auto; }
.stars svg { width: 17px; height: 17px; flex: 0 0 auto; fill: currentColor; stroke: none; }
.stars__bg { color: var(--line); }
/* Не inset:0 — он задаёт и right, из-за чего инлайновая ширина переопределяется */
.stars__fill {
	position: absolute;
	top: 0; left: 0; bottom: 0;
	overflow: hidden;
	color: var(--orange);
}

.score {
	display: flex;
	align-items: center;
	gap: 18px;
	background: var(--tint);
	border-radius: var(--radius);
	padding: 22px;
	margin-bottom: 26px;
}
.score__value {
	font-family: var(--font-mono);
	font-size: 2.4rem;
	font-weight: 600;
	line-height: 1;
	color: var(--accent-dk);
	font-variant-numeric: tabular-nums;
}
.score__meta { font-size: .9rem; color: var(--muted); }

/* ── Отзывы ──────────────────────────────────────────────── */
.reviews { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.review {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 20px;
}
.review__top { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 4px; }
.review__name { font-family: var(--font-display); font-weight: 700; }
.review__date { font-family: var(--font-mono); font-size: .75rem; color: var(--dim); }
.review__text { font-size: .95rem; color: var(--muted); margin: 10px 0 0; }

/* ── Полоса призыва ──────────────────────────────────────── */
.cta-band {
	background: var(--slate-dk);
	color: #fff;
	border-radius: var(--radius);
	padding: 28px;
	display: flex;
	align-items: center;
	gap: 22px;
	flex-wrap: wrap;
}
.cta-band h2 { color: #fff; margin: 0 0 6px; font-size: 1.4rem; }
.cta-band p { color: #cfcfe0; margin: 0; font-size: .95rem; }
.cta-band__actions { margin-left: auto; display: flex; gap: 10px; flex-wrap: wrap; }

/* ── Читайте также ───────────────────────────────────────── */
.related { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.related a {
	display: block;
	padding: 15px 17px;
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius-sm);
	font-size: .93rem;
	transition: border-color .16s ease, color .16s ease;
}
.related a:hover { border-color: var(--accent); color: var(--accent-dk); }
.related span { display: block; font-family: var(--font-mono); font-size: .7rem; color: var(--dim); margin-bottom: 4px; }

/* ── Подвал ──────────────────────────────────────────────── */
.site-footer { background: var(--surface); border-top: 1px solid var(--line); padding: 46px 0 26px; margin-top: 10px; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 30px; margin-bottom: 28px; }
.footer-col h4 { font-size: .82rem; text-transform: uppercase; letter-spacing: .07em; color: var(--dim); margin: 0 0 12px; font-family: var(--font-mono); font-weight: 500; }
.footer-col a { display: block; padding: 5px 0; font-size: .93rem; color: var(--ink-2); }
.footer-col a:hover { color: var(--accent-dk); }
.footer-about p { font-size: .9rem; color: var(--muted); margin: 12px 0 0; }
.footer-bottom {
	border-top: 1px solid var(--line);
	padding-top: 18px;
	font-size: .82rem;
	color: var(--dim);
}
.footer-bottom p { margin: 0 0 8px; }

/* ── Служебное ───────────────────────────────────────────── */
.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;
}
.entry-content > *:first-child { margin-top: 0; }

/* ══════════════════════════════════════════════════════════
   Адаптив. Проверяется кодом на 1280 / 390 / 360.
   ══════════════════════════════════════════════════════════ */
@media (max-width: 1000px) {
	.nav { display: none; }
	.burger { display: grid; place-items: center; }
	.header-cta { margin-left: auto; }
	.hero__grid { grid-template-columns: 1fr; gap: 28px; }
	.readouts { grid-template-columns: repeat(2, 1fr); }
	.plans { grid-template-columns: 1fr; }
	.footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
	body { font-size: 16px; }
	.section { padding: 46px 0; }
	.hero { padding: 38px 0 34px; }
	.grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
	.pros-cons { grid-template-columns: 1fr; }
	.reviews { grid-template-columns: 1fr; }
	.related { grid-template-columns: 1fr; }
	.footer-top { grid-template-columns: 1fr; gap: 22px; }
	.cta-band { flex-direction: column; align-items: flex-start; }
	.cta-band__actions { margin-left: 0; width: 100%; }
	h2 { margin-top: 36px; }
}

@media (max-width: 560px) {
	.readouts { grid-template-columns: 1fr; }
	.btn-row .btn { flex: 1 1 100%; }
	.cta-band__actions .btn { flex: 1 1 100%; }
	.step { grid-template-columns: 1fr; gap: 10px; }
	.step__num { width: 34px; }
	.score { flex-wrap: wrap; gap: 12px; }
}

@media (max-width: 430px) {
	.header-cta__full { display: none; }
	.header-cta__short { display: inline; }
	.header-cta .btn { padding: 10px 13px; font-size: .84rem; }
}

@media (max-width: 360px) {
	.wrap { padding: 0 14px; }
	.logo__text { display: none; }
}

/* Мобильные таблицы — карточки по строкам, без прокрутки вбок */
@media (max-width: 640px) {
	.table-wrap { overflow-x: visible; border: 0; border-radius: 0; }
	table.data { min-width: 0; background: transparent; }
	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 {
		background: #fff;
		border: 1px solid var(--line);
		border-radius: var(--radius);
		margin-bottom: 11px;
		overflow: hidden;
	}
	table.data tr:last-child { margin-bottom: 0; }
	table.data tr.row-hi { border-color: var(--accent); }
	table.data td { padding: 10px 14px 10px 45%; position: relative; min-height: 20px; border-bottom: 1px solid var(--line-soft); }
	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-family: var(--font-mono);
		font-size: .74rem;
		color: var(--dim);
	}
}

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