*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: var(--font-family);
	font-size: 16px;
	line-height: 1.5;
	color: var(--1-black-blue);
	background-color: var(--pampas);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

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

a {
	color: inherit;
	text-decoration: none;
}

ul,
ol {
	list-style: none;
}

button {
	font-family: inherit;
	border: none;
	background: none;
	cursor: pointer;
}

input,
textarea,
select {
	font-family: inherit;
	font-size: inherit;
}

.container {
	max-width: 1320px;
	margin: 0 auto;
	padding: 0 20px;
}

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

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 16px 28px;
	border-radius: 14px;
	font-weight: 600;
	font-size: 15px;
	line-height: 1.2;
	text-align: center;
	transition: box-shadow 0.3s, background-color 0.3s, opacity 0.3s;
}

.btn--primary {
	background: linear-gradient(90deg, var(--orange) 0%, var(--yellow-orange) 100%);
	color: var(--white);
}

.btn--primary:hover {
	box-shadow: 0 8px 24px var(--orange-160);
	opacity: 0.92;
}

.btn--outline {
	border: 1px solid var(--3-black-blue-200);
	background-color: var(--8-withe-600);
	color: var(--1-black-blue);
}

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

.header {
	position: sticky;
	top: 0;
	z-index: 50;
	background-color: var(--pampas);
	border-bottom: 1px solid var(--4-black-blue-50);
}

.header__container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	min-height: 80px;
	padding-top: 12px;
	padding-bottom: 12px;
}

.header__logo {
	display: flex;
	align-items: center;
	gap: 12px;
	flex-shrink: 0;
}

.header__logo-img {
	width: 44px;
	height: 44px;
	border-radius: 50%;
}

.header__logo-text {
	display: flex;
	flex-direction: column;
	max-width: 220px;
}

.header__logo-title {
	font-weight: 800;
	font-size: 18px;
	line-height: 1.2;
}

.header__logo-subtitle {
	font-size: 11px;
	line-height: 1.3;
	color: var(--2-black-blue-600);
}

.nav__list {
	display: flex;
	align-items: center;
	gap: 28px;
}

.nav__link {
	font-size: 15px;
	font-weight: 500;
	white-space: nowrap;
	transition: color 0.3s;
}

.nav__link:hover {
	color: var(--orange);
}

.nav__extra {
	display: none;
}

.header__right {
	display: flex;
	align-items: center;
	gap: 24px;
	flex-shrink: 0;
}

.header__phone {
	display: flex;
	align-items: center;
	gap: 8px;
	font-weight: 700;
	font-size: 16px;
	white-space: nowrap;
	transition: color 0.3s;
}

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

.header__btn {
	padding: 14px 24px;
}

.burger {
	position: relative;
	z-index: 60;
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 44px;
	height: 44px;
	padding: 10px;
	border-radius: 10px;
	background-color: var(--4-black-blue-50);
}

.burger span {
	display: block;
	width: 100%;
	height: 2px;
	border-radius: 2px;
	background-color: var(--1-black-blue);
	transition: transform 0.3s, opacity 0.3s;
}

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

.hero {
	position: relative;
	background-image: url("../img/hero.png");
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.hero__container {
	display: flex;
	align-items: stretch;
	justify-content: space-between;
	gap: 40px;
	padding-top: 56px;
	padding-bottom: 56px;
	min-height: 830px;
}

.hero__content {
	display: flex;
	flex-direction: column;
	gap: 24px;
	max-width: 820px;
}

.hero__glass {
	background-color: var(--8-withe-600);
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
	border-radius: 24px;
	padding: 32px 36px;
}

.breadcrumbs {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 13px;
	color: var(--2-black-blue-600);
	margin-bottom: 20px;
}

.breadcrumbs__link {
	transition: color 0.3s;
}

.breadcrumbs__link:hover {
	color: var(--orange);
}

.hero__badge {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 10px 18px;
	border-radius: 999px;
	background-color: var(--8-withe-600);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--nevada);
	margin-bottom: 20px;
}

.hero__badge-dot {
	flex-shrink: 0;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background-color: var(--orange);
}

.hero__title {
	font-weight: 800;
	font-size: 40px;
	line-height: 1.2;
}

