@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Unbounded:wght@600;700;800&display=swap');

:root {
	--ink: #101310;
	--ink-soft: #1a1e1a;
	--paper: #f4f1e8;
	--paper-deep: #e9e5d8;
	--acid: #d8ff3e;
	--acid-dark: #b9e51e;
	--orange: #ff6847;
	--cobalt: #2941d1;
	--line-dark: rgba(16, 19, 16, .18);
	--line-light: rgba(255, 255, 255, .16);
	--font: 'Manrope', sans-serif;
	--display: 'Unbounded', sans-serif;
	--ease: .35s cubic-bezier(.2, .75, .25, 1);
}

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

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family: var(--font);
	font-size: 17px;
	line-height: 1.6;
	color: var(--ink);
	background: var(--paper);
	overflow-x: hidden;
}

body.modal-open {
	overflow: hidden;
}

h1,
h2,
h3,
p {
	margin: 0;
}

button,
input {
	font: inherit;
}

button,
a {
	-webkit-tap-highlight-color: transparent;
}

.container {
	position: relative;
	z-index: 1;
	width: min(1240px, calc(100% - 64px));
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 72px;
}

.column {
	width: calc(50% - 36px);
	min-width: 0;
}

.subtitle {
	font-family: var(--display);
	font-size: clamp(36px, 4.2vw, 62px);
	font-weight: 700;
	line-height: 1.05;
	letter-spacing: -.045em;
}

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 58px;
	padding: 15px 26px;
	border: 1px solid transparent;
	border-radius: 2px;
	background: var(--acid);
	color: var(--ink);
	font-weight: 800;
	line-height: 1;
	cursor: pointer;
	transition: transform var(--ease), background-color var(--ease), color var(--ease), box-shadow var(--ease);
}

.btn::after {
	content: '\2197';
	margin-left: 34px;
	font-size: 21px;
	font-weight: 500;
}

.btn:hover {
	transform: translateY(-4px);
	background: #ecff9f;
	box-shadow: 7px 7px 0 rgba(0, 0, 0, .22);
}

.btn:focus-visible,
.main__header-btn:focus-visible,
.main__nav a:focus-visible,
.brand:focus-visible,
.question__header:focus-visible,
.footer__link:focus-visible,
.faq__link:focus-visible,
.modal__close:focus-visible,
.numCredit:focus-visible {
	outline: 3px solid var(--orange);
	outline-offset: 4px;
}

/* Hero */
.main {
	position: relative;
	min-height: 780px;
	padding: 26px 0 110px;
	color: var(--paper);
	background:
		radial-gradient(circle at 73% 35%, rgba(216, 255, 62, .08), transparent 28%),
		var(--ink);
	overflow: hidden;
}

.main::before {
	content: '';
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(var(--line-light) 1px, transparent 1px),
		linear-gradient(90deg, var(--line-light) 1px, transparent 1px);
	background-size: 88px 88px;
	mask-image: linear-gradient(to bottom, rgba(0, 0, 0, .8), transparent 82%);
	pointer-events: none;
}

.main::after {
	content: '';
	position: absolute;
	right: -160px;
	bottom: -300px;
	width: 780px;
	height: 780px;
	border: 1px solid rgba(216, 255, 62, .35);
	border-radius: 50%;
	box-shadow: 0 0 0 90px rgba(216, 255, 62, .025), 0 0 0 180px rgba(216, 255, 62, .02);
	pointer-events: none;
}

.main > .container:last-child {
	min-height: 610px;
	padding-top: 72px;
}

.main__header {
	align-items: center;
	gap: 36px;
	padding-bottom: 24px;
	border-bottom: 1px solid var(--line-light);
}

.brand {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	color: var(--paper);
	text-decoration: none;
}

.brand__mark {
	display: grid;
	place-items: center;
	width: 43px;
	height: 43px;
	background: var(--acid);
	color: var(--ink);
	font-family: var(--display);
	font-size: 12px;
	font-weight: 800;
	letter-spacing: -.08em;
	transform: rotate(-5deg);
}

