:root {
	--1-black-blue: #1b1d21;
	--2-black-blue-600: rgba(27, 29, 33, 0.6);
	--3-black-blue-200: rgba(27, 29, 33, 0.2);
	--4-black-blue-50: rgba(27, 29, 33, 0.05);
	--5-blue: #26428b;
	--6-caramel: #dca659;
	--7-withe: #fff;
	--8-withe-600: rgba(255, 255, 255, 0.6);
	--9-withe-100: rgba(255, 255, 255, 0.1);
	--10-withe-50: rgba(255, 255, 255, 0.05);
	--11-milk: #f5efeb;

	--font-family: "Inter", sans-serif;
	--second-family: "Archivo", sans-serif;
	--third-family: "IBM Plex Mono", sans-serif;
}

body {
	font-family: var(--font-family);
	color: var(--1-black-blue);
	background-color: var(--7-withe);
	overflow-x: hidden;
}

.container {
	width: 100%;
	max-width: 1340px;
	margin: 0 auto;
	padding: 0 20px;
}

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 16px 28px;
	border-radius: 100px;
	font-weight: 600;
	line-height: 1.2;
	text-align: center;
	white-space: nowrap;
	cursor: pointer;
	transition: background-color 0.25s ease, color 0.25s ease,
		border-color 0.25s ease, box-shadow 0.25s ease, transform 0.2s ease;
}

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

.btn:active {
	transform: translateY(0);
}

.btn:disabled {
	opacity: 0.75;
	cursor: default;
	transform: none;
}

.btn--blue {
	background-color: var(--5-blue);
	color: var(--7-withe);
}
.btn--blue:hover {
	background-color: var(--6-caramel);
}

.btn--white {
	background-color: var(--7-withe);
	color: var(--1-black-blue);
	box-shadow: 0 4px 20px var(--4-black-blue-50);
}
.btn--white:hover {
	background-color: var(--6-caramel);
	color: var(--7-withe);
}

.btn--black {
	background-color: var(--1-black-blue);
	color: var(--7-withe);
}
.btn--black:hover {
	background-color: var(--6-caramel);
}

.btn--outline {
	background-color: transparent;
	color: var(--1-black-blue);
	border: 1px solid var(--3-black-blue-200);
}
.btn--outline:hover {
	background-color: var(--6-caramel);
	color: var(--7-withe);
	border-color: var(--6-caramel);
}

.btn--lg {
	padding: 19px 34px;
	font-size: 17px;
}

.btn--sm {
	padding: 13px 26px;
	font-size: 15px;
}

.link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-weight: 500;
	transition: color 0.25s ease;
}
.link:hover {
	color: var(--6-caramel);
}

.link--blue {
	color: var(--5-blue);
}
.link--dark {
	color: var(--1-black-blue);
}

.hero {
	position: relative;
	background-color: var(--11-milk);
	padding-bottom: 50px;
	overflow: hidden;
}

.hero__media {
	position: absolute;
	inset: 0;
	z-index: 0;
}

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

.header {
	position: relative;
	z-index: 10;
	padding: 26px 0;
}

.header__inner {
	display: flex;
	align-items: center;
	gap: 40px;
}

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

.logo__mark {
	width: 40px;
	height: auto;
}