.hero__title em {
	font-family: var(--second-family);
	font-style: italic;
	font-weight: 600;
	background: linear-gradient(90deg, var(--yellow-orange) 0%, var(--orange) 100%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	color: var(--orange);
}

.hero__body {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.hero__text {
	font-size: 16px;
	line-height: 1.6;
	color: var(--1-black-blue);
	max-width: 720px;
	margin-bottom: 24px;
}

.hero__chips {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-bottom: 28px;
}

.chip {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 10px 18px 10px 12px;
	border-radius: 999px;
	background-color: var(--8-withe-600);
	font-size: 14px;
	font-weight: 500;
}

.chip__icon {
	width: 24px;
	height: 24px;
	border-radius: 8px;
}

.hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	margin-bottom: 20px;
}

.hero__note {
	font-size: 13px;
	line-height: 1.5;
	color: var(--2-black-blue-600);
	max-width: 420px;
}

.hero__cards {
	display: grid;
	grid-template-columns: repeat(2, 176px);
	gap: 16px;
	align-self: flex-end;
	align-content: end;
	flex-shrink: 0;
}

.hero-card {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 20px;
	min-height: 120px;
	padding: 16px;
	border-radius: 16px;
	border: 1px solid transparent;
	background-color: var(--white);
	font-size: 14px;
	font-weight: 500;
	transition: border-color 0.3s, transform 0.3s;
	cursor: pointer;
}

.hero-card:hover {
	transform: translateY(-2px);
}

.hero-card--active {
	border-color: var(--orange);
	color: var(--orange);
}

.hero-card__icon {
	width: 36px;
	height: 36px;
	border-radius: 50%;
}

.hero-card__text {
	line-height: 1.3;
}

@media (max-width: 1200px) {
	.nav__list {
		gap: 18px;
	}

	.header__logo-subtitle {
		display: none;
	}

	.hero__title {
		font-size: 36px;
	}

	.hero__cards {
		grid-template-columns: repeat(2, 160px);
	}
}

@media (max-width: 1024px) {
	.nav {
		position: fixed;
		top: 0;
		right: 0;
		z-index: 55;
		display: flex;
		flex-direction: column;
		gap: 32px;
		width: min(360px, 100%);
		height: 100dvh;
		padding: 100px 32px 40px;
		background-color: var(--pampas);
		box-shadow: -12px 0 40px var(--3-black-blue-200);
		transform: translateX(100%);
		transition: transform 0.35s;
		overflow-y: auto;
	}

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

	.nav__list {
		flex-direction: column;
		align-items: flex-start;
		gap: 20px;
	}

	.nav__link {
		font-size: 18px;
		font-weight: 600;
	}

	.nav__extra {
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		gap: 20px;
		margin-top: auto;
	}

	.nav__btn {
		width: 100%;
	}

	.header__phone,
	.header__btn {
		display: none;
	}

	.header__phone--mobile {
		display: flex;
	}

	.burger {
		display: flex;
	}

	.hero__container {
		flex-direction: column;
		min-height: 0;
	}

	.hero__content {
		max-width: 100%;
	}

	.hero__cards {
		grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
		width: 100%;
		align-self: stretch;
	}
}

@media (max-width: 640px) {
	.header__container {
		min-height: 64px;
	}

	.header__logo-img {
		width: 38px;
		height: 38px;
	}

	.hero__container {
		padding-top: 24px;
		padding-bottom: 32px;
	}

	.hero__glass {
		padding: 20px;
		border-radius: 18px;
	}

	.hero__title {
		font-size: 27px;
	}

	.hero__badge {
		font-size: 10px;
		padding: 8px 14px;
	}

	.hero__text {
		font-size: 15px;
	}

	.hero__actions {
		width: 100%;
	}

	.hero__btn {
		width: 100%;
	}

	.chip {
		font-size: 13px;
	}

	.hero__cards {
		grid-template-columns: repeat(2, 1fr);
		gap: 12px;
	}

	.hero-card {
		min-height: 104px;
		gap: 14px;
	}
}

@media (max-width: 380px) {
	.hero__cards {
		grid-template-columns: 1fr;
	}
}

.check {
	padding: 96px 0;
	background-color: var(--white);
}

.section-badge {
	display: flex;
	align-items: center;
	gap: 10px;
	width: 100%;
	padding: 12px 20px;
	border-radius: 999px;
	background-color: var(--orange-160);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--orange);
	margin-bottom: 32px;
}

.section-badge__dot {
	flex-shrink: 0;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background-color: var(--orange);
}

.section-title {
	font-weight: 800;
	font-size: 36px;
	line-height: 1.25;
	max-width: 640px;
}

.section-title__accent {
	color: var(--orange);
}

.check__subtitle {
	font-size: 16px;
	line-height: 1.6;
	color: var(--2-black-blue-600);
	max-width: 480px;
	margin-top: 20px;
}

.check__alert {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 18px 24px;
	border-radius: 16px;
	background-color: var(--orange-160);
	font-size: 14px;
	line-height: 1.5;
	color: var(--orange);
	margin-top: 40px;
}

.check__alert svg {
	flex-shrink: 0;
}

.steps {
	position: relative;
	margin-top: 32px;
}

.steps::before {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	left: 50%;
	width: 1px;
	background-color: rgba(255, 90, 31, 0.35);
}

.step {
	display: grid;
	grid-template-columns: 1fr 120px 1fr;
	align-items: center;
	padding: 56px 0;
}

.step:not(:first-child) {
	border-top: 1px dashed rgba(255, 90, 31, 0.3);
}

.step__content {
	max-width: 460px;
}

.step:nth-child(odd) .step__content {
	grid-column: 1;
	grid-row: 1;
	justify-self: end;
	text-align: right;
}

.step:nth-child(even) .step__content {
	grid-column: 3;
	grid-row: 1;
	justify-self: start;
}

.step__marker {
	position: relative;
	grid-column: 2;
	grid-row: 1;
	justify-self: center;
}

.step__circle {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background-color: var(--white);
	border: 1px solid rgba(255, 90, 31, 0.25);
}

.step__icon {
	width: 22px;
	height: 22px;
}

.step__num {
	position: absolute;
	top: -4px;
	right: -8px;
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 22px;
	height: 22px;
	border-radius: 50%;
	background-color: var(--1-black-blue);
	color: var(--white);
	font-size: 9px;
	font-weight: 700;
}

.step__title {
	font-size: 20px;
	font-weight: 700;
	line-height: 1.3;
	margin-bottom: 12px;
}

.step__text {
	font-size: 14px;
	line-height: 1.6;
	color: var(--2-black-blue-600);
	margin-bottom: 16px;
}

.step__link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 14px;
	font-weight: 600;
	color: var(--orange);
	transition: opacity 0.3s;
}

