@font-face {
	font-family: 'Gilroy';
	src:
		local('Gilroy Regular'),
		local('Gilroy-Regular'),
		url('../assets/fonts/Gilroy-Regular.ttf') format('truetype');
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Gilroy';
	src:
		local('Gilroy Medium'),
		local('Gilroy-Medium'),
		url('../assets/fonts/Gilroy-Medium.ttf') format('truetype');
	font-weight: 500;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Gilroy';
	src:
		local('Gilroy SemiBold'),
		local('Gilroy-Semibold'),
		url('../assets/fonts/Gilroy-Semibold.ttf') format('truetype');
	font-weight: 600;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Gilroy';
	src:
		local('Gilroy Bold'),
		local('Gilroy-Bold'),
		url('../assets/fonts/Gilroy-Bold.ttf') format('truetype');
	font-weight: 700;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Gilroy';
	src:
		local('Gilroy ExtraBold'),
		local('Gilroy-Extrabold'),
		url('../assets/fonts/Gilroy-Extrabold.ttf') format('truetype');
	font-weight: 800;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Gilroy';
	src:
		local('Gilroy Black'),
		local('Gilroy-Black'),
		url('../assets/fonts/Gilroy-Black.ttf') format('truetype');
	font-weight: 900;
	font-style: normal;
	font-display: swap;
}

/* Токены макета 1440 (Figma variables) */
:root {
	--dark-blue: #051636;
	--white: #ffffff;
	--glass: rgba(217, 217, 217, 0.25);

	--fs-main-header: 65px;
	--fs-num: 65px;
	--fs-h1: 50px;
	--fs-h2: 36px;
	--fs-h3: 25px;
	--fs-h4: 18px;
	--fs-text: 18px;
	--fs-text2: 16px;
	--fs-small: 14px;
	--fs-footer-heading: 26px;
	--fs-footer-copy: 20px;

	--sp-15: 15px;
	--sp-25: 25px;
	--sp-35: 35px;
	--sp-50: 50px;
	--sp-75: 75px;

	--radius-15: 15px;
	--radius-25: 25px;
	--radius-35: 35px;

	--page-padding: 75px;
}

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

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	min-width: 1440px;
	font-family: 'Gilroy', sans-serif;
	font-weight: 500;
	color: var(--white);
	background: var(--dark-blue);
}

@media (max-width: 767px) {
	body {
		min-width: 320px;
	}
}

body,
h1,
h2,
h3,
p,
ol,
ul,
dl,
dd {
	margin: 0;
}

ol,
ul {
	padding: 0;
}

img {
	display: block;
	max-width: 100%;
}

/* Переносы строк, различающиеся между макетами 1440 и 390 */
.br-mobile,
.br-wide,
.br-1440 {
	display: none;
}

@media (min-width: 768px) {
	.br-wide {
		display: inline;
	}

	.br-no-wide {
		display: none;
	}
}

@media (min-width: 1440px) {
	.br-1440 {
		display: inline;
	}
}

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

button,
input,
textarea {
	font: inherit;
	color: inherit;
}

hr {
	margin: 0;
	border: 0;
	border-top: 1px solid var(--white);
}

/* Стекло из стиля Figma «glass 1» */
.glass,
.button--glass,
.exosign-card,
.care-card {
	position: relative;
	background: var(--glass);
	border: 1px solid var(--white);
	backdrop-filter: blur(24.5px);
	-webkit-backdrop-filter: blur(24.5px);
}

.glass::after,
.button--glass::after,
.exosign-card::after,
.care-card::after {
	content: '';
	position: absolute;
	inset: -1px;
	border-radius: inherit;
	box-shadow: inset 2.5px 2.5px 7.5px rgba(255, 255, 255, 0.25);
	pointer-events: none;
}

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 1px solid var(--white);
	color: var(--white);
	text-align: center;
	cursor: pointer;
	transition: opacity 0.2s ease;
}

.button:hover {
	opacity: 0.85;
}

.button--glass {
	padding: 21px 30px 19px;
	border-radius: var(--radius-35);
	font-size: 20px;
	line-height: 1;
	overflow: hidden;
	isolation: isolate;
}

.button--outline {
	height: 48px;
	padding: 19px 30px 19px;
	border-radius: var(--radius-25);
	background: var(--dark-blue);
	font-size: 20px;
	line-height: 1.3;
}

/* header — остается сверху при скролле, сохраняя место в потоке */
.header {
	position: sticky;
	top: 0;
	z-index: 100;
	min-width: 1440px;
	padding: var(--sp-35) var(--page-padding);
	background: var(--dark-blue);
}