.logo__text {
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.logo__title {
	font-family: var(--second-family);
	font-weight: 800;
	font-size: 19px;
	letter-spacing: 1px;
	line-height: 1;
}

.logo__sub {
	font-size: 11px;
	color: var(--2-black-blue-600);
	line-height: 1;
	white-space: nowrap;
}

.nav {
	margin: 0 auto;
}

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

.nav__link {
	font-size: 16px;
	white-space: nowrap;
	color: var(--1-black-blue);
	transition: color 0.25s ease;
}

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

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

.header__phone {
	font-weight: 600;
	font-size: 17px;
	white-space: nowrap;
	transition: color 0.25s ease;
}

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

.burger {
	display: none;
	width: 44px;
	height: 44px;
	padding: 10px;
	grid-template-columns: 1fr 1fr;
	gap: 5px;
	place-content: center;
}

.burger span {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background-color: var(--1-black-blue);
}

.menu {
	display: none;
	position: fixed;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	z-index: 5;
	background-color: var(--7-withe);
	padding-top: 96px;
	overflow-y: auto;
}

.menu.is-open {
	display: block;
}

.menu__inner {
	display: flex;
	flex-direction: column;
	min-height: calc(100vh - 96px);
}

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

.menu__link {
	display: block;
	padding: 18px 20px;
	margin: 0 -20px;
	font-size: 20px;
	color: var(--1-black-blue);
	border-bottom: 1px solid var(--4-black-blue-50);
	transition: background-color 0.25s ease, color 0.25s ease;
}

.menu__link:hover {
	color: var(--6-caramel);
}

.menu__link--active {
	background-color: var(--5-blue);
	color: var(--7-withe);
}

.menu__link--active:hover {
	color: var(--7-withe);
}

.menu__logo {
	margin-top: auto;
	padding: 28px 0;
}

.hero__inner {
	position: relative;
	z-index: 1;
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	gap: 40px;
	min-height: 660px;
	padding-top: 40px;
}

.hero__content {
	align-self: flex-start;
	max-width: 600px;
}

.badge {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 28px;
	font-weight: 600;
	font-size: 14px;
	letter-spacing: 1px;
	text-transform: uppercase;
	color: var(--1-black-blue);
}

.badge__flag {
	display: inline-flex;
	padding: 4px;
	background-color: var(--7-withe);
	border-radius: 5px;
	box-shadow: 0 2px 8px var(--4-black-blue-50);
}

.badge__flag svg {
	border-radius: 2px;
	overflow: hidden;
}

.hero__title {
	max-width: 680px;
	margin-bottom: 26px;
	font-family: var(--second-family);
	font-weight: 700;
	font-size: 40px;
	line-height: 1.16;
	letter-spacing: -0.5px;
	color: var(--1-black-blue);
}

.hero__text {
	max-width: 560px;
	margin-bottom: 44px;
	font-size: 18px;
	line-height: 1.55;
	color: var(--2-black-blue-600);
}

.hero__actions {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 16px;
	margin-bottom: 32px;
}

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

.features {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 14px;
	margin-bottom: 40px;
}

.features__item {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	padding: 15px 24px;
	background-color: var(--7-withe);
	border-radius: 100px;
	box-shadow: 0 8px 28px var(--4-black-blue-50);
	font-weight: 500;
	font-size: 15px;
	color: var(--1-black-blue);
}

.features__item:nth-child(even) {
	margin-right: 24px;
}

.features__dot {
	width: 16px;
	height: 16px;
	border-radius: 50%;
	background-color: var(--7-withe);
	border: 4px solid var(--6-caramel);
	flex-shrink: 0;
}

.features__item--active {
	background-color: var(--6-caramel);
	color: var(--7-withe);
}

.features__item--active .features__dot {
	border-color: var(--7-withe);
	background-color: var(--6-caramel);
}

.hero__cards-wrap {
	position: relative;
	z-index: 1;
}

.cards {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 16px;
	margin-top: 90px;
}

.card {
	display: flex;
	flex-direction: column;
	padding: 24px;
	background-color: var(--8-withe-600);
	border: 1px solid var(--4-black-blue-50);
	border-radius: 16px;
	backdrop-filter: blur(8px);
	transition: border-color 0.25s ease, background-color 0.25s ease;
}

.card:hover {
	background-color: var(--7-withe);
	border-color: var(--6-caramel);
}

.card__icon {
	width: 42px;
	height: 42px;
	margin-bottom: 48px;
}

.card__title {
	margin-bottom: 10px;
	font-weight: 600;
	font-size: 17px;
	color: var(--1-black-blue);
}

.card__link {
	font-size: 15px;
	color: var(--2-black-blue-600);
	transition: color 0.25s ease;
}

.card__link:hover {
	color: var(--6-caramel);
}

@media (max-width: 1200px) {
	.hero__title {
		font-size: 34px;
	}

	.nav__list {
		gap: 22px;
	}

	.header__inner {
		gap: 24px;
	}
}

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

	.burger {
		display: grid;
	}

	.header {
		background-color: var(--11-milk);
		border-bottom: 1px solid var(--4-black-blue-50);
	}

	.header__inner {
		justify-content: space-between;
	}

	.hero {
		display: flex;
		flex-direction: column;
		padding-bottom: 40px;
	}

	.header {
		order: -1;
	}

	.hero__media {
		position: static;
	}

	.hero__media img {
		height: auto;
		max-height: 420px;
	}

	.hero__inner {
		flex-direction: column;
		align-items: stretch;
		min-height: auto;
		padding-top: 32px;
		gap: 32px;
	}

	.hero__content {
		max-width: none;
	}

	.hero__title {
		max-width: none;
		font-size: 36px;
	}

	.hero__text {
		max-width: none;
	}

	.features {
		align-items: stretch;
		gap: 12px;
		margin-bottom: 0;
	}

	.features__item {
		justify-content: flex-start;
	}

	.features__item:nth-child(even) {
		margin-right: 0;
	}

	.cards {
		grid-template-columns: repeat(3, 1fr);
		margin-top: 40px;
	}

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

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

	.logo__sub {
		display: none;
	}

	.logo__title {
		font-size: 16px;
	}

	.logo {
		gap: 8px;
	}

	.header__inner {
		gap: 8px;
	}

	.header__contacts {
		gap: 8px;
	}

	.burger {
		width: 38px;
		height: 38px;
		padding: 8px;
	}

	.btn--sm {
		padding: 10px 16px;
		font-size: 13px;
	}

	.hero__media {
		padding: 0 20px;
	}

	.hero__media img {
		max-height: 320px;
		border-radius: 16px;
	}

	.hero__title {
		font-size: 30px;
	}

	.hero__text {
		font-size: 16px;
		margin-bottom: 32px;
	}

	.hero__actions {
		align-items: stretch;
	}

	.hero__actions .btn {
		width: 100%;
	}

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

	.card {
		padding: 20px;
	}

	.menu__logo .logo__sub {
		display: block;
	}
}

@media (max-width: 380px) {
	.hero__title {
		font-size: 26px;
	}
}

.eyebrow {
	display: inline-block;
	margin-bottom: 22px;
	font-family: var(--third-family);
	font-weight: 600;
	font-size: 14px;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	color: var(--6-caramel);
}

.accent {
	color: var(--6-caramel);
}

.btn--icon {
	gap: 12px;
	padding: 16px 26px;
	justify-content: flex-start;
	text-align: left;
}

.btn__label {
	white-space: normal;
}

.btn__icon {
	position: relative;
	width: 18px;
	height: 18px;
	border: 2px solid currentColor;
	border-radius: 50%;
	color: var(--6-caramel);
	flex-shrink: 0;
}

.btn__icon::after {
	content: "";
	position: absolute;
	inset: 4px;
	border-radius: 50%;
	background-color: currentColor;
}

.btn--outline:hover .btn__icon {
	color: var(--7-withe);
}

.btn__arrow {
	margin-left: auto;
	font-size: 18px;
}

.pick {
	background-color: var(--7-withe);
}

.pick__inner {
	display: flex;
	align-items: center;
	gap: 80px;
	padding-top: 100px;
	padding-bottom: 100px;
}

.pick__media {
	flex: 0 0 42%;
	display: flex;
	justify-content: center;
}