.step__link:hover {
	opacity: 0.75;
}

.step__link span {
	transition: transform 0.3s;
}

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

@media (max-width: 900px) {
	.check {
		padding: 64px 0;
	}

	.section-title {
		font-size: 30px;
	}

	.steps::before {
		left: 28px;
	}

	.step {
		grid-template-columns: 84px 1fr;
		align-items: start;
		padding: 36px 0;
	}

	.step:nth-child(odd) .step__content,
	.step:nth-child(even) .step__content {
		grid-column: 2;
		grid-row: 1;
		justify-self: start;
		text-align: left;
		max-width: 100%;
	}

	.step__marker {
		grid-column: 1;
		grid-row: 1;
		justify-self: start;
	}
}

@media (max-width: 640px) {
	.section-title {
		font-size: 26px;
	}

	.section-badge {
		font-size: 10px;
		padding: 10px 16px;
	}

	.check__alert {
		font-size: 13px;
		padding: 16px 18px;
	}

	.step__title {
		font-size: 18px;
	}

	.steps::before {
		left: 24px;
	}

	.step {
		grid-template-columns: 64px 1fr;
	}

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

	.step__icon {
		width: 20px;
		height: 20px;
	}
}

.pie {
	padding-bottom: 96px;
	background-color: var(--white);
}

.pie__card {
	display: grid;
	grid-template-columns: 1.2fr 1fr;
	border-radius: 32px;
	overflow: hidden;
	background-color: #33302b;
}

.pie__info {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	padding: 48px 56px;
}

.pie__badge {
	display: flex;
	align-items: center;
	gap: 10px;
	width: 100%;
	padding: 12px 20px;
	border-radius: 999px;
	background-color: var(--9-withe-100);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--orange);
	margin-bottom: 32px;
}

.pie__badge-dot {
	flex-shrink: 0;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background-color: var(--orange);
}

.pie__title {
	font-size: 24px;
	font-weight: 700;
	color: var(--white);
	margin-bottom: 20px;
}

.pie__text {
	font-size: 15px;
	line-height: 1.7;
	color: var(--8-withe-600);
	max-width: 620px;
	margin-bottom: 40px;
}

.pie__btn {
	width: 100%;
	max-width: 440px;
	margin-top: auto;
	padding: 18px 28px;
	border-radius: 999px;
	box-shadow: 0 12px 32px rgba(255, 90, 31, 0.35);
}

.pie__media {
	position: relative;
	min-height: 380px;
}

.pie__img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.pie__labels {
	position: absolute;
	top: 30%;
	bottom: 24px;
	left: 20px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: space-between;
	gap: 10px;
}

.pie__label {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 8px 14px;
	border-radius: 10px;
	background-color: var(--white);
	font-size: 13px;
	font-weight: 500;
	box-shadow: 0 4px 12px var(--3-black-blue-200);
}

.pie__label-dot {
	flex-shrink: 0;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	border: 2px solid var(--orange);
}

@media (max-width: 1024px) {
	.pie__card {
		grid-template-columns: 1fr;
	}

	.pie__info {
		padding: 36px 32px;
	}

	.pie__media {
		min-height: 420px;
	}

	.pie__labels {
		top: 24px;
	}
}

@media (max-width: 640px) {
	.pie {
		padding-bottom: 64px;
	}

	.pie__card {
		border-radius: 20px;
	}

	.pie__info {
		padding: 24px 20px;
	}

	.pie__title {
		font-size: 21px;
	}

	.pie__btn {
		max-width: 100%;
	}

	.pie__media {
		min-height: 400px;
	}

	.pie__labels {
		left: 12px;
		right: 12px;
		bottom: 16px;
	}

	.pie__label {
		font-size: 12px;
		padding: 7px 12px;
	}
}

.products {
	padding: 96px 0;
	background-color: #fbeee6;
}

.products__subtitle {
	font-size: 16px;
	line-height: 1.6;
	color: var(--2-black-blue-600);
	max-width: 760px;
	margin-top: 20px;
	margin-bottom: 48px;
}

.section-title {
	margin-top: 0;
}

.product-main {
	display: grid;
	grid-template-columns: 0.85fr 1fr;
	border-radius: 24px;
	overflow: hidden;
	background-color: var(--white);
	margin-bottom: 24px;
}

.product-main__media {
	position: relative;
	min-height: 260px;
}

.product-main__img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.product-main__chip {
	position: absolute;
	top: 16px;
	left: 16px;
	padding: 7px 14px;
	border-radius: 999px;
	background-color: rgba(27, 29, 33, 0.75);
	color: var(--white);
	font-size: 12px;
	font-weight: 500;
}

.product-main__info {
	padding: 36px 40px;
}

.product-main__title {
	font-size: 20px;
	font-weight: 700;
	margin-bottom: 16px;
}

.product-main__text {
	font-size: 14px;
	line-height: 1.65;
	color: var(--2-black-blue-600);
	margin-bottom: 24px;
}

.tags {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 24px;
}

.tag {
	display: inline-flex;
	align-items: center;
	padding: 6px 12px;
	border-radius: 999px;
	background-color: var(--gallery);
	font-size: 12px;
	font-weight: 500;
	color: var(--1-black-blue);
}

.tag--outline {
	background-color: var(--white);
	border: 1px solid var(--3-black-blue-200);
}

.arrow-link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 14px;
	font-weight: 600;
	color: var(--orange);
	transition: opacity 0.3s;
}