.brand__name {
	font-family: var(--display);
	font-size: 12px;
	font-weight: 800;
	line-height: 1.1;
	letter-spacing: .02em;
}

.main__nav {
	display: flex;
	align-items: center;
	gap: 34px;
	margin-left: auto;
}

.main__nav a {
	position: relative;
	color: rgba(244, 241, 232, .72);
	font-size: 14px;
	font-weight: 600;
	text-decoration: none;
	transition: color var(--ease);
}

.main__nav a::after {
	content: '';
	position: absolute;
	left: 0;
	right: 100%;
	bottom: -7px;
	height: 2px;
	background: var(--acid);
	transition: right var(--ease);
}

.main__nav a:hover {
	color: var(--paper);
}

.main__nav a:hover::after {
	right: 0;
}

.main__header-btn {
	min-height: 42px;
	padding: 8px 18px;
	border: 1px solid var(--paper);
	border-radius: 0;
	color: var(--paper);
	background: transparent;
	font-size: 13px;
	font-weight: 800;
	cursor: pointer;
	transition: color var(--ease), background-color var(--ease);
}

.main__header-btn:hover {
	color: var(--ink);
	background: var(--paper);
}

.main__title {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 24px;
	font-family: var(--display);
	font-size: 13px;
	font-weight: 700;
	letter-spacing: .08em;
	color: var(--acid);
	text-transform: uppercase;
}

.main__title::before {
	content: '';
	width: 32px;
	height: 2px;
	background: currentColor;
}

.main__subtitle {
	max-width: 750px;
	font-family: var(--display);
	font-size: clamp(47px, 5.7vw, 78px);
	font-weight: 700;
	line-height: 1;
	letter-spacing: -.055em;
}

.main__descr {
	max-width: 570px;
	margin-top: 30px;
	color: rgba(244, 241, 232, .68);
	font-size: 18px;
}

.main__btn {
	margin-top: 38px;
}

.main__visual {
	position: relative;
	display: grid;
	place-items: center;
	min-height: 520px;
	border: 1px solid rgba(244, 241, 232, .32);
	background: #090b09;
	overflow: hidden;
	isolation: isolate;
}

.main__visual::before {
	content: 'PRIORITY / 01';
	position: absolute;
	top: 18px;
	left: 18px;
	width: auto;
	height: auto;
	padding: 9px 12px;
	background: var(--acid);
	color: var(--ink);
	font-family: var(--display);
	font-size: 9px;
	font-weight: 800;
	letter-spacing: .08em;
	z-index: 2;
}

.main__visual::after {
	content: 'EXPRESS / WORLDWIDE';
	position: absolute;
	right: 0;
	bottom: 20px;
	padding: 10px 14px;
	border: 1px solid rgba(244, 241, 232, .6);
	background: var(--ink);
	color: var(--paper);
	font-family: var(--display);
	font-size: 10px;
	letter-spacing: .09em;
	transform: rotate(-3deg);
}

.main__img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: saturate(.9) contrast(1.06);
	transform: scale(1.01);
	transition: transform .7s cubic-bezier(.2, .8, .2, 1);
}

.main__visual:hover .main__img {
	transform: scale(1.055);
}

/* Delivery */
.packages {
	position: relative;
	padding: 136px 0;
	background: #edf0ff;
	overflow: hidden;
}

.packages::before {
	content: 'WORLD ROUTES';
	position: absolute;
	top: 35px;
	right: -18px;
	font-family: var(--display);
	font-size: clamp(54px, 9vw, 138px);
	font-weight: 800;
	line-height: 1;
	letter-spacing: -.07em;
	color: transparent;
	-webkit-text-stroke: 1px rgba(41, 65, 209, .16);
	pointer-events: none;
}

.packages .container {
	display: grid;
	grid-template-columns: minmax(300px, .78fr) minmax(0, 1.22fr);
	align-items: stretch;
	gap: 34px;
}