.pick__media img {
	width: 100%;
	max-width: 360px;
}

.pick__body {
	flex: 1;
}

.pick__title {
	max-width: 820px;
	margin-bottom: 24px;
	font-family: var(--second-family);
	font-weight: 700;
	font-size: 52px;
	line-height: 1.12;
	letter-spacing: -0.5px;
	color: var(--1-black-blue);
}

.pick__text {
	max-width: 640px;
	font-size: 18px;
	line-height: 1.6;
	color: var(--2-black-blue-600);
}

.cover {
	position: relative;
	background-color: var(--11-milk);
}

.cover__inner {
	padding-top: 100px;
	padding-bottom: 100px;
}

.cover__body {
	position: relative;
	z-index: 1;
	max-width: 540px;
}

.label {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 20px;
	font-size: 14px;
	color: var(--2-black-blue-600);
}

.label__dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background-color: var(--6-caramel);
}

.cover__title {
	margin-bottom: 18px;
	font-family: var(--second-family);
	font-weight: 700;
	font-size: 28px;
	line-height: 1.2;
	color: var(--1-black-blue);
}

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

.cover__media {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	width: 50%;
}

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

@media (max-width: 992px) {
	.pick__inner {
		flex-direction: column-reverse;
		align-items: stretch;
		gap: 40px;
		padding-top: 60px;
		padding-bottom: 60px;
	}

	.pick__media img {
		max-width: 320px;
	}

	.pick__title {
		font-size: 34px;
	}

	.cover__media {
		position: static;
		width: 100%;
		height: 280px;
	}

	.cover__inner {
		padding-top: 40px;
		padding-bottom: 60px;
	}

	.cover__body {
		max-width: none;
	}
}

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

	.pick__text,
	.cover__text {
		font-size: 15px;
	}

	.cover__media {
		height: 220px;
	}

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


.tile {
	background-color: var(--7-withe);
}

.tile__inner {
	display: flex;
	align-items: center;
	gap: 80px;
	padding-top: 90px;
	padding-bottom: 90px;
}

.tile__media {
	flex: 0 0 46%;
}

.tile__media img {
	width: 100%;
	border-radius: 24px;
}

.tile__body {
	flex: 1;
	max-width: 620px;
}

@media (max-width: 992px) {
	.tile__inner {
		flex-direction: column;
		align-items: stretch;
		gap: 32px;
		padding-top: 50px;
		padding-bottom: 50px;
	}

	.tile__media {
		flex: none;
	}
}

.products {
	position: relative;
	background-color: var(--11-milk);
	padding-top: 100px;
	padding-bottom: 100px;
	overflow: hidden;
}

.products__media {
	position: absolute;
	top: 40px;
	right: 0;
	width: 52%;
	z-index: 0;
}

.products__media img {
	width: 100%;
}

.products__inner {
	position: relative;
	z-index: 1;
}

.products__head {
	max-width: 660px;
	margin-bottom: 70px;
}

.eyebrow--dark {
	color: var(--1-black-blue);
}

.products__title {
	max-width: 640px;
	margin-bottom: 22px;
	font-family: var(--second-family);
	font-weight: 700;
	font-size: 44px;
	line-height: 1.15;
	letter-spacing: -0.5px;
	color: var(--1-black-blue);
}

.products__text {
	max-width: 560px;
	font-size: 16px;
	line-height: 1.6;
	color: var(--2-black-blue-600);
}

.products__left {
	max-width: 580px;
}

.product-card {
	display: flex;
	gap: 28px;
	padding: 28px;
	background-color: var(--7-withe);
	border-radius: 24px;
	box-shadow: 0 30px 60px rgba(27, 29, 33, 0.07);
}

.product-card__col {
	flex: 0 0 38%;
}

.product-card__icon {
	display: block;
	position: relative;
	width: 40px;
	height: 40px;
	margin-bottom: 18px;
	border: 2px solid var(--6-caramel);
	border-radius: 50%;
}

.product-card__icon::after {
	content: "";
	position: absolute;
	inset: 11px;
	border-radius: 50%;
	background-color: var(--6-caramel);
}

.product-card__media {
	border-radius: 14px;
	overflow: hidden;
}

.product-card__media img {
	width: 100%;
}

.product-card__body {
	flex: 1;
}

.product-card__title {
	margin-bottom: 14px;
	font-family: var(--second-family);
	font-weight: 700;
	font-size: 21px;
	line-height: 1.25;
	color: var(--1-black-blue);
}

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

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

.tag {
	padding: 8px 16px;
	background-color: var(--11-milk);
	border-radius: 100px;
	font-size: 13px;
	color: var(--2-black-blue-600);
}

.products__btn {
	width: 100%;
	margin-top: 20px;
	gap: 10px;
}

.products__btn-arrow {
	font-size: 18px;
}

@media (max-width: 1200px) {
	.products__media {
		width: 50%;
	}
}

@media (max-width: 992px) {
	.products {
		display: flex;
		flex-direction: column;
		padding-top: 60px;
		padding-bottom: 60px;
	}

	.products__inner {
		order: 1;
	}

	.products__media {
		order: 2;
		position: static;
		width: 100%;
		margin-top: 40px;
		padding: 0 20px;
	}

	.products__head {
		margin-bottom: 36px;
	}

	.products__title {
		font-size: 30px;
	}

	.products__left {
		max-width: none;
	}
}

@media (max-width: 640px) {
	.product-card {
		flex-direction: column;
		gap: 22px;
		padding: 24px;
	}

	.product-card__col {
		flex: none;
	}

	.product-card__media {
		max-width: 260px;
	}

	.products__title {
		font-size: 26px;
	}
}

.price {
	background-color: var(--7-withe);
	padding-top: 100px;
	padding-bottom: 100px;
}

