/* ============================================================
   ООО «Агентство «Результат» — одностраничный сайт
   Дизайн: liquid glass, сине-жёлтая гамма, Apple-style
   ============================================================ */

/* ---------- Reset / базовые ---------- */
*,
*::before,
*::after {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

:root {
	/* Синяя палитра */
	--blue-950: #050d1f;
	--blue-900: #071634;
	--blue-800: #0a2350;
	--blue-700: #0f3573;
	--blue-500: #2f6bff;
	--blue-400: #4f8bff;
	--brand: #3c5dc3;

	/* Жёлтая палитра (акцент) */
	--yellow: #ffd60a;
	--yellow-deep: #f7b500;

	/* Нейтральные */
	--white: #ffffff;
	--text: #eaf1ff;
	--text-dim: #a9bbdf;

	/* Стекло */
	--glass-bg: rgba(255, 255, 255, 0.07);
	--glass-bg-strong: rgba(255, 255, 255, 0.11);
	--glass-border: rgba(255, 255, 255, 0.16);
	--glass-shadow: 0 20px 60px rgba(2, 8, 23, 0.45);

	--radius: 26px;
	--radius-sm: 16px;
	--maxw: 1200px;
	--header-h: 76px;

	--ease: cubic-bezier(0.22, 1, 0.36, 1);
}

html {
	scroll-behavior: smooth;
	scroll-padding-top: var(--header-h);
	scroll-snap-type: y proximity;
	-webkit-text-size-adjust: 100%;
}

body {
	font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	color: var(--text);
	background: #0c2348;
	line-height: 1.55;
	overflow-x: hidden;
	position: relative;
}

/* ---------- Фоновая заливка + свечения ---------- */
.bg-fx {
	position: fixed;
	inset: 0;
	z-index: -2;
	background:
		radial-gradient(1200px 800px at 15% -10%, #1f57ad 0%, transparent 55%),
		radial-gradient(1000px 700px at 100% 0%, #234a9c 0%, transparent 50%),
		linear-gradient(180deg, #143565 0%, #0f2a53 50%, #0c2348 100%);
}

.blob {
	position: fixed;
	z-index: -1;
	border-radius: 50%;
	filter: blur(90px);
	opacity: 0.5;
	pointer-events: none;
	will-change: transform;
}
.blob--1 {
	width: 520px;
	height: 520px;
	top: -120px;
	left: -100px;
	background: radial-gradient(circle, rgba(47, 107, 255, 0.55), transparent 70%);
	animation: float1 18s var(--ease) infinite alternate;
}
.blob--2 {
	width: 460px;
	height: 460px;
	bottom: -140px;
	right: -80px;
	background: radial-gradient(circle, rgba(255, 214, 10, 0.28), transparent 70%);
	animation: float2 22s var(--ease) infinite alternate;
}
@keyframes float1 {
	to {
		transform: translate(120px, 80px) scale(1.15);
	}
}
@keyframes float2 {
	to {
		transform: translate(-100px, -60px) scale(1.1);
	}
}

/* ---------- Утилиты ---------- */
.wrap {
	width: 100%;
	max-width: var(--maxw);
	margin-inline: auto;
	padding-inline: clamp(20px, 5vw, 48px);
}

.eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--yellow);
	padding: 7px 15px;
	border: 1px solid rgba(255, 214, 10, 0.35);
	border-radius: 999px;
	background: rgba(255, 214, 10, 0.08);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
}
.eyebrow::before {
	content: "";
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--yellow);
	box-shadow: 0 0 12px var(--yellow);
}

.section-title {
	font-size: clamp(30px, 5vw, 54px);
	font-weight: 800;
	line-height: 1.08;
	letter-spacing: -0.02em;
	color: var(--white);
	margin: 18px 0 14px;
}
.section-lead {
	font-size: clamp(15px, 2vw, 18px);
	color: var(--text-dim);
	max-width: 620px;
}

/* ---------- Кнопки ---------- */
.btn {
	--bh: 54px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	height: var(--bh);
	padding: 0 28px;
	border: none;
	border-radius: 999px;
	font-family: inherit;
	font-size: 16px;
	font-weight: 600;
	letter-spacing: 0.01em;
	cursor: pointer;
	text-decoration: none;
	position: relative;
	transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.35s var(--ease);
	white-space: nowrap;
}
.btn svg {
	width: 18px;
	height: 18px;
	transition: transform 0.35s var(--ease);
}
.btn:hover svg {
	transform: translateX(4px);
}
.btn:active {
	transform: scale(0.97);
}

.btn--primary {
	color: #241a00;
	background: linear-gradient(135deg, var(--yellow) 0%, var(--yellow-deep) 100%);
	box-shadow: 0 12px 30px rgba(255, 181, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.5);
}
.btn--primary:hover {
	transform: translateY(-3px);
	box-shadow: 0 20px 44px rgba(255, 181, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.btn--glass {
	color: var(--white);
	background: var(--glass-bg-strong);
	border: 1px solid var(--glass-border);
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2);
}
.btn--glass:hover {
	transform: translateY(-3px);
	background: rgba(255, 255, 255, 0.16);
	box-shadow: 0 16px 36px rgba(2, 8, 23, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

/* ============================================================
   ХЕДЕР
   ============================================================ */
.header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 100;
	height: var(--header-h);
	display: flex;
	align-items: center;
	background: rgba(6, 15, 34, 0.55);
	backdrop-filter: blur(20px) saturate(160%);
	-webkit-backdrop-filter: blur(20px) saturate(160%);
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	transition: background 0.4s var(--ease), height 0.4s var(--ease);
}
.header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	width: 100%;
	max-width: var(--maxw);
	margin-inline: auto;
	padding-inline: clamp(20px, 5vw, 48px);
}
.header__logo {
	display: flex;
	align-items: center;
	flex-shrink: 0;
}
.header__logo img {
	height: 34px;
	width: auto;
	display: block;
	transition: transform 0.35s var(--ease);
}
.header__logo:hover img {
	transform: scale(1.05);
}

.nav {
	display: flex;
	align-items: center;
	gap: 4px;
}
.nav a {
	position: relative;
	color: var(--text-dim);
	text-decoration: none;
	font-size: 15px;
	font-weight: 500;
	padding: 9px 16px;
	border-radius: 999px;
	transition: color 0.3s var(--ease), background 0.3s var(--ease);
}
.nav a::after {
	content: "";
	position: absolute;
	left: 16px;
	right: 16px;
	bottom: 4px;
	height: 2px;
	border-radius: 2px;
	background: var(--yellow);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.35s var(--ease);
}
.nav a:hover {
	color: var(--white);
}
.nav a.active {
	color: var(--white);
}
.nav a.active::after {
	transform: scaleX(1);
}

.header__phone {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: var(--white);
	text-decoration: none;
	font-weight: 600;
	font-size: 15px;
	padding: 10px 18px;
	border-radius: 999px;
	border: 1px solid var(--glass-border);
	background: var(--glass-bg);
	transition: transform 0.3s var(--ease), background 0.3s var(--ease);
}
.header__phone svg {
	width: 16px;
	height: 16px;
	color: var(--yellow);
}
.header__phone:hover {
	transform: translateY(-2px);
	background: var(--glass-bg-strong);
}

/* Бургер */
.burger {
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 46px;
	height: 46px;
	padding: 0 12px;
	border-radius: 14px;
	border: 1px solid var(--glass-border);
	background: var(--glass-bg);
	cursor: pointer;
}
.burger span {
	display: block;
	height: 2px;
	width: 100%;
	background: var(--white);
	border-radius: 2px;
	transition: transform 0.35s var(--ease), opacity 0.25s var(--ease);
}
.burger.open span:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}
.burger.open span:nth-child(2) {
	opacity: 0;
}
.burger.open span:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}