.header__mobile {
	display: none;
}

.header__main {
	display: flex;
	align-items: center;
	gap: var(--sp-50);
}

.header__logo img {
	width: 140px;
	height: 33px;
}

.header__menu {
	display: flex;
	flex: 1 0 0;
	align-items: center;
	gap: var(--sp-35);
	font-size: var(--fs-text);
	line-height: 1.3;
	white-space: nowrap;
}

.header__actions {
	display: flex;
	flex: 1 0 0;
	align-items: center;
	justify-content: flex-end;
	gap: var(--sp-15);
}

.header__action {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 30px;
}

.header__action img {
	width: 100%;
	height: 100%;
}

.header__action--account img {
	width: 143%;
	height: 143%;
	max-width: none;
}

.header__burger {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	padding: 0;
	border: 0;
	background: transparent;
	cursor: pointer;
	justify-self: start;
}

.header__burger img {
	width: 42px;
	height: 42px;
}

.header__social {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	justify-self: end;
	gap: var(--sp-15);
}

.header__social-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 25px;
	height: 25px;
}

.header__social-link img {
	width: 100%;
	height: 100%;
}


.header__mobile-menu {
	position: absolute;
	top: calc(100% + var(--sp-25));
	left: 0;
	display: none;
	flex-direction: column;
	min-width: 320px;
	padding: 28px 32px;
	border: 1px solid rgba(255, 255, 255, 0.32);
	border-radius: var(--radius-25);
	background: rgba(5, 22, 54, 0.96);
	backdrop-filter: blur(24.5px);
	-webkit-backdrop-filter: blur(24.5px);
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.24);
	font-size: var(--fs-text);
	line-height: 1.3;
	opacity: 0;
	pointer-events: none;
	transform: translateY(-8px);
	transition:
		opacity 0.2s ease,
		transform 0.2s ease;
}

.header__mobile-menu.is-open {
	display: flex;
	opacity: 1;
	pointer-events: auto;
	transform: translateY(0);
}

.header__mobile-menu a {
	padding: 10px 0;
}

.header__mobile-menu a + a {
	border-top: 1px solid rgba(255, 255, 255, 0.18);
}

/* hero — block 2 */
.hero {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: end;
	gap: 350px;
	height: 714px;
	padding: var(--page-padding);
	overflow: hidden;
}

.hero__bg {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	pointer-events: none;
}

.hero__heading,
.hero__order {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: var(--sp-15);
	text-transform: uppercase;
}

.hero__title {
	font-size: var(--fs-main-header);
	font-weight: 700;
	line-height: normal;
	letter-spacing: 7.8px;
}

.hero__subtitle,
.hero__caption {
	font-size: var(--fs-h4);
	font-weight: 600;
	line-height: 1.3;
	letter-spacing: 1.8px;
}

/* technology — block 3 */
.technology {
	display: flex;
	align-items: flex-start;
	gap: var(--sp-50);
	padding: var(--page-padding);
}

.technology__content {
	display: flex;
	flex: 1 0 0;
	flex-direction: column;
	gap: var(--sp-75);
	min-width: 0;
}

.technology__title {
	font-size: var(--fs-h1);
	font-weight: 600;
	line-height: 1.2;
	letter-spacing: 4px;
	text-transform: uppercase;
}

.technology__text {
	font-size: var(--fs-text);
	font-weight: 400;
	line-height: 1.3;
}

.technology__text p + p {
	margin-top: 1.3em;
}

.technology__image {
	flex: 1 0 0;
	min-width: 0;
	height: 671px;
	border-radius: var(--radius-35);
	object-fit: cover;
}

/* exosign — block 4 */
.exosign {
	display: flex;
	flex-direction: column;
	gap: var(--sp-35);
	padding: var(--page-padding);
}

.exosign__header {
	display: flex;
	flex-direction: column;
	gap: var(--sp-50);
}

.exosign__title {
	font-size: var(--fs-h1);
	font-weight: 600;
	line-height: 1.2;
	letter-spacing: 4px;
	text-transform: uppercase;
}

.exosign__intro {
	font-size: var(--fs-text);
	font-weight: 400;
	line-height: 1.3;
}

.exosign__note {
	display: block;
	margin-top: var(--sp-25);
	font-size: var(--fs-text);
}

.exosign__grid {
	display: flex;
	align-items: flex-start;
	gap: var(--sp-35);
}

.exosign-card {
	display: flex;
	flex: 1 0 0;
	flex-direction: column;
	justify-content: flex-end;
	min-width: 0;
	height: 736px;
	border-radius: var(--radius-35);
}

