body {
	color: var(--text);
	background: var(--night);
	font-size: 16px;
	line-height: 1.5;
	font-weight: 400;
}

body.no-scroll {
	overflow: hidden;
}

::selection {
	color: var(--white);
	background: var(--flame);
}

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

.main {
	padding-top: var(--header-height);
}

.section,
.hero,
.offer,
.footer {
	scroll-margin-top: calc(var(--header-height) + 10px);
}

.section {
	position: relative;
	padding: var(--section-gap) 0;
}

.section--soft {
	background: var(--night-soft);
}

.eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 18px;
	color: var(--amber);
	font-family: var(--second-family);
	font-size: 13px;
	font-weight: 600;
	line-height: 1.2;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.title {
	font-size: clamp(26px, 3.2vw, 44px);
	font-weight: 700;
	line-height: 1.16;
	letter-spacing: -0.02em;
}

.title--hero {
	font-size: clamp(29px, 3.05vw, 46px);
	line-height: 1.16;
	letter-spacing: -0.025em;
}

.note {
	color: var(--text-dim);
	font-size: 13px;
	line-height: 1.6;
}

.chips {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.chip {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	padding: 11px 18px 11px 14px;
	color: var(--text);
	font-size: 14px;
	line-height: 1.2;
	background: var(--surface);
	border: 1px solid var(--line);
	border-radius: var(--radius-pill);
	transition: background var(--transition), border-color var(--transition);
}

.chip:hover {
	background: var(--surface-hover);
	border-color: var(--flame-line);
}

.chip svg {
	width: 16px;
	height: 16px;
	color: var(--flame);
}

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	min-height: 56px;
	padding: 0 30px;
	font-family: var(--second-family);
	font-size: 15px;
	font-weight: 600;
	line-height: 1.2;
	text-align: center;
	white-space: nowrap;
	border: 1px solid transparent;
	border-radius: var(--radius);
	cursor: pointer;
	transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.btn:disabled {
	opacity: 0.6;
	cursor: not-allowed;
}

.btn__icon {
	display: inline-flex;
	transition: transform var(--transition);
}

.btn:hover .btn__icon {
	transform: translateX(4px);
}

.btn--primary {
	color: var(--white);
	background: var(--flame);
}

.btn--primary:hover {
	background: var(--flame-hover);
	box-shadow: 0 16px 34px rgba(226, 103, 60, 0.28);
}

.btn--outline {
	color: var(--white);
	border-color: var(--line-strong);
	background: transparent;
}

.btn--outline:hover {
	border-color: var(--white);
	background: var(--surface);
}

.btn--small {
	min-height: 48px;
	padding: 0 24px;
	font-size: 14px;
}

.btn--line {
	color: var(--white);
	border-color: var(--flame);
	background: transparent;
}

.btn--line:hover {
	background: var(--flame);
}

.btn--teal {
	color: var(--text);
	border-color: var(--link);
	background: transparent;
}

.btn--teal:hover {
	color: var(--white);
	background: var(--link);
}

.btn--wide {
	width: 100%;
}

.actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
}

.header {
	position: fixed;
	top: 0;
	right: 0;
	left: 0;
	z-index: var(--z-header);
	background: var(--night-header);
	border-bottom: 1px solid var(--line);
	backdrop-filter: blur(14px);
	transition: background var(--transition), box-shadow var(--transition);
}

.header.is-scrolled {
	background: rgba(43, 51, 58, 0.96);
	box-shadow: 0 10px 34px rgba(0, 0, 0, 0.34);
}

.header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: clamp(16px, 2vw, 40px);
	min-height: var(--header-height);
}

.header__right {
	display: flex;
	align-items: center;
	gap: clamp(12px, 1.6vw, 28px);
}

.header__delivery {
	color: var(--text-dim);
	font-family: var(--second-family);
	font-size: 14px;
	white-space: nowrap;
}

.header__phone {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	font-size: 17px;
	font-weight: 700;
	white-space: nowrap;
	transition: color var(--transition);
}

.header__phone svg {
	width: 19px;
	height: 19px;
	color: var(--flame);
}

.header__phone:hover {
	color: var(--amber);
}

.header__cta {
	border-radius: var(--radius-pill);
}

.progress {
	position: absolute;
	bottom: -1px;
	left: 0;
	width: 0;
	height: 2px;
	background: var(--flame);
	transition: width 0.1s linear;
}

.brand {
	display: inline-flex;
	align-items: center;
	gap: 12px;
}

.brand__mark {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	color: var(--white);
	object-fit: contain;
	flex-shrink: 0;
}

.brand__name {
	display: block;
	font-size: 19px;
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: 0.04em;
}

.brand__tagline {
	display: block;
	margin-top: 3px;
	color: var(--text-dim);
	font-family: var(--second-family);
	font-size: 12px;
	line-height: 1.2;
	white-space: nowrap;
}

.nav {
	display: flex;
	align-items: center;
	gap: clamp(14px, 1.8vw, 32px);
}

.nav__link {
	position: relative;
	font-family: var(--second-family);
	font-size: 15px;
	font-weight: 500;
	line-height: 1.2;
	white-space: nowrap;
	transition: color var(--transition);
}

.nav__link::after {
	content: "";
	position: absolute;
	bottom: -7px;
	left: 0;
	width: 0;
	height: 2px;
	background: var(--flame);
	transition: width var(--transition);
}

.nav__link:hover,
.nav__link.is-active {
	color: var(--amber);
}

.nav__link:hover::after,
.nav__link.is-active::after {
	width: 100%;
}

.burger {
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 46px;
	height: 46px;
	padding: 0 11px;
	border: 1px solid var(--line-strong);
	border-radius: var(--radius);
	flex-shrink: 0;
}

.burger span {
	display: block;
	width: 100%;
	height: 2px;
	background: var(--white);
	border-radius: 2px;
	transition: transform var(--transition), opacity var(--transition);
}