.price__head {
	margin-bottom: 64px;
}

.price__title {
	max-width: 860px;
	margin-top: 22px;
	font-family: var(--second-family);
	font-weight: 700;
	font-size: 46px;
	line-height: 1.15;
	letter-spacing: -0.5px;
	color: var(--1-black-blue);
}

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

.price__subtitle {
	margin-bottom: 18px;
	font-weight: 700;
	font-size: 18px;
	color: var(--1-black-blue);
}

.price__list {
	margin-bottom: 32px;
}

.price__row {
	display: flex;
	align-items: center;
	gap: 26px;
	padding: 15px 0;
	border-bottom: 1px solid var(--3-black-blue-200);
}

.price__num {
	font-family: var(--third-family);
	font-weight: 600;
	font-size: 14px;
	color: var(--6-caramel);
}

.price__name {
	font-size: 15px;
	color: var(--1-black-blue);
}

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

.price__main .price__subtitle:not(:first-child) {
	margin-top: 8px;
}

.price__cta {
	margin-top: 8px;
}

.price__media {
	margin-bottom: 28px;
	border-radius: 18px;
	overflow: hidden;
}

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

.price__included {
	margin-bottom: 28px;
}

.price__inc {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 7px 0;
	font-size: 15px;
	color: var(--2-black-blue-600);
}

.price__dot {
	flex-shrink: 0;
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background-color: var(--6-caramel);
}

.price__side-cta {
	width: 100%;
}

@media (max-width: 992px) {
	.price {
		padding-top: 60px;
		padding-bottom: 60px;
	}

	.price__head {
		margin-bottom: 40px;
	}

	.price__title {
		font-size: 32px;
	}

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

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

	.price__row {
		gap: 18px;
	}

	.price__cta,
	.price__side-cta {
		width: 100%;
	}
}

.film {
	background-color: var(--11-milk);
	padding-top: 80px;
	padding-bottom: 80px;
}

.film__inner {
	display: grid;
	grid-template-columns: 1fr 440px;
	gap: 40px;
	align-items: stretch;
}

.film__media {
	border-radius: 24px;
	overflow: hidden;
}

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

.film__right {
	max-width: 440px;
}

.film-card {
	padding: 28px;
	background-color: var(--7-withe);
	border-radius: 24px;
	box-shadow: 0 30px 60px rgba(27, 29, 33, 0.07);
}

.film-card__media {
	max-width: 230px;
	margin: 0 auto 22px;
}

.film-card__media img {
	width: 100%;
}

.film-card__title {
	margin-bottom: 14px;
	font-family: var(--second-family);
	font-weight: 700;
	font-size: 21px;
	line-height: 1.25;
	color: var(--1-black-blue);
}

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

.film__btn {
	width: 100%;
	margin-top: 20px;
	gap: 10px;
}

@media (max-width: 992px) {
	.film {
		padding-top: 60px;
		padding-bottom: 60px;
	}

	.film__inner {
		grid-template-columns: 1fr;
		gap: 32px;
	}

	.film__media {
		height: 320px;
	}

	.film__right {
		max-width: none;
	}
}

@media (max-width: 640px) {
	.film__media {
		height: 240px;
	}
}

.mat {
	background-color: var(--11-milk);
	padding-top: 80px;
	padding-bottom: 80px;
}

.mat__inner {
	display: grid;
	grid-template-columns: 440px 1fr;
	gap: 40px;
	align-items: stretch;
}

.mat__left {
	max-width: 440px;
}

.mat__media {
	border-radius: 24px;
	overflow: hidden;
}

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

@media (max-width: 992px) {
	.mat {
		padding-top: 60px;
		padding-bottom: 60px;
	}

	.mat__inner {
		grid-template-columns: 1fr;
		gap: 32px;
	}

	.mat__left {
		max-width: none;
	}

	.mat__media {
		height: 320px;
		order: -1;
	}
}

@media (max-width: 640px) {
	.mat__media {
		height: 240px;
	}
}

.lead {
	background-image: linear-gradient(100deg, rgba(231, 238, 246, 0.85) 0%, rgba(231, 238, 246, 0.35) 38%, rgba(231, 238, 246, 0) 60%), url("../img/rect-10-1.png");
	background-size: cover;
	background-position: center right;
	background-repeat: no-repeat;
	padding-top: 90px;
	padding-bottom: 90px;
}

.lead__head {
	max-width: 640px;
	margin-bottom: 36px;
}

.lead__title {
	margin-bottom: 20px;
	font-family: var(--second-family);
	font-weight: 700;
	font-size: 44px;
	line-height: 1.15;
	letter-spacing: -0.5px;
	color: var(--1-black-blue);
}

.lead__text {
	max-width: 560px;
	margin-bottom: 26px;
	font-size: 16px;
	line-height: 1.6;
	color: var(--2-black-blue-600);
}

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

.lead__badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 10px 18px;
	background-color: var(--7-withe);
	border-radius: 100px;
	font-size: 14px;
	color: var(--1-black-blue);
	box-shadow: 0 6px 18px rgba(27, 29, 33, 0.06);
}

.lead__flag {
	display: block;
	border-radius: 3px;
	overflow: hidden;
	line-height: 0;
	box-shadow: 0 0 0 1px rgba(27, 29, 33, 0.1);
}

.lead-form {
	max-width: 1080px;
	padding: 44px;
	background-color: var(--7-withe);
	border-radius: 28px;
	box-shadow: 0 40px 80px rgba(27, 29, 33, 0.12);
}

.lead-form__top {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 24px 40px;
}

.lead-form__col {
	display: flex;
	flex-direction: column;
	gap: 18px;
}

