/*
Theme Name: Higgsfield Ru
Theme URI: https://higgsfield.icu/
Description: Тема сайта Higgsfield Ru — платформа генерации видео и изображений. Палитра снята с официального сайта higgsfield.ai.
Author: Higgsfield Ru
Version: 1.0.0
Text Domain: higgsfield-ru
*/

/* ══════════════════════════════════════════════════════════
   Токены — сняты с CSS офсайта higgsfield.ai
   ══════════════════════════════════════════════════════════ */
:root {
	--lime: #d1fe17;
	--lime-dim: #b8e00d;
	--lime-a1: rgba(209, 254, 23, .24);
	--lime-a2: rgba(209, 254, 23, .08);
	--on-lime: #131517;

	--pink: #ff005b;
	--pink-a1: rgba(255, 0, 91, .24);
	--cyan: #9ce6f3;

	--bg: #0f1113;
	--bg-deep: #0b0b0b;
	--section: #18191c;
	--card: #1c1e20;
	--card-hi: #23262a;

	--text: #f4f6f8;
	--muted: rgba(255, 255, 255, .70);
	--faint: rgba(255, 255, 255, .46);

	--border: rgba(255, 255, 255, .10);
	--border-hi: rgba(255, 255, 255, .18);

	--ok: #53c546;
	--warn: #ffbe4c;
	--err: #e72930;

	--radius: 14px;
	--radius-lg: 22px;
	--wrap: 1180px;

	--h-font: 'Space Grotesk', 'Inter', system-ui, sans-serif;
	--b-font: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
}

/* ══════════════════════════════════════════════════════════
   База
   ══════════════════════════════════════════════════════════ */
*, *::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(--b-font);
	font-size: 17px;
	line-height: 1.65;
	-webkit-font-smoothing: antialiased;
}

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

a { color: var(--lime); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3, h4 {
	font-family: var(--h-font);
	font-weight: 700;
	line-height: 1.15;
	letter-spacing: -.02em;
	margin: 0 0 .5em;
}

h1 { font-size: clamp(2rem, 5.2vw, 3.4rem); }
h2 { font-size: clamp(1.5rem, 3.4vw, 2.25rem); margin-top: 0; }
h3 { font-size: clamp(1.12rem, 2.2vw, 1.35rem); }

p { margin: 0 0 1.1em; }
ul, ol { margin: 0 0 1.2em; padding-left: 1.3em; }
li { margin-bottom: .5em; }

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

.section { padding: 72px 0; }
.section--tint { background: var(--section); }
.section__head { max-width: 760px; margin-bottom: 40px; }
.section__head p { color: var(--muted); margin-bottom: 0; }

.lead { font-size: 1.14rem; color: var(--muted); }

.muted { color: var(--muted); }
.faint { color: var(--faint); font-size: .9rem; }

.eyebrow {
	display: inline-block;
	font-family: var(--h-font);
	font-size: .78rem;
	font-weight: 600;
	letter-spacing: .13em;
	text-transform: uppercase;
	color: var(--lime);
	margin-bottom: 14px;
}

/* ══════════════════════════════════════════════════════════
   Кнопки
   ══════════════════════════════════════════════════════════ */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 12px 22px;
	border: 1px solid transparent;
	border-radius: 999px;
	font-family: var(--h-font);
	font-weight: 600;
	font-size: .96rem;
	line-height: 1;
	cursor: pointer;
	transition: transform .16s ease, background .16s ease, border-color .16s ease;
	text-decoration: none;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }

.btn--accent { background: var(--lime); color: var(--on-lime); }
.btn--accent:hover { background: #dcff45; }

.btn--ghost { background: transparent; color: var(--text); border-color: var(--border-hi); }
.btn--ghost:hover { background: rgba(255, 255, 255, .06); border-color: var(--lime); }

.btn--lg { padding: 15px 30px; font-size: 1.02rem; }
.btn--sm { padding: 9px 16px; font-size: .86rem; }

.btn svg { width: 17px; height: 17px; }

/* ══════════════════════════════════════════════════════════
   Хедер
   ══════════════════════════════════════════════════════════ */
.site-header {
	position: sticky;
	top: 0;
	z-index: 60;
	background: rgba(15, 17, 19, .82);
	backdrop-filter: blur(14px);
	border-bottom: 1px solid var(--border);
	transition: box-shadow .2s ease;
}
.site-header.scrolled { box-shadow: 0 10px 34px rgba(0, 0, 0, .5); }

.site-header__inner {
	display: flex;
	align-items: center;
	gap: 18px;
	height: 68px;
}

.site-logo { display: inline-flex; align-items: center; gap: 10px; color: var(--text); }
.site-logo:hover { text-decoration: none; }
.site-logo__icon {
	width: 34px;
	height: 34px;
	border-radius: 10px;
	background: var(--lime);
	display: grid;
	place-items: center;
	flex-shrink: 0;
}
.site-logo__icon svg { width: 20px; height: 20px; }
.site-logo__text {
	font-family: var(--h-font);
	font-weight: 700;
	font-size: 1.12rem;
	letter-spacing: -.02em;
	white-space: nowrap;
}
.site-logo__text b { color: var(--lime); font-weight: 700; }

.nav { display: flex; align-items: center; gap: 22px; margin-left: auto; }
.nav a {
	color: var(--muted);
	font-size: .94rem;
	font-weight: 500;
	white-space: nowrap;
}
.nav a:hover, .nav a.is-active { color: var(--text); text-decoration: none; }

.header-cta { display: flex; align-items: center; gap: 10px; }
.header-cta__text-short { display: none; }

.burger {
	display: none;
	width: 42px;
	height: 42px;
	border: 1px solid var(--border-hi);
	border-radius: 11px;
	background: transparent;
	color: var(--text);
	cursor: pointer;
	padding: 0;
	place-items: center;
}
.burger svg { width: 20px; height: 20px; }

.mobile-nav {
	display: none;
	border-top: 1px solid var(--border);
	background: var(--bg);
	padding: 14px 0 22px;
}
.mobile-nav.open { display: block; }
.mobile-nav a {
	display: block;
	padding: 11px 0;
	color: var(--muted);
	font-size: 1rem;
	border-bottom: 1px solid var(--border);
}
.mobile-nav a:last-child { border-bottom: 0; }

/* ══════════════════════════════════════════════════════════
   Первый экран
   ══════════════════════════════════════════════════════════ */
.hero {
	position: relative;
	overflow: hidden;
	padding: 84px 0 78px;
	background:
		radial-gradient(900px 420px at 12% -8%, rgba(209, 254, 23, .16), transparent 62%),
		radial-gradient(760px 400px at 88% 4%, rgba(255, 0, 91, .14), transparent 60%),
		var(--bg-deep);
}
.hero__grid {
	display: grid;
	grid-template-columns: 1.15fr .85fr;
	gap: 52px;
	align-items: center;
}
.hero h1 { margin-bottom: 20px; }
.hero h1 em { font-style: normal; color: var(--lime); }
.hero__lead { font-size: 1.16rem; color: var(--muted); max-width: 56ch; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 28px 0 22px; }

.hero__meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px 22px;
	font-size: .92rem;
	color: var(--faint);
}
.hero__meta strong { color: var(--text); font-weight: 600; }

/* Правая колонка первого экрана: ролик, под ним блок цифр */
.hero__side { display: grid; gap: 18px; align-content: center; }
.hero__video {
	position: relative;
	margin: 0;
            /* исходник 1152×768 */
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	overflow: hidden;
	background: #000000;;
}
.hero__video video {
	 inset: 0;
width: 500px;
    margin: 0 auto;

	object-fit: cover; display: block;
}

.hero__stats {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 14px;
}
.stat {
	background: linear-gradient(160deg, var(--card-hi), var(--card));
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	padding: 22px 20px;
}
.stat__num {
	font-family: var(--h-font);
	font-size: 1.85rem;
	font-weight: 700;
	color: var(--lime);
	line-height: 1;
	margin-bottom: 8px;
}
.stat__label { font-size: .88rem; color: var(--muted); line-height: 1.4; }
.stat:nth-child(2) .stat__num { color: var(--cyan); }
.stat:nth-child(3) .stat__num { color: var(--pink); }