.burger.is-active span:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}

.burger.is-active span:nth-child(2) {
	opacity: 0;
}

.burger.is-active span:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}

.menu {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	z-index: var(--z-menu);
	display: flex;
	flex-direction: column;
	gap: 22px;
	width: min(420px, 90vw);
	padding: 22px 22px calc(28px + env(safe-area-inset-bottom));
	background: var(--surface-solid);
	transform: translateX(105%);
	transition: transform var(--transition);
	overflow-y: auto;
	overscroll-behavior: contain;
}

.menu.is-open {
	transform: translateX(0);
}

.menu__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding-bottom: 18px;
	border-bottom: 1px solid var(--line);
}

.menu__close {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	font-size: 26px;
	line-height: 1;
	border: 1px solid var(--line-strong);
	border-radius: var(--radius);
	transition: color var(--transition), border-color var(--transition);
}

.menu__close:hover {
	color: var(--amber);
	border-color: var(--amber);
}

.menu__list {
	display: flex;
	flex-direction: column;
}

.menu__link {
	display: block;
	padding: 15px 0;
	font-size: 18px;
	font-weight: 600;
	border-bottom: 1px solid var(--line);
	transition: color var(--transition), padding-left var(--transition);
}

.menu__link:hover {
	color: var(--amber);
	padding-left: 8px;
}

.menu__footer {
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin-top: auto;
}

.menu__contact {
	display: flex;
	flex-direction: column;
	gap: 4px;
	margin-bottom: 6px;
}

.menu__phone {
	font-size: 20px;
	font-weight: 700;
}

.menu-overlay {
	position: fixed;
	inset: 0;
	z-index: calc(var(--z-menu) - 1);
	background: rgba(16, 19, 23, 0.66);
	opacity: 0;
	visibility: hidden;
	transition: opacity var(--transition), visibility var(--transition);
}

.menu-overlay.is-open {
	opacity: 1;
	visibility: visible;
}

.hero {
	padding: clamp(44px, 5vw, 84px) 0 clamp(56px, 6vw, 104px);
	overflow: hidden;
}

.hero__inner {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1.02fr);
	align-items: center;
	gap: clamp(32px, 4vw, 72px);
}

.hero__text {
	max-width: 640px;
}

.hero__title {
	margin-bottom: 24px;
}

.hero__lead {
	margin-bottom: clamp(28px, 3vw, 40px);
	color: var(--text-muted);
	font-size: clamp(15px, 1.15vw, 17px);
	line-height: 1.7;
	max-width: 560px;
}

.hero__chips {
	margin-bottom: clamp(28px, 3vw, 40px);
	max-width: 560px;
}

.hero__actions {
	margin-bottom: 22px;
}

.hero__note {
	max-width: 480px;
}

.hero__media {
	position: relative;
	aspect-ratio: 79 / 73;
	background: linear-gradient(140deg, #47515a 0%, #2f373e 100%);
	border: 1px solid var(--line);
	border-radius: var(--radius-xl);
	box-shadow: var(--shadow-media);
	overflow: hidden;
}

.hero__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.section--paper,
.section--white {
	--text: var(--paper-text);
	--text-muted: var(--paper-muted);
	--text-dim: rgba(27, 29, 33, 0.5);
	--line: var(--paper-line);
	--line-strong: rgba(27, 29, 33, 0.16);
	--surface: var(--paper-card);
	--surface-hover: var(--paper-card);
	color: var(--paper-text);
}

.section--paper {
	background: var(--paper);
}

.section--white {
	--surface: var(--paper-soft);
	background: var(--white);
}

.zoneplan {
	display: grid;
	grid-template-columns: minmax(0, 0.94fr) minmax(0, 1fr);
	align-items: start;
	gap: clamp(28px, 3.6vw, 64px);
}

.plan-card {
	padding: clamp(14px, 1.4vw, 22px);
	background: var(--paper-card);
	border: 1px solid var(--paper-line);
	border-radius: var(--radius-xl);
	box-shadow: 0 1px 2px rgba(27, 29, 33, 0.04);
}

.plan-card img {
	width: 100%;
	border-radius: 12px;
}

.zoneplan__title {
	margin-bottom: 22px;
	font-size: clamp(24px, 2.45vw, 34px);
	line-height: 1.24;
}

.zoneplan__text {
	color: var(--text-muted);
	font-size: clamp(15px, 1vw, 16px);
	line-height: 1.7;
}

.zoneplan__text + .zoneplan__text {
	margin-top: 18px;
}

.callout {
	margin-top: clamp(22px, 2.4vw, 32px);
	padding: 16px 20px;
	color: var(--callout-text);
	font-size: 13px;
	line-height: 1.6;
	background: var(--callout-bg);
	border-radius: var(--radius);
}

.legend {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: clamp(12px, 1.2vw, 18px);
	margin-top: clamp(28px, 3.2vw, 48px);
}

.legend__item {
	padding: 16px 18px 18px;
	background: var(--paper-card);
	border: 1px solid var(--paper-line);
	border-radius: 12px;
}

.legend__head {
	display: flex;
	align-items: center;
	gap: 9px;
}

.legend__dot {
	width: 12px;
	height: 12px;
	border-radius: 3px;
	flex-shrink: 0;
}

.legend__dot--warm {
	background: var(--legend-warm);
}

.legend__dot--fixed {
	background: var(--legend-fixed);
}

.legend__dot--check {
	background: var(--legend-check);
}

.legend__dot--border {
	background: var(--legend-border);
}

.legend__dot--pass {
	background: var(--legend-pass);
}

.legend__title {
	font-size: 14px;
	font-weight: 700;
	line-height: 1.3;
}

.legend__text {
	margin-top: 10px;
	color: var(--text-muted);
	font-size: 13px;
	line-height: 1.55;
}

.tiles {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: clamp(12px, 1.2vw, 18px);
	margin-top: clamp(12px, 1.2vw, 18px);
}

.tile {
	padding: clamp(20px, 1.8vw, 26px);
	background: var(--paper-tile);
	border: 1px solid var(--paper-line);
	border-radius: 14px;
}

.tile__title {
	font-size: 16px;
	font-weight: 700;
	line-height: 1.3;
}

.tile__text {
	margin-top: 10px;
	color: var(--text-muted);
	font-size: 14px;
	line-height: 1.6;
}

.gallery {
	margin-top: clamp(36px, 4.4vw, 68px);
}

.gallery__title {
	margin-bottom: clamp(18px, 1.8vw, 26px);
	font-size: clamp(17px, 1.5vw, 20px);
	font-weight: 700;
	line-height: 1.3;
}

.gallery__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: clamp(16px, 1.8vw, 28px);
}