.arrow-link:hover {
	opacity: 0.75;
}

.arrow-link span {
	transition: transform 0.3s;
}

.arrow-link:hover span {
	transform: translateX(4px);
}

.product-cards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	margin-bottom: 48px;
}

.product-card {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	padding: 28px;
	border-radius: 24px;
	background-color: var(--white);
}

.product-card__head {
	display: flex;
	align-items: center;
	gap: 16px;
	margin-bottom: 18px;
}

.product-card__icon {
	flex-shrink: 0;
	width: 52px;
	height: 52px;
	border-radius: 50%;
}

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

.product-card__text {
	font-size: 13.5px;
	line-height: 1.6;
	color: var(--2-black-blue-600);
	margin-bottom: 20px;
}

.product-card__tag {
	width: 100%;
	margin-bottom: 28px;
}

.product-card .arrow-link {
	margin-top: auto;
}

.products__table-wrap {
	max-width: 960px;
	margin: 0 auto 40px;
	border-radius: 14px;
	overflow-x: auto;
	box-shadow: 0 2px 8px var(--4-black-blue-50);
}

.products__table {
	width: 100%;
	min-width: 640px;
	border-collapse: collapse;
	background-color: var(--white);
	font-size: 13px;
}

.products__table th {
	background-color: #4a5b41;
	color: var(--white);
	font-weight: 600;
	text-align: left;
	padding: 15px 24px;
}

.products__table td {
	padding: 16px 24px;
	line-height: 1.5;
	color: var(--1-black-blue);
}

.products__table td:first-child {
	font-weight: 700;
	white-space: nowrap;
}

.products__table tbody tr:nth-child(odd) {
	background-color: #ecebe6;
}

.products__note {
	display: flex;
	align-items: center;
	gap: 14px;
	max-width: 960px;
	margin: 0 auto;
	padding: 18px 24px;
	border-radius: 14px;
	background-color: #f0e6d8;
	font-size: 14px;
	line-height: 1.5;
	color: var(--1-black-blue);
}

.products__note svg {
	flex-shrink: 0;
	color: var(--2-black-blue-600);
}

@media (max-width: 1024px) {
	.products {
		padding: 64px 0;
	}

	.product-main {
		grid-template-columns: 1fr;
	}

	.product-main__media {
		min-height: 300px;
	}

	.product-cards {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 640px) {
	.products__subtitle {
		font-size: 15px;
		margin-bottom: 32px;
	}

	.product-main {
		border-radius: 18px;
	}

	.product-main__media {
		min-height: 220px;
	}

	.product-main__info {
		padding: 20px;
	}

	.product-main__title {
		font-size: 18px;
	}

	.product-card {
		padding: 20px;
		border-radius: 18px;
	}

	.products__note {
		font-size: 13px;
		padding: 16px 18px;
	}
}

.price {
	padding: 96px 0;
	background-color: var(--white);
}

.price__grid {
	display: grid;
	grid-template-columns: 1fr 420px;
	gap: 64px;
	align-items: start;
}

.price__subheading {
	font-size: 18px;
	font-weight: 700;
	margin-top: 36px;
	margin-bottom: 14px;
}

.price__text {
	font-size: 15px;
	line-height: 1.7;
	color: var(--2-black-blue-600);
}

.fchips {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 24px;
}

.fchip {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 9px 16px;
	border-radius: 999px;
	border: 1px solid var(--3-black-blue-200);
	background-color: var(--white);
	font-size: 13px;
	font-weight: 500;
	color: var(--1-black-blue);
}

.fchip--peach {
	border-color: transparent;
	background-color: #fdeee6;
}

.fchip--grey {
	border-color: transparent;
	background-color: var(--gallery);
	font-weight: 600;
}

.fchip__accent {
	color: var(--orange);
	font-weight: 600;
}

.price__btn {
	width: 100%;
	margin-top: 36px;
	padding: 18px 28px;
	border-radius: 999px;
}

.price__side {
	display: flex;
	flex-direction: column;
	gap: 24px;
	position: sticky;
	top: 104px;
}

.price__house {
	position: relative;
	border-radius: 24px;
	overflow: hidden;
	background-color: #f0e9e0;
	padding: 40px;
}

.price__house-img {
	display: block;
	width: 70%;
	margin: 24px auto 0;
}

.price__features {
	position: absolute;
	top: 20px;
	left: 20px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 10px;
}

.price__feature {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 9px 14px;
	border-radius: 999px;
	background-color: var(--white);
	font-size: 13px;
	font-weight: 600;
	box-shadow: 0 4px 12px var(--4-black-blue-50);
}

.price__feature img {
	width: 16px;
	height: 16px;
}

.price__form {
	padding: 28px;
	border-radius: 24px;
	background-color: var(--white);
	box-shadow: 0 16px 48px var(--4-black-blue-50), 0 2px 8px var(--4-black-blue-50);
}

.price__form-title {
	font-size: 20px;
	font-weight: 700;
	margin-bottom: 8px;
}

.price__form-note {
	font-size: 13px;
	color: var(--2-black-blue-600);
	margin-bottom: 16px;
}

.price__form-alert {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 12px 16px;
	border-radius: 12px;
	background-color: #fdeee6;
	font-size: 12.5px;
	font-weight: 500;
	color: var(--orange);
	margin-bottom: 20px;
}

.price__form-alert img {
	flex-shrink: 0;
	width: 16px;
	height: 16px;
}

.field {
	display: block;
	margin-bottom: 16px;
}

.field__label {
	display: block;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--2-black-blue-600);
	margin-bottom: 8px;
}