/* ============================================================
   СЕКЦИИ (общее)
   ============================================================ */
.section {
	position: relative;
	scroll-snap-align: start;
	padding: calc(var(--header-h) + 60px) 0 90px;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.section--prices {
	min-height: auto;
	scroll-snap-align: none;
}

/* Анимации появления */
.reveal {
	opacity: 0;
	transform: translateY(38px);
	transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal.in {
	opacity: 1;
	transform: none;
}
.reveal[data-delay="1"] {
	transition-delay: 0.08s;
}
.reveal[data-delay="2"] {
	transition-delay: 0.16s;
}
.reveal[data-delay="3"] {
	transition-delay: 0.24s;
}
.reveal[data-delay="4"] {
	transition-delay: 0.32s;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
	overflow: hidden;
}
.hero__media {
	position: absolute;
	inset: 0;
	z-index: -1;
}
.hero__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	transform: scale(1.08);
	animation: heroZoom 16s var(--ease) forwards;
}
@keyframes heroZoom {
	to {
		transform: scale(1);
	}
}
.hero__media::after {
	content: "";
	position: absolute;
	inset: 0;
	background:
		linear-gradient(100deg, rgba(15, 42, 83, 0.94) 0%, rgba(20, 53, 101, 0.66) 45%, rgba(31, 87, 173, 0.28) 100%),
		linear-gradient(0deg, rgba(12, 35, 72, 0.96) 0%, transparent 42%);
}
.hero__content {
	max-width: 720px;
}
.hero__title {
	font-size: clamp(38px, 7vw, 82px);
	font-weight: 800;
	line-height: 1.02;
	letter-spacing: -0.03em;
	color: var(--white);
	margin: 22px 0 20px;
}
.hero__title .accent {
	background: linear-gradient(120deg, var(--yellow) 0%, var(--yellow-deep) 100%);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}
.hero__sub {
	font-size: clamp(16px, 2.2vw, 20px);
	color: var(--text-dim);
	max-width: 540px;
	margin-bottom: 34px;
}
.hero__actions {
	display: flex;
	gap: 14px;
	flex-wrap: wrap;
}
.hero__stats {
	display: flex;
	gap: 40px;
	margin-top: 56px;
	flex-wrap: wrap;
}
.stat__num {
	font-size: clamp(28px, 4vw, 40px);
	font-weight: 800;
	color: var(--white);
	line-height: 1;
}
.stat__num span {
	color: var(--yellow);
}
.stat__label {
	font-size: 14px;
	color: var(--text-dim);
	margin-top: 6px;
}

.scroll-hint {
	position: absolute;
	bottom: 26px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	color: var(--text-dim);
	font-size: 12px;
	letter-spacing: 0.15em;
	text-transform: uppercase;
}
.scroll-hint .mouse {
	width: 24px;
	height: 38px;
	border: 2px solid rgba(255, 255, 255, 0.4);
	border-radius: 14px;
	position: relative;
}
.scroll-hint .mouse::before {
	content: "";
	position: absolute;
	top: 7px;
	left: 50%;
	transform: translateX(-50%);
	width: 4px;
	height: 7px;
	border-radius: 2px;
	background: var(--yellow);
	animation: wheel 1.6s var(--ease) infinite;
}
@keyframes wheel {
	0% {
		opacity: 0;
		transform: translate(-50%, 0);
	}
	40% {
		opacity: 1;
	}
	100% {
		opacity: 0;
		transform: translate(-50%, 12px);
	}
}

/* ============================================================
   УСЛУГИ
   ============================================================ */
.services__head {
	max-width: 720px;
	margin-bottom: 46px;
}
.services__grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 22px;
}
.service-card {
	position: relative;
	padding: 34px 32px;
	border-radius: var(--radius);
	background: var(--glass-bg);
	border: 1px solid var(--glass-border);
	backdrop-filter: blur(18px) saturate(150%);
	-webkit-backdrop-filter: blur(18px) saturate(150%);
	box-shadow: var(--glass-shadow), inset 0 1px 0 rgba(255, 255, 255, 0.12);
	overflow: hidden;
	transition: transform 0.5s var(--ease), border-color 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.service-card::before {
	content: "";
	position: absolute;
	top: -40%;
	right: -30%;
	width: 260px;
	height: 260px;
	background: radial-gradient(circle, rgba(47, 107, 255, 0.35), transparent 70%);
	opacity: 0;
	transition: opacity 0.5s var(--ease);
}
.service-card:hover {
	transform: translateY(-8px);
	border-color: rgba(255, 214, 10, 0.4);
	box-shadow: 0 30px 70px rgba(2, 8, 23, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}
.service-card:hover::before {
	opacity: 1;
}
.service-card__icon {
	position: relative;
	width: 58px;
	height: 58px;
	display: grid;
	place-items: center;
	border-radius: 18px;
	margin-bottom: 20px;
	background: linear-gradient(135deg, rgba(255, 214, 10, 0.2), rgba(47, 107, 255, 0.2));
	border: 1px solid var(--glass-border);
}
.service-card__icon svg {
	width: 28px;
	height: 28px;
	color: var(--yellow);
}
.service-card__num {
	position: absolute;
	top: 26px;
	right: 30px;
	font-size: 15px;
	font-weight: 700;
	color: rgba(255, 255, 255, 0.25);
}
.service-card h3 {
	font-size: 21px;
	font-weight: 700;
	color: var(--white);
	margin-bottom: 10px;
	line-height: 1.25;
}
.service-card p {
	font-size: 15px;
	color: var(--text-dim);
}
.services__cta {
	margin-top: 40px;
	display: flex;
	align-items: center;
	gap: 18px;
	flex-wrap: wrap;
}
.services__cta span {
	color: var(--text-dim);
	font-size: 15px;
}

/* ============================================================
   ЦЕНЫ
   ============================================================ */
.prices__head {
	max-width: 720px;
	margin-bottom: 40px;
}
.price-table {
	border-radius: var(--radius);
	overflow: hidden;
	background: var(--glass-bg);
	border: 1px solid var(--glass-border);
	backdrop-filter: blur(18px) saturate(150%);
	-webkit-backdrop-filter: blur(18px) saturate(150%);
	box-shadow: var(--glass-shadow);
}
.price-row {
	display: grid;
	grid-template-columns: 1fr 190px 190px;
	align-items: stretch;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	transition: background 0.3s var(--ease);
}
.price-row:last-child {
	border-bottom: none;
}
.price-row:not(.price-row--head):hover {
	background: rgba(255, 255, 255, 0.05);
}
.price-cell {
	padding: 20px 26px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	font-size: 15px;
}
.price-cell--name {
	display: block; /* обычный поток: inline-текст со span не разрывается на строки */
	color: var(--text);
	font-weight: 500;
}
.price-cell--name .hl {
	color: var(--yellow);
	font-weight: 700;
}
.price-cell--unit {
	color: var(--text-dim);
	font-size: 14px;
	text-align: center;
	align-items: center;
	border-left: 1px solid rgba(255, 255, 255, 0.06);
}
.price-cell--price {
	color: var(--white);
	font-weight: 700;
	font-size: 17px;
	text-align: center;
	align-items: center;
	border-left: 1px solid rgba(255, 255, 255, 0.06);
}
.price-cell--price b {
	color: var(--yellow);
	font-weight: 800;
	white-space: nowrap;
}
.price-note-inline {
	display: block;
	margin-top: 8px;
	font-size: 12.5px;
	color: var(--text-dim);
	font-weight: 400;
	line-height: 1.5;
}
.price-note-inline .k {
	color: var(--blue-400);
	font-weight: 600;
}

.price-row--head {
	background: linear-gradient(135deg, rgba(47, 107, 255, 0.28), rgba(60, 93, 195, 0.28));
	border-bottom: 1px solid var(--glass-border);
}
.price-row--head .price-cell {
	font-weight: 700;
	color: var(--white);
	text-transform: uppercase;
	font-size: 13px;
	letter-spacing: 0.06em;
}

.prices__foot {
	margin-top: 22px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	flex-wrap: wrap;
}
.prices__foot p {
	font-size: 14px;
	color: var(--text-dim);
}

/* ============================================================
   О КОМПАНИИ
   ============================================================ */
.about__grid {
	display: grid;
	grid-template-columns: 1.05fr 0.95fr;
	gap: 46px;
	align-items: center;
}
.about__text .section-title {
	margin-top: 16px;
}
.about__lead {
	font-size: 18px;
	color: var(--text);
	font-weight: 600;
	margin-bottom: 8px;
}
.about__desc {
	color: var(--text-dim);
	margin: 16px 0;
	font-size: 15px;
}
.about__list {
	list-style: none;
	display: grid;
	gap: 12px;
	margin: 20px 0 24px;
}
.about__list li {
	position: relative;
	padding-left: 34px;
	color: var(--text);
	font-size: 15px;
}
/* Жёлтый кружок-маркер (свёрстан на CSS, без картинок) */
.marker::before {
	content: "";
	position: absolute;
	left: 0;
	top: 3px;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background: radial-gradient(circle at 35% 30%, #fff3b0, var(--yellow) 45%, var(--yellow-deep) 100%);
	box-shadow: 0 0 0 4px rgba(255, 214, 10, 0.14), 0 4px 12px rgba(255, 181, 0, 0.4);
}
.marker::after {
	content: "";
	position: absolute;
	left: 6px;
	top: 8px;
	width: 8px;
	height: 5px;
	border-left: 2px solid #4a3600;
	border-bottom: 2px solid #4a3600;
	transform: rotate(-45deg);
}
.about__figure {
	position: relative;
	border-radius: var(--radius);
	overflow: hidden;
	border: 1px solid var(--glass-border);
	box-shadow: var(--glass-shadow);
	aspect-ratio: 4 / 5;
}
.about__figure img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.8s var(--ease);
}
.about__figure:hover img {
	transform: scale(1.06);
}
.about__figure::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, transparent 55%, rgba(5, 13, 31, 0.6) 100%);
}
.about__badge {
	position: absolute;
	left: 22px;
	bottom: 22px;
	z-index: 2;
	padding: 16px 22px;
	border-radius: var(--radius-sm);
	background: rgba(6, 15, 34, 0.55);
	border: 1px solid var(--glass-border);
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
}
.about__badge strong {
	display: block;
	font-size: 30px;
	color: var(--yellow);
	line-height: 1;
}
.about__badge span {
	font-size: 13px;
	color: var(--text-dim);
}