.gallery__media {
	aspect-ratio: 507 / 299;
	background: var(--paper-tile);
	border-radius: 14px;
	overflow: hidden;
}

.gallery__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.gallery__caption {
	margin-top: 14px;
	color: var(--text);
	font-size: 14px;
	line-height: 1.5;
	text-align: center;
}

.choice__head {
	max-width: 760px;
	margin-bottom: clamp(28px, 3.2vw, 44px);
}

.choice__title {
	font-size: clamp(24px, 2.45vw, 34px);
	line-height: 1.24;
}

.choice__lead {
	margin-top: 18px;
	color: var(--text-muted);
	font-size: clamp(14px, 1vw, 16px);
	line-height: 1.7;
}

.options {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: clamp(16px, 1.6vw, 24px);
}

.option {
	display: flex;
	flex-direction: column;
	padding: clamp(24px, 2.4vw, 34px);
	background: var(--surface);
	border: 1px solid var(--line);
	border-radius: 18px;
}

.option__icon {
	width: 48px;
	height: 48px;
}

.option__title {
	margin-top: 22px;
	font-size: clamp(18px, 1.5vw, 21px);
	font-weight: 700;
	line-height: 1.3;
}

.option__text {
	margin-top: 14px;
	color: var(--text-muted);
	font-size: 14px;
	line-height: 1.65;
}

.option__note {
	margin-top: 18px;
	color: var(--text-dim);
	font-size: 13px;
	line-height: 1.6;
}

.option__link {
	display: inline-flex;
	align-items: center;
	align-self: flex-start;
	gap: 7px;
	margin-top: auto;
	padding-top: 20px;
	color: var(--link);
	font-family: var(--second-family);
	font-size: 14px;
	font-weight: 600;
	line-height: 1.2;
	transition: color var(--transition);
}

.option__link span {
	transition: transform var(--transition);
}

.option__link:hover {
	color: var(--link-hover);
}

.option__link:hover span {
	transform: translateX(4px);
}

.stack {
	display: grid;
	grid-template-columns: minmax(0, 1.08fr) minmax(0, 1fr);
	align-items: start;
	gap: clamp(16px, 1.6vw, 24px);
	margin-top: clamp(24px, 2.6vw, 40px);
}

.stack__col {
	display: flex;
	flex-direction: column;
	gap: clamp(16px, 1.6vw, 24px);
}

.layers {
	padding: clamp(16px, 1.4vw, 20px);
	background: var(--surface);
	border: 1px solid var(--line);
	border-radius: 16px;
}

.layers__grid {
	display: grid;
	grid-template-columns: minmax(0, 0.86fr) minmax(0, 1fr);
	gap: clamp(16px, 1.8vw, 28px);
}

.layers__media {
	aspect-ratio: 360 / 253;
	border-radius: 12px;
	overflow: hidden;
}

.layers__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.layers__title {
	font-size: 17px;
	font-weight: 700;
	line-height: 1.3;
}

.layers__list {
	margin-top: 6px;
}

.layers__list li {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 12px 0;
	color: var(--text);
	font-size: 14px;
	line-height: 1.4;
	border-bottom: 1px solid var(--line);
}

.layers__list li:last-child {
	border-bottom: none;
}

.layers__dot {
	width: 14px;
	height: 14px;
	border-radius: 50%;
	flex-shrink: 0;
}

.layers--mat .layers__dot {
	background: var(--layer-mat);
}

.layers--cable .layers__dot {
	background: var(--layer-cable);
}

.layers__note {
	margin-top: 16px;
	color: var(--text-dim);
	font-size: 12px;
	line-height: 1.6;
}

.control {
	--text-dim: rgba(255, 255, 255, 0.5);
	padding: clamp(26px, 2.6vw, 38px);
	color: var(--white);
	background: var(--paper-dark);
	border-radius: 18px;
}

.control__title {
	font-size: clamp(19px, 1.7vw, 23px);
	font-weight: 700;
	line-height: 1.32;
}

.control__text {
	margin-top: 20px;
	color: rgba(255, 255, 255, 0.72);
	font-size: 15px;
	line-height: 1.75;
}

.chain {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 10px;
	margin-top: clamp(26px, 2.6vw, 38px);
}

.chain__item {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 12px;
	min-width: 0;
}

.chain__item img {
	width: 56px;
	height: 56px;
}

.chain__label {
	color: var(--text-dim);
	font-family: var(--second-family);
	font-size: 12px;
	line-height: 1.3;
	text-align: center;
}

.chain__arrow {
	margin-top: 24px;
	color: var(--text-dim);
	font-size: 14px;
	line-height: 1;
	opacity: 0.7;
}

.chain--light {
	justify-content: flex-start;
	gap: clamp(14px, 2.6vw, 40px);
	margin-top: 0;
}

.chain--light .chain__item img {
	background: var(--paper-tile);
	border-radius: 12px;
}

.table-wrap {
	margin-top: clamp(24px, 2.6vw, 40px);
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	overflow-x: auto;
}

.table-hint {
	display: none;
	margin-top: 12px;
}

.table {
	width: 100%;
	min-width: 640px;
	font-size: 15px;
}