.field {
	width: 100%;
	padding: 18px 22px;
	background-color: #eef0f3;
	border: none;
	border-radius: 14px;
	font-size: 15px;
	color: var(--1-black-blue);
}

.field::placeholder {
	color: #9aa0a8;
}

.field:focus {
	outline: 2px solid var(--5-blue);
	outline-offset: 1px;
}

.field--area {
	flex: 1;
	min-height: 150px;
	resize: vertical;
}

.dropzone {
	display: flex;
	flex: 1;
	align-items: center;
	justify-content: center;
	min-height: 150px;
	padding: 20px;
	border: 1.5px dashed #c3c8cf;
	border-radius: 14px;
	font-size: 15px;
	color: #9aa0a8;
	text-align: center;
	cursor: pointer;
	transition: border-color 0.2s ease, color 0.2s ease;
}

.dropzone:hover {
	border-color: var(--6-caramel);
	color: var(--6-caramel);
}

.lead-form__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 22px 40px;
	margin-top: 30px;
}

.select-group__label {
	display: block;
	margin-bottom: 10px;
	font-size: 14px;
	color: var(--1-black-blue);
}

.select {
	width: 100%;
	padding: 16px 46px 16px 20px;
	background-color: var(--7-withe);
	border: 1px solid var(--3-black-blue-200);
	border-radius: 12px;
	font-size: 15px;
	color: var(--1-black-blue);
	cursor: pointer;
	appearance: none;
	-webkit-appearance: none;
	background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='8' viewBox='0 0 14 8' fill='none'><path d='M1 1l6 6 6-6' stroke='%23dca659' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/></svg>");
	background-repeat: no-repeat;
	background-position: right 18px center;
}

.select:required:invalid {
	color: #b6ad9d;
}

.select:focus {
	outline: 2px solid var(--5-blue);
	outline-offset: 1px;
}

.checkbox {
	display: flex;
	align-items: center;
	gap: 12px;
	margin: 28px 0 24px;
	font-size: 14px;
	color: var(--2-black-blue-600);
	cursor: pointer;
}

.checkbox input {
	width: 18px;
	height: 18px;
	accent-color: var(--5-blue);
	cursor: pointer;
}

.lead-form__submit {
	box-shadow: 0 0 0 6px rgba(38, 66, 139, 0.12), 0 16px 34px rgba(38, 66, 139, 0.3);
}

@media (max-width: 992px) {
	.lead {
		padding-top: 60px;
		padding-bottom: 60px;
	}

	.lead__title {
		font-size: 32px;
	}

	.lead-form {
		padding: 32px;
	}

	.lead-form__top,
	.lead-form__grid {
		grid-template-columns: 1fr;
	}

	.lead-form__top {
		gap: 18px;
	}

	.field--area {
		min-height: 120px;
	}

	.dropzone {
		min-height: 120px;
	}
}

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

	.lead-form {
		padding: 22px;
	}
}

.faq {
	background-color: var(--11-milk);
	padding-top: 100px;
	padding-bottom: 100px;
}

.faq__head {
	margin-bottom: 56px;
	text-align: center;
}

.faq__title {
	max-width: 760px;
	margin: 0 auto;
	font-family: var(--second-family);
	font-weight: 700;
	font-size: 44px;
	line-height: 1.15;
	letter-spacing: -0.5px;
	color: var(--1-black-blue);
}

.faq__item {
	border-bottom: 1px solid var(--3-black-blue-200);
}

.faq__q {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	width: 100%;
	padding: 26px 4px;
	background: none;
	text-align: left;
	font-family: var(--font-family);
	font-weight: 700;
	font-size: 18px;
	line-height: 1.35;
	color: var(--1-black-blue);
	cursor: pointer;
	transition: color 0.2s ease;
}

.faq__q:hover {
	color: var(--6-caramel);
}

.faq__item.is-open .faq__q {
	color: var(--6-caramel);
}

.faq__icon {
	position: relative;
	flex-shrink: 0;
	width: 22px;
	height: 22px;
}

.faq__icon::before,
.faq__icon::after {
	content: "";
	position: absolute;
	background-color: currentColor;
}

.faq__icon::before {
	top: 50%;
	left: 0;
	width: 100%;
	height: 2px;
	transform: translateY(-50%);
}

.faq__icon::after {
	left: 50%;
	top: 0;
	width: 2px;
	height: 100%;
	transform: translateX(-50%);
	transition: opacity 0.2s ease, transform 0.2s ease;
}

.faq__item.is-open .faq__icon::after {
	opacity: 0;
	transform: translateX(-50%) rotate(90deg);
}

.faq__a {
	overflow: hidden;
	max-height: 0;
	transition: max-height 0.35s ease;
}

.faq__item.is-open .faq__a {
	max-height: 320px;
}

.faq__a-text {
	margin: 4px 0 24px;
	padding: 24px 28px;
	background-color: var(--7-withe);
	border-radius: 16px;
	font-size: 16px;
	line-height: 1.6;
	color: var(--2-black-blue-600);
	box-shadow: 0 14px 34px rgba(27, 29, 33, 0.05);
}

@media (max-width: 992px) {
	.faq {
		padding-top: 60px;
		padding-bottom: 60px;
	}

	.faq__head {
		margin-bottom: 36px;
	}

	.faq__title {
		font-size: 30px;
	}
}

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

	.faq__q {
		font-size: 16px;
		gap: 16px;
		padding: 20px 2px;
	}

	.faq__item.is-open .faq__a {
		max-height: 520px;
	}

	.faq__a-text {
		padding: 18px 20px;
		font-size: 15px;
	}
}

.supply {
	background-color: #15171b;
	padding-top: 100px;
	padding-bottom: 100px;
}

.supply__head {
	margin-bottom: 56px;
}