/* ============================================================
   КОНТАКТЫ
   ============================================================ */
.contacts__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 24px;
	align-items: stretch;
}
.contacts__card {
	padding: 36px 34px;
	border-radius: var(--radius);
	background: var(--glass-bg);
	border: 1px solid var(--glass-border);
	backdrop-filter: blur(18px) saturate(150%);
	-webkit-backdrop-filter: blur(18px) saturate(150%);
	box-shadow: var(--glass-shadow), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}
.contacts__block {
	padding: 18px 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.contacts__block:last-child {
	border-bottom: none;
	padding-bottom: 0;
}
.contacts__block:first-child {
	padding-top: 0;
}
.contacts__block h4 {
	font-size: 13px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--yellow);
	margin-bottom: 10px;
	font-weight: 600;
}
.contacts__block p {
	color: var(--text-dim);
	font-size: 14.5px;
}
.contacts__block p + p {
	margin-top: 10px;
}
.contacts__block .role {
	color: var(--blue-400);
	font-weight: 600;
}
.contacts__block a {
	color: var(--white);
	text-decoration: none;
	border-bottom: 1px solid rgba(255, 214, 10, 0.4);
	transition: color 0.3s var(--ease);
}
.contacts__block a:hover {
	color: var(--yellow);
}
.contacts__map {
	position: relative;
	border-radius: var(--radius);
	overflow: hidden;
	border: 1px solid var(--glass-border);
	box-shadow: var(--glass-shadow);
	min-height: 420px;
}
.contacts__map iframe {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: 0;
	filter: grayscale(0.2) contrast(1.05);
}