.table th,
.table td {
	padding: 16px 20px;
	text-align: left;
	line-height: 1.5;
	border-bottom: 1px solid var(--line);
}

.table thead th {
	color: var(--text-dim);
	font-family: var(--second-family);
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	background: var(--surface);
	white-space: nowrap;
}

.table tbody th {
	color: var(--text);
	font-weight: 600;
}

.table td {
	color: var(--text-muted);
}

.table tbody tr:last-child th,
.table tbody tr:last-child td {
	border-bottom: none;
}

.kit {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1.06fr);
	gap: clamp(22px, 2.4vw, 36px) clamp(28px, 3.4vw, 60px);
	align-items: start;
}

.kit__head {
	grid-column: 1;
	grid-row: 1;
}

.kit__media {
	grid-column: 2;
	grid-row: 1 / span 2;
	border-radius: 18px;
	overflow: hidden;
}

.kit__media img {
	width: 100%;
}

.kit__list {
	grid-column: 1;
	grid-row: 2 / span 2;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.kit__factors {
	grid-column: 2;
	grid-row: 3;
}

.kit__title {
	font-size: clamp(24px, 2.45vw, 34px);
	line-height: 1.24;
}

.kit__lead {
	margin-top: 18px;
	color: var(--text-muted);
	font-size: clamp(14px, 1vw, 16px);
	line-height: 1.7;
}

.part {
	padding: 16px 20px 18px;
	border: 1px solid var(--line);
	border-radius: 10px;
}

.part:nth-child(odd) {
	background: var(--paper-tile);
}

.part:nth-child(even) {
	background: var(--paper-card);
}

.part__label {
	color: var(--flame-deep);
	font-size: 13px;
	font-weight: 500;
	line-height: 1.3;
}

.part__text {
	margin-top: 8px;
	font-size: 15px;
	line-height: 1.5;
}

.factors__title {
	margin-bottom: 18px;
	font-size: clamp(17px, 1.5vw, 20px);
	font-weight: 700;
	line-height: 1.3;
}

.factors__list {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.factor {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 14px 20px;
	font-size: 14px;
	line-height: 1.2;
	background: var(--paper-card);
	border: 1px solid var(--line);
	border-radius: 10px;
}

.factor::before {
	content: "";
	width: 7px;
	height: 7px;
	background: var(--flame);
	border-radius: 50%;
	flex-shrink: 0;
}

.factor--accent {
	border-color: var(--flame);
}

.pricebar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: clamp(20px, 2.4vw, 40px);
	margin-top: clamp(32px, 3.6vw, 56px);
	padding: clamp(22px, 2.2vw, 30px) clamp(22px, 2.4vw, 36px);
	color: var(--white);
	background: var(--paper-dark);
	border-radius: 16px;
}

.pricebar__text {
	font-size: clamp(15px, 1.1vw, 17px);
	line-height: 1.5;
}

.supply__head {
	max-width: 860px;
	margin-bottom: clamp(26px, 3vw, 40px);
}

.supply__title {
	font-size: clamp(23px, 2.3vw, 32px);
	line-height: 1.24;
}

.supply__lead {
	margin-top: 16px;
	color: var(--text-muted);
	font-size: clamp(14px, 1vw, 16px);
	line-height: 1.7;
}

.supply {
	display: grid;
	grid-template-columns: minmax(0, 0.86fr) minmax(0, 1fr);
	gap: clamp(16px, 1.8vw, 26px);
}

.supply__cards {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	grid-auto-rows: 1fr;
	gap: clamp(14px, 1.4vw, 20px);
}

.supply__card {
	padding: clamp(18px, 1.8vw, 24px);
	background: var(--paper);
	border: 1px solid var(--line);
	border-radius: 12px;
}

.supply__num {
	color: var(--amber);
	font-family: var(--second-family);
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.04em;
}

.supply__card-title {
	margin-top: 14px;
	font-size: 15px;
	font-weight: 700;
	line-height: 1.35;
}

.supply__text {
	margin-top: 10px;
	color: var(--text-muted);
	font-size: 13px;
	line-height: 1.6;
}

.supply__col {
	display: flex;
	flex-direction: column;
	gap: clamp(14px, 1.4vw, 20px);
}

.supply__media {
	aspect-ratio: 1009 / 237;
	border-radius: 10px;
	overflow: hidden;
}

.supply__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.spec {
	padding: clamp(20px, 2vw, 26px);
	color: var(--white);
	background: var(--paper-dark);
	border-radius: 10px;
}

.spec__title {
	margin-bottom: 18px;
	font-size: 15px;
	font-weight: 700;
	line-height: 1.3;
}

.spec__row {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 20px;
	padding: 12px 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.spec__row:last-child {
	padding-bottom: 0;
	border-bottom: none;
}

.spec__key {
	color: rgba(255, 255, 255, 0.5);
	font-size: 13px;
	line-height: 1.4;
}

.spec__value {
	color: rgba(255, 255, 255, 0.86);
	font-size: 13px;
	line-height: 1.4;
	text-align: right;
}

.supply__actions {
	margin-top: clamp(22px, 2.4vw, 34px);
}

.montage {
	margin-top: clamp(22px, 2.4vw, 34px);
	padding: clamp(22px, 2.4vw, 32px);
	background: var(--paper-card);
	border: 1px solid var(--line);
	border-radius: 12px;
}

.montage__title {
	font-size: clamp(16px, 1.3vw, 18px);
	font-weight: 700;
	line-height: 1.35;
}

.montage__text {
	margin: 14px 0 22px;
	color: var(--text-muted);
	font-size: 14px;
	line-height: 1.65;
}

.offer {
	padding: clamp(48px, 5.4vw, 92px) 0;
	color: var(--white);
	background-image: linear-gradient(90deg, rgba(24, 29, 34, 0.92) 0%, rgba(24, 29, 34, 0.66) 40%, rgba(24, 29, 34, 0.22) 72%), url("../img/cta-bg.png");
	background-image: linear-gradient(90deg, rgba(24, 29, 34, 0.92) 0%, rgba(24, 29, 34, 0.66) 40%, rgba(24, 29, 34, 0.22) 72%), image-set(url("../img/cta-bg.webp") type("image/webp"), url("../img/cta-bg.png") type("image/png"));
	background-position: center, center;
	background-size: cover, cover;
	background-repeat: no-repeat, no-repeat;
}

.offer__inner {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 0.84fr);
	align-items: center;
	gap: clamp(28px, 4vw, 72px);
}

.offer__text {
	min-width: 0;
}

.offer__title {
	max-width: 620px;
	font-size: clamp(24px, 2.6vw, 36px);
	font-weight: 700;
	line-height: 1.22;
	letter-spacing: -0.01em;
}

.offer__lead {
	max-width: 500px;
	margin-top: 18px;
	color: rgba(255, 255, 255, 0.78);
	font-size: clamp(14px, 1.05vw, 16px);
	line-height: 1.7;
}

.offer__list {
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin-top: clamp(22px, 2.4vw, 32px);
}

.offer__list li {
	display: flex;
	align-items: center;
	gap: 10px;
	color: rgba(255, 255, 255, 0.88);
	font-size: 14px;
	line-height: 1.4;
}

.offer__list svg {
	width: 16px;
	height: 16px;
	color: var(--amber);
}

.offer__card {
	--text-dim: rgba(255, 255, 255, 0.5);
	padding: clamp(24px, 2.6vw, 38px);
	background: rgba(38, 46, 54, 0.95);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 18px;
}

.offer__label {
	margin-bottom: 20px;
	color: rgba(255, 255, 255, 0.55);
	font-family: var(--second-family);
	font-size: 12px;
	font-weight: 500;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.offer__card .checkbox {
	color: rgba(255, 255, 255, 0.75);
}

.offer__note {
	margin-top: 16px;
	color: rgba(255, 255, 255, 0.45);
	font-size: 12px;
	line-height: 1.55;
}

.safety__head {
	max-width: 780px;
	margin-bottom: clamp(24px, 2.8vw, 38px);
}

.safety__title {
	max-width: 640px;
	font-size: clamp(23px, 2.3vw, 32px);
	line-height: 1.24;
}

.safety__lead {
	max-width: 720px;
	margin-top: 16px;
	color: var(--text-muted);
	font-size: clamp(14px, 1vw, 16px);
	line-height: 1.7;
}

.safety__panel {
	padding: clamp(20px, 2vw, 28px) clamp(20px, 2.4vw, 34px);
	background: var(--paper-card);
	border: 1px solid var(--line);
	border-radius: 14px;
}

.safety__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: clamp(14px, 1.4vw, 20px);
	margin-top: clamp(18px, 1.8vw, 26px);
}

.safety__card {
	padding: clamp(20px, 2vw, 26px);
	background: var(--mist);
	border-radius: 12px;
}

.safety__card-title {
	font-size: 15px;
	font-weight: 700;
	line-height: 1.35;
}

.safety__text {
	margin-top: 10px;
	color: var(--text-muted);
	font-size: 13px;
	line-height: 1.6;
}

.safety__note {
	max-width: 640px;
	margin: clamp(20px, 2vw, 30px) auto 0;
	color: var(--text-dim);
	font-size: 13px;
	line-height: 1.6;
	text-align: center;
}

.route__head {
	max-width: 620px;
	margin: 0 auto clamp(24px, 2.8vw, 38px);
	text-align: center;
}

.route__title {
	font-size: clamp(22px, 2vw, 28px);
	font-weight: 700;
	line-height: 1.25;
}

.route__lead {
	margin-top: 14px;
	color: var(--text-muted);
	font-size: 13px;
	line-height: 1.65;
}

.route {
	max-width: 720px;
	margin: 0 auto;
	padding: clamp(22px, 2.4vw, 32px);
	background: var(--mist);
	border-radius: 16px;
	counter-reset: route;
}

.route__item {
	position: relative;
	display: grid;
	grid-template-columns: 24px 48px minmax(0, 1fr);
	align-items: start;
	column-gap: 14px;
	counter-increment: route;
}

.route__item + .route__item {
	margin-top: 18px;
}

.route__item:not(:last-child)::before {
	content: "";
	position: absolute;
	top: 50px;
	bottom: -18px;
	left: 61px;
	width: 2px;
	background: var(--route-line);
}

.route__num {
	padding-top: 3px;
	color: var(--text-dim);
	font-size: 12px;
	line-height: 1.4;
	text-align: right;
}

.route__num::before {
	content: counter(route) ".";
}

.route__icon {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	color: var(--text-dim);
	background: var(--route-circle);
	border-radius: 50%;
}

.route__icon svg {
	width: 20px;
	height: 20px;
}

.route__icon--accent {
	color: var(--white);
	background: var(--flame);
}

.route__body {
	padding-top: 3px;
}

.route__step {
	font-size: 15px;
	font-weight: 700;
	line-height: 1.35;
}

.route__text {
	margin-top: 6px;
	color: var(--text-muted);
	font-size: 13px;
	line-height: 1.6;
}

.faq__head {
	margin-bottom: clamp(20px, 2.2vw, 30px);
}

.faq__heading {
	font-size: clamp(21px, 1.9vw, 26px);
	font-weight: 700;
	line-height: 1.25;
}

.faq {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.faq__item {
	background: var(--paper);
	border: 1px solid var(--line);
	border-radius: 14px;
	transition: border-color var(--transition);
}

.faq__item.is-open {
	border-color: var(--line-strong);
}

.faq__question {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	width: 100%;
	padding: 20px 24px;
	color: var(--text);
	font-size: clamp(15px, 1.15vw, 16px);
	font-weight: 700;
	line-height: 1.4;
	text-align: left;
}

.faq__icon {
	flex-shrink: 0;
	width: 20px;
	height: 20px;
	color: var(--text-dim);
	transition: transform var(--transition), color var(--transition);
}

.faq__item.is-open .faq__icon {
	transform: rotate(180deg);
	color: var(--text);
}

.faq__answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height var(--transition);
}

.faq__answer p {
	padding: 6px 24px 22px;
	color: var(--text-muted);
	font-size: 14px;
	line-height: 1.7;
}

.leadform__head {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: clamp(24px, 4vw, 72px);
	margin-bottom: clamp(28px, 3.2vw, 44px);
}

.leadform__title {
	max-width: 640px;
	font-size: clamp(24px, 2.45vw, 34px);
	line-height: 1.24;
}

.leadform__lead {
	max-width: 640px;
	margin-top: 20px;
	color: var(--text-muted);
	font-size: clamp(14px, 1vw, 16px);
	line-height: 1.7;
}

.leadform__notes {
	display: flex;
	flex-direction: column;
	gap: 10px;
	flex-shrink: 0;
	max-width: 300px;
	color: var(--text-dim);
	font-size: 12px;
	line-height: 1.5;
	text-align: right;
}

.leadform__notes li {
	position: relative;
	padding-left: 14px;
}

.leadform__notes li::before {
	content: "";
	position: absolute;
	top: 7px;
	left: 0;
	width: 4px;
	height: 4px;
	background: var(--text-dim);
	border-radius: 50%;
}

.leadform__panel {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 0.94fr);
	gap: clamp(24px, 3vw, 48px);
	padding: clamp(22px, 2.6vw, 40px);
	background: var(--surface);
	border: 1px solid var(--line);
	border-radius: 22px;
	scroll-margin-top: calc(var(--header-height) + 20px);
}