.supply__title {
	max-width: 720px;
	margin-top: 22px;
	margin-bottom: 24px;
	font-family: var(--second-family);
	font-weight: 700;
	font-size: 46px;
	line-height: 1.15;
	letter-spacing: -0.5px;
	color: var(--7-withe);
}

.supply__text {
	max-width: 720px;
	font-size: 16px;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.55);
}

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

.supply-card {
	display: flex;
	flex-direction: column;
	padding: 32px 28px;
	background-color: #1f2228;
	border: 1px solid rgba(255, 255, 255, 0.07);
	border-radius: 18px;
}

.supply-card--light {
	background-color: var(--11-milk);
	border-color: transparent;
}

.supply-card--outline {
	background-color: #1f2228;
	border-color: var(--6-caramel);
}

.supply-card__icon {
	display: block;
	width: 44px;
	height: 44px;
	margin-bottom: 60px;
}

.supply-card__icon img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.supply-card__title {
	margin-bottom: 16px;
	font-weight: 700;
	font-size: 19px;
	line-height: 1.25;
	color: var(--7-withe);
}

.supply-card--light .supply-card__title {
	color: var(--1-black-blue);
}

.supply-card__list {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.supply-card__list li {
	position: relative;
	padding-left: 18px;
	font-size: 15px;
	line-height: 1.45;
	color: rgba(255, 255, 255, 0.6);
}

.supply-card--light .supply-card__list li {
	color: var(--2-black-blue-600);
}

.supply-card__list li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 8px;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background-color: var(--6-caramel);
}

.supply__note {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-top: 40px;
	font-size: 15px;
	color: rgba(255, 255, 255, 0.5);
}

.supply__flag {
	display: block;
	border-radius: 3px;
	overflow: hidden;
	line-height: 0;
}

@media (max-width: 992px) {
	.supply {
		padding-top: 60px;
		padding-bottom: 60px;
	}

	.supply__head {
		margin-bottom: 36px;
	}

	.supply__title {
		font-size: 32px;
	}

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

	.supply-card__icon {
		margin-bottom: 36px;
	}
}

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

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

	.supply-card__icon {
		margin-bottom: 24px;
	}
}

.trust {
	background-color: #15171b;
	padding-top: 100px;
	padding-bottom: 100px;
}

.trust__head {
	margin-bottom: 48px;
}

.trust__title {
	max-width: 720px;
	margin-top: 22px;
	font-family: var(--second-family);
	font-weight: 700;
	font-size: 46px;
	line-height: 1.15;
	letter-spacing: -0.5px;
	color: var(--7-withe);
}

.trust__grid {
	display: grid;
	grid-template-columns: repeat(12, 1fr);
	gap: 24px;
}

.trust-a {
	grid-column: span 7;
}

.trust-b {
	grid-column: span 5;
}

.trust-c,
.trust-d,
.trust-e {
	grid-column: span 4;
}

.trust-card {
	display: flex;
	flex-direction: column;
	background-color: #1f2228;
	border: 1px solid rgba(255, 255, 255, 0.07);
	border-radius: 18px;
	overflow: hidden;
}

.trust-card__title {
	margin-bottom: 18px;
	font-weight: 700;
	font-size: 19px;
	line-height: 1.25;
	color: var(--7-withe);
}

.trust-card__list {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.trust-card__list li {
	position: relative;
	padding-left: 18px;
	font-size: 15px;
	line-height: 1.45;
	color: rgba(255, 255, 255, 0.6);
}

.trust-card__list li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 8px;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background-color: var(--6-caramel);
}

.trust-card--row {
	flex-direction: row;
	align-items: stretch;
	gap: 24px;
	padding: 24px;
}

.trust-card--row .trust-card__body {
	flex: 1;
	align-self: center;
}

.trust-card__media-side {
	flex: 0 0 40%;
	border-radius: 14px;
	overflow: hidden;
}

.trust-card__media-side img {
	width: 100%;
	height: 100%;
	min-height: 220px;
	object-fit: cover;
}

.trust-card__shield {
	flex: 0 0 38%;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 10px;
}

.trust-card__shield img {
	width: 150px;
}

.trust-card--col {
	padding: 24px;
}

.trust-card__top {
	position: relative;
	margin-bottom: 26px;
}

.trust-card__top .product-card__icon {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
	margin-bottom: 0;
}

.trust-card__product {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 200px;
	padding-top: 24px;
}

.trust-card__product img {
	max-width: 78%;
}

.trust-card--col .trust-card__body {
	margin-top: auto;
}

.trust-card__photo {
	height: 215px;
}

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

.trust-card--photo .trust-card__body {
	padding: 24px;
}

.trust__note {
	margin-top: 24px;
	padding: 28px 32px;
	background-color: #1f2228;
	border: 1px solid rgba(255, 255, 255, 0.06);
	border-radius: 16px;
	font-size: 15px;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 992px) {
	.trust {
		padding-top: 60px;
		padding-bottom: 60px;
	}

	.trust__head {
		margin-bottom: 32px;
	}

	.trust__title {
		font-size: 32px;
	}

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

	.trust-a,
	.trust-b,
	.trust-c,
	.trust-d,
	.trust-e {
		grid-column: span 1;
	}
}

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

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

	.trust-card--row {
		flex-direction: column;
	}

	.trust-card__media-side {
		flex: none;
	}

	.trust-card__media-side img {
		min-height: 200px;
	}

	.trust-card__shield {
		flex: none;
	}
}

.path {
	position: relative;
	background-color: var(--11-milk);
	padding-top: 100px;
	padding-bottom: 100px;
	overflow: hidden;
}

.path__media {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	width: 50%;
}

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

.path__inner {
	position: relative;
	z-index: 1;
}

.path__head {
	margin-bottom: 60px;
}