/* ══════════════════════════════════════════════════════════
   Карточки и сетки
   ══════════════════════════════════════════════════════════ */
.grid { display: grid; gap: 18px; }
.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(--card);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	padding: 26px 24px;
	transition: border-color .18s ease, background .18s ease;
}
.card:hover { border-color: var(--border-hi); background: var(--card-hi); }
.card h3 { margin-bottom: 10px; }
.card p:last-child { margin-bottom: 0; }

.card__icon {
	width: 44px;
	height: 44px;
	border-radius: 13px;
	background: var(--lime-a2);
	border: 1px solid var(--lime-a1);
	display: grid;
	place-items: center;
	margin-bottom: 16px;
}
.card__icon svg { width: 21px; height: 21px; color: var(--lime); stroke: currentColor; }

.card--pink .card__icon { background: rgba(255, 0, 91, .10); border-color: var(--pink-a1); }
.card--pink .card__icon svg { color: var(--pink); }
.card--cyan .card__icon { background: rgba(156, 230, 243, .10); border-color: rgba(156, 230, 243, .24); }
.card--cyan .card__icon svg { color: var(--cyan); }

.tag {
	display: inline-block;
	padding: 4px 11px;
	border-radius: 999px;
	background: var(--lime-a2);
	border: 1px solid var(--lime-a1);
	color: var(--lime);
	font-size: .78rem;
	font-weight: 600;
	font-family: var(--h-font);
	margin: 0 6px 6px 0;
}
.tag--muted { background: rgba(255, 255, 255, .05); border-color: var(--border); color: var(--muted); }
.tag--pink { background: rgba(255, 0, 91, .10); border-color: var(--pink-a1); color: var(--pink); }

/* ══════════════════════════════════════════════════════════
   Таблицы — карточки на мобильном
   ══════════════════════════════════════════════════════════ */
.table-wrap {
	overflow-x: auto;
	margin: 0 0 22px;
	border: 1px solid var(--border);
	border-radius: var(--radius);
}
table.data {
	width: 100%;
	border-collapse: collapse;
	min-width: 560px;
	font-size: .95rem;
}
table.data th, table.data td {
	text-align: left;
	padding: 13px 16px;
	border-bottom: 1px solid var(--border);
	vertical-align: top;
}
table.data thead th {
	background: var(--card-hi);
	font-family: var(--h-font);
	font-weight: 600;
	font-size: .88rem;
	color: var(--text);
	white-space: nowrap;
}
table.data tbody tr:last-child td { border-bottom: 0; }
table.data tbody tr:hover { background: rgba(255, 255, 255, .025); }
table.data td strong { color: var(--text); }
.num { font-variant-numeric: tabular-nums; white-space: nowrap; }
.yes { color: var(--ok); font-weight: 600; }
.no { color: var(--faint); }

@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(--border);
		border-radius: var(--radius);
		margin-bottom: 12px;
		overflow: hidden;
		background: var(--card);
	}
	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: 600; font-size: .82rem; color: var(--faint);
	}
}

/* ══════════════════════════════════════════════════════════
   Тарифы
   ══════════════════════════════════════════════════════════ */
.plans { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; align-items: start; }

.plan {
	background: var(--card);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	padding: 26px 22px;
	position: relative;
	height: 100%;
}
.plan--best { border-color: var(--lime); background: linear-gradient(180deg, rgba(209, 254, 23, .07), var(--card) 42%); }
.plan__badge {
	position: absolute;
	top: -11px;
	left: 22px;
	background: var(--lime);
	color: var(--on-lime);
	font-family: var(--h-font);
	font-size: .74rem;
	font-weight: 700;
	padding: 4px 12px;
	border-radius: 999px;
	letter-spacing: .03em;
}
.plan__name { font-family: var(--h-font); font-size: 1.22rem; font-weight: 700; margin-bottom: 4px; }
.plan__credits { color: var(--lime); font-size: .92rem; font-weight: 600; margin-bottom: 16px; }
.plan__price { font-family: var(--h-font); font-size: 2.15rem; font-weight: 700; line-height: 1; }
.plan__price span { font-size: 1rem; font-weight: 500; color: var(--faint); }
.plan__rub { font-size: .88rem; color: var(--faint); margin: 6px 0 4px; }
.plan__year { font-size: .86rem; color: var(--muted); margin-bottom: 18px; min-height: 2.6em; }
.plan__year b { color: var(--lime); }
.plan ul { list-style: none; padding: 0; margin: 18px 0 20px; font-size: .92rem; }
.plan li { display: flex; gap: 9px; align-items: flex-start; margin-bottom: 9px; color: var(--muted); }
.plan li svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 3px; color: var(--lime); }
.plan li.off { color: var(--faint); }
.plan li.off svg { color: var(--faint); }
.plan .btn { width: 100%; }