.exosign-card__head {
	display: flex;
	flex-direction: column;
	gap: var(--sp-25);
	padding: var(--sp-35);
}

.exosign-card__number {
	font-size: var(--fs-num);
	line-height: 1.3;
}

.exosign-card__text {
	font-size: var(--fs-text);
	line-height: 1.3;
}

.exosign-card__image {
	flex: 1 0 0;
	min-height: 0;
	width: 100%;
	border-radius: var(--radius-35);
	object-fit: cover;
}

/* care — block 5 */
.care {
	padding: var(--sp-35);
}

.care__wrapper {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 400px;
	padding: var(--sp-50);
	border-radius: var(--radius-35);
	overflow: hidden;
}

.care__bg {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	pointer-events: none;
}

.care__title {
	position: relative;
	font-size: var(--fs-h1);
	font-weight: 600;
	line-height: 1.2;
	letter-spacing: 4px;
	text-transform: uppercase;
	color: var(--dark-blue);
}

.carousel {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: var(--sp-35);
}

.carousel__viewport {
	overflow: visible;
}

.carousel__track {
	display: flex;
	gap: var(--sp-15);
	transition: transform 0.4s ease;
}

.care-card {
	display: flex;
	flex-direction: column;
	gap: var(--sp-35);
	flex: 0 0 380px;
	width: 380px;
	height: 280px;
	padding: var(--sp-35);
	border-radius: var(--radius-35);
	color: var(--dark-blue);
}

.care-card__title {
	font-size: var(--fs-h3);
	font-weight: 500;
	line-height: 0.95;
}

.care-card__text {
	font-size: var(--fs-text);
	font-weight: 500;
	line-height: 1.3;
}

.care-card__note {
	margin-top: 1.3em;
	font-size: var(--fs-text2);
}

/* В макете ряд стрелок — линия нулевой высоты, стрелки выступают за неё */
.carousel__arrows {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 0;
	padding: 0 var(--sp-15);
}

.carousel__arrow {
	display: inline-flex;
	padding: 0;
	border: 0;
	background: none;
	cursor: pointer;
	transition: opacity 0.2s ease;
}

.carousel__arrow img {
	width: 43px;
	height: 22px;
}

.carousel__arrow--prev img {
	transform: scaleX(-1);
}

.carousel__arrow:disabled {
	opacity: 0.3;
	cursor: default;
}

/* expertise — block 6 */
.expertise {
	display: flex;
	align-items: flex-start;
	gap: var(--sp-50);
	padding: var(--page-padding);
}

.expertise__content {
	display: flex;
	flex: 1 0 0;
	flex-direction: column;
	gap: var(--sp-75);
	min-width: 0;
}

.expertise__title {
	font-size: var(--fs-h1);
	font-weight: 600;
	line-height: 1.2;
	letter-spacing: 4px;
	text-transform: uppercase;
}

.expertise__list {
	display: flex;
	flex-direction: column;
	gap: var(--sp-35);
	list-style: none;
}

.expertise__item {
	display: flex;
	align-items: center;
	gap: var(--sp-25);
	font-size: var(--fs-text);
	line-height: 1.3;
}

.expertise__bullet {
	flex: 0 0 auto;
	width: 60px;
	height: 60px;
	object-fit: cover;
}

.expertise__note {
	font-size: var(--fs-small);
	line-height: 1.3;
}

.expertise__image {
	flex: 1 0 0;
	min-width: 0;
	height: 670px;
	border-radius: var(--radius-35);
	object-fit: cover;
}

/* preorder — block 7 */
.preorder {
	display: flex;
	align-items: center;
	gap: var(--sp-75);
	padding: var(--page-padding);
}

.preorder__gallery {
	display: flex;
	flex: 1 0 0;
	flex-direction: column;
	align-items: center;
	gap: var(--sp-35);
	min-width: 0;
}

.gallery__viewport {
	width: 100%;
	height: 520px;
	border-radius: var(--radius-35);
	overflow: hidden;
}

.gallery__track {
	display: flex;
	height: 100%;
	transition: transform 0.4s ease;
}