.path__title {
	max-width: 560px;
	margin-top: 22px;
	font-family: var(--second-family);
	font-weight: 700;
	font-size: 46px;
	line-height: 1.15;
	letter-spacing: -0.5px;
	color: var(--1-black-blue);
}

.path__body {
	display: flex;
	gap: 40px;
	max-width: 620px;
}

.path__scale {
	position: relative;
	flex: 0 0 8px;
	align-self: stretch;
	background-color: rgba(27, 29, 33, 0.16);
	-webkit-mask: repeating-linear-gradient(45deg, #000 0 5px, transparent 5px 11px);
	mask: repeating-linear-gradient(45deg, #000 0 5px, transparent 5px 11px);
}

.path__scale-fill {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 0;
	background: linear-gradient(180deg, #1b1d21 0%, #26428b 45%, #dca659 100%);
	transition: height 0.15s linear;
}

.path__list {
	flex: 1;
}

.path__step {
	display: flex;
	align-items: flex-start;
	gap: 28px;
	padding: 22px 0;
	border-bottom: 1px solid var(--3-black-blue-200);
}

.path__step:first-child {
	padding-top: 0;
}

.path__num {
	flex-shrink: 0;
	min-width: 46px;
	font-family: var(--second-family);
	font-weight: 700;
	font-size: 30px;
	line-height: 1;
	color: var(--6-caramel);
}

.path__step-title {
	margin-bottom: 8px;
	font-weight: 700;
	font-size: 18px;
	line-height: 1.3;
	color: var(--1-black-blue);
}

.path__step-desc {
	max-width: 340px;
	font-size: 15px;
	line-height: 1.5;
	color: var(--2-black-blue-600);
}

@media (max-width: 992px) {
	.path {
		display: flex;
		flex-direction: column;
		padding-top: 60px;
		padding-bottom: 60px;
	}

	.path__inner {
		order: 1;
	}

	.path__media {
		order: 2;
		position: static;
		width: 100%;
		height: 340px;
		margin-top: 40px;
	}

	.path__head {
		margin-bottom: 36px;
	}

	.path__title {
		font-size: 32px;
	}

	.path__body {
		max-width: none;
	}
}

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

	.path__body {
		gap: 24px;
	}

	.path__step {
		gap: 18px;
	}

	.path__num {
		min-width: 36px;
		font-size: 24px;
	}
}

.order {
	position: relative;
	background-color: var(--6-caramel);
	padding-top: 80px;
	padding-bottom: 80px;
	overflow: hidden;
}

.order__inner {
	display: grid;
	grid-template-columns: minmax(0, 680px) 1fr;
	gap: 40px;
	align-items: center;
}

.order-form {
	position: relative;
	z-index: 1;
	padding: 44px;
	background-color: var(--7-withe);
	border-radius: 24px;
	box-shadow: 0 40px 80px rgba(27, 29, 33, 0.15);
}

.order-form__title {
	margin-bottom: 14px;
	font-family: var(--second-family);
	font-weight: 700;
	font-size: 30px;
	line-height: 1.2;
	color: var(--1-black-blue);
}

.order-form__text {
	font-size: 16px;
	line-height: 1.55;
	color: var(--2-black-blue-600);
}

.order-form__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 18px 20px;
	margin-top: 28px;
}

.field-group {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.field-group__label {
	font-size: 14px;
	font-weight: 600;
	color: var(--1-black-blue);
}

.field-group--full {
	grid-column: 1 / -1;
}

.order-form .field--area {
	min-height: 110px;
}

.order-form__file {
	margin-top: 18px;
}

.order-form .dropzone {
	min-height: 64px;
}

.order-form .checkbox {
	align-items: flex-start;
	margin: 22px 0;
}

.order-form .checkbox input {
	margin-top: 2px;
}

.order-form__submit {
	width: 100%;
	box-shadow: 0 16px 34px rgba(38, 66, 139, 0.3);
}

.order__media {
	position: absolute;
	right: 0;
	bottom: 0;
	z-index: 0;
	display: flex;
	justify-content: flex-end;
	width: 44%;
}

.order__media img {
	width: 100%;
	max-width: 740px;
}

.order__aside {
	position: relative;
	z-index: 1;
	align-self: center;
	max-width: 300px;
}

.order__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	margin-bottom: 18px;
	border-radius: 12px;
	background-color: rgba(255, 255, 255, 0.25);
	color: var(--7-withe);
}

.order__icon svg {
	width: 24px;
	height: 24px;
}

.order__caption {
	font-size: 16px;
	line-height: 1.5;
	color: rgba(255, 255, 255, 0.95);
}

@media (max-width: 992px) {
	.order {
		display: flex;
		flex-direction: column;
		padding-top: 50px;
		padding-bottom: 50px;
	}

	.order__inner {
		order: 1;
		grid-template-columns: 1fr;
		gap: 28px;
	}

	.order-form {
		padding: 28px;
	}

	.order__aside {
		max-width: none;
	}

	.order__media {
		order: 2;
		position: static;
		width: 100%;
		margin-top: 20px;
		justify-content: center;
	}

	.order__media img {
		max-width: 440px;
	}
}

@media (max-width: 640px) {
	.order-form__title {
		font-size: 23px;
	}

	.order-form__grid {
		grid-template-columns: 1fr;
	}
}

.footer {
	background-color: #15171b;
	padding-top: 64px;
	padding-bottom: 40px;
}

.footer__top {
	display: grid;
	grid-template-columns: 1.5fr 1fr 1fr 1fr;
	gap: 40px;
	padding-bottom: 56px;
}

.footer__brand {
	max-width: 420px;
}

.footer__logo {
	margin-bottom: 28px;
}

.footer__logo .logo__title {
	color: var(--7-withe);
}

.footer__logo .logo__accent {
	color: var(--6-caramel);
}

.footer__logo .logo__sub {
	color: rgba(255, 255, 255, 0.5);
}

.footer__desc {
	font-size: 15px;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.45);
}