.field__control {
	width: 100%;
	padding: 13px 16px;
	border: 1px solid var(--hit-pink);
	border-radius: 10px;
	background-color: var(--white);
	font-size: 14px;
	color: var(--1-black-blue);
	transition: border-color 0.3s;
}

.field__control:focus {
	outline: none;
	border-color: var(--orange);
}

.field__control::placeholder {
	color: var(--3-black-blue-200);
}

select.field__control {
	appearance: none;
	-webkit-appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='m1 1.5 5 5 5-5' stroke='%23ff5a1f' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 16px center;
	cursor: pointer;
}

.price__form-btn {
	width: 100%;
	padding: 15px 24px;
	border: 1px solid var(--3-black-blue-200);
	border-radius: 999px;
	background-color: var(--white);
	font-size: 14px;
	font-weight: 600;
	color: var(--1-black-blue);
	margin-top: 8px;
	transition: background-color 0.3s;
}

.price__form-btn:hover {
	background-color: var(--gallery);
}

.price__form-success {
	display: none;
	font-size: 13px;
	font-weight: 600;
	color: var(--elm);
	text-align: center;
	margin-top: 14px;
}

.price__form.is-sent .price__form-success {
	display: block;
}

@media (max-width: 1100px) {
	.price {
		padding: 64px 0;
	}

	.price__grid {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.price__side {
		position: static;
		max-width: 480px;
	}
}

@media (max-width: 640px) {
	.price__subheading {
		font-size: 16px;
	}

	.price__text {
		font-size: 14px;
	}

	.fchip {
		font-size: 12px;
		padding: 8px 12px;
	}

	.price__house {
		padding: 24px;
	}

	.price__house-img {
		width: 85%;
		margin-top: 48px;
	}

	.price__form {
		padding: 20px;
		border-radius: 18px;
	}

	.price__side {
		max-width: 100%;
	}
}

.fchips + .price__text {
	margin-top: 24px;
}

.faq {
	padding: 96px 0;
	background-color: #fbeee6;
}

.faq__badge {
	width: fit-content;
	margin: 0 auto 28px;
}

.faq__title {
	text-align: center;
	max-width: 620px;
	margin: 0 auto 48px;
}

.faq__grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 24px;
	align-items: start;
}

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

.faq__item {
	border-radius: 28px;
	background-color: var(--white);
	box-shadow: 0 2px 8px var(--4-black-blue-50);
}

.faq__question {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 20px 24px;
	font-size: 15px;
	font-weight: 700;
	line-height: 1.4;
	cursor: pointer;
	list-style: none;
}

.faq__question::-webkit-details-marker {
	display: none;
}

.faq__toggle {
	position: relative;
	flex-shrink: 0;
	width: 16px;
	height: 16px;
}

.faq__toggle::before,
.faq__toggle::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	background-color: var(--1-black-blue);
	transform: translate(-50%, -50%);
	transition: transform 0.3s;
}

.faq__toggle::before {
	width: 14px;
	height: 2px;
}

.faq__toggle::after {
	width: 2px;
	height: 14px;
}

.faq__item[open] .faq__toggle::after {
	transform: translate(-50%, -50%) rotate(90deg);
}

.faq__answer {
	padding: 0 52px 20px 24px;
	font-size: 14px;
	line-height: 1.65;
	color: var(--2-black-blue-600);
}

@media (max-width: 900px) {
	.faq {
		padding: 64px 0;
	}

	.faq__title {
		margin-bottom: 32px;
	}

	.faq__grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}
}

@media (max-width: 640px) {
	.faq__item {
		border-radius: 20px;
	}

	.faq__question {
		padding: 16px 18px;
		font-size: 14px;
	}

	.faq__answer {
		padding: 0 18px 16px;
	}
}

.nav.no-transition {
	transition: none;
}

.selection {
	padding: 96px 0;
	background-color: #33302b;
}

.selection__badge {
	display: flex;
	align-items: center;
	gap: 10px;
	max-width: 590px;
	padding: 12px 20px;
	border-radius: 999px;
	background-color: var(--9-withe-100);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--orange);
	margin-bottom: 32px;
}

.selection__badge-dot {
	flex-shrink: 0;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background-color: var(--orange);
}

.selection__title {
	color: var(--white);
	max-width: 900px;
}

.selection__subtitle {
	font-size: 15px;
	line-height: 1.7;
	color: var(--8-withe-600);
	max-width: 560px;
	margin-top: 20px;
	margin-bottom: 48px;
}

.selection__card {
	display: grid;
	grid-template-columns: 1fr 440px;
	gap: 40px;
	padding: 36px;
	border-radius: 24px;
	background-color: var(--white);
}

.selection__form {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px 24px;
	align-content: start;
}

.field__control--soft {
	border: none;
	background-color: #fdf0e9;
	padding: 16px;
}

.field__control--soft:focus {
	outline: 1px solid var(--hit-pink);
}

.selection__file {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 16px;
	border: 1px dashed var(--hit-pink);
	border-radius: 10px;
	background-color: var(--white);
	cursor: pointer;
	transition: border-color 0.3s, background-color 0.3s;
}

.selection__file:hover {
	border-color: var(--orange);
	background-color: #fdf0e9;
}