.gallery__slide {
	flex: 0 0 100%;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.gallery__dots {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: var(--sp-15);
}

.gallery__dot {
	width: 10px;
	height: 10px;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: var(--white);
	opacity: 0.35;
	cursor: pointer;
	transition: opacity 0.2s ease;
}

.gallery__dot.is-active {
	opacity: 1;
}

.preorder__info {
	display: flex;
	flex: 1 0 0;
	flex-direction: column;
	gap: var(--sp-50);
	min-width: 0;
}

.preorder__title {
	font-size: var(--fs-h2);
	font-weight: 600;
	line-height: 1.3;
	letter-spacing: 2.88px;
	text-transform: uppercase;
}

.preorder__subtitle {
	font-size: var(--fs-h4);
	font-weight: 600;
	line-height: 1.3;
	letter-spacing: 1.8px;
	text-transform: uppercase;
}

.preorder__divider {
	width: 100%;
}

.preorder__specs {
	display: flex;
	align-items: flex-start;
	gap: var(--sp-50);
}

.preorder__spec {
	display: flex;
	flex-direction: column;
	gap: var(--sp-25);
	min-width: 0;
}

/* «50 мл» — в одну строку, дата выхода переносится */
.preorder__spec:first-child {
	flex: 0 0 auto;
	white-space: nowrap;
}

.preorder__spec:last-child {
	flex: 1 1 auto;
}

.preorder__spec dt {
	font-size: var(--fs-text2);
	line-height: 1.3;
}

.preorder__date-line {
	white-space: nowrap;
}

.preorder__spec dd {
	font-size: var(--fs-h2);
	line-height: 1.3;
}

.preorder-form {
	display: flex;
	flex: 1 0 0;
	flex-direction: column;
	gap: var(--sp-35);
	min-width: 0;
}

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

.preorder-form__title {
	font-size: var(--fs-h3);
	line-height: 1.3;
}

.preorder-form__fields {
	display: flex;
	flex-direction: column;
	gap: var(--radius-15);
}

.preorder-form__fields input,
.preorder-form__fields textarea {
	width: 100%;
	padding: 12px 20px;
	border: 1px solid var(--white);
	border-radius: var(--radius-25);
	background: var(--dark-blue);
	color: var(--white);
	font-size: var(--fs-h4);
	line-height: 1.3;
}

.preorder-form__fields textarea {
	min-height: 120px;
	resize: none;
}

.preorder-form__fields input::placeholder,
.preorder-form__fields textarea::placeholder {
	color: var(--white);
	opacity: 1;
}

.preorder-form__checks {
	display: flex;
	flex-direction: column;
	font-size: var(--fs-small);
	line-height: 1.3;
}

.preorder-form__check {
	position: relative;
	display: flex;
	align-items: flex-start;
	gap: 8px;
}

.preorder-form__check-input {
	position: absolute;
	width: 1px;
	height: 1px;
	margin: 0;
	opacity: 0;
	pointer-events: none;
}

.preorder-form__check-control {
	position: relative;
	flex: 0 0 auto;
	width: 22px;
	height: 22px;
	border: 1px solid var(--white);
	border-radius: 4px;
	background: transparent;
	cursor: pointer;
	touch-action: manipulation;
	-webkit-tap-highlight-color: transparent;
}

.preorder-form__check-control::after {
	content: '';
	position: absolute;
	top: 3px;
	left: 7px;
	width: 6px;
	height: 11px;
	border: solid var(--dark-blue);
	border-width: 0 2px 2px 0;
	opacity: 0;
	transform: rotate(45deg);
}

.preorder-form__check-input:checked + .preorder-form__check-control {
	background: var(--white);
}

.preorder-form__check-input:checked + .preorder-form__check-control::after {
	opacity: 1;
}

.preorder-form__check-input:focus-visible + .preorder-form__check-control {
	outline: 2px solid var(--white);
	outline-offset: 3px;
}

.preorder-form__check-text {
	padding-top: 2px;
}

.preorder-form__check a,
.preorder-form__offer a {
	text-decoration: underline;
}

.preorder-form__submit {
	align-self: flex-start;
	padding: 15px 20px 15px;
	border: 1px solid var(--white);
	border-radius: var(--radius-25);
	background: var(--dark-blue);
	font-size: var(--fs-h4);
	line-height: 1.3;
	cursor: pointer;
	transition: opacity 0.2s ease;
}

.preorder-form__submit:hover {
	opacity: 0.85;
}

.preorder-form__offer {
	font-size: var(--fs-small);
	line-height: 1.3;
}

.form__message:empty {
	display: none;
}

.form__message {
	font-size: var(--fs-small);
	line-height: 1.3;
}

.form__message.is-error {
	color: #ff9a9a;
}

.form__message.is-success {
	color: #9ae6b4;
}

/* success modal */
.success-modal {
	position: fixed;
	width: min(801px, calc(100vw - 50px));
	min-height: 561px;
	padding: 58px 50px;
	border: 1px solid var(--white);
	border-radius: 50px;
	color: var(--white);
	overflow: hidden;
	background: rgba(255, 255, 255, 0.04);

	backdrop-filter: blur(140px) saturate(130%);
	-webkit-backdrop-filter: blur(140px) saturate(130%);

	border: 1px solid rgba(255, 255, 255, 0.12);

	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.15),
		0 20px 60px rgba(0, 0, 0, 0.08);
}