.packages .column {
	width: auto;
}

.packages .column:first-child {
	position: relative;
	grid-column: 2;
	min-height: 540px;
	border: 12px solid var(--paper);
	border-radius: 220px 220px 12px 12px;
	background: var(--paper);
	box-shadow: 0 32px 70px rgba(41, 65, 209, .15);
	overflow: hidden;
}

.packages .column:first-child::before {
	content: '99% / МИРА';
	position: absolute;
	right: 22px;
	bottom: 22px;
	z-index: 2;
	padding: 12px 16px;
	border: 1px solid var(--ink);
	background: var(--acid);
	font-family: var(--display);
	font-size: 11px;
	font-weight: 800;
	letter-spacing: .08em;
}

.packages__img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: saturate(.95) contrast(1.03);
	transition: transform .8s cubic-bezier(.2, .8, .2, 1);
}

.packages .column:last-child {
	grid-column: 1;
	grid-row: 1;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding: 54px 44px 48px;
	border-top: 10px solid var(--cobalt);
	background: var(--paper);
}

.packages .column:first-child:hover .packages__img {
	transform: scale(1.04);
}

.packages .subtitle {
	font-family: Georgia, 'Times New Roman', serif;
	font-size: clamp(42px, 4.6vw, 67px);
	font-weight: 400;
	line-height: .98;
	letter-spacing: -.055em;
}

.packages .subtitle::after {
	content: '';
	display: block;
	width: 100%;
	height: 1px;
	margin-top: 34px;
	background: rgba(41, 65, 209, .36);
}

.packages__descr {
	max-width: 570px;
	margin-top: 26px;
	font-size: 16px;
	color: rgba(16, 19, 16, .67);
}

/* Partners */
.partners {
	position: relative;
	padding: 132px 0;
	color: var(--paper);
	background: var(--cobalt);
	overflow: hidden;
}

.partners::before {
	content: '03';
	position: absolute;
	top: -32px;
	left: -12px;
	font-family: var(--display);
	font-size: clamp(150px, 24vw, 360px);
	font-weight: 800;
	line-height: 1;
	letter-spacing: -.08em;
	color: rgba(244, 241, 232, .075);
	pointer-events: none;
}

.partners::after {
	content: '';
	position: absolute;
	right: -110px;
	bottom: -160px;
	width: 420px;
	height: 420px;
	border: 80px solid var(--acid);
	border-radius: 50%;
	opacity: .95;
	pointer-events: none;
}

.partners .container {
	display: grid;
	grid-template-columns: minmax(280px, .78fr) minmax(0, 1.22fr);
	align-items: center;
	gap: 82px;
}

.partners .column:first-child {
	width: auto;
	padding: 0;
	border: 0;
}

.partners .subtitle {
	font-size: clamp(39px, 4.2vw, 62px);
}

.partners .subtitle::before {
	content: '03 / ПАРТНЁРСКАЯ СЕТЬ';
	display: block;
	margin-bottom: 24px;
	font-family: var(--font);
	font-size: 11px;
	font-weight: 800;
	letter-spacing: .12em;
	color: var(--acid);
}

.partners .column:last-child {
	width: auto;
	padding: 22px;
	border: 1px solid rgba(244, 241, 232, .32);
	background: rgba(13, 25, 122, .34);
	box-shadow: 22px 22px 0 rgba(16, 19, 16, .2);
	backdrop-filter: blur(8px);
}

.partners__logos {
	width: 100%;
}

.partners__logos-row {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 10px;
}

.partners__logos-row + .partners__logos-row {
	margin-top: 10px;
}

.partners__logo {
	display: block;
	width: 100%;
	height: 112px;
	border: 0;
	border-radius: 8px;
	background-color: var(--paper);
	background-position: center;
	background-repeat: no-repeat;
	background-size: 68% auto;
	filter: grayscale(1) contrast(1.15);
	transition: background-color var(--ease), transform var(--ease), filter var(--ease), box-shadow var(--ease);
}