.selection__file-text {
	font-size: 14px;
	color: var(--1-black-blue);
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.selection__comment {
	grid-column: 1 / -1;
	resize: vertical;
	min-height: 110px;
}

.selection__form .field {
	margin-bottom: 0;
}

.selection__label {
	text-transform: none;
	letter-spacing: 0;
	font-size: 13px;
	font-weight: 500;
	color: var(--1-black-blue);
}

.selection__agree {
	grid-column: 1 / -1;
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 13px;
	color: var(--2-black-blue-600);
	cursor: pointer;
	margin-top: 8px;
}

.selection__agree input {
	width: 18px;
	height: 18px;
	accent-color: var(--orange);
	cursor: pointer;
}

.selection__btn {
	grid-column: 1 / -1;
	justify-self: start;
	padding: 17px 36px;
	border-radius: 999px;
	font-size: 15px;
}

.selection__success {
	grid-column: 1 / -1;
	display: none;
	font-size: 13px;
	font-weight: 600;
	color: var(--elm);
}

.selection__form.is-sent .selection__success {
	display: block;
}

.selection__media {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 40px;
	border-radius: 20px;
	background-color: #f0e9e0;
}

.selection__img {
	max-height: 540px;
}

.selection__features {
	position: absolute;
	bottom: 24px;
	left: 24px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 10px;
}

.selection__feature {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 9px 14px;
	border-radius: 999px;
	background-color: var(--white);
	font-size: 13px;
	font-weight: 600;
	box-shadow: 0 4px 12px var(--4-black-blue-50);
}

.selection__feature img {
	width: 16px;
	height: 16px;
}

@media (max-width: 1100px) {
	.selection {
		padding: 64px 0;
	}

	.selection__card {
		grid-template-columns: 1fr;
	}

	.selection__media {
		order: -1;
		min-height: 320px;
	}

	.selection__img {
		max-height: 320px;
	}
}

@media (max-width: 640px) {
	.selection__card {
		padding: 20px;
		border-radius: 18px;
	}

	.selection__form {
		grid-template-columns: 1fr;
		gap: 14px;
	}

	.selection__btn {
		width: 100%;
		justify-self: stretch;
	}

	.selection__media {
		padding: 24px;
	}

	.selection__subtitle {
		margin-bottom: 32px;
	}
}

.delivery {
	padding: 96px 0;
	background-color: var(--white);
}

.delivery__subtitle {
	font-size: 16px;
	line-height: 1.6;
	color: var(--2-black-blue-600);
	max-width: 820px;
	margin-top: 20px;
	margin-bottom: 40px;
}

.delivery__photo {
	position: relative;
	border-radius: 24px;
	overflow: hidden;
	margin-bottom: 56px;
}

.delivery__photo-img {
	width: 100%;
	height: 330px;
	object-fit: cover;
}

.delivery__photo::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(16, 19, 23, 0.15) 0%, rgba(16, 19, 23, 0.65) 100%);
}

.delivery__photo-caption {
	position: absolute;
	left: 28px;
	bottom: 24px;
	z-index: 1;
	max-width: 460px;
}

.delivery__photo-title {
	font-size: 19px;
	font-weight: 700;
	line-height: 1.35;
	color: var(--white);
	margin-bottom: 10px;
}

.delivery__photo-text {
	font-size: 13px;
	line-height: 1.5;
	color: var(--8-withe-600);
}

.dsteps {
	position: relative;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
	margin-bottom: 48px;
}

.dsteps::before {
	content: "";
	position: absolute;
	top: 32px;
	left: 0;
	right: 0;
	height: 1px;
	background-color: var(--swirl);
}

.dstep {
	position: relative;
	text-align: center;
}

.dstep__circle {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 64px;
	height: 64px;
	margin: 0 auto 20px;
	border-radius: 50%;
	background-color: var(--white);
	border: 1px solid var(--swirl);
}

.dstep__icon {
	width: 26px;
	height: 26px;
}

.dstep__title {
	font-size: 15px;
	font-weight: 700;
	margin-bottom: 12px;
}

.dstep__list {
	font-size: 13px;
	line-height: 1.9;
	color: var(--boulder);
}

.delivery__alert {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 18px 24px;
	border-radius: 16px;
	background-color: #ecebe6;
	font-size: 14px;
	line-height: 1.5;
	color: var(--1-black-blue);
	margin-bottom: 56px;
}

.delivery__alert svg {
	flex-shrink: 0;
	color: var(--2-black-blue-600);
}

.delivery__region {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 48px;
	align-items: center;
	max-width: 1080px;
	margin: 0 auto;
	padding: 40px 48px;
	border: 1px solid var(--4-black-blue-50);
	border-radius: 20px;
	background-color: var(--white);
	box-shadow: 0 2px 12px var(--4-black-blue-50);
}

.delivery__map {
	width: 100%;
}

.delivery__region-title {
	font-size: 21px;
	font-weight: 700;
	margin-bottom: 20px;
}

.delivery__region-text {
	font-size: 15px;
	line-height: 1.7;
	color: var(--2-black-blue-600);
}

@media (max-width: 900px) {
	.delivery {
		padding: 64px 0;
	}

	.dsteps {
		grid-template-columns: repeat(2, 1fr);
		gap: 32px 24px;
	}

	.dsteps::before {
		display: none;
	}

	.delivery__region {
		grid-template-columns: 1fr;
		gap: 28px;
		padding: 28px;
	}
}