/* ============================================================
   ФУТЕР
   ============================================================ */
.footer {
	scroll-snap-align: none;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	background: rgba(4, 9, 26, 0.6);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	padding: 34px 0;
}
.footer__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	flex-wrap: wrap;
}
.footer__logo img {
	height: 30px;
	opacity: 0.9;
}
.footer__meta {
	color: var(--text-dim);
	font-size: 14px;
	text-align: right;
}
.footer__meta a {
	color: var(--white);
	text-decoration: none;
}
.footer__meta a:hover {
	color: var(--yellow);
}

/* ============================================================
   ДЕСКТОП / ПЛАНШЕТ — крупнее логотипы и текст
   ============================================================ */
@media (min-width: 761px) {
	.header__logo img {
		height: 46px;
	}
	.footer__logo img {
		height: 42px;
	}
	.price-cell--name {
		font-size: 17px;
	}
	.contacts__block p {
		font-size: 16px;
	}
	.contacts__block h4 {
		font-size: 14px;
	}
}

/* ============================================================
   АДАПТИВ
   ============================================================ */
@media (max-width: 980px) {
	.about__grid {
		grid-template-columns: 1fr;
		gap: 30px;
	}
	.contacts__grid {
		grid-template-columns: 1fr;
	}
	.services__grid {
		grid-template-columns: 1fr;
	}
	.price-row {
		grid-template-columns: 1fr 130px 140px;
	}
}