.partners__logo:hover {
	transform: translateY(-7px) rotate(-1deg);
	background-color: var(--acid);
	filter: none;
	box-shadow: 8px 8px 0 rgba(16, 19, 16, .3);
}

.partners__logo_1 {
	display: none;
}

.partners__logo_2 { background-image: url('../images/partners/1.png'); }
.partners__logo_3 {
	background-image: url('../images/partners/2.png');
	background-size: auto 68%;
}
.partners__logo_4 { background-image: url('../images/partners/3.png'); }
.partners__logo_5 { background-image: url('../images/partners/4.png'); }
.partners__logo_6 { background-image: url('../images/partners/5.png'); }

/* FAQ */
.faq {
	position: relative;
	padding: 148px 0 138px;
	background: var(--paper);
}

.faq__container {
	display: grid;
	grid-template-columns: minmax(260px, .75fr) minmax(0, 1.25fr);
	align-items: start;
	column-gap: 88px;
}

.faq__title {
	position: sticky;
	top: 32px;
}

.faq__title::before {
	content: '02 / FAQ';
	display: block;
	margin-bottom: 22px;
	font-family: var(--display);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .1em;
	color: var(--orange);
}

.faq__wrapper {
	display: flex;
	flex-direction: column;
	border-top: 1px solid var(--ink);
}

.question {
	border-bottom: 1px solid var(--ink);
}

.question__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 26px;
	width: 100%;
	padding: 28px 0;
	border: 0;
	color: var(--ink);
	background: transparent;
	text-align: left;
	cursor: pointer;
}

.question__title {
	font-size: 21px;
	font-weight: 700;
	line-height: 1.35;
}

.question__icon {
	position: relative;
	width: 38px;
	height: 38px;
	border: 1px solid var(--ink);
	border-radius: 50%;
	flex: none;
	transition: transform var(--ease), background-color var(--ease);
}

.question__icon::before,
.question__icon::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 14px;
	height: 2px;
	background: var(--ink);
	transform: translate(-50%, -50%);
}

.question__icon::after {
	transform: translate(-50%, -50%) rotate(90deg);
}

.question__header:hover .question__icon,
.question__header.active .question__icon {
	background: var(--acid);
}

.question__header.active .question__icon {
	transform: rotate(45deg);
}

.question__body {
	max-height: 0;
	overflow: hidden;
	transition: max-height .6s cubic-bezier(.2, .7, .25, 1);
}

.question__content {
	padding: 0 64px 30px 0;
	color: rgba(16, 19, 16, .67);
	font-size: 16px;
}

.faq__text {
	grid-column: 2;
	margin-top: 30px;
	color: rgba(16, 19, 16, .55);
}

.faq__link {
	display: inline-block;
	margin-left: 8px;
	color: var(--ink);
	font-weight: 800;
	text-decoration-color: var(--orange);
	text-decoration-thickness: 2px;
	text-underline-offset: 5px;
}

/* CTA */
.sending {
	position: relative;
	min-height: 680px;
	padding: 130px 0;
	color: var(--paper);
	background: #071426;
	overflow: hidden;
}

.sending::before {
	content: '';
	position: absolute;
	inset: 0;
	z-index: 1;
	background: linear-gradient(90deg, rgba(3, 11, 24, .97) 0%, rgba(3, 11, 24, .86) 42%, rgba(3, 11, 24, .18) 76%, rgba(3, 11, 24, .08) 100%);
}

.sending .column:first-child {
	position: relative;
	z-index: 2;
	width: 58%;
}

.sending .column:last-child {
	position: absolute;
	inset: 0;
	z-index: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
}

.sending .subtitle {
	font-size: clamp(44px, 5.3vw, 74px);
}

.sending__btn {
	margin-top: 38px;
	background: var(--ink);
	color: var(--paper);
}