@media (max-width: 640px) {
	.delivery__subtitle {
		font-size: 15px;
	}

	.delivery__photo {
		border-radius: 18px;
	}

	.delivery__photo-img {
		height: 380px;
	}

	.delivery__photo-caption {
		left: 18px;
		right: 18px;
		bottom: 18px;
	}

	.delivery__photo-title {
		font-size: 17px;
	}

	.delivery__alert {
		font-size: 13px;
		padding: 16px 18px;
	}
}

@media (max-width: 480px) {
	.dsteps {
		grid-template-columns: 1fr;
	}
}

.buy {
	padding: 96px 0;
	background-color: #f2ece3;
}

.buy__badge {
	width: fit-content;
	margin: 0 auto 24px;
}

.buy__title {
	text-align: center;
	max-width: 100%;
	margin-bottom: 48px;
}

.buy__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
	margin-bottom: 56px;
}

.buy-card {
	min-height: 185px;
	padding: 24px;
	border-radius: 6px;
	background-color: var(--white);
}

.buy-card__num {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	border-radius: 50%;
	background-color: #fdeee6;
	font-family: var(--second-family);
	font-size: 14px;
	font-weight: 600;
	color: var(--orange);
	margin-bottom: 20px;
}

.buy-card__title {
	font-size: 15.5px;
	font-weight: 700;
	line-height: 1.35;
	margin-bottom: 12px;
}

.buy-card__list li {
	position: relative;
	padding-left: 16px;
	font-size: 12.5px;
	line-height: 1.55;
	color: var(--boulder);
	margin-bottom: 6px;
}

.buy-card__list li::before {
	content: "—";
	position: absolute;
	left: 0;
}

.buy__action {
	text-align: center;
}

.buy__btn {
	background-color: var(--6-caramel);
	color: var(--white);
	padding: 17px 36px;
	border-radius: 999px;
	font-size: 14px;
}

.buy__btn:hover {
	background-color: #cd9243;
}

@media (max-width: 1024px) {
	.buy {
		padding: 64px 0;
	}

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

	.buy-card {
		min-height: 0;
	}
}

@media (max-width: 560px) {
	.buy__grid {
		grid-template-columns: 1fr;
		gap: 16px;
		margin-bottom: 40px;
	}

	.buy__btn {
		width: 100%;
	}
}

.warranty {
	padding: 96px 0;
	background-color: var(--white);
}

.warranty__badge {
	width: fit-content;
	margin: 0 auto 24px;
}

.warranty__title {
	text-align: center;
	max-width: 720px;
	margin: 0 auto 56px;
}

.warranty__list {
	max-width: 980px;
	margin: 0 auto;
}

.wrow {
	display: grid;
	grid-template-columns: 52px 250px 1fr;
	gap: 20px 48px;
	align-items: start;
	padding: 28px 0 24px;
	border-bottom: 1px solid #f0c9a6;
}

.wrow__icon {
	width: 52px;
	height: 52px;
	border-radius: 50%;
}

.wrow__title {
	font-size: 18px;
	font-weight: 700;
	line-height: 1.35;
	padding-top: 4px;
}

.wrow__body {
	padding-top: 6px;
}

.wrow__text {
	font-size: 13.5px;
	line-height: 1.6;
	color: var(--boulder);
	margin-bottom: 10px;
}

.wrow__points li {
	position: relative;
	padding-left: 16px;
	font-size: 13px;
	line-height: 1.55;
	color: var(--boulder);
	margin-bottom: 7px;
}

.wrow__points li::before {
	content: "";
	position: absolute;
	top: 7px;
	left: 2px;
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background-color: var(--1-black-blue);
}

@media (max-width: 900px) {
	.warranty {
		padding: 64px 0;
	}

	.warranty__title {
		margin-bottom: 40px;
	}

	.wrow {
		grid-template-columns: 44px 1fr;
		gap: 16px 20px;
	}

	.wrow__icon {
		width: 44px;
		height: 44px;
	}

	.wrow__title {
		padding-top: 8px;
	}

	.wrow__body {
		grid-column: 1 / -1;
		padding-top: 0;
	}
}

@media (max-width: 640px) {
	.wrow__title {
		font-size: 16px;
	}

	.wrow {
		padding: 20px 0 16px;
	}
}

.cta {
	padding: 72px 0;
	background-image: url("../img/cta-bg.png");
	background-size: cover;
	background-position: center;
}

.cta__card {
	max-width: 675px;
	margin: 0 auto;
	padding: 40px 44px;
	border-radius: 24px;
	background-color: var(--white);
	box-shadow: 0 24px 64px var(--3-black-blue-200);
}

.cta__title {
	font-size: 25px;
	font-weight: 800;
	line-height: 1.3;
	margin-bottom: 16px;
}

.cta__text {
	font-size: 14px;
	line-height: 1.6;
	color: var(--2-black-blue-600);
	margin-bottom: 28px;
}

.cta__fields {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4px 24px;
}

.cta__label {
	text-transform: none;
	letter-spacing: 0;
	font-size: 12px;
	font-weight: 600;
	color: var(--1-black-blue);
}

.cta__field-wide {
	grid-column: 1 / -1;
}

.cta__comment {
	resize: vertical;
	min-height: 84px;
}

select.field__control--soft {
	appearance: none;
	-webkit-appearance: none;
	background-image: none;
	cursor: pointer;
	color: var(--boulder);
}

.cta__agree {
	margin-top: 12px;
	margin-bottom: 24px;
	align-items: flex-start;
	font-size: 12.5px;
	line-height: 1.5;
}

.cta__agree input {
	flex-shrink: 0;
	margin-top: 2px;
}