.footer__col {
	padding-left: 32px;
	border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__col-title {
	margin-bottom: 28px;
	font-family: var(--third-family);
	font-weight: 600;
	font-size: 13px;
	letter-spacing: 1.2px;
	text-transform: uppercase;
	color: var(--6-caramel);
}

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

.footer__list a,
.footer__list span {
	font-size: 15px;
	color: rgba(255, 255, 255, 0.6);
	transition: color 0.2s ease;
}

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

.footer__bottom {
	padding-top: 36px;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__copy {
	margin-bottom: 18px;
	font-size: 14px;
	color: rgba(255, 255, 255, 0.65);
}

.footer__legal {
	max-width: 1100px;
	font-size: 13px;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.4);
}

@media (max-width: 992px) {
	.footer {
		padding-top: 48px;
	}

	.footer__top {
		grid-template-columns: 1fr 1fr;
		gap: 36px;
		padding-bottom: 40px;
	}

	.footer__brand {
		grid-column: 1 / -1;
		max-width: none;
	}

	.footer__col {
		padding-left: 24px;
	}
}

@media (max-width: 640px) {
	.footer__top {
		grid-template-columns: 1fr;
		gap: 30px;
	}

	.footer__col {
		padding-left: 0;
		border-left: none;
	}
}

@media (prefers-reduced-motion: no-preference) {
	.reveal {
		opacity: 0;
		transform: translateY(30px);
		transition: opacity 0.7s ease, transform 0.7s ease;
		will-change: opacity, transform;
	}

	.reveal.is-visible {
		opacity: 1;
		transform: none;
	}

	.card,
	.supply-card,
	.trust-card,
	.product-card,
	.film-card {
		transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
	}

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

	.supply-card:hover,
	.trust-card:hover {
		transform: translateY(-5px);
		border-color: rgba(220, 166, 89, 0.5);
	}

	.tag {
		transition: background-color 0.2s ease, color 0.2s ease;
	}

	.card__link,
	.nav__link,
	.footer__list a {
		transition: color 0.2s ease;
	}
}

.is-anim-down {
	scroll-behavior: smooth;
}

/* --- Адаптив: устранение горизонтального скролла на телефонах --- */
@media (max-width: 768px) {
	.btn {
		white-space: normal;
	}
}

/* --- Всплывающий помощник с контактами --- */
.contact-widget {
	position: fixed;
	right: 24px;
	bottom: 24px;
	z-index: 50;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 16px;
}

.contact-widget__toggle {
	position: relative;
	width: 60px;
	height: 60px;
	border: none;
	border-radius: 50%;
	background-color: var(--5-blue);
	color: var(--7-withe);
	cursor: pointer;
	box-shadow: 0 12px 30px rgba(38, 66, 139, 0.4);
	transition: background-color 0.25s ease, transform 0.25s ease;
}

.contact-widget__toggle:hover {
	background-color: var(--6-caramel);
	transform: translateY(-2px);
}

.contact-widget__toggle svg {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 26px;
	height: 26px;
	transform: translate(-50%, -50%) scale(1);
	transition: opacity 0.2s ease, transform 0.2s ease;
}

.contact-widget__toggle-close {
	opacity: 0;
	transform: translate(-50%, -50%) scale(0.6);
}

.contact-widget.is-open .contact-widget__toggle-open {
	opacity: 0;
	transform: translate(-50%, -50%) scale(0.6);
}

.contact-widget.is-open .contact-widget__toggle-close {
	opacity: 1;
	transform: translate(-50%, -50%) scale(1);
}

.contact-widget__panel {
	width: 300px;
	max-width: calc(100vw - 48px);
	padding: 22px;
	background-color: var(--7-withe);
	border: 1px solid var(--4-black-blue-50);
	border-radius: 20px;
	box-shadow: 0 24px 60px rgba(27, 29, 33, 0.18);
	opacity: 0;
	visibility: hidden;
	transform: translateY(12px) scale(0.96);
	transform-origin: bottom right;
	transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
}

.contact-widget.is-open .contact-widget__panel {
	opacity: 1;
	visibility: visible;
	transform: translateY(0) scale(1);
}

.contact-widget__head {
	margin-bottom: 16px;
}

.contact-widget__title {
	display: block;
	font-family: var(--second-family);
	font-weight: 700;
	font-size: 18px;
	color: var(--1-black-blue);
}

.contact-widget__note {
	display: block;
	margin-top: 4px;
	font-size: 13px;
	color: var(--2-black-blue-600);
}

.contact-widget__list {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.contact-widget__item {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 12px;
	border-radius: 14px;
	transition: background-color 0.2s ease;
}

.contact-widget__item:hover {
	background-color: var(--11-milk);
}

.contact-widget__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 42px;
	height: 42px;
	border-radius: 12px;
	background-color: rgba(38, 66, 139, 0.08);
	color: var(--5-blue);
}

.contact-widget__item:hover .contact-widget__icon {
	background-color: var(--6-caramel);
	color: var(--7-withe);
}

.contact-widget__icon svg {
	width: 20px;
	height: 20px;
}

.contact-widget__text {
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.contact-widget__label {
	font-weight: 600;
	font-size: 15px;
	color: var(--1-black-blue);
}

.contact-widget__value {
	font-size: 13px;
	color: var(--2-black-blue-600);
}

@media (max-width: 640px) {
	.contact-widget {
		right: 16px;
		bottom: 16px;
	}

	.contact-widget__toggle {
		width: 54px;
		height: 54px;
	}
}