.sending__btn:hover {
	background: var(--acid);
	color: var(--ink);
	box-shadow: 7px 7px 0 rgba(244, 241, 232, .45);
}

.sending__text {
	max-width: 700px;
	margin-top: 26px;
	color: rgba(244, 241, 232, .72);
	font-size: 13px;
}

.sending__img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	filter: saturate(.9) contrast(1.04);
	transform: none;
}

/* Footer */
.footer {
	padding: 80px 0 92px;
	color: rgba(244, 241, 232, .66);
	background: var(--ink);
}

.footer__container {
	align-items: flex-start;
	gap: 48px;
}

.footer__column {
	width: 32%;
	min-width: 0;
}

.footer__column + .footer__column {
	padding-left: 38px;
	border-left: 1px solid var(--line-light);
}

.footer__logo {
	font-family: var(--display);
	font-size: 22px;
	font-weight: 800;
	line-height: 1.15;
	color: var(--paper);
}

.footer__descr {
	margin-top: 16px;
}

.footer-title {
	color: var(--paper);
	font-weight: 700;
	line-height: 1.4;
}

.footer__link {
	display: block;
	width: fit-content;
	color: rgba(244, 241, 232, .68);
	text-decoration: none;
	cursor: pointer;
	transition: color var(--ease), transform var(--ease);
}

.footer__link:hover {
	color: var(--acid);
	transform: translateX(5px);
}

.footer__link b {
	color: var(--paper);
}

.footer__phone,
.footer__address,
.footer__info {
	margin-bottom: 14px;
}

.footer__mail {
	word-break: break-word;
}

.footer__offer {
	margin-top: 20px;
	font-size: 14px;
	text-decoration: underline;
	text-underline-offset: 4px;
}

/* Modals */
.modal {
	z-index: 1000;
}

.modal__overlay {
	position: fixed;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 24px;
	background: rgba(5, 7, 5, .83);
	backdrop-filter: blur(8px);
	z-index: 999;
}

.modal__container {
	position: relative;
	width: min(100%, 590px);
	max-height: calc(100vh - 48px);
	padding: 48px;
	border: 1px solid var(--ink);
	border-radius: 0;
	background: var(--paper);
	box-shadow: 14px 14px 0 var(--acid);
	overflow-y: auto;
}

.modal__header {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 28px;
	margin-bottom: 26px;
}

.modal__title {
	font-size: clamp(28px, 4vw, 42px);
	color: var(--ink);
}

.modal__close {
	position: relative;
	width: 40px;
	height: 40px;
	padding: 0;
	border: 1px solid var(--ink);
	border-radius: 50%;
	background: transparent;
	flex: none;
	cursor: pointer;
	transition: background-color var(--ease), transform var(--ease);
}

.modal__header .modal__close::before,
.modal__header .modal__close::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 16px;
	height: 2px;
	background: var(--ink);
	transform: translate(-50%, -50%) rotate(45deg);
}

.modal__header .modal__close::after {
	transform: translate(-50%, -50%) rotate(-45deg);
}

.modal__close:hover {
	transform: rotate(90deg);
	background: var(--acid);
}

.modal__descr {
	color: rgba(16, 19, 16, .64);
	font-size: 17px;
}

.modal__form {
	display: flex;
	flex-direction: column;
	margin-top: 30px;
}

.modal__form-group {
	display: flex;
	align-items: flex-start;
	margin-bottom: 22px;
}

.numCredit {
	box-sizing: border-box;
	width: 100%;
	height: 58px;
	padding: 14px 18px;
	border: 1px solid rgba(16, 19, 16, .28);
	border-radius: 0;
	background: #fffdf6;
	color: var(--ink);
	font-size: 16px;
	outline: none;
	transition: border-color var(--ease), box-shadow var(--ease);
}

.numCredit:focus {
	border-color: var(--ink);
	box-shadow: inset 5px 0 0 var(--acid);
}