@media (max-width: 760px) {
	:root {
		--header-h: 66px;
	}
	.header__phone {
		display: none;
	}
	.nav {
		position: fixed;
		top: var(--header-h);
		left: 0;
		right: 0;
		flex-direction: column;
		align-items: stretch;
		gap: 6px;
		padding: 18px clamp(20px, 5vw, 48px) 26px;
		background: rgba(6, 15, 34, 0.92);
		backdrop-filter: blur(22px);
		-webkit-backdrop-filter: blur(22px);
		border-bottom: 1px solid var(--glass-border);
		transform: translateY(-140%);
		opacity: 0;
		pointer-events: none;
		transition: transform 0.45s var(--ease), opacity 0.4s var(--ease);
	}
	.nav.open {
		transform: translateY(0);
		opacity: 1;
		pointer-events: auto;
	}
	.nav a {
		padding: 14px 16px;
		font-size: 17px;
		border-radius: 14px;
	}
	.nav a::after {
		display: none;
	}
	.nav a.active {
		background: rgba(255, 214, 10, 0.12);
	}
	.burger {
		display: flex;
	}

	.section {
		min-height: auto;
		scroll-snap-align: none;
		padding: calc(var(--header-h) + 48px) 0 64px;
	}
	.hero {
		min-height: 100vh;
	}
	html {
		scroll-snap-type: none;
	}

	.hero__stats {
		gap: 26px;
		margin-top: 40px;
	}
	.price-table {
		border: none;
		background: transparent;
		box-shadow: none;
		display: grid;
		gap: 14px;
	}
	.price-row--head {
		display: none;
	}
	.price-row {
		grid-template-columns: 1fr;
		border: 1px solid var(--glass-border);
		border-radius: var(--radius-sm);
		background: var(--glass-bg);
		backdrop-filter: blur(14px);
		-webkit-backdrop-filter: blur(14px);
		overflow: hidden;
	}
	.price-cell {
		border-left: none !important;
		padding: 14px 20px;
	}
	.price-cell--unit,
	.price-cell--price {
		flex-direction: row;
		justify-content: space-between;
		text-align: left;
		border-top: 1px solid rgba(255, 255, 255, 0.07);
	}
	.price-cell--unit::before {
		content: "Ед. изм.";
		color: var(--text-dim);
		font-size: 13px;
	}
	.price-cell--price::before {
		content: "Цена, руб";
		color: var(--text-dim);
		font-size: 13px;
		font-weight: 500;
	}
	.footer__inner {
		flex-direction: column;
		text-align: center;
	}
	.footer__meta {
		text-align: center;
	}
}

@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		animation: none !important;
		transition-duration: 0.01ms !important;
	}
	.reveal {
		opacity: 1;
		transform: none;
	}
}