.success-modal::before {
	content: '';
	position: absolute;
	inset: 0;
	pointer-events: none;

	background:
		url('../assets/modal-bg.webp') 50% / cover no-repeat,
		radial-gradient(
			circle at 20% 20%,
			rgba(255, 255, 255, 0.18),
			transparent 35%
		),
		radial-gradient(circle at 82% 24%, rgba(45, 55, 80, 0.18), transparent 32%),
		radial-gradient(circle at 72% 82%, rgba(55, 65, 90, 0.12), transparent 38%),
		radial-gradient(
			circle at 25% 90%,
			rgba(170, 120, 120, 0.08),
			transparent 35%
		);

	opacity: 1;
}

.success-modal__content {
	position: relative;
	z-index: 1;
}

.success-modal__title {
	margin-bottom: 52px;
	font-size: 56px;
	font-weight: 400;
	line-height: 1;
}

.success-modal__text {
	margin-bottom: 35px;
	font-size: 26px;
	line-height: 1.3;
}

.success-modal__text a {
	border-bottom: 1px solid currentColor;
}

.success-modal__close {
	position: absolute;
	top: 35px;
	right: 45px;
	z-index: 2;
	padding: 0;
	border: 0;
	background: none;
	font-size: 52px;
	font-weight: 300;
	line-height: 1;
	cursor: pointer;
}

.success-modal__product {
	position: absolute;
	right: 0;
	bottom: -45px;
	width: 600px;
	max-width: none;
	pointer-events: none;
}

@media (max-width: 767px) {
	.success-modal {
		width: calc(100vw - 30px);
		min-height: 0;
		aspect-ratio: 1;
		padding: 40px 25px;
		border-radius: var(--radius-35);
	}

	.success-modal__content {
		padding-right: 105px;
	}

	.success-modal__title {
		margin-bottom: 32px;
		font-size: 27px;
	}

	.success-modal__text {
		margin-bottom: 35px;
		font-size: 17px;
	}

	.success-modal__close {
		top: 22px;
		right: 25px;
		font-size: 40px;
	}

	.preorder__spec {
		max-width: 190px;
	}
}

/* footer */
.footer {
	display: flex;
	flex-direction: column;
	gap: var(--sp-50);
	padding: var(--sp-15) var(--page-padding) var(--page-padding);
}

.footer__cols {
	display: flex;
	align-items: flex-start;
	gap: var(--sp-35);
}

.footer__col {
	display: flex;
	flex: 1 0 0;
	flex-direction: column;
	gap: var(--sp-50);
	min-width: 0;
}

.footer__block {
	display: flex;
	flex-direction: column;
	gap: var(--sp-35);
}

.footer__heading {
	font-size: var(--fs-text);
	line-height: 1.3;
}

.footer__heading--large {
	font-size: var(--fs-footer-heading);
}

/* В макете список ссылок — один текстовый блок, поэтому не flex */
.footer__links {
	font-size: var(--fs-text2);
	line-height: 1.3;
}

.footer__links a {
	display: block;
}

.footer__links--small {
	font-size: var(--fs-small);
}

.footer__links a:hover {
	text-decoration: underline;
}

.footer__badge {
	width: 130px;
	height: 130px;
	object-fit: cover;
}

.footer__social {
	display: flex;
	gap: 10px;
}

.footer__social img {
	width: 30px;
	height: 30px;
}

.footer__bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	line-height: 1.3;
}

.footer__bottom-left,
.footer__bottom-right {
	display: flex;
	flex: 1 0 0;
	flex-direction: column;
	gap: var(--sp-15);
	min-width: 0;
}

.footer__bottom-left {
	align-items: flex-start;
	white-space: nowrap;
}

.footer__bottom-right {
	align-items: flex-end;
	text-align: right;
}

.footer__bottom-left p:first-child {
	font-size: var(--fs-footer-copy);
}

.footer__bottom-left p:last-child,
.footer__bottom-right p {
	font-size: var(--fs-text2);
}

.footer__phone {
	font-size: var(--fs-footer-heading);
	text-transform: uppercase;
}

/* ==========================================================================
   Мобильный макет 390px (Figma «Лендинг 390px», node 1101:1045)
   ========================================================================== */