.modal__form-checkbox {
	width: 18px;
	height: 18px;
	margin: 3px 10px 0 0;
	accent-color: var(--ink);
	flex: none;
}

.modal__form-label {
	font-size: 14px;
	line-height: 1.45;
}

.modal__link {
	display: inline;
	color: var(--ink);
	font-weight: 800;
	text-decoration: underline;
	text-decoration-color: var(--orange);
	text-underline-offset: 3px;
	cursor: pointer;
}

.modal__btn {
	align-self: flex-start;
	background: var(--ink);
	color: var(--paper);
}

#offer .modal__container {
	width: min(100%, 1050px);
	max-width: 1050px;
	box-shadow: 14px 14px 0 var(--orange);
}

#offer .modal__title {
	max-width: 850px;
	font-size: clamp(24px, 3vw, 38px);
}

#offer .modal__body {
	font-size: 15px;
	line-height: 1.65;
}

#offer .modal__body p {
	margin-bottom: 14px;
}

#offer .modal__body b {
	color: var(--ink);
}

.flex {
	display: flex;
	max-width: 380px;
}

.flex input {
	width: 48px;
	height: 48px;
	border: 1px solid var(--ink);
	text-align: center;
}

@media (max-width: 1100px) {
	.container {
		width: min(100% - 48px, 960px);
		gap: 44px;
	}

	.column {
		width: calc(50% - 22px);
	}

	.main > .container:last-child {
		min-height: 560px;
	}

	.main__subtitle {
		font-size: clamp(44px, 6vw, 62px);
	}

	.main__visual {
		min-height: 440px;
	}

	.packages .column:first-child {
		min-height: 440px;
	}

	.faq__container {
		column-gap: 50px;
	}

	.sending .column:last-child {
		right: 0;
	}

	.footer__container {
		gap: 28px;
	}

	.footer__column + .footer__column {
		padding-left: 26px;
	}
}

@media (max-width: 820px) {
	body {
		font-size: 16px;
	}

	.container {
		width: min(100% - 40px, 680px);
	}

	.main {
		padding-bottom: 80px;
	}

	.main__nav {
		display: none;
	}

	.main__header-btn {
		margin-left: auto;
	}

	.main > .container:last-child,
	.footer__container {
		flex-direction: column;
		align-items: stretch;
	}

	.packages .container,
	.partners .container {
		grid-template-columns: 1fr;
	}

	.main > .container:last-child {
		min-height: auto;
		padding-top: 74px;
	}

	.column,
	.main .column,
	.packages .column,
	.partners .column,
	.footer__column {
		width: 100%;
	}

	.main__subtitle {
		max-width: 650px;
		font-size: clamp(46px, 10vw, 68px);
	}

	.main__visual {
		width: min(100%, 580px) !important;
		min-height: 500px;
		margin: 0 auto;
	}

	.packages {
		padding: 110px 0;
	}

	.packages .container {
		gap: 26px;
	}

	.packages .column:first-child {
		grid-column: 1;
		grid-row: 2;
		min-height: 470px;
		border-radius: 170px 170px 10px 10px;
	}

	.packages .column:last-child {
		grid-column: 1;
		grid-row: 1;
		padding: 48px 42px 44px;
	}

	.partners {
		padding: 88px 0;
	}

	.partners .column:first-child {
		padding: 0 0 44px;
		border-right: 0;
		border-bottom: 1px solid rgba(244, 241, 232, .28);
	}

	.partners .column:last-child {
		padding: 18px;
	}

	.faq {
		padding: 104px 0;
	}

	.faq__container {
		grid-template-columns: 1fr;
		row-gap: 54px;
	}

	.faq__title {
		position: static;
	}

	.faq__text {
		grid-column: 1;
	}

	.sending {
		min-height: 610px;
		padding: 100px 0;
	}

	.sending .column:first-child {
		width: 100%;
	}

	.sending .column:last-child {
		inset: 0;
		width: 100%;
		height: 100%;
		transform: none;
	}

	.sending::before {
		background: linear-gradient(90deg, rgba(3, 11, 24, .96) 0%, rgba(3, 11, 24, .82) 62%, rgba(3, 11, 24, .35) 100%);
	}

	.footer__column + .footer__column {
		padding: 30px 0 0;
		border-top: 1px solid var(--line-light);
		border-left: 0;
	}
}