/* ══════════════════════════════════════════════════════════
   Планировщик тарифа
   ══════════════════════════════════════════════════════════ */
.planner {
	background: linear-gradient(165deg, var(--card-hi), var(--card));
	border: 1px solid var(--border-hi);
	border-radius: var(--radius-lg);
	padding: 30px 26px;
}
.planner__grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 34px; }
.planner__row { margin-bottom: 20px; }
.planner__row:last-child { margin-bottom: 0; }
.planner__label {
	display: block;
	font-family: var(--h-font);
	font-weight: 600;
	font-size: .92rem;
	margin-bottom: 9px;
}
.planner__ctl { display: grid; grid-template-columns: 1fr 108px; gap: 10px; }

.planner select, .planner input[type="number"] {
	width: 100%;
	padding: 11px 13px;
	background: var(--bg);
	border: 1px solid var(--border-hi);
	border-radius: 11px;
	color: var(--text);
	font-family: var(--b-font);
	font-size: .94rem;
}
.planner select:focus, .planner input:focus { outline: 2px solid var(--lime); outline-offset: 1px; }
.planner option { background: var(--bg); color: var(--text); }

.planner__out {
	background: var(--bg-deep);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 24px 22px;
	position: sticky;
	top: 88px;
}
.planner__credits {
	font-family: var(--h-font);
	font-size: 2.5rem;
	font-weight: 700;
	color: var(--lime);
	line-height: 1;
}
.planner__unit { font-size: .92rem; color: var(--faint); margin-bottom: 20px; }
.planner__pick {
	border-top: 1px solid var(--border);
	padding-top: 18px;
	margin-top: 4px;
}
.planner__pick-name { font-family: var(--h-font); font-size: 1.35rem; font-weight: 700; margin-bottom: 4px; }
.planner__pick-price { color: var(--muted); font-size: .95rem; margin-bottom: 4px; }
.planner__note { font-size: .85rem; color: var(--faint); margin: 14px 0 18px; }
.planner__breakdown { font-size: .88rem; color: var(--muted); margin-top: 14px; }
.planner__breakdown li { margin-bottom: 5px; }

/* ══════════════════════════════════════════════════════════
   Шаги
   ══════════════════════════════════════════════════════════ */
.steps { counter-reset: step; display: grid; gap: 16px; }
.step {
	position: relative;
	background: var(--card);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	padding: 24px 24px 24px 78px;
	counter-increment: step;
}
.step::before {
	content: counter(step);
	position: absolute;
	left: 24px;
	top: 24px;
	width: 38px;
	height: 38px;
	border-radius: 12px;
	background: var(--lime);
	color: var(--on-lime);
	font-family: var(--h-font);
	font-weight: 700;
	font-size: 1.05rem;
	display: grid;
	place-items: center;
}
.step h3 { margin-bottom: 8px; }
.step p:last-child { margin-bottom: 0; }

/* ══════════════════════════════════════════════════════════
   FAQ
   ══════════════════════════════════════════════════════════ */
.faq { display: grid; gap: 12px; }
.faq__item {
	background: var(--card);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	overflow: hidden;
}
.faq__item.open { border-color: var(--lime-a1); }
.faq__question {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 19px 22px;
	background: transparent;
	border: 0;
	color: var(--text);
	font-family: var(--h-font);
	font-weight: 600;
	font-size: 1.02rem;
	text-align: left;
	cursor: pointer;
	line-height: 1.35;
}
.faq__question svg { width: 19px; height: 19px; flex-shrink: 0; color: var(--lime); transition: transform .2s ease; }
.faq__item.open .faq__question svg { transform: rotate(45deg); }
.faq__answer { display: none; padding: 0 22px 20px; color: var(--muted); }
.faq__item.open .faq__answer { display: block; }
.faq__answer p:last-child { margin-bottom: 0; }