@media (max-width: 767px) {
	:root {
		--fs-main-header: 40px;
		--fs-num: 35px;
		--fs-h1: 28px;
		--fs-h2: 24px;
		--fs-h3: 18px;
		--fs-h4: 15px;
		--fs-text: 14px;
		--fs-text2: 12px;
		--fs-small: 12px;
		--fs-footer-heading: 14px;
		--fs-footer-copy: 14px;

		--page-padding: 25px;
	}

	.br-desktop {
		display: none;
	}

	.br-mobile {
		display: inline;
	}

	.header {
		min-width: 320px;
		padding: 10px var(--page-padding);
	}

	.header__main {
		display: none;
	}

	.header__mobile {
		position: relative;
		display: grid;
		grid-template-columns: 1fr auto 1fr;
		align-items: center;
		min-height: 34px;
	}

	.header__mobile .header__logo {
		justify-self: center;
	}

	.header__burger {
		width: 34px;
		height: 34px;
	}

	.header__burger img {
		width: 34px;
		height: 34px;
	}

	.header__social-link {
		width: 20px;
		height: 20px;
	}

	.header__logo img {
		width: 140px;
		height: 50px;
	}

	.header__mobile-menu {
		top: calc(100% + 10px);
		min-width: min(340px, calc(100vw - 50px));
		padding: 20px 24px;
		border-radius: 20px;
		font-size: 16px;
	}

	/* hero — кнопка внизу по центру, заголовок сверху */
	.hero {
		justify-content: end;
		gap: 400px;
		height: 685px;
		padding: var(--sp-25) var(--page-padding) var(--sp-35);
	}

	.hero__heading {
		gap: var(--sp-25);
	}

	/*
	 * Figma не учитывает трекинг после последнего символа, поэтому заголовок
	 * помещается в 340px ровно. Компенсируем отрицательным margin.
	 */
	.hero__title {
		margin-right: -4.8px;
		letter-spacing: 4.8px;
	}

	.hero__subtitle,
	.hero__caption {
		letter-spacing: 1.5px;
	}

	.hero__caption {
		max-width: 300px;
		transform: translateY(10px);
	}

	.hero__order {
		width: 100%;
	}

	.button--glass {
		justify-content: center;
		padding: 17px 20px 15px;
		font-size: 18px;
		text-align: center;
	}

	.hero__order .button--glass {
		transform: translateY(10px);
	}

	@media (max-width: 384px) {
		.hero {
			padding-top: 64px;
		}

		.hero__title {
			margin-right: 0;
			font-size: 38px;
			letter-spacing: 3px;
			line-height: 1.08;
		}
	}

	/* technology, expertise, — колонки в столбик, фото 400px снизу */
	.technology,
	.expertise {
		flex-direction: column;
		gap: var(--sp-35);
		padding: var(--sp-35) var(--page-padding);
	}

	.technology__content,
	.expertise__content {
		gap: var(--sp-35);
		width: 100%;
	}

	.technology__image,
	.expertise__image {
		width: 100%;
		height: 400px;
	}

	.technology__image,
	.expertise__image {
		border-radius: var(--radius-25);
	}

	.technology__title,
	.exosign__title,
	.care__title,
	.expertise__title,
	.preorder__title {
		letter-spacing: 2.24px;
	}

	/* exosign — карточки в столбик */
	.exosign {
		gap: var(--sp-35);
		padding: var(--sp-35) var(--page-padding);
	}

	.exosign__header {
		gap: var(--sp-35);
	}

	.exosign__grid {
		flex-direction: column;
		gap: var(--sp-15);
	}

	.exosign-card {
		width: 100%;
		height: auto;
		border-radius: var(--radius-25);
	}

	.exosign-card__head {
		gap: var(--sp-15);
		padding: var(--sp-25);
	}

	.exosign-card__image {
		flex: 0 0 auto;
		height: 280px;
		border-radius: var(--radius-25);
	}

	/* care — мобильный фон с руками и карточкой в нижней части */
	.care {
		padding: 0;
		background: var(--white);
	}

	.care__wrapper {
		justify-content: space-between;
		height: 510px;
		gap: 0;
		padding: var(--sp-25) var(--page-padding);
		border-radius: 0;
	}

	.care__bg {
		display: block;
		object-position: center;
	}

	/* На мобилке — по одной карточке со стрелками под слайдером */
	.carousel {
		gap: var(--sp-25);
	}

	.carousel__viewport {
		overflow: hidden;
	}

	.carousel__track {
		gap: var(--sp-15);
	}

	.carousel__arrows {
		display: flex;
		height: auto;
		padding: 0;
	}

	.carousel__arrow img {
		width: 35px;
		height: 18px;
	}

	.exosign-card__text {
		max-width: 240px;
	}

	.exosign-card__text_3 {
		max-width: 300px;
	}

	.care-card {
		flex: 0 0 100%;
		gap: var(--sp-15);
		width: 100%;
		height: auto;
		min-height: 180px;
		padding: var(--sp-25);
		border-radius: var(--radius-25);
	}

	/* expertise — вертикальный список с примечанием */
	.expertise__list {
		flex-direction: column;
		gap: var(--sp-15);
	}

	.expertise__item {
		flex: 0 0 auto;
		align-items: center;
		gap: var(--sp-25);
		min-width: 0;
		text-align: left;
	}

	.expertise__bullet {
		width: 50px;
		height: 50px;
	}

	.expertise__note {
		font-size: var(--fs-small);
	}

	/* preorder — порядок из макета: описание, галерея, форма */
	.preorder {
		flex-direction: column;
		gap: var(--sp-50);
		padding: var(--sp-35) var(--page-padding);
	}

	.preorder__info {
		order: 1;
		gap: var(--sp-25);
		width: 100%;
	}

	.preorder__gallery {
		order: 2;
		gap: var(--sp-15);
		width: 100%;
	}

	.preorder-form {
		order: 3;
		width: 100%;
	}

	.preorder__title {
		font-size: var(--fs-h1);
		line-height: 1.2;
	}

	.preorder__subtitle {
		letter-spacing: 1.5px;
	}

	.preorder__spec {
		gap: var(--sp-15);
	}

	.gallery__viewport {
		height: 400px;
		border-radius: var(--radius-25);
	}

	.preorder-form__fields input,
	.preorder-form__fields textarea,
	.preorder-form__submit {
		font-size: var(--fs-text);
	}

	.preorder-form__title {
		font-size: var(--fs-h3);
	}

	/* footer — колонки 2×2, копирайт и телефон столбиком */
	.footer {
		gap: var(--sp-35);
		padding: var(--page-padding);
	}

	.footer__cols {
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: var(--sp-35) 0;
	}

	.footer__col {
		gap: var(--sp-35);
	}

	.footer__block {
		gap: var(--sp-15);
	}

	.footer__heading,
	.footer__heading--large {
		font-size: var(--fs-text);
	}

	.footer__links,
	.footer__links--small {
		font-size: var(--fs-text2);
	}

	.footer__badge {
		width: 80px;
		height: 80px;
	}

	.footer__social {
		gap: var(--sp-15);
	}

	.button--outline {
		height: auto;
		padding: 15px 20px 15px;
		font-size: var(--fs-text);
	}

	.footer__bottom {
		flex-direction: column;
		align-items: flex-start;
		gap: var(--sp-35);
	}

	.footer__bottom-left,
	.footer__bottom-right {
		align-items: flex-start;
		width: 100%;
		text-align: left;
		white-space: normal;
	}

	.footer__bottom-left p:first-child {
		font-size: var(--fs-text);
	}

	.footer__phone {
		font-size: var(--fs-h3);
	}
}