.leadform__media {
	height: 100%;
	min-height: 320px;
	background: var(--white);
	border-radius: 16px;
	overflow: hidden;
}

.leadform__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: 68% center;
}

.wizard__step {
	color: var(--amber);
	font-family: var(--second-family);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.wizard__progress {
	display: flex;
	gap: 10px;
	margin: 12px 0 24px;
}

.wizard__bar {
	flex: 1;
	height: 6px;
	background: rgba(255, 255, 255, 0.16);
	border-radius: 3px;
	transition: background var(--transition);
}

.wizard__bar.is-done {
	background: var(--amber);
}

.wizard__panel {
	display: none;
}

.wizard__panel.is-active {
	display: block;
}

.wizard__legend {
	margin-bottom: 14px;
	color: var(--text-dim);
	font-family: var(--second-family);
	font-size: 12px;
	font-weight: 500;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.wizard__group + .wizard__group {
	margin-top: 26px;
}

.wizard__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 28px;
}

.wizard .field__control,
.offer__card .field__control {
	background: rgba(255, 255, 255, 0.13);
	border-color: transparent;
}

.wizard .field__control::placeholder,
.offer__card .field__control::placeholder {
	color: rgba(255, 255, 255, 0.5);
}

.wizard .field__control:focus,
.offer__card .field__control:focus {
	background: rgba(255, 255, 255, 0.18);
	border-color: var(--flame);
}

.wizard .field__label,
.offer__card .field__label {
	color: var(--white);
	font-weight: 500;
}

.field__optional {
	color: var(--text-dim);
	font-weight: 400;
}

.form {
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.form__row {
	display: grid;
	gap: 14px;
}

.form__row--2 {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.field {
	display: flex;
	flex-direction: column;
	gap: 8px;
	min-width: 0;
}

.field__label {
	color: var(--text-dim);
	font-family: var(--second-family);
	font-size: 13px;
	font-weight: 600;
	line-height: 1.2;
}

.field__control {
	width: 100%;
	min-height: 54px;
	padding: 15px 16px;
	color: var(--white);
	font-size: 16px;
	line-height: 1.4;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid var(--line-strong);
	border-radius: var(--radius);
	transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
	appearance: none;
}

.field__control::placeholder {
	color: rgba(255, 255, 255, 0.36);
}

.field__control:focus {
	background: rgba(255, 255, 255, 0.08);
	border-color: var(--flame);
	box-shadow: 0 0 0 3px var(--flame-soft);
}

select.field__control {
	background-image: linear-gradient(45deg, transparent 50%, rgba(255, 255, 255, 0.6) 50%), linear-gradient(135deg, rgba(255, 255, 255, 0.6) 50%, transparent 50%);
	background-position: calc(100% - 21px) calc(50% + 1px), calc(100% - 15px) calc(50% + 1px);
	background-size: 6px 6px, 6px 6px;
	background-repeat: no-repeat;
	padding-right: 44px;
	cursor: pointer;
}

select.field__control option {
	color: var(--white);
	background: var(--surface-solid);
}

textarea.field__control {
	min-height: 116px;
}

.dropzone {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 10px;
	min-height: 92px;
	padding: 18px;
	color: var(--text-dim);
	font-size: 14px;
	line-height: 1.4;
	text-align: center;
	background: rgba(255, 255, 255, 0.05);
	border: 1px dashed var(--line-strong);
	border-radius: var(--radius);
	cursor: pointer;
	transition: border-color var(--transition), color var(--transition), background var(--transition);
}

.dropzone img {
	width: 13px;
	height: 21px;
}

.dropzone span {
	max-width: 100%;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.dropzone:hover {
	color: var(--white);
	border-color: var(--flame);
}

.dropzone.is-filled {
	color: var(--white);
	border-style: solid;
	border-color: var(--flame);
	background: var(--flame-soft);
}

.dropzone input {
	display: none;
}

.checkbox {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	color: var(--text-dim);
	font-size: 13px;
	line-height: 1.55;
	cursor: pointer;
}

.checkbox input {
	flex-shrink: 0;
	width: 18px;
	height: 18px;
	margin-top: 1px;
	accent-color: var(--flame);
	cursor: pointer;
}

.checkbox a {
	color: var(--amber);
	text-decoration: underline;
}

.form__status {
	font-size: 14px;
	line-height: 1.5;
	min-height: 1px;
}

.form__status.is-success {
	color: var(--yellow-orange);
}

.form__status.is-error {
	color: var(--flame);
}

.honeypot {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(0 0 0 0);
	white-space: nowrap;
}

.footer {
	padding: clamp(48px, 5vw, 82px) 0 clamp(26px, 3vw, 42px);
	color: var(--white);
	background: var(--paper-dark);
}

.footer__top {
	display: grid;
	grid-template-columns: minmax(0, 1.7fr) minmax(0, 0.7fr) minmax(0, 1.15fr) minmax(0, 0.6fr);
	gap: clamp(26px, 3vw, 56px);
	padding-bottom: clamp(28px, 3vw, 46px);
}

.footer__about {
	max-width: 340px;
	margin-top: 20px;
	color: var(--text-dim);
	font-size: 14px;
	line-height: 1.6;
}

.footer__title {
	margin-bottom: 20px;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.footer__list {
	display: flex;
	flex-direction: column;
	gap: 12px;
	color: var(--text-dim);
	font-size: 14px;
	line-height: 1.5;
}

.footer__list a {
	transition: color var(--transition);
}

.footer__list a:hover {
	color: var(--white);
}

.footer__legal {
	display: flex;
	flex-direction: column;
	gap: 12px;
	padding-top: clamp(24px, 2.6vw, 38px);
	color: var(--text-dim);
	font-size: 13px;
	line-height: 1.6;
	border-top: 1px solid var(--line);
}

.footer__copy {
	margin-top: clamp(20px, 2.4vw, 34px);
	color: var(--text-dim);
	font-size: 13px;
	line-height: 1.5;
}

.to-top {
	position: fixed;
	right: 24px;
	bottom: calc(24px + env(safe-area-inset-bottom));
	z-index: calc(var(--z-header) - 1);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 50px;
	height: 50px;
	color: var(--white);
	background: var(--flame);
	border-radius: 50%;
	opacity: 0;
	visibility: hidden;
	transform: translateY(12px);
	box-shadow: 0 14px 30px rgba(0, 0, 0, 0.4);
	transition: opacity var(--transition), visibility var(--transition), transform var(--transition), background var(--transition);
}

.to-top.is-visible {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.to-top:hover {
	background: var(--flame-hover);
}

.to-top svg {
	width: 20px;
	height: 20px;
}

.modal {
	position: fixed;
	inset: 0;
	z-index: var(--z-modal);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
	background: rgba(16, 19, 23, 0.72);
	opacity: 0;
	visibility: hidden;
	transition: opacity var(--transition), visibility var(--transition);
	overflow-y: auto;
	backdrop-filter: blur(4px);
}

.modal.is-open {
	opacity: 1;
	visibility: visible;
}

.modal__dialog {
	position: relative;
	width: min(520px, 100%);
	margin: auto;
	padding: clamp(24px, 3vw, 40px);
	background: var(--surface-solid);
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-modal);
	transform: translateY(20px);
	transition: transform var(--transition);
}

.modal.is-open .modal__dialog {
	transform: translateY(0);
}

.modal__close {
	position: absolute;
	top: 14px;
	right: 14px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	font-size: 24px;
	line-height: 1;
	border-radius: var(--radius);
	transition: color var(--transition), background var(--transition);
}

.modal__close:hover {
	color: var(--amber);
	background: var(--surface);
}

.modal__title {
	margin-bottom: 8px;
	padding-right: 40px;
	font-size: clamp(20px, 2vw, 26px);
	font-weight: 700;
	line-height: 1.25;
}

.modal__text {
	margin-bottom: 22px;
	color: var(--text-muted);
	font-size: 15px;
	line-height: 1.6;
}

.reveal {
	opacity: 1;
	transform: none;
}

.js .reveal {
	opacity: 0;
	transform: translateY(24px);
	transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.js .reveal.is-visible {
	opacity: 1;
	transform: translateY(0);
}

.thanks__card {
	max-width: 720px;
	margin: 0 auto;
	padding: clamp(28px, 3.4vw, 52px);
	text-align: center;
	background: var(--surface);
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
}

.thanks__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 68px;
	height: 68px;
	margin: 0 auto 22px;
	color: var(--flame);
	background: var(--flame-soft);
	border-radius: 50%;
}

.thanks__icon svg {
	width: 34px;
	height: 34px;
}

.thanks__title {
	margin-bottom: 14px;
	font-size: clamp(24px, 3vw, 36px);
	font-weight: 700;
	line-height: 1.2;
}

.thanks__text {
	color: var(--text-muted);
	font-size: 16px;
	line-height: 1.65;
}

.thanks__list {
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin: 26px 0;
	text-align: left;
}

.thanks__list li {
	position: relative;
	padding-left: 28px;
	color: var(--text-muted);
	font-size: 15px;
	line-height: 1.6;
}

.thanks__list li::before {
	content: "";
	position: absolute;
	top: 8px;
	left: 8px;
	width: 7px;
	height: 7px;
	background: var(--flame);
	border-radius: 50%;
}

.thanks__actions {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 12px;
}

.thanks__note {
	margin-top: 22px;
	color: var(--text-dim);
	font-size: 14px;
	line-height: 1.6;
}

.thanks__note a {
	color: var(--amber);
	text-decoration: underline;
}

.policy {
	max-width: 900px;
	margin: 0 auto;
}

.policy h1 {
	margin-bottom: 24px;
	font-size: clamp(26px, 3vw, 40px);
	font-weight: 700;
	line-height: 1.2;
}

.policy__date {
	margin-bottom: 24px;
	color: var(--text-dim);
	font-size: 13px;
}

.policy h2 {
	margin: 34px 0 12px;
	scroll-margin-top: calc(var(--header-height) + 24px);
	font-size: clamp(18px, 1.6vw, 22px);
	font-weight: 700;
	line-height: 1.3;
}

.policy p,
.policy li {
	color: var(--text-muted);
	font-size: 15px;
	line-height: 1.75;
}

.policy ul {
	display: flex;
	flex-direction: column;
	gap: 8px;
	margin: 14px 0;
	padding-left: 22px;
	list-style: disc;
}

.policy a {
	color: var(--amber);
	text-decoration: underline;
}

@media (max-width: 1280px) {
	.header__delivery {
		display: none;
	}

	.hero__inner {
		grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	}
}

@media (max-width: 1180px) {
	.nav {
		display: none;
	}

	.burger {
		display: flex;
	}

	.legend {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.tiles,
	.safety__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.layers__grid {
		grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
	}
}

@media (max-width: 992px) {
	:root {
		--container-padding: 24px;
		--header-height: 76px;
	}

	.hero {
		padding-top: clamp(32px, 4vw, 48px);
	}

	.hero__inner {
		grid-template-columns: minmax(0, 1fr);
		gap: 32px;
	}

	.hero__text,
	.hero__lead,
	.hero__chips,
	.hero__note {
		max-width: 100%;
	}

	.hero__media {
		aspect-ratio: 16 / 12;
	}

	.options,
	.stack,
	.leadform__panel,
	.supply,
	.offer__inner {
		grid-template-columns: minmax(0, 1fr);
	}

	.offer {
		background-image: linear-gradient(180deg, rgba(24, 29, 34, 0.82) 0%, rgba(24, 29, 34, 0.9) 100%), url("../img/cta-bg.png");
		background-image: linear-gradient(180deg, rgba(24, 29, 34, 0.82) 0%, rgba(24, 29, 34, 0.9) 100%), image-set(url("../img/cta-bg.webp") type("image/webp"), url("../img/cta-bg.png") type("image/png"));
	}

	.offer__title,
	.offer__lead {
		max-width: 100%;
	}

	.leadform__head {
		flex-direction: column;
		gap: 20px;
	}

	.leadform__notes {
		max-width: 100%;
		text-align: left;
	}

	.leadform__media {
		min-height: 260px;
		max-height: 420px;
	}

	.kit {
		grid-template-columns: minmax(0, 1fr);
	}

	.kit__head,
	.kit__media,
	.kit__list,
	.kit__factors {
		grid-column: 1;
		grid-row: auto;
	}

	.zoneplan {
		grid-template-columns: minmax(0, 1fr);
	}

	.zoneplan__body {
		order: -1;
	}

	.legend {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 768px) {
	:root {
		--container-padding: 18px;
		--header-height: 68px;
		--radius-xl: 18px;
	}

	body {
		font-size: 15px;
	}

	.brand__mark {
		width: 30px;
		height: 30px;
	}

	.brand__name {
		font-size: 17px;
	}

	.brand__tagline {
		display: none;
	}

	.header__phone span {
		display: none;
	}

	.header__phone {
		width: 46px;
		height: 46px;
		justify-content: center;
		border: 1px solid var(--line-strong);
		border-radius: var(--radius);
	}

	.header__cta {
		display: none;
	}

	.hero__media {
		aspect-ratio: 5 / 4;
	}

	.tiles,
	.gallery__grid,
	.supply__cards,
	.safety__grid {
		grid-template-columns: minmax(0, 1fr);
	}

	.supply__media {
		aspect-ratio: 16 / 9;
	}

	.pricebar {
		flex-direction: column;
		align-items: flex-start;
		gap: 18px;
	}

	.pricebar .btn {
		width: 100%;
	}

	.layers__grid {
		grid-template-columns: minmax(0, 1fr);
	}

	.layers__media {
		aspect-ratio: 16 / 9;
	}

	.form__row--2 {
		grid-template-columns: minmax(0, 1fr);
	}

	.footer__top {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.faq__question {
		padding: 18px;
		gap: 14px;
	}

	.faq__answer p {
		padding: 4px 18px 18px;
	}

	.to-top {
		right: 14px;
		bottom: calc(14px + env(safe-area-inset-bottom));
		width: 46px;
		height: 46px;
	}

	.table th,
	.table td {
		padding: 14px 16px;
	}

	.table-hint {
		display: block;
	}
}

@media (max-width: 560px) {
	.chip {
		width: 100%;
		font-size: 13px;
	}

	.legend {
		grid-template-columns: minmax(0, 1fr);
	}

	.route__item {
		grid-template-columns: 18px 40px minmax(0, 1fr);
		column-gap: 10px;
	}

	.route__item:not(:last-child)::before {
		top: 42px;
		left: 47px;
	}

	.route__icon {
		width: 40px;
		height: 40px;
	}

	.route__icon svg {
		width: 18px;
		height: 18px;
	}

	.chain {
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 22px 12px;
	}

	.chain__arrow {
		display: none;
	}

	.actions {
		flex-direction: column;
		gap: 12px;
	}

	.actions .btn {
		width: 100%;
	}

	.wizard__actions .btn {
		flex: 1;
	}

	.thanks__actions .btn {
		width: 100%;
	}

	.hero__media {
		aspect-ratio: 1 / 1;
	}

	.footer__top {
		grid-template-columns: minmax(0, 1fr);
		gap: 28px;
	}

	.footer__about {
		max-width: 100%;
	}

	.modal {
		padding: 14px;
	}
}

@media (max-width: 380px) {
	:root {
		--container-padding: 14px;
	}

	.btn {
		min-height: 52px;
		padding: 0 20px;
		font-size: 14px;
	}

	.title--hero {
		font-size: 26px;
	}

	.btn {
		white-space: normal;
	}

	.menu {
		width: 100%;
	}
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	*,
	*::before,
	*::after {
		animation-duration: 0.001ms !important;
		transition-duration: 0.001ms !important;
	}
}