/* ══════════════════════════════════════════════════════════
   Отзывы и звёзды
   ══════════════════════════════════════════════════════════ */
.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(--faint); opacity: .38; }
.star-rating__fg {
	position: absolute;
	top: 0; left: 0; bottom: 0;
	overflow: hidden;
	white-space: nowrap;
	color: var(--lime);
}
.star-rating svg {
	width: var(--star-size, 18px);
	height: var(--star-size, 18px);
	flex-shrink: 0;
	fill: currentColor;
	stroke: currentColor;
}

.score {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 18px;
	background: var(--card);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	padding: 18px;
	margin-bottom: 30px;
}
.score__num { font-family: var(--h-font); font-size: 3.2rem; font-weight: 700; color: var(--lime); line-height: 1; }
.score__of { font-size: 1rem; color: var(--faint); }

.bars { flex: 1 1 260px; min-width: 240px; }
.bar { display: flex; align-items: center; gap: 10px; font-size: .86rem; margin-bottom: 7px; color: var(--muted); }
.bar__label { width: 108px; flex-shrink: 0; }
.bar__track { flex: 1; height: 7px; background: rgba(255, 255, 255, .09); border-radius: 999px; overflow: hidden; }
/* display:block обязателен: fill — это span внутри span, а к строчному
   элементу ширина и высота не применяются, и полоса остаётся пустой. */
.bar__fill { display: block; height: 100%; background: var(--lime); border-radius: 999px; }
.bar__val { width: 30px; text-align: right; font-variant-numeric: tabular-nums; color: var(--text); }

.review {
	background: var(--card);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	padding: 24px;
}
.review__top { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; flex-wrap: wrap; }
.review__avatar {
	width: 42px; height: 42px; border-radius: 999px;
	background: linear-gradient(140deg, var(--lime), var(--cyan));
	color: var(--on-lime);
	display: grid; place-items: center;
	font-family: var(--h-font); font-weight: 700; font-size: 1rem;
	flex-shrink: 0;
}
.review__who { font-family: var(--h-font); font-weight: 600; }
.review__date { font-size: .84rem; color: var(--faint); }
.review h3 { font-size: 1.05rem; margin-bottom: 8px; }
.review p { color: var(--muted); margin-bottom: 0; font-size: .96rem; }

/* ══════════════════════════════════════════════════════════
   Плашки, цитаты, списки
   ══════════════════════════════════════════════════════════ */
.note {
	background: var(--lime-a2);
	border: 1px solid var(--lime-a1);
	border-left: 3px solid var(--lime);
	border-radius: var(--radius);
	padding: 18px 20px;
	margin: 0 0 22px;
	font-size: .96rem;
}
.note p:last-child { margin-bottom: 0; }
.note strong { color: var(--lime); }

.note--warn { background: rgba(255, 190, 76, .07); border-color: rgba(255, 190, 76, .22); border-left-color: var(--warn); }
.note--warn strong { color: var(--warn); }

.note--pink { background: rgba(255, 0, 91, .07); border-color: var(--pink-a1); border-left-color: var(--pink); }
.note--pink strong { color: var(--pink); }

.checklist { list-style: none; padding: 0; }
.checklist li { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 11px; }
.checklist li svg { width: 18px; height: 18px; flex-shrink: 0; margin-top: 4px; color: var(--lime); }

.tldr {
	background: var(--card);
	border: 1px solid var(--border-hi);
	border-radius: var(--radius-lg);
	padding: 22px 24px;
	margin: 0 0 34px;
}
.tldr strong { color: var(--lime); font-family: var(--h-font); }
.tldr p:last-child { margin-bottom: 0; }

/* ══════════════════════════════════════════════════════════
   Крошки, related, CTA-полоса
   ══════════════════════════════════════════════════════════ */