.cta__btn {
	padding: 16px 32px;
	border-radius: 12px;
	background-color: var(--orange);
	color: var(--white);
	font-size: 15px;
	font-weight: 600;
	transition: background-color 0.3s;
}

.cta__btn:hover {
	background-color: #e84f18;
}

.cta__btn:disabled {
	opacity: 0.7;
	cursor: default;
}

.cta__success {
	margin-top: 14px;
}

.cta__card.is-sent .cta__success {
	display: block;
}

@media (max-width: 640px) {
	.cta {
		padding: 32px 0;
	}

	.cta__card {
		padding: 24px 20px;
		border-radius: 18px;
	}

	.cta__title {
		font-size: 21px;
	}

	.cta__fields {
		grid-template-columns: 1fr;
	}

	.cta__btn {
		width: 100%;
	}
}

.footer {
	padding: 72px 0 48px;
	background-color: var(--white);
	border-top: 1px solid var(--4-black-blue-50);
}

.footer__grid {
	display: grid;
	grid-template-columns: 1.3fr 1fr 1fr 1fr;
	gap: 40px;
	margin-bottom: 56px;
}

.footer__logo {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 20px;
}

.footer__logo-img {
	width: 44px;
	height: 44px;
	border-radius: 50%;
}

.footer__logo-text {
	display: flex;
	flex-direction: column;
	max-width: 220px;
}

.footer__logo-title {
	font-weight: 800;
	font-size: 17px;
	line-height: 1.2;
}

.footer__logo-subtitle {
	font-size: 11px;
	line-height: 1.3;
	color: var(--2-black-blue-600);
}

.footer__desc {
	font-size: 14px;
	line-height: 1.65;
	color: var(--1-black-blue);
	max-width: 300px;
}

.footer__heading {
	font-size: 15px;
	font-weight: 700;
	margin-bottom: 24px;
}

.footer__links li {
	margin-bottom: 16px;
}

.footer__link {
	font-size: 14px;
	color: var(--bright-gray);
	transition: color 0.3s;
}

a.footer__link:hover {
	color: var(--orange);
}

.footer__bottom {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 12px;
	padding-top: 24px;
	border-top: 1px solid var(--4-black-blue-50);
	font-size: 13px;
	color: var(--bright-gray);
	margin-bottom: 16px;
}

.footer__disclaimer {
	font-size: 12px;
	line-height: 1.6;
	color: var(--boulder);
	max-width: 990px;
}

.cta__agree-link {
	color: var(--orange);
	text-decoration: underline;
}

.legal {
	padding: 64px 0 96px;
	background-color: var(--white);
}

.legal__content {
	max-width: 820px;
}

.legal__title {
	font-size: 32px;
	font-weight: 800;
	line-height: 1.25;
	margin-bottom: 12px;
}

.legal__date {
	font-size: 13px;
	color: var(--boulder);
	margin-bottom: 36px;
}

.legal__content h2 {
	font-size: 20px;
	font-weight: 700;
	margin-top: 36px;
	margin-bottom: 14px;
}

.legal__content p {
	font-size: 15px;
	line-height: 1.7;
	color: var(--bright-gray);
	margin-bottom: 12px;
}

.legal__content ul {
	margin-bottom: 12px;
	padding-left: 4px;
}

.legal__content ul li {
	position: relative;
	padding-left: 18px;
	font-size: 15px;
	line-height: 1.7;
	color: var(--bright-gray);
	margin-bottom: 8px;
}

.legal__content ul li::before {
	content: "";
	position: absolute;
	top: 10px;
	left: 2px;
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background-color: var(--orange);
}

.legal__back {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 14px;
	font-weight: 600;
	color: var(--orange);
	margin-bottom: 32px;
}

.legal__back:hover {
	opacity: 0.75;
}

@media (max-width: 1024px) {
	.footer__grid {
		grid-template-columns: 1fr 1fr;
	}
}

@media (max-width: 640px) {
	.footer {
		padding: 48px 0 32px;
	}

	.footer__grid {
		grid-template-columns: 1fr;
		gap: 32px;
		margin-bottom: 36px;
	}

	.footer__bottom {
		flex-direction: column;
	}

	.legal__title {
		font-size: 24px;
	}
}

.header__phone--static {
	display: flex;
}

@media (max-width: 1024px) {
	.header__phone--static {
		display: flex;
	}
}

.header {
	transition: box-shadow 0.3s;
}

.header.is-scrolled {
	box-shadow: 0 8px 24px var(--4-black-blue-50);
}

.btn {
	will-change: transform;
}

.btn:hover {
	transform: translateY(-2px);
}

.product-card,
.buy-card,
.faq__item {
	transition: transform 0.3s, box-shadow 0.3s;
}

.product-card:hover,
.buy-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 14px 32px var(--4-black-blue-50);
}

.faq__item:hover {
	box-shadow: 0 8px 24px var(--4-black-blue-50);
}

.chip,
.fchip,
.tag {
	transition: transform 0.3s;
}

.chip:hover,
.fchip:hover,
.tag:hover {
	transform: translateY(-2px);
}

.reveal {
	transition: opacity 0.7s cubic-bezier(0.22, 0.61, 0.36, 1), transform 0.7s cubic-bezier(0.22, 0.61, 0.36, 1);
	transition-delay: var(--reveal-delay, 0s);
	will-change: opacity, transform;
}

.reveal:not(.is-visible) {
	opacity: 0;
	transform: translateY(28px);
}