/* ==========================================================================
   Широкий макет 2100px (Figma node 873:25)
   ========================================================================== */

@media (min-width: 1920px) {
	:root {
		--fs-main-header: 82px;
		--fs-num: 80px;
		--fs-h1: 63px;
		--fs-h2: 48px;
		--fs-h3: 40px;
		--fs-h4: 26px;
		--fs-text: 26px;
		--fs-text2: 20px;
		--fs-small: 16px;
		--fs-footer-heading: 26px;
		--fs-footer-copy: 20px;
		--page-padding: 150px;
	}

	.br-wide {
		display: inline;
	}

	.br-no-wide {
		display: none;
	}

	.header {
		height: auto;
		padding: 50px var(--page-padding);
	}

	.header__logo img {
		width: 200px;
		height: 33px;
	}

	.header__main,
	.header__menu {
		gap: var(--sp-50);
	}

	.header__action {
		width: 35px;
		height: 35px;
	}

	.hero {
		justify-content: center;
		gap: 550px;
		height: 1112px;
		padding: var(--page-padding);
	}

	.hero__heading,
	.hero__order {
		gap: var(--sp-50);
	}

	.hero__title {
		letter-spacing: 9.84px;
	}

	.hero__subtitle,
	.hero__caption {
		letter-spacing: 2.6px;
	}

	.button--glass {
		padding: 20px 40px 24px;
		border-radius: 50px;
		font-size: 35px;
	}

	.technology {
		height: 1101px;
		gap: 100px;
		padding: 150px 150px 0;
	}

	.technology__content {
		gap: 150px;
	}

	.technology__title {
		line-height: 1.3;
		letter-spacing: 5.04px;
	}

	.technology__image {
		flex: 0 0 850px;
		width: 850px;
		height: 951px;
		border-radius: 50px;
	}

	.exosign {
		height: 1745px;
		gap: 100px;
		padding: 150px;
	}

	.exosign__header {
		gap: 150px;
	}

	.exosign__title {
		line-height: 1.3;
		letter-spacing: 5.04px;
	}

	.exosign__note {
		margin-top: var(--sp-35);
	}

	.exosign__grid {
		gap: var(--sp-50);
	}

	.exosign-card {
		height: 997px;
		border-radius: 50px;
	}

	.exosign-card__head {
		gap: var(--sp-35);
		padding: var(--sp-50);
	}

	.exosign-card__image {
		border-radius: 50px;
	}

	.care {
		height: 1358px;
		padding: var(--sp-75);
	}

	.care__wrapper {
		height: 1208px;
		gap: 400px;
		padding: var(--sp-75);
		border-radius: 50px;
	}

	.care__title {
		letter-spacing: 5.04px;
	}

	.carousel {
		gap: var(--sp-50);
	}

	.carousel__track {
		gap: var(--sp-35);
	}

	.care-card {
		flex-basis: 520px;
		width: 520px;
		height: 400px;
		gap: var(--sp-50);
		padding: var(--sp-50);
		border-radius: 50px;
	}

	.care-card__title {
		font-size: 48px;
	}

	.care-card__note {
		font-size: var(--fs-small);
	}

	.expertise {
		height: 1300px;
		gap: 100px;
		padding: 150px;
	}

	.expertise__content {
		flex: 0 0 850px;
		gap: 0;
		height: 1000px;
	}

	.expertise__title {
		margin-bottom: 150px;
		letter-spacing: 5.04px;
	}

	.expertise__list {
		gap: var(--sp-75);
	}

	.expertise__item {
		gap: var(--sp-35);
	}

	.expertise__bullet {
		width: 80px;
		height: 80px;
	}

	.expertise__note {
		margin-top: var(--sp-35);
		margin-left: 115px;
	}

	.expertise__image {
		flex: 0 0 850px;
		width: 850px;
		height: 1000px;
		border-radius: 50px;
	}

	.preorder {
		height: 1083px;
		align-items: flex-start;
		gap: 100px;
		padding: 150px;
	}

	.preorder__gallery {
		gap: var(--sp-35);
	}

	.gallery__viewport {
		height: 733px;
		border-radius: 50px;
	}

	.gallery__dot {
		width: 15px;
		height: 15px;
	}

	.preorder__info {
		gap: var(--sp-75);
	}

	.preorder__title {
		font-size: var(--fs-h1);
		letter-spacing: 5.04px;
	}

	.preorder__subtitle {
		letter-spacing: 2.6px;
	}

	.preorder__specs {
		gap: var(--sp-75);
	}

	.preorder__spec {
		gap: var(--sp-35);
	}

	.preorder__spec dt {
		font-size: var(--fs-text2);
	}

	.preorder__spec:first-child dd {
		font-size: 48px;
	}

	.preorder__spec:last-child dd {
		font-size: 40px;
	}

	.preorder-form {
		gap: var(--sp-50);
	}

	.preorder-form__title {
		font-size: var(--fs-h2);
		line-height: 1;
	}

	.preorder-form__fields {
		gap: 16px;
	}

	.preorder-form__fields input,
	.preorder-form__fields textarea {
		padding-right: 30px;
		padding-left: 30px;
		font-size: var(--fs-text2);
	}

	.preorder-form__fields input {
		height: 46px;
		padding-top: 0;
		padding-bottom: 0;
	}

	.preorder-form__fields textarea {
		height: 134px;
		min-height: 134px;
		padding-top: 16px;
		padding-bottom: 16px;
		border-radius: var(--radius-15);
	}

	.preorder-form__checks {
		font-size: var(--fs-small);
	}

	.preorder-form__submit {
		height: 49px;
		padding: 0 30px;
		font-size: var(--fs-text2);
	}

	.footer {
		height: 737px;
		gap: var(--sp-75);
		padding: 35px 150px 75px;
	}

	.footer__cols {
		gap: var(--sp-50);
	}

	.footer__heading,
	.footer__heading--large {
		font-size: var(--fs-footer-heading);
	}

	.footer__links,
	.footer__links--small {
		font-size: var(--fs-small);
	}
}