.crumbs { font-size: .87rem; color: var(--faint); padding: 20px 0 0; }
.crumbs a { color: var(--faint); }
.crumbs a:hover { color: var(--lime); }
.crumbs__sep { margin: 0 8px; opacity: .5; }

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

.related {
	background: var(--section);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	padding: 24px;
	margin: 44px 0 0;
}
.related__title { font-size: 1.1rem; margin-bottom: 14px; }
.related__list { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 10px; }
.related__list li { margin: 0; }
.related__list a {
	display: inline-block;
	padding: 8px 15px;
	border: 1px solid var(--border-hi);
	border-radius: 999px;
	color: var(--muted);
	font-size: .9rem;
}
.related__list a:hover { color: var(--lime); border-color: var(--lime); text-decoration: none; }

.cta-band {
	background:
		radial-gradient(620px 260px at 18% 0%, rgba(209, 254, 23, .16), transparent 62%),
		radial-gradient(520px 240px at 84% 100%, rgba(255, 0, 91, .13), transparent 60%),
		var(--section);
	border-top: 1px solid var(--border);
	border-bottom: 1px solid var(--border);
	padding: 54px 0;
	margin-top: 64px;
}
.cta-band__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 30px;
	flex-wrap: wrap;
}
.cta-band__title { margin-bottom: 8px; font-size: clamp(1.35rem, 3vw, 1.95rem); }
.cta-band__text { color: var(--muted); margin-bottom: 0; max-width: 60ch; }
.cta-band__actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ══════════════════════════════════════════════════════════
   Подвал
   ══════════════════════════════════════════════════════════ */
.site-footer {
	background: var(--bg-deep);
	border-top: 1px solid var(--border);
	padding: 52px 0 28px;
	font-size: .93rem;
}
.site-footer__grid {
	display: grid;
	grid-template-columns: 1.5fr 1fr 1fr;
	gap: 34px;
	margin-bottom: 34px;
}
.site-footer h4 {
	font-size: .82rem;
	letter-spacing: .11em;
	text-transform: uppercase;
	color: var(--faint);
	margin-bottom: 14px;
}
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: 9px; }
.site-footer a { color: var(--muted); }
.site-footer a:hover { color: var(--lime); }
.site-footer__about { color: var(--muted); max-width: 44ch; }

.site-footer__bottom {
	border-top: 1px solid var(--border);
	padding-top: 22px;
	display: flex;
	justify-content: space-between;
	gap: 18px;
	flex-wrap: wrap;
	color: var(--faint);
	font-size: .85rem;
}
.disclaimer { max-width: 78ch; }

/* ══════════════════════════════════════════════════════════
   Адаптив
   ══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
	.hero__grid { grid-template-columns: 1fr; gap: 40px; }
	.planner__grid { grid-template-columns: 1fr; gap: 26px; }
	.planner__out { position: static; }
	.plans { grid-template-columns: repeat(2, 1fr); }
	.grid--4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
	.nav { display: none; }
	.burger { display: grid; }
	.header-cta { margin-left: auto; }
	.section { padding: 56px 0; }
	.grid--3 { grid-template-columns: repeat(2, 1fr); }
	.site-footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 680px) {
	body { font-size: 16px; }
	.grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
	.plans { grid-template-columns: 1fr; }
	.hero { padding: 60px 0 54px; }
	.hero__stats { grid-template-columns: repeat(2, 1fr); }
	.step { padding: 22px 20px 22px 20px; }
	.step::before { position: static; margin-bottom: 12px; }
	.site-footer__grid { grid-template-columns: 1fr; gap: 26px; }
	.cta-band__actions { width: 100%; }
	.cta-band__actions .btn { flex: 1 1 auto; }
	.planner__ctl { grid-template-columns: 1fr 92px; }
}

@media (max-width: 480px) {
	.header-cta__text-full { display: none; }
	.header-cta__text-short { display: inline; }
	.header-cta .btn { padding: 10px 15px; font-size: .87rem; }
	.site-header__inner { gap: 10px; }
	.score__num { font-size: 2.6rem; }
	.bar__label { width: 92px; }
.hero__stats {
        grid-template-columns: repeat(1, 1fr);}
}

@media (max-width: 360px) {
	.site-logo__text { display: none; }
}