@media (max-width: 560px) {
	.container {
		width: calc(100% - 32px);
	}

	.subtitle {
		font-size: 34px;
	}

	.main {
		padding-top: 18px;
	}

	.main::before {
		background-size: 54px 54px;
	}

	.main__header {
		gap: 14px;
		padding-bottom: 18px;
	}

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

	.brand__name {
		font-size: 10px;
	}

	.main__header-btn {
		min-height: 38px;
		padding: 6px 13px;
	}

	.main > .container:last-child {
		padding-top: 60px;
		gap: 46px;
	}

	.main__title {
		margin-bottom: 20px;
	}

	.main__subtitle {
		font-size: clamp(38px, 11.7vw, 55px);
	}

	.main__descr,
	.packages__descr {
		font-size: 16px;
	}

	.main__btn,
	.sending__btn {
		width: 100%;
	}

	.btn::after {
		margin-left: auto;
	}

	.main__visual {
		min-height: 340px;
	}

	.main__visual::after {
		right: -4px;
		bottom: 12px;
	}

	.packages {
		padding: 88px 0;
	}

	.packages::before {
		top: 34px;
		right: -8px;
		left: auto;
	}

	.packages .column:last-child {
		padding: 38px 25px 34px;
	}

	.packages .column:first-child {
		min-height: 330px;
		border-width: 7px;
		border-radius: 90px 90px 7px 7px;
	}

	.packages .column:first-child::before {
		inset: auto 12px 12px auto;
		padding: 9px 11px;
		font-size: 9px;
	}

	.partners {
		padding: 72px 0;
	}

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

	.partners__logo {
		height: 88px;
	}

	.partners__logos-row:first-child .partners__logo_3 {
		grid-column: 2;
	}

	.faq {
		padding: 82px 0;
	}

	.faq__container {
		row-gap: 38px;
	}

	.question__header {
		padding: 22px 0;
	}

	.question__title {
		font-size: 17px;
	}

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

	.question__content {
		padding-right: 0;
		font-size: 14px;
	}

	.faq__text {
		font-size: 14px;
	}

	.faq__link {
		display: block;
		width: fit-content;
		margin: 5px 0 0;
	}

	.sending {
		min-height: 570px;
		padding: 76px 0;
	}

	.sending .subtitle {
		font-size: 39px;
	}

	.sending .column:last-child {
		inset: 0;
		width: 100%;
	}

	.sending::before {
		background: linear-gradient(90deg, rgba(3, 11, 24, .97) 0%, rgba(3, 11, 24, .88) 76%, rgba(3, 11, 24, .62) 100%);
	}

	.footer {
		padding: 64px 0 72px;
	}

	.footer__logo {
		font-size: 19px;
	}

	.modal__overlay {
		padding: 14px;
	}

	.modal__container {
		max-height: calc(100vh - 28px);
		padding: 28px 22px;
		box-shadow: 7px 7px 0 var(--acid);
	}

	.modal__header {
		gap: 14px;
	}

	.modal__title {
		font-size: 27px;
	}

	.modal__close {
		width: 36px;
		height: 36px;
	}

	.modal__descr {
		font-size: 15px;
	}

	.modal__btn {
		width: 100%;
	}

	#offer .modal__container {
		box-shadow: 7px 7px 0 var(--orange);
	}

	#offer .modal__title {
		font-size: 21px;
	}

	#offer .modal__body {
		font-size: 13px;
	}
}

@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		scroll-behavior: auto !important;
		transition-duration: .01ms !important;
		animation-duration: .01ms !important;
		animation-iteration-count: 1 !important;
	}
}
