:root {
	--anim-fast: 180ms;
	--anim-base: 320ms;
	--anim-slow: 520ms;
	--anim-ease: cubic-bezier(.22, 1, .36, 1);
	--anim-ease-soft: cubic-bezier(.16, 1, .3, 1);
	--premium-blur: 18px;
	--premium-shadow: 0 18px 50px rgba(0, 0, 0, .16);
}

body {
	font-family: 'Inter', Arial, sans-serif;
	font-size: 16px;
	line-height: 1.5;
}

.page-home {
	background: #181418;
}

.page-about {
	background: #181418;
}

body.site-header-fixed #page {
	padding-top: 81px;
}

.site-header {
	position: relative;
	z-index: 50;
	width: 100%;
	background: rgba(24, 20, 24, .8);
	border-bottom: 1px solid rgba(255, 255, 255, .1);
	transition: background var(--anim-base) var(--anim-ease), box-shadow var(--anim-base) var(--anim-ease), backdrop-filter var(--anim-base) var(--anim-ease);
}

.site-header.is-fixed {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	background: rgba(24, 20, 24, .88);
	box-shadow: var(--premium-shadow);
	backdrop-filter: blur(var(--premium-blur));
	animation: siteHeaderIn var(--anim-base) var(--anim-ease-soft);
}

.site-header__inner {
	display: grid;
	grid-template-columns: minmax(120px, 1fr) auto minmax(220px, 1fr);
	align-items: center;
	min-height: 81px;
	padding: 0 109px;
}

.site-header__logo {
	justify-self: start;
	font-family: 'Montserrat', Arial, sans-serif;
	font-size: 24px;
	line-height: 32px;
	font-weight: 700;
	letter-spacing: -.6px;
	color: #ffffff;
	transition: color var(--anim-fast) var(--anim-ease), opacity var(--anim-fast) var(--anim-ease);
}

.site-header__nav {
	display: contents;
}

.site-header__menu {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 32px;
}

.site-header__contacts {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 24px;
}

.site-header__link,
.site-header__phone,
.site-header__social {
	color: rgba(255, 255, 255, .9);
	transition: color var(--anim-fast) var(--anim-ease), opacity var(--anim-fast) var(--anim-ease);
}

.site-header__link,
.site-header__phone {
	font-size: 16px;
	line-height: 24px;
	font-weight: 400;
	white-space: nowrap;
}

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

.site-header__social {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 20px;
	height: 20px;
	font-size: 16px;
}

.site-header__social-text {
	font-size: 14px;
	line-height: 20px;
}

.site-header__logo:hover,
.site-header__link:hover,
.site-header__phone:hover,
.site-header__social:hover {
	color: #ffffff;
	opacity: 1;
}

.site-header__burger {
	display: none;
	width: 44px;
	height: 44px;
	padding: 0;
	border: 0;
	border-radius: 0;
	background: transparent;
	cursor: pointer;
}

.site-header__mobile-actions,
.site-header__mobile-phone {
	display: none;
}

.site-header__burger span {
	display: block;
	width: 24px;
	height: 2px;
	margin: 5px auto;
	background: #ffffff;
	transition: transform var(--anim-base) var(--anim-ease), opacity var(--anim-base) var(--anim-ease);
}

@keyframes siteHeaderIn {
	from {
		opacity: .86;
		transform: translateY(-12px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.hero {
	position: relative;
	overflow: hidden;
	min-height: 980px;
	padding: 80px 0 80px;
	color: #ffffff;
	background: #181418;
}

.hero__bg {
	position: absolute;
	inset: 0;
	z-index: 1;
	background: linear-gradient(180deg, rgba(24, 20, 24, .82) 0%, rgba(24, 20, 24, .58) 50%, #181418 100%);
	pointer-events: none;
}

.hero__video,
.hero__slider,
.hero__slide {
	position: absolute;
	inset: 0;
}

.hero__video,
.hero__slider {
	z-index: 0;
	overflow: hidden;
}

.hero__video video,
.hero__slide {
	opacity: 0;
	filter: brightness(.88);
	transition: opacity 1200ms var(--anim-ease), filter 1200ms var(--anim-ease);
}

.hero__video video,
.hero__slide.is-active {
	opacity: 1;
	filter: brightness(1);
}

.hero__video video,
.hero__slide img,
.hero__slide video {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hero__content {
	position: relative;
	z-index: 2;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.hero__title {
	max-width: 896px;
	font-family: 'Montserrat', Arial, sans-serif;
	font-size: 60px;
	line-height: 60px;
	font-weight: 700;
	text-align: center;
	letter-spacing: 0;
	animation: heroFadeIn var(--anim-slow) var(--anim-ease-soft);
}

.hero__text {
	max-width: 672px;
	margin-top: 24px;
	font-size: 20px;
	line-height: 28px;
	font-weight: 400;
	text-align: center;
	color: rgba(255, 255, 255, .8);
	animation: heroFadeIn var(--anim-slow) var(--anim-ease-soft);
}

.hero-search {
	width: 100%;
	max-width: 1024px;
	margin-top: 32px;
	padding: 32px;
	border: 1px solid rgba(255, 255, 255, .1);
	border-radius: 16px;
	background: rgba(255, 255, 255, .05);
	box-shadow: 0 25px 50px rgba(0, 0, 0, .25);
	backdrop-filter: blur(var(--premium-blur));
	animation: heroFormIn var(--anim-slow) var(--anim-ease-soft);
}

.hero-search__tabs {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 24px;
}

.hero-search__tab {
	min-height: 44px;
	padding: 10px 20px;
	border: 0;
	border-radius: 12px;
	background: rgba(255, 255, 255, .05);
	color: rgba(255, 255, 255, .7);
	font-size: 16px;
	line-height: 24px;
	font-weight: 500;
	cursor: pointer;
	transition: color var(--anim-fast) var(--anim-ease), background var(--anim-fast) var(--anim-ease), box-shadow var(--anim-fast) var(--anim-ease);
}

.hero-search__tab.is-active {
	background: #a93134;
	color: #ffffff;
}

.hero-search__tab:hover {
	color: #ffffff;
	background: rgba(169, 49, 52, .72);
}

.hero-search__field {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 8px;
	min-width: 0;
}

.hero-search__field-wide {
	width: 100%;
	margin-bottom: 16px;
}

.hero-search__label {
	font-size: 14px;
	line-height: 20px;
	font-weight: 500;
	color: rgba(255, 255, 255, .6);
}

.hero-search__grid {
	position: relative;
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px;
	margin-bottom: 16px;
}

.hero-search__input-wrap {
	position: relative;
	display: block;
}

.hero-search__input-wrap .fa {
	position: absolute;
	top: 50%;
	left: 16px;
	z-index: 1;
	color: rgba(255, 255, 255, .5);
	transform: translateY(-50%);
	pointer-events: none;
	transition: color var(--anim-fast) var(--anim-ease);
}

.hero-search__control {
	display: block;
	width: 100%;
	height: 50px;
	padding: 12px 16px;
	border: 1px solid rgba(255, 255, 255, .2);
	border-radius: 12px;
	background: rgba(255, 255, 255, .1);
	color: #ffffff;
	font-size: 16px;
	line-height: 24px;
	font-weight: 400;
	outline: 0;
	transition: border-color var(--anim-fast) var(--anim-ease), background var(--anim-fast) var(--anim-ease), box-shadow var(--anim-fast) var(--anim-ease);
}

.hero-search__input-wrap .hero-search__control {
	padding-left: 48px;
}

.hero-search__control::placeholder {
	color: rgba(255, 255, 255, .4);
}

.hero-search__control:focus {
	border-color: rgba(255, 255, 255, .46);
	background: rgba(255, 255, 255, .14);
	box-shadow: 0 0 0 3px rgba(169, 49, 52, .18);
}

.hero-search__control[readonly] {
	cursor: pointer;
}

.hero-search__field.is-disabled {
	opacity: .42;
	pointer-events: none;
}

.hero-search__field.is-invalid .hero-search__control {
	border-color: rgba(214, 65, 70, .95);
	box-shadow: 0 0 0 3px rgba(214, 65, 70, .18);
}

.hero-search__input-wrap:focus-within .fa {
	color: rgba(255, 255, 255, .8);
}

.hero-search__swap {
	position: absolute;
	top: 33px;
	left: 50%;
	z-index: 4;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	border: 1px solid rgba(255, 255, 255, .16);
	border-radius: 50%;
	background: rgba(40, 16, 24, .94);
	color: rgba(255, 255, 255, .78);
	cursor: pointer;
	transform: translateX(-50%);
	transition: background var(--anim-fast) var(--anim-ease), color var(--anim-fast) var(--anim-ease), border-color var(--anim-fast) var(--anim-ease), box-shadow var(--anim-fast) var(--anim-ease);
}

.hero-search__swap:hover {
	border-color: rgba(169, 49, 52, .54);
	background: #a93134;
	color: #ffffff;
	box-shadow: 0 10px 26px rgba(0, 0, 0, .22);
}

select.hero-search__control {
	appearance: none;
	background-image: linear-gradient(45deg, transparent 50%, rgba(255, 255, 255, .7) 50%), linear-gradient(135deg, rgba(255, 255, 255, .7) 50%, transparent 50%);
	background-position: calc(100% - 20px) 21px, calc(100% - 14px) 21px;
	background-size: 6px 6px, 6px 6px;
	background-repeat: no-repeat;
}

select.hero-search__control option {
	background: #ffffff;
	color: #181418;
}

.hero-search__suggestions {
	position: absolute;
	top: calc(100% + 8px);
	left: 0;
	right: 0;
	z-index: 8;
	display: none;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, .12);
	border-radius: 12px;
	background: rgba(24, 20, 24, .96);
	box-shadow: var(--premium-shadow);
	backdrop-filter: blur(var(--premium-blur));
}

.hero-search__field.is-suggesting .hero-search__suggestions {
	display: block;
}

.hero-search__suggestion {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	width: 100%;
	padding: 12px 14px;
	border: 0;
	border-bottom: 1px solid rgba(255, 255, 255, .08);
	background: transparent;
	color: rgba(255, 255, 255, .86);
	text-align: left;
	cursor: pointer;
	transition: background var(--anim-fast) var(--anim-ease), color var(--anim-fast) var(--anim-ease);
}

.hero-search__suggestion:last-child {
	border-bottom: 0;
}

.hero-search__suggestion-empty {
	display: block;
	cursor: default;
	color: rgba(255, 255, 255, .52);
}

.hero-search__suggestion:hover {
	background: rgba(169, 49, 52, .2);
	color: #ffffff;
}

.hero-search__suggestion.is-active {
	background: rgba(169, 49, 52, .32);
	color: #ffffff;
}

.hero-search__suggestion-empty:hover {
	background: transparent;
	color: rgba(255, 255, 255, .52);
}

.hero-search__suggestion-code {
	flex: 0 0 auto;
	color: rgba(255, 255, 255, .52);
	font-size: 13px;
	line-height: 18px;
	font-weight: 600;
}

.hero-search__multi[hidden] {
	display: none;
}

.hero-search__segments {
	display: flex;
	flex-direction: column;
	gap: 14px;
	margin-bottom: 16px;
}

.hero-search__segment {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(180px, .7fr) 44px;
	gap: 12px;
	align-items: end;
}

.hero-search__segment-remove {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 50px;
	border: 1px solid rgba(255, 255, 255, .14);
	border-radius: 12px;
	background: rgba(255, 255, 255, .06);
	color: rgba(255, 255, 255, .7);
	cursor: pointer;
	transition: background var(--anim-fast) var(--anim-ease), color var(--anim-fast) var(--anim-ease), border-color var(--anim-fast) var(--anim-ease);
}

.hero-search__segment-remove:hover {
	border-color: rgba(169, 49, 52, .5);
	background: rgba(169, 49, 52, .24);
	color: #ffffff;
}

.hero-search__multi-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 16px;
}

.hero-search__ghost-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-height: 42px;
	padding: 9px 16px;
	border: 1px solid rgba(255, 255, 255, .14);
	border-radius: 12px;
	background: rgba(255, 255, 255, .06);
	color: rgba(255, 255, 255, .82);
	font-size: 15px;
	line-height: 22px;
	cursor: pointer;
	transition: background var(--anim-fast) var(--anim-ease), color var(--anim-fast) var(--anim-ease), border-color var(--anim-fast) var(--anim-ease);
}

.hero-search__ghost-button:hover {
	border-color: rgba(169, 49, 52, .5);
	background: rgba(169, 49, 52, .24);
	color: #ffffff;
}

.hero-search__passengers {
	position: relative;
}

.hero-search__passengers-menu {
	position: absolute;
	top: calc(100% + 8px);
	left: 0;
	right: 0;
	z-index: 9;
	display: none;
	padding: 8px;
	border: 1px solid rgba(255, 255, 255, .12);
	border-radius: 14px;
	background: rgba(24, 20, 24, .97);
	box-shadow: var(--premium-shadow);
	backdrop-filter: blur(var(--premium-blur));
}

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

.hero-search__passenger-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 12px;
	border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.hero-search__passenger-row:last-child {
	border-bottom: 0;
}

.hero-search__passenger-title,
.hero-search__passenger-note {
	display: block;
}

.hero-search__passenger-title {
	color: #ffffff;
	font-size: 15px;
	line-height: 20px;
	font-weight: 600;
}

.hero-search__passenger-note {
	margin-top: 2px;
	color: rgba(255, 255, 255, .52);
	font-size: 13px;
	line-height: 18px;
}

.hero-search__counter {
	display: grid;
	grid-template-columns: 34px 44px 34px;
	gap: 4px;
	align-items: center;
}

.hero-search__counter button {
	width: 34px;
	height: 34px;
	border: 1px solid rgba(255, 255, 255, .14);
	border-radius: 10px;
	background: rgba(255, 255, 255, .06);
	color: rgba(255, 255, 255, .82);
	font-size: 18px;
	line-height: 20px;
	cursor: pointer;
	transition: background var(--anim-fast) var(--anim-ease), color var(--anim-fast) var(--anim-ease), border-color var(--anim-fast) var(--anim-ease);
}

.hero-search__counter button:hover {
	border-color: rgba(169, 49, 52, .5);
	background: rgba(169, 49, 52, .24);
	color: #ffffff;
}

.hero-search__counter input {
	width: 44px;
	height: 34px;
	border: 0;
	background: transparent;
	color: #ffffff;
	font-size: 16px;
	line-height: 22px;
	text-align: center;
	outline: 0;
}

.hero-search__message {
	display: none;
	margin-top: 6px;
	color: #ffb8ba;
	font-size: 14px;
	line-height: 20px;
}

.hero-search__message.is-visible {
	display: block;
}

.hero-search__submit {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	width: 100%;
	height: 56px;
	margin-top: 24px;
	border: 0;
	border-radius: 12px;
	background: linear-gradient(90deg, #a93134 0%, #8d272b 50%, #6a1b20 100%);
	color: #ffffff;
	font-size: 16px;
	line-height: 24px;
	font-weight: 500;
	cursor: pointer;
	transition: background var(--anim-base) var(--anim-ease), box-shadow var(--anim-base) var(--anim-ease), opacity var(--anim-base) var(--anim-ease);
}

.hero-search__submit:hover {
	background: linear-gradient(90deg, #bb3a3d 0%, #982d31 50%, #741f25 100%);
	box-shadow: 0 14px 34px rgba(169, 49, 52, .32);
}

@keyframes heroFadeIn {
	from {
		opacity: 0;
		filter: blur(8px);
	}
	to {
		opacity: 1;
		filter: blur(0);
	}
}

@keyframes heroFormIn {
	from {
		opacity: 0;
		filter: blur(10px);
		transform: translateY(18px);
	}
	to {
		opacity: 1;
		filter: blur(0);
		transform: translateY(0);
	}
}

.cookie-notice {
	position: fixed;
	right: 38px;
	bottom: 38px;
	z-index: 120;
	display: flex;
	flex-direction: column;
	gap: 16px;
	width: 448px;
	padding: 25px;
	border: 1px solid rgba(255, 255, 255, .1);
	border-radius: 16px;
	background: #3a1016;
	box-shadow: 0 25px 25px rgba(0, 0, 0, .25);
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
	transition: opacity var(--anim-base) var(--anim-ease), visibility var(--anim-base) var(--anim-ease), transform var(--anim-base) var(--anim-ease);
}

.cookie-notice.is-hidden {
	opacity: 0;
	visibility: hidden;
	transform: translateY(16px);
	pointer-events: none;
}

.cookie-notice__text {
	font-size: 16px;
	line-height: 24px;
	font-weight: 400;
	color: rgba(255, 255, 255, .8);
}

.cookie-notice__text a {
	color: #f1a0a3;
	transition: color var(--anim-fast) var(--anim-ease), opacity var(--anim-fast) var(--anim-ease);
}

.cookie-notice__text a:hover {
	color: #ffffff;
}

.cookie-notice__button {
	width: 100%;
	min-height: 44px;
	border: 0;
	border-radius: 12px;
	background: linear-gradient(90deg, #a93134 0%, #8d272b 50%, #6a1b20 100%);
	color: #ffffff;
	font-size: 16px;
	line-height: 24px;
	font-weight: 500;
	cursor: pointer;
	transition: background var(--anim-base) var(--anim-ease), box-shadow var(--anim-base) var(--anim-ease), opacity var(--anim-base) var(--anim-ease);
}

.cookie-notice__button:hover {
	background: linear-gradient(90deg, #bb3a3d 0%, #982d31 50%, #741f25 100%);
	box-shadow: 0 14px 34px rgba(169, 49, 52, .28);
}

.premium-partner {
	padding: 128px 0;
	color: #ffffff;
	background: linear-gradient(180deg, #181418 0%, rgba(74, 68, 77, .2) 100%);
}

.premium-partner__inner {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: 48px;
	align-items: center;
	min-height: 500px;
}

.premium-partner__image {
	overflow: hidden;
	height: 500px;
	border-radius: 16px;
	background: rgba(255, 255, 255, .05);
}

.premium-partner__image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: filter var(--anim-base) var(--anim-ease), opacity var(--anim-base) var(--anim-ease);
}

.premium-partner__image:hover img {
	filter: brightness(1.04);
}

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

.premium-partner__title {
	max-width: 648px;
	font-family: 'Montserrat', Arial, sans-serif;
	font-size: 48px;
	line-height: 48px;
	font-weight: 700;
	color: #ffffff;
}

.premium-partner__text {
	max-width: 648px;
	margin-top: 24px;
	font-size: 18px;
	line-height: 29.25px;
	font-weight: 400;
	color: rgba(255, 255, 255, .7);
}

.premium-partner__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 149px;
	min-height: 56px;
	margin-top: 28px;
	padding: 16px 24px;
	border-radius: 12px;
	background: linear-gradient(90deg, #a93134 0%, #8d272b 50%, #6a1b20 100%);
	color: #ffffff;
	font-size: 16px;
	line-height: 24px;
	font-weight: 500;
	transition: background var(--anim-base) var(--anim-ease), box-shadow var(--anim-base) var(--anim-ease), opacity var(--anim-base) var(--anim-ease);
}

.premium-partner__button:hover {
	background: linear-gradient(90deg, #bb3a3d 0%, #982d31 50%, #741f25 100%);
	box-shadow: 0 14px 34px rgba(169, 49, 52, .28);
}

.why-choose {
	padding: 128px 0 0;
	color: #ffffff;
	background: #181418;
}

.why-choose__head {
	text-align: center;
}

.why-choose__title {
	font-family: 'Montserrat', Arial, sans-serif;
	font-size: 48px;
	line-height: 48px;
	font-weight: 700;
	color: #ffffff;
}

.why-choose__subtitle {
	margin-top: 16px;
	font-size: 18px;
	line-height: 28px;
	font-weight: 400;
	color: rgba(255, 255, 255, .7);
}

.why-choose__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 32px;
	margin-top: 64px;
}

.why-choose__card {
	min-height: 260px;
	padding: 32px;
	border: 1px solid rgba(255, 255, 255, .1);
	border-radius: 16px;
	background: rgba(255, 255, 255, .05);
	transition: border-color var(--anim-base) var(--anim-ease), background var(--anim-base) var(--anim-ease), box-shadow var(--anim-base) var(--anim-ease);
}

.why-choose__card:hover {
	border-color: rgba(255, 255, 255, .18);
	background: rgba(255, 255, 255, .07);
	box-shadow: 0 18px 44px rgba(0, 0, 0, .16);
}

.why-choose__icon {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	width: 32px;
	height: 32px;
	color: #d3393d;
	font-size: 24px;
	line-height: 32px;
}

.why-choose__card-title {
	margin-top: 16px;
	font-family: 'Montserrat', Arial, sans-serif;
	font-size: 20px;
	line-height: 28px;
	font-weight: 600;
	color: #ffffff;
}

.why-choose__card-text {
	margin-top: 12px;
	font-size: 16px;
	line-height: 26px;
	font-weight: 400;
	color: rgba(255, 255, 255, .6);
}

.how-works {
	position: relative;
	overflow: hidden;
	padding: 128px 0;
	color: #ffffff;
	background: linear-gradient(180deg, #181418 0%, rgba(74, 68, 77, .2) 100%);
}

.how-works__decor {
	position: absolute;
	inset: 0;
	opacity: .05;
	pointer-events: none;
}

.how-works__decor:before,
.how-works__decor:after {
	position: absolute;
	top: 40px;
	width: 384px;
	height: 384px;
	border-radius: 50%;
	content: "";
	filter: blur(120px);
}

.how-works__decor:before {
	left: 25%;
	background: #a93134;
}

.how-works__decor:after {
	right: 24%;
	background: #6a1b20;
}

.how-works .container {
	z-index: 1;
}

.how-works__head {
	text-align: center;
}

.how-works__title {
	font-family: 'Montserrat', Arial, sans-serif;
	font-size: 48px;
	line-height: 48px;
	font-weight: 700;
	color: #ffffff;
}

.how-works__subtitle {
	margin-top: 16px;
	font-size: 18px;
	line-height: 28px;
	font-weight: 400;
	color: rgba(255, 255, 255, .7);
}

.how-works__steps {
	position: relative;
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 32px;
	margin-top: 80px;
}

.how-works__line {
	position: absolute;
	top: 96px;
	left: 0;
	right: 0;
	height: 2px;
	background: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgba(169, 49, 52, .3) 50%, rgba(0, 0, 0, 0) 100%);
	pointer-events: none;
}

.how-works__card {
	position: relative;
	overflow: hidden;
	min-height: 282px;
	padding: 32px;
	border: 1px solid rgba(255, 255, 255, .2);
	border-radius: 16px;
	background: linear-gradient(135deg, rgba(255, 255, 255, .1) 0%, rgba(255, 255, 255, .05) 100%);
	transition: border-color var(--anim-base) var(--anim-ease), background var(--anim-base) var(--anim-ease), box-shadow var(--anim-base) var(--anim-ease);
}

.how-works__card:hover {
	border-color: rgba(255, 255, 255, .28);
	box-shadow: 0 18px 44px rgba(0, 0, 0, .18);
}

.how-works__ghost {
	position: absolute;
	top: -24px;
	right: -10px;
	font-family: 'Montserrat', Arial, sans-serif;
	font-size: 120px;
	line-height: 120px;
	font-weight: 700;
	color: rgba(255, 255, 255, .05);
	pointer-events: none;
}

.how-works__top {
	position: relative;
	z-index: 1;
	display: flex;
	justify-content: center;
	min-height: 96px;
}

.how-works__badge {
	position: absolute;
	top: -12px;
	left: -12px;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 56px;
	height: 56px;
	border: 2px solid #a93134;
	border-radius: 16px;
	background: #181418;
	box-shadow: 0 10px 15px rgba(0, 0, 0, .1);
	color: #a93134;
	font-family: 'Montserrat', Arial, sans-serif;
	font-size: 18px;
	line-height: 28px;
	font-weight: 700;
}

.how-works__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 96px;
	height: 96px;
	border-radius: 16px;
	background: linear-gradient(135deg, #a93134 0%, #6a1b20 50%, #3a1016 100%);
	box-shadow: 0 10px 15px rgba(169, 49, 52, .3);
	color: #ffffff;
	font-size: 40px;
	line-height: 40px;
}

.how-works__card-title {
	position: relative;
	z-index: 1;
	margin-top: 24px;
	font-family: 'Montserrat', Arial, sans-serif;
	font-size: 20px;
	line-height: 28px;
	font-weight: 600;
	color: #ffffff;
}

.how-works__card-text {
	position: relative;
	z-index: 1;
	margin-top: 16px;
	font-size: 16px;
	line-height: 26px;
	font-weight: 400;
	color: rgba(255, 255, 255, .6);
}

.best-deals {
	padding: 128px 0;
	color: #ffffff;
	background: #181418;
}

.best-deals__head {
	text-align: center;
}

.best-deals__title {
	font-family: 'Montserrat', Arial, sans-serif;
	font-size: 48px;
	line-height: 48px;
	font-weight: 700;
	color: #ffffff;
}

.best-deals__subtitle {
	margin-top: 16px;
	font-size: 18px;
	line-height: 28px;
	font-weight: 400;
	color: rgba(255, 255, 255, .7);
}

.best-deals__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 32px;
	margin-top: 64px;
}

.best-deals__card {
	position: relative;
	display: block;
	overflow: hidden;
	height: 400px;
	border-radius: 16px;
	background: rgba(255, 255, 255, .05);
}

.best-deals__card img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: filter var(--anim-base) var(--anim-ease), opacity var(--anim-base) var(--anim-ease);
}

.best-deals__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(0deg, #181418 0%, rgba(24, 20, 24, .6) 50%, rgba(0, 0, 0, 0) 100%);
	transition: background var(--anim-base) var(--anim-ease);
}

.best-deals__content {
	position: absolute;
	left: 32px;
	right: 32px;
	bottom: 32px;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.best-deals__card-title {
	font-family: 'Montserrat', Arial, sans-serif;
	font-size: 24px;
	line-height: 32px;
	font-weight: 600;
	color: #ffffff;
}

.best-deals__card-text {
	font-size: 16px;
	line-height: 24px;
	font-weight: 400;
	color: rgba(255, 255, 255, .7);
}

.best-deals__card:hover img {
	filter: brightness(1.08);
}

.best-deals__card:hover .best-deals__overlay {
	background: linear-gradient(0deg, #181418 0%, rgba(24, 20, 24, .52) 50%, rgba(0, 0, 0, 0) 100%);
}

.best-deals__actions {
	display: flex;
	justify-content: center;
	margin-top: 48px;
}

.best-deals__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 149px;
	min-height: 56px;
	padding: 16px 28px;
	border-radius: 12px;
	background: linear-gradient(90deg, #a93134 0%, #8d272b 50%, #6a1b20 100%);
	color: #ffffff;
	font-size: 16px;
	line-height: 24px;
	font-weight: 500;
	transition: background var(--anim-base) var(--anim-ease), box-shadow var(--anim-base) var(--anim-ease), opacity var(--anim-base) var(--anim-ease);
}

.best-deals__button:hover {
	background: linear-gradient(90deg, #bb3a3d 0%, #982d31 50%, #741f25 100%);
	box-shadow: 0 14px 34px rgba(169, 49, 52, .28);
}

.blog-hero,
.article-hero {
	position: relative;
	padding: 154px 0 82px;
	color: #ffffff;
	background: linear-gradient(180deg, rgba(24, 20, 24, .76) 0%, rgba(40, 16, 24, .9) 100%), url('https://images.unsplash.com/photo-1483450388369-9ed95738483c?auto=format&fit=crop&w=1920&q=80') center center / cover no-repeat;
	overflow: hidden;
}

.blog-hero:before,
.article-hero:before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(120deg, rgba(169, 49, 52, .24) 0%, rgba(24, 20, 24, 0) 56%);
	pointer-events: none;
}

.blog-breadcrumbs {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 42px;
	font-size: 14px;
	line-height: 20px;
	color: rgba(255, 255, 255, .58);
}

.blog-breadcrumbs__link {
	color: rgba(255, 255, 255, .72);
	transition: color var(--anim-fast) var(--anim-ease);
}

.blog-breadcrumbs__link:hover {
	color: #ffffff;
}

.blog-breadcrumbs__separator {
	color: rgba(255, 255, 255, .38);
}

.blog-breadcrumbs__current {
	color: #ffffff;
}

.blog-hero__content,
.article-hero .container {
	position: relative;
	z-index: 1;
}

.blog-hero__content {
	max-width: 760px;
}

.blog-hero__label,
.article-hero__date,
.blog-card__date {
	font-size: 14px;
	line-height: 20px;
	font-weight: 600;
	text-transform: uppercase;
	color: #f1a0a3;
}

.blog-hero__title,
.article-hero__title {
	margin: 14px 0 0;
	font-family: 'Montserrat', Arial, sans-serif;
	font-size: 56px;
	line-height: 62px;
	font-weight: 700;
	letter-spacing: 0;
}

.blog-hero__text,
.article-hero__text {
	max-width: 660px;
	margin-top: 22px;
	font-size: 18px;
	line-height: 28px;
	color: rgba(255, 255, 255, .74);
}

.blog-list {
	padding: 96px 0 112px;
	color: #ffffff;
	background: #181418;
}

.blog-featured {
	display: grid;
	grid-template-columns: minmax(0, 1.08fr) minmax(360px, .92fr);
	overflow: hidden;
	border-radius: 16px;
	background: rgba(255, 255, 255, .055);
	transition: transform var(--anim-base) var(--anim-ease), box-shadow var(--anim-base) var(--anim-ease);
}

.blog-featured:hover,
.blog-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 18px 50px rgba(0, 0, 0, .2);
}

.blog-featured__image,
.blog-card__image {
	display: block;
	overflow: hidden;
	background: rgba(255, 255, 255, .06);
}

.blog-featured__image img,
.blog-card__image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: filter var(--anim-base) var(--anim-ease);
}

.blog-featured:hover img,
.blog-card:hover img {
	filter: brightness(1.08);
}

.blog-featured__content {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	padding: 42px;
}

.blog-featured__title {
	margin-top: 14px;
	font-family: 'Montserrat', Arial, sans-serif;
	font-size: 34px;
	line-height: 42px;
	font-weight: 700;
	color: #ffffff;
}

.blog-featured__preview {
	margin-top: 16px;
	font-size: 17px;
	line-height: 27px;
	color: rgba(255, 255, 255, .68);
}

.blog-list__head {
	margin-top: 74px;
	text-align: center;
}

.blog-list__title {
	font-family: 'Montserrat', Arial, sans-serif;
	font-size: 42px;
	line-height: 48px;
	font-weight: 700;
}

.blog-list__text {
	margin-top: 12px;
	font-size: 17px;
	line-height: 26px;
	color: rgba(255, 255, 255, .66);
}

.blog-list__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 32px;
	margin-top: 48px;
}

.blog-card {
	display: flex;
	flex-direction: column;
	overflow: hidden;
	min-height: 100%;
	border-radius: 16px;
	background: rgba(255, 255, 255, .055);
	transition: transform var(--anim-base) var(--anim-ease), box-shadow var(--anim-base) var(--anim-ease);
}

.blog-card__image {
	height: 260px;
}

.blog-card__content {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	flex: 1;
	padding: 26px;
}

.blog-card__title {
	margin-top: 12px;
	font-family: 'Montserrat', Arial, sans-serif;
	font-size: 24px;
	line-height: 32px;
	font-weight: 600;
	color: #ffffff;
}

.blog-card__preview {
	margin-top: 10px;
	font-size: 16px;
	line-height: 24px;
	color: rgba(255, 255, 255, .68);
}

.blog-card__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 46px;
	margin-top: auto;
	padding: 12px 20px;
	border-radius: 10px;
	background: linear-gradient(90deg, #a93134 0%, #8d272b 50%, #6a1b20 100%);
	color: #ffffff;
	font-size: 15px;
	line-height: 22px;
	font-weight: 600;
}

.blog-card__preview + .blog-card__button,
.blog-featured__preview + .blog-card__button {
	margin-top: 24px;
}

.blog-pagination {
	display: flex;
	justify-content: center;
	gap: 10px;
	margin-top: 52px;
}

.blog-pagination__link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 44px;
	height: 44px;
	padding: 0 15px;
	border-radius: 10px;
	background: rgba(255, 255, 255, .065);
	color: rgba(255, 255, 255, .72);
	font-size: 15px;
	line-height: 22px;
	transition: background var(--anim-fast) var(--anim-ease), color var(--anim-fast) var(--anim-ease);
}

.blog-pagination__link:hover,
.blog-pagination__link.is-active {
	background: #a93134;
	color: #ffffff;
}

.article-page {
	color: #ffffff;
	background: #181418;
}

.article-content {
	padding: 72px 0 112px;
}

.article-content__image {
	display: block;
	width: 100%;
	max-height: 560px;
	border-radius: 16px;
	object-fit: cover;
}

.article-content__body {
	max-width: 820px;
	margin: 46px auto 0;
	font-size: 18px;
	line-height: 30px;
	color: rgba(255, 255, 255, .74);
}

.article-content__body p {
	margin: 0;
}

.article-content__body p + p {
	margin-top: 24px;
}

.testimonials {
	padding: 128px 0;
	color: #ffffff;
	background: linear-gradient(180deg, #181418 0%, rgba(74, 68, 77, .2) 100%);
}

.testimonials__head {
	text-align: center;
}

.testimonials__title {
	font-family: 'Montserrat', Arial, sans-serif;
	font-size: 48px;
	line-height: 48px;
	font-weight: 700;
	color: #ffffff;
}

.testimonials__subtitle {
	margin-top: 16px;
	font-size: 18px;
	line-height: 28px;
	font-weight: 400;
	color: rgba(255, 255, 255, .7);
}

.testimonials__slider {
	margin-top: 64px;
}

.testimonials__slider.owl-carousel {
	display: block;
}

.testimonials__slider.is-fallback {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 32px;
}

.testimonials__slide {
	height: 100%;
}

.testimonials__card {
	min-height: 250px;
	padding: 32px;
	border: 1px solid rgba(255, 255, 255, .1);
	border-radius: 16px;
	background: rgba(255, 255, 255, .05);
	transition: border-color var(--anim-base) var(--anim-ease), background var(--anim-base) var(--anim-ease), box-shadow var(--anim-base) var(--anim-ease);
}

.testimonials__card:hover {
	border-color: rgba(255, 255, 255, .18);
	background: rgba(255, 255, 255, .07);
	box-shadow: 0 18px 44px rgba(0, 0, 0, .16);
}

.testimonials__stars {
	display: flex;
	gap: 4px;
	color: #d3393d;
	font-size: 18px;
	line-height: 18px;
}

.testimonials__quote {
	margin-top: 16px;
	font-size: 16px;
	line-height: 26px;
	font-style: italic;
	font-weight: 400;
	color: rgba(255, 255, 255, .8);
}

.testimonials__author {
	display: flex;
	align-items: center;
	gap: 16px;
	margin-top: 24px;
}

.testimonials__avatar {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: linear-gradient(135deg, #a93134 0%, #8d272b 50%, #6a1b20 100%);
	color: #ffffff;
	font-size: 16px;
	line-height: 24px;
	font-weight: 600;
}

.testimonials__name {
	font-family: 'Montserrat', Arial, sans-serif;
	font-size: 16px;
	line-height: 24px;
	font-weight: 600;
	color: #ffffff;
}

.testimonials__role {
	font-size: 14px;
	line-height: 20px;
	font-weight: 400;
	color: rgba(255, 255, 255, .6);
}

.testimonials .owl-stage {
	display: flex;
}

.testimonials .owl-item {
	display: flex;
}

.testimonials .owl-dots {
	display: flex;
	justify-content: center;
	gap: 10px;
	margin-top: 36px;
}

.testimonials .owl-dot {
	width: 9px;
	height: 9px;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: rgba(255, 255, 255, .28);
	cursor: pointer;
	transition: background var(--anim-fast) var(--anim-ease), opacity var(--anim-fast) var(--anim-ease);
}

.testimonials .owl-dot.active,
.testimonials .owl-dot:hover {
	background: #a93134;
}

.testimonials .owl-nav button {
	position: absolute;
	top: 50%;
	width: 44px;
	height: 44px;
	padding: 0;
	border: 1px solid rgba(255, 255, 255, .12);
	border-radius: 50%;
	background: rgba(255, 255, 255, .06);
	color: #ffffff;
	font-size: 0;
	transform: translateY(-50%);
	cursor: pointer;
	transition: background var(--anim-fast) var(--anim-ease), border-color var(--anim-fast) var(--anim-ease);
}

.testimonials .owl-nav button:hover {
	border-color: rgba(255, 255, 255, .22);
	background: rgba(255, 255, 255, .1);
}

.testimonials .owl-prev {
	left: -58px;
}

.testimonials .owl-next {
	right: -58px;
}

.testimonials .owl-prev:before,
.testimonials .owl-next:before {
	position: absolute;
	top: 50%;
	left: 50%;
	color: #ffffff;
	font-family: FontAwesome;
	font-size: 18px;
	line-height: 1;
	transform: translate(-50%, -50%);
}

.testimonials .owl-prev:before {
	content: "\f104";
}

.testimonials .owl-next:before {
	content: "\f105";
}

.newsletter {
	padding: 128px 0;
	color: #ffffff;
	background: #181418;
}

.newsletter__inner {
	max-width: 768px;
	margin: 0 auto;
	text-align: center;
}

.newsletter__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 64px;
	height: 64px;
	margin: 0 auto;
	color: #d3393d;
	font-size: 42px;
	line-height: 1;
}

.newsletter__title {
	margin-top: 24px;
	font-family: 'Montserrat', Arial, sans-serif;
	font-size: 48px;
	line-height: 48px;
	font-weight: 700;
	color: #ffffff;
}

.newsletter__text {
	margin-top: 16px;
	font-size: 18px;
	line-height: 28px;
	font-weight: 400;
	color: rgba(255, 255, 255, .7);
}

.newsletter__form {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) auto;
	gap: 16px;
	margin-top: 36px;
}

.newsletter__input {
	display: block;
	width: 100%;
	height: 58px;
	padding: 16px 24px;
	border: 1px solid rgba(255, 255, 255, .2);
	border-radius: 12px;
	background: rgba(255, 255, 255, .1);
	color: #ffffff;
	font-size: 16px;
	line-height: 24px;
	font-weight: 400;
	outline: 0;
	transition: border-color var(--anim-fast) var(--anim-ease), background var(--anim-fast) var(--anim-ease), box-shadow var(--anim-fast) var(--anim-ease);
}

.newsletter__input::placeholder {
	color: rgba(255, 255, 255, .4);
}

.newsletter__input:focus {
	border-color: rgba(255, 255, 255, .46);
	background: rgba(255, 255, 255, .14);
	box-shadow: 0 0 0 3px rgba(169, 49, 52, .18);
}

.newsletter__button {
	min-width: 141px;
	height: 58px;
	padding: 16px 24px;
	border: 0;
	border-radius: 12px;
	background: linear-gradient(90deg, #a93134 0%, #8d272b 50%, #6a1b20 100%);
	color: #ffffff;
	font-size: 16px;
	line-height: 24px;
	font-weight: 500;
	cursor: pointer;
	transition: background var(--anim-base) var(--anim-ease), box-shadow var(--anim-base) var(--anim-ease), opacity var(--anim-base) var(--anim-ease);
}

.newsletter__button:hover {
	background: linear-gradient(90deg, #bb3a3d 0%, #982d31 50%, #741f25 100%);
	box-shadow: 0 14px 34px rgba(169, 49, 52, .28);
}

.about-hero {
	position: relative;
	padding: 154px 0 82px;
	color: #ffffff;
	background: linear-gradient(180deg, rgba(24, 20, 24, .76) 0%, rgba(40, 16, 24, .9) 100%), url('https://images.unsplash.com/photo-1540962351504-03099e0a754b?auto=format&fit=crop&w=1920&q=80') center center / cover no-repeat;
	overflow: hidden;
}

.about-hero:before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(120deg, rgba(169, 49, 52, .24) 0%, rgba(24, 20, 24, 0) 56%);
	pointer-events: none;
}

.about-breadcrumbs {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 42px;
	font-size: 14px;
	line-height: 20px;
	color: rgba(255, 255, 255, .58);
}

.about-breadcrumbs__link {
	color: rgba(255, 255, 255, .72);
	transition: color var(--anim-fast) var(--anim-ease);
}

.about-breadcrumbs__link:hover {
	color: #ffffff;
}

.about-breadcrumbs__separator {
	color: rgba(255, 255, 255, .38);
}

.about-breadcrumbs__current {
	color: #ffffff;
}

.about-hero__content {
	position: relative;
	z-index: 1;
	max-width: 780px;
}

.about-hero__label {
	font-size: 14px;
	line-height: 20px;
	font-weight: 600;
	text-transform: uppercase;
	color: #f1a0a3;
}

.about-hero__title {
	margin: 14px 0 0;
	font-family: 'Montserrat', Arial, sans-serif;
	font-size: 56px;
	line-height: 62px;
	font-weight: 700;
	letter-spacing: 0;
}

.about-hero__text {
	max-width: 660px;
	margin-top: 22px;
	font-size: 18px;
	line-height: 28px;
	color: rgba(255, 255, 255, .74);
}

.about-story {
	padding: 96px 0;
	color: #ffffff;
	background: linear-gradient(180deg, #181418 0%, rgba(74, 68, 77, .2) 100%);
}

.about-story__inner {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: 48px;
	align-items: center;
}

.about-story__image {
	overflow: hidden;
	height: 520px;
	border-radius: 16px;
	background: rgba(255, 255, 255, .05);
}

.about-story__image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: filter var(--anim-base) var(--anim-ease);
}

.about-story__image:hover img {
	filter: brightness(1.04);
}

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

.about-story__title {
	font-family: 'Montserrat', Arial, sans-serif;
	font-size: 44px;
	line-height: 50px;
	font-weight: 700;
	color: #ffffff;
}

.about-story__text {
	margin-top: 22px;
	font-size: 18px;
	line-height: 29px;
	color: rgba(255, 255, 255, .7);
}

.about-story__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 149px;
	min-height: 56px;
	margin-top: 28px;
	padding: 16px 24px;
	border-radius: 12px;
	background: linear-gradient(90deg, #a93134 0%, #8d272b 50%, #6a1b20 100%);
	color: #ffffff;
	font-size: 16px;
	line-height: 24px;
	font-weight: 500;
	transition: background var(--anim-base) var(--anim-ease), box-shadow var(--anim-base) var(--anim-ease), opacity var(--anim-base) var(--anim-ease);
}

.about-story__button:hover {
	background: linear-gradient(90deg, #bb3a3d 0%, #982d31 50%, #741f25 100%);
	box-shadow: 0 14px 34px rgba(169, 49, 52, .28);
}

.about-values {
	position: relative;
	overflow: hidden;
	padding: 96px 0;
	color: #ffffff;
	background: linear-gradient(180deg, #181418 0%, rgba(74, 68, 77, .2) 100%);
}

.about-values__decor {
	position: absolute;
	inset: 0;
	opacity: .05;
	pointer-events: none;
}

.about-values__decor:before,
.about-values__decor:after {
	position: absolute;
	top: 20px;
	width: 384px;
	height: 384px;
	border-radius: 50%;
	content: "";
	filter: blur(120px);
}

.about-values__decor:before {
	left: 18%;
	background: #a93134;
}

.about-values__decor:after {
	right: 18%;
	background: #6a1b20;
}

.about-values .container {
	z-index: 1;
}

.about-values__head {
	text-align: center;
}

.about-values__title {
	font-family: 'Montserrat', Arial, sans-serif;
	font-size: 48px;
	line-height: 48px;
	font-weight: 700;
}

.about-values__subtitle {
	margin-top: 16px;
	font-size: 18px;
	line-height: 28px;
	color: rgba(255, 255, 255, .7);
}

.about-values__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 32px;
	margin-top: 64px;
}

.about-values__card {
	min-height: 260px;
	padding: 32px;
	border: 1px solid rgba(255, 255, 255, .1);
	border-radius: 16px;
	background: #281018;
	transition: border-color var(--anim-base) var(--anim-ease), background var(--anim-base) var(--anim-ease), box-shadow var(--anim-base) var(--anim-ease);
}

.about-values__card:hover {
	border-color: rgba(255, 255, 255, .18);
	background: #3a1016;
	box-shadow: 0 18px 44px rgba(0, 0, 0, .16);
}

.about-values__icon {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	width: 32px;
	height: 32px;
	color: #d3393d;
	font-size: 24px;
	line-height: 32px;
}

.about-values__card-title {
	margin-top: 16px;
	font-family: 'Montserrat', Arial, sans-serif;
	font-size: 20px;
	line-height: 28px;
	font-weight: 600;
}

.about-values__card-text {
	margin-top: 12px;
	font-size: 16px;
	line-height: 26px;
	color: rgba(255, 255, 255, .6);
}

.about-stats {
	padding: 0 0 112px;
	color: #ffffff;
	background: linear-gradient(180deg, rgba(74, 68, 77, .2) 0%, #181418 100%);
}

.about-stats__inner {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
}

.about-stats__item {
	padding: 34px;
	border: 1px solid rgba(255, 255, 255, .1);
	border-radius: 16px;
	background: #281018;
	text-align: center;
}

.about-stats__value {
	font-family: 'Montserrat', Arial, sans-serif;
	font-size: 42px;
	line-height: 48px;
	font-weight: 700;
	color: #ffffff;
}

.about-stats__label {
	margin-top: 8px;
	font-size: 16px;
	line-height: 24px;
	color: rgba(255, 255, 255, .64);
}

.text-page {
	padding: 154px 0 112px;
	color: #ffffff;
	background: #181418;
}

.text-page__breadcrumbs {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 42px;
	font-size: 14px;
	line-height: 20px;
	color: rgba(255, 255, 255, .58);
}

.text-page__breadcrumbs-link {
	color: rgba(255, 255, 255, .72);
	transition: color var(--anim-fast) var(--anim-ease);
}

.text-page__breadcrumbs-link:hover {
	color: #ffffff;
}

.text-page__breadcrumbs-separator {
	color: rgba(255, 255, 255, .38);
}

.text-page__breadcrumbs-current {
	color: #ffffff;
}

.text-page__title {
	margin: 0;
	font-family: 'Montserrat', Arial, sans-serif;
	font-size: 56px;
	line-height: 62px;
	font-weight: 700;
	letter-spacing: 0;
}

.text-content {
	width: 100%;
	margin-top: 46px;
	padding: 42px;
	border: 1px solid rgba(255, 255, 255, .1);
	border-radius: 16px;
	background: rgba(255, 255, 255, .045);
	font-size: 17px;
	line-height: 28px;
	color: rgba(255, 255, 255, .72);
}

.text-content h2,
.text-content h3,
.text-content h4,
.text-content h5,
.text-content h6 {
	margin: 36px 0 0;
	font-family: 'Montserrat', Arial, sans-serif;
	font-weight: 700;
	color: #ffffff;
}

.text-content h2 {
	font-size: 30px;
	line-height: 38px;
}

.text-content h3 {
	font-size: 24px;
	line-height: 32px;
}

.text-content h4,
.text-content h5,
.text-content h6 {
	font-size: 20px;
	line-height: 28px;
}

.text-content p {
	margin: 18px 0 0;
}

.text-content p:first-child,
.text-content h2:first-child,
.text-content h3:first-child,
.text-content h4:first-child,
.text-content h5:first-child,
.text-content h6:first-child {
	margin-top: 0;
}

.text-content ul,
.text-content ol {
	margin: 18px 0 0;
	padding-left: 24px;
}

.text-content li + li {
	margin-top: 8px;
}

.text-content a {
	color: #f1a0a3;
	transition: color var(--anim-fast) var(--anim-ease);
}

.text-content a:hover {
	color: #ffffff;
}

.text-content strong,
.text-content b {
	color: #ffffff;
	font-weight: 700;
}

.text-content table {
	width: 100%;
	margin-top: 28px;
	border-collapse: collapse;
	overflow: hidden;
	border-radius: 12px;
	color: rgba(255, 255, 255, .74);
}

.text-content th,
.text-content td {
	padding: 16px 18px;
	border: 1px solid rgba(255, 255, 255, .1);
	text-align: left;
	vertical-align: top;
}

.text-content th {
	background: rgba(169, 49, 52, .24);
	color: #ffffff;
	font-weight: 700;
}

.text-content td {
	background: rgba(255, 255, 255, .035);
}

.page-flight-loading,
.page-booking {
	background: #181418;
}

.flight-loading {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 100vh;
	padding: 64px 20px;
	overflow: hidden;
	background: #181418;
	color: #ffffff;
}

.flight-loading__decor {
	position: absolute;
	inset: 0;
	opacity: .08;
	pointer-events: none;
}

.flight-loading__decor:before,
.flight-loading__decor:after {
	position: absolute;
	width: 420px;
	height: 420px;
	border-radius: 50%;
	content: "";
	filter: blur(130px);
}

.flight-loading__decor:before {
	top: 10%;
	left: 18%;
	background: #a93134;
}

.flight-loading__decor:after {
	right: 14%;
	bottom: 8%;
	background: #6a1b20;
}

.flight-loading__inner {
	position: relative;
	z-index: 1;
	width: 100%;
	max-width: 760px;
	text-align: center;
}

.flight-loading__route {
	position: relative;
	width: 100%;
	height: 146px;
	margin: 0 auto 38px;
}

.flight-loading__line {
	position: absolute;
	left: 52px;
	right: 52px;
	top: 82px;
	height: 1px;
	overflow: hidden;
	background: rgba(255, 255, 255, .16);
}

.flight-loading__line span {
	display: block;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, rgba(169, 49, 52, 0) 0%, #f1a0a3 42%, #ffffff 100%);
	transform: translateX(-100%);
	animation: flightRouteProgress 5s linear forwards;
}

.flight-loading__line:after {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	height: 1px;
	background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(241, 160, 163, .7), rgba(255, 255, 255, 0));
	content: "";
	opacity: .55;
}

.flight-loading__points {
	position: absolute;
	left: 52px;
	right: 52px;
	top: 75px;
	display: flex;
	justify-content: space-between;
}

.flight-loading__points span {
	width: 14px;
	height: 14px;
	border: 2px solid rgba(241, 160, 163, .88);
	border-radius: 50%;
	background: #181418;
	box-shadow: 0 0 0 8px rgba(169, 49, 52, .12);
}

.flight-loading__plane {
	position: absolute;
	left: 52px;
	top: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 68px;
	height: 68px;
	border-radius: 50%;
	background: radial-gradient(circle at 35% 30%, #f1a0a3 0%, #a93134 42%, #6a1b20 100%);
	box-shadow: 0 18px 42px rgba(169, 49, 52, .34), 0 0 0 12px rgba(169, 49, 52, .12);
	color: #ffffff;
	font-size: 30px;
	animation: flightPlane 5s linear forwards;
}

.flight-loading__plane .fa {
	transform: rotate(45deg);
}

.flight-loading__trail {
	position: absolute;
	left: 52px;
	top: 75px;
	width: 160px;
	height: 18px;
	border-radius: 999px;
	background: linear-gradient(90deg, rgba(241, 160, 163, 0), rgba(241, 160, 163, .34));
	filter: blur(6px);
	transform: translateX(-90px);
	animation: flightTrail 5s linear forwards;
}

.flight-loading__title {
	font-family: 'Montserrat', Arial, sans-serif;
	font-size: 42px;
	line-height: 48px;
	font-weight: 700;
}

.flight-loading__text {
	max-width: 560px;
	margin: 16px auto 0;
	font-size: 18px;
	line-height: 28px;
	color: rgba(255, 255, 255, .68);
}

.flight-loading__progress {
	display: flex;
	justify-content: center;
	gap: 10px;
	margin-top: 28px;
}

.flight-loading__progress span {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: #f1a0a3;
	animation: flightPulse 1.2s var(--anim-ease) infinite;
}

.flight-loading__progress span:nth-child(2) {
	animation-delay: .18s;
}

.flight-loading__progress span:nth-child(3) {
	animation-delay: .36s;
}

.booking-success .flight-loading__line span {
	transform: none;
	animation: none;
}

.booking-success .flight-loading__points span {
	background: #a93134;
	box-shadow: 0 0 0 8px rgba(169, 49, 52, .12);
}

.booking-success .flight-loading__plane {
	left: calc(100% - 120px);
	animation: none;
}

.booking-success .flight-loading__plane .fa {
	transform: none;
}

.booking-success .flight-loading__trail {
	left: auto;
	right: 72px;
	width: 180px;
	animation: none;
	transform: none;
}

.booking-success__actions {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: 30px;
}

.booking-success__button,
.booking-success__link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 12px 20px;
	border-radius: 12px;
	font-size: 15px;
	line-height: 22px;
	font-weight: 600;
	transition: background var(--anim-fast) var(--anim-ease), color var(--anim-fast) var(--anim-ease), border-color var(--anim-fast) var(--anim-ease);
}

.booking-success__button {
	border: 0;
	background: #a93134;
	color: #ffffff;
}

.booking-success__button:hover {
	background: #bb3a3d;
	color: #ffffff;
}

.booking-success__link {
	border: 1px solid rgba(255, 255, 255, .14);
	background: rgba(255, 255, 255, .06);
	color: rgba(255, 255, 255, .82);
}

.booking-success__link:hover {
	border-color: rgba(169, 49, 52, .5);
	background: rgba(169, 49, 52, .24);
	color: #ffffff;
}

.booking-checkout {
	position: relative;
	padding: 154px 0 112px;
	color: #ffffff;
	background:
		radial-gradient(circle at 14% 8%, rgba(241, 160, 163, .17) 0, rgba(241, 160, 163, 0) 34%),
		radial-gradient(circle at 86% 18%, rgba(169, 49, 52, .16) 0, rgba(169, 49, 52, 0) 32%),
		linear-gradient(180deg, #171116 0%, #211219 48%, #181418 100%);
}

.booking-checkout:before {
	position: absolute;
	top: 118px;
	right: 0;
	width: 520px;
	height: 520px;
	border-radius: 50%;
	background: rgba(241, 160, 163, .08);
	content: "";
	filter: blur(120px);
	pointer-events: none;
}

.booking-checkout .container {
	position: relative;
	z-index: 1;
}

.booking-page__breadcrumbs {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 42px;
	font-size: 14px;
	line-height: 20px;
	color: rgba(255, 255, 255, .58);
}

.booking-page__breadcrumbs-link {
	color: rgba(255, 255, 255, .72);
	transition: color var(--anim-fast) var(--anim-ease);
}

.booking-page__breadcrumbs-link:hover {
	color: #ffffff;
}

.booking-page__breadcrumbs-separator {
	color: rgba(255, 255, 255, .38);
}

.booking-page__breadcrumbs-current {
	color: #ffffff;
}

.booking-checkout__head {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 32px;
	margin-bottom: 42px;
}

.booking-checkout__assurance {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 12px;
}

.booking-checkout__request {
	display: grid;
	gap: 4px;
	min-width: 220px;
	padding: 16px 18px;
	border: 1px solid rgba(241, 160, 163, .22);
	border-radius: 14px;
	background:
		linear-gradient(135deg, rgba(241, 160, 163, .12), rgba(255, 255, 255, .03)),
		rgba(24, 20, 24, .74);
	box-shadow: 0 20px 52px rgba(0, 0, 0, .24);
	backdrop-filter: blur(var(--premium-blur));
}

.booking-checkout__request span {
	color: rgba(255, 255, 255, .54);
	font-size: 12px;
	line-height: 16px;
	font-weight: 700;
	text-transform: uppercase;
}

.booking-checkout__request strong {
	font-family: 'Montserrat', Arial, sans-serif;
	color: #ffffff;
	font-size: 20px;
	line-height: 26px;
}

.booking-checkout__secure {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 12px 16px;
	border: 1px solid rgba(255, 255, 255, .1);
	border-radius: 12px;
	background: linear-gradient(135deg, rgba(58, 16, 22, .94), rgba(40, 16, 24, .96));
	box-shadow: 0 16px 40px rgba(0, 0, 0, .22);
	color: rgba(255, 255, 255, .78);
	font-size: 14px;
	line-height: 20px;
	white-space: nowrap;
}

.booking-checkout__trust {
	display: flex;
	flex-direction: column;
	gap: 8px;
	color: rgba(255, 255, 255, .62);
	font-size: 13px;
	line-height: 18px;
	text-align: right;
}

.booking-checkout__trust span {
	display: inline-flex;
	align-items: center;
	justify-content: flex-end;
	gap: 8px;
}

.booking-checkout__trust .fa {
	color: #f1a0a3;
	font-size: 11px;
}

.booking-page__label {
	font-size: 14px;
	line-height: 20px;
	font-weight: 600;
	text-transform: uppercase;
	color: #f1a0a3;
}

.booking-page__title {
	margin: 14px 0 0;
	font-family: 'Montserrat', Arial, sans-serif;
	font-size: 56px;
	line-height: 62px;
	font-weight: 700;
}

.booking-page__text {
	max-width: 680px;
	margin-top: 22px;
	font-size: 18px;
	line-height: 28px;
	color: rgba(255, 255, 255, .72);
}

.booking-checkout__layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 380px;
	gap: 32px;
	align-items: start;
}

.booking-checkout__main {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.booking-card,
.booking-summary__inner {
	border: 1px solid rgba(255, 255, 255, .12);
	border-radius: 18px;
	background:
		linear-gradient(180deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .016)),
		linear-gradient(180deg, rgba(31, 20, 24, .97) 0%, rgba(20, 15, 18, .97) 100%);
	box-shadow: 0 28px 84px rgba(0, 0, 0, .32), inset 0 1px 0 rgba(255, 255, 255, .06);
	backdrop-filter: blur(var(--premium-blur));
}

.booking-card {
	padding: 28px;
}

.booking-card__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	margin-bottom: 24px;
}

.booking-card__eyebrow {
	font-size: 13px;
	line-height: 18px;
	font-weight: 600;
	text-transform: uppercase;
	color: #f1a0a3;
}

.booking-card__title {
	margin-top: 4px;
	font-family: 'Montserrat', Arial, sans-serif;
	font-size: 26px;
	line-height: 34px;
	font-weight: 700;
}

.booking-trip .booking-card__head {
	align-items: flex-start;
}

.booking-trip__badge {
	margin-left: auto;
	padding: 8px 12px;
	border: 1px solid rgba(241, 160, 163, .28);
	border-radius: 999px;
	background: rgba(241, 160, 163, .08);
	color: #f1a0a3;
	font-size: 12px;
	line-height: 16px;
	font-weight: 700;
	text-transform: uppercase;
	white-space: nowrap;
}

.booking-trip__details-toggle {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-height: 42px;
	padding: 9px 14px;
	border: 1px solid rgba(255, 255, 255, .12);
	border-radius: 999px;
	background: rgba(255, 255, 255, .06);
	color: #ffffff;
	font-size: 14px;
	line-height: 20px;
	font-weight: 500;
	cursor: pointer;
	transition: border-color var(--anim-fast) var(--anim-ease), background var(--anim-fast) var(--anim-ease);
}

.booking-trip__details-toggle:hover {
	border-color: rgba(241, 160, 163, .42);
	background: rgba(241, 160, 163, .08);
}

.booking-trip__details-toggle.is-open .fa {
	transform: rotate(180deg);
}

.booking-trip__route {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 1fr) 180px minmax(0, 1fr);
	gap: 24px;
	align-items: center;
	padding: 30px;
	border: 1px solid rgba(241, 160, 163, .16);
	border-radius: 16px;
	background:
		linear-gradient(135deg, rgba(241, 160, 163, .09), rgba(255, 255, 255, 0) 48%),
		linear-gradient(180deg, rgba(19, 17, 19, .98), rgba(12, 11, 13, .98));
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08), 0 18px 46px rgba(0, 0, 0, .24);
	overflow: hidden;
}

.booking-trip__route:before {
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(241, 160, 163, .05), transparent 38%, rgba(241, 160, 163, .05));
	content: "";
	pointer-events: none;
}

.booking-trip__airport {
	position: relative;
	z-index: 1;
}

.booking-trip__airport > span {
	display: block;
	margin-bottom: 8px;
	color: rgba(255, 255, 255, .48);
	font-size: 12px;
	line-height: 16px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0;
}

.booking-trip__airport:last-child {
	text-align: right;
}

.booking-trip__code {
	font-family: 'Montserrat', Arial, sans-serif;
	font-size: 54px;
	line-height: 58px;
	font-weight: 700;
	color: #ffffff;
	text-shadow: 0 12px 28px rgba(0, 0, 0, .32);
}

.booking-trip__city {
	margin-top: 4px;
	font-size: 15px;
	line-height: 22px;
	color: rgba(255, 255, 255, .64);
}

.booking-trip__path {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #f1a0a3;
	z-index: 1;
}

.booking-trip__path span {
	flex: 1;
	height: 1px;
	background: linear-gradient(90deg, rgba(241, 160, 163, 0), rgba(241, 160, 163, .55));
}

.booking-trip__path span:last-child {
	background: linear-gradient(90deg, rgba(241, 160, 163, .55), rgba(241, 160, 163, 0));
}

.booking-trip__path .fa {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	margin: 0 12px;
	border-radius: 50%;
	background: radial-gradient(circle at 35% 30%, #f1a0a3 0%, #a93134 54%, #6f1c22 100%);
	box-shadow: 0 0 0 8px rgba(241, 160, 163, .05), 0 16px 34px rgba(169, 49, 52, .26);
	color: #ffffff;
	transform: rotate(45deg);
}

.booking-trip__meta {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 14px;
	margin-top: 18px;
}

.booking-trip__meta div {
	padding: 18px;
	border: 1px solid rgba(255, 255, 255, .08);
	border-radius: 12px;
	background: rgba(12, 11, 13, .58);
}

.booking-trip__meta span {
	display: block;
	font-size: 13px;
	line-height: 18px;
	color: rgba(255, 255, 255, .56);
}

.booking-trip__meta strong {
	display: block;
	margin-top: 5px;
	font-size: 16px;
	line-height: 22px;
	color: #ffffff;
}

.booking-trip__details {
	margin-top: 18px;
	padding: 18px;
	border-radius: 12px;
	background: rgba(24, 20, 24, .82);
}

.booking-trip__segment {
	display: grid;
	grid-template-columns: 120px minmax(0, 1fr);
	gap: 16px;
	padding: 14px 0;
	border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.booking-trip__segment:first-child {
	padding-top: 0;
}

.booking-trip__segment:last-child {
	padding-bottom: 0;
	border-bottom: 0;
}

.booking-trip__segment-time {
	font-weight: 700;
	color: #ffffff;
}

.booking-trip__segment-info div {
	font-weight: 600;
}

.booking-trip__segment-info span {
	display: block;
	margin-top: 4px;
	color: rgba(255, 255, 255, .62);
}

.booking-trip__facts {
	display: grid;
	gap: 7px;
	margin: 12px 0 0;
	padding: 0;
	color: rgba(255, 255, 255, .64);
	font-size: 13px;
	line-height: 19px;
	list-style: none;
}

.booking-trip__facts li {
	position: relative;
	padding-left: 18px;
}

.booking-trip__facts li:before {
	position: absolute;
	left: 0;
	top: 8px;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: #f1a0a3;
	content: "";
}

.booking-form-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px;
}

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

.booking-field-wide {
	grid-column: 1 / -1;
}

.booking-field {
	display: flex;
	flex-direction: column;
	gap: 8px;
	font-size: 14px;
	line-height: 20px;
	font-weight: 500;
	color: rgba(255, 255, 255, .64);
}

.booking-field em {
	color: rgba(255, 255, 255, .42);
	font-style: normal;
	font-weight: 400;
}

.booking-control {
	width: 100%;
	height: 52px;
	padding: 13px 15px;
	border: 1px solid rgba(255, 255, 255, .16);
	border-radius: 12px;
	background: rgba(15, 12, 16, .72);
	color: #ffffff;
	font-size: 15px;
	line-height: 22px;
	outline: 0;
	transition: border-color var(--anim-fast) var(--anim-ease), background var(--anim-fast) var(--anim-ease), box-shadow var(--anim-fast) var(--anim-ease);
}

.booking-control option {
	background: #181418;
	color: #ffffff;
}

.booking-control:focus {
	border-color: rgba(241, 160, 163, .72);
	background: rgba(255, 255, 255, .12);
	box-shadow: 0 0 0 3px rgba(169, 49, 52, .18);
}

.booking-phone {
	display: grid;
	grid-template-columns: 112px minmax(0, 1fr);
	gap: 10px;
}

.booking-birthday {
	display: grid;
	grid-template-columns: minmax(0, 1.45fr) minmax(0, .75fr) minmax(0, .9fr);
	gap: 10px;
}

.booking-date-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.45fr) minmax(0, .75fr) minmax(0, .9fr);
	gap: 10px;
}

.booking-gender {
	display: flex;
	flex-direction: column;
	gap: 10px;
	font-size: 14px;
	line-height: 20px;
	font-weight: 500;
	color: rgba(255, 255, 255, .64);
}

.booking-gender__options {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 10px;
}

.booking-gender__options label {
	position: relative;
	display: flex;
	align-items: center;
	min-height: 52px;
	padding: 13px 15px;
	border: 1px solid rgba(255, 255, 255, .16);
	border-radius: 12px;
	background: rgba(15, 12, 16, .72);
	color: #ffffff;
	cursor: pointer;
	transition: border-color var(--anim-fast) var(--anim-ease), background var(--anim-fast) var(--anim-ease), box-shadow var(--anim-fast) var(--anim-ease);
}

.booking-gender__options input {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}

.booking-gender__options label:has(input:checked) {
	border-color: rgba(241, 160, 163, .72);
	background: rgba(58, 16, 22, .72);
	box-shadow: 0 0 0 3px rgba(169, 49, 52, .14);
}

.booking-extra-info {
	margin-top: 16px;
	padding-top: 16px;
	border-top: 1px solid rgba(255, 255, 255, .08);
}

.booking-extra-info__toggle {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	width: 100%;
	padding: 0;
	border: 0;
	background: transparent;
	color: #ffffff;
	font-family: 'Montserrat', Arial, sans-serif;
	font-size: 16px;
	line-height: 23px;
	font-weight: 700;
	cursor: pointer;
}

.booking-extra-info__toggle.is-open .fa {
	transform: rotate(180deg);
}

.booking-extra-info__content {
	display: grid;
	gap: 12px;
	margin-top: 12px;
}

.booking-extra-info__content[hidden] {
	display: none;
}

.booking-document {
	margin-top: 18px;
	padding-top: 18px;
	border-top: 1px solid rgba(255, 255, 255, .08);
}

.booking-document__title {
	margin-bottom: 14px;
	font-family: 'Montserrat', Arial, sans-serif;
	font-size: 16px;
	line-height: 23px;
	font-weight: 700;
	color: #ffffff;
}

.booking-field.is-invalid .booking-control,
.booking-gender.is-invalid .booking-gender__options label,
.booking-checkbox.is-invalid {
	border-color: rgba(214, 65, 70, .95);
	box-shadow: 0 0 0 3px rgba(214, 65, 70, .18);
}

.booking-checkbox {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	margin-top: 18px;
	color: rgba(255, 255, 255, .68);
	font-size: 14px;
	line-height: 22px;
}

.booking-checkbox input {
	flex: 0 0 auto;
	margin-top: 4px;
}

.booking-checkbox a {
	color: #f1a0a3;
}

.booking-note {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 20px;
	padding: 14px 16px;
	border-radius: 12px;
	border: 1px solid rgba(241, 160, 163, .2);
	background: linear-gradient(135deg, rgba(241, 160, 163, .08), rgba(24, 20, 24, .74));
	color: rgba(255, 255, 255, .72);
}

.booking-note .fa {
	color: #f1a0a3;
}

.booking-passenger {
	padding: 22px;
	border-radius: 14px;
	background: rgba(24, 20, 24, .74);
	border: 1px solid rgba(255, 255, 255, .08);
}

.booking-passenger__title {
	margin-bottom: 18px;
	font-family: 'Montserrat', Arial, sans-serif;
	font-size: 20px;
	line-height: 28px;
	font-weight: 700;
}

.booking-passenger__title span {
	margin-left: 8px;
	color: rgba(255, 255, 255, .58);
	font-family: 'Inter', Arial, sans-serif;
	font-size: 14px;
	line-height: 20px;
	font-weight: 500;
}

.booking-passenger .booking-form-grid + .booking-form-grid {
	margin-top: 16px;
}

.booking-protection {
	display: grid;
	gap: 14px;
}

.booking-protection__item,
.booking-payment__option,
.booking-seat {
	position: relative;
	display: grid;
	grid-template-columns: 54px minmax(0, 1fr) auto;
	gap: 16px;
	align-items: center;
	padding: 20px;
	border: 1px solid rgba(255, 255, 255, .1);
	border-radius: 14px;
	background: rgba(24, 20, 24, .74);
}

.booking-protection__item {
	cursor: pointer;
	transition: border-color var(--anim-fast) var(--anim-ease), background var(--anim-fast) var(--anim-ease), box-shadow var(--anim-fast) var(--anim-ease), transform var(--anim-fast) var(--anim-ease);
}

.booking-protection__item:hover,
.booking-payment__option:hover {
	border-color: rgba(241, 160, 163, .28);
}

.booking-protection__item:has(input:checked),
.booking-protection__item.is-selected {
	border-color: rgba(241, 160, 163, .7);
	background: rgba(58, 16, 22, .92);
	box-shadow: 0 0 0 3px rgba(169, 49, 52, .14);
}

.booking-protection__item input,
.booking-payment__option input {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}

.booking-protection__icon,
.booking-payment__option > span {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 54px;
	height: 54px;
	border-radius: 12px;
	background: rgba(169, 49, 52, .22);
	color: #f1a0a3;
	font-size: 23px;
}

.booking-protection__content strong,
.booking-protection__content span,
.booking-protection__content em {
	display: block;
}

.booking-protection__content strong,
.booking-payment__option strong,
.booking-seat strong {
	font-family: 'Montserrat', Arial, sans-serif;
	font-size: 18px;
	line-height: 24px;
}

.booking-protection__content span,
.booking-payment__option em,
.booking-seat span {
	margin-top: 5px;
	color: rgba(255, 255, 255, .62);
	font-size: 14px;
	line-height: 21px;
	font-style: normal;
}

.booking-protection__content em {
	margin-top: 8px;
	color: #f1a0a3;
	font-size: 13px;
	line-height: 19px;
	font-style: normal;
}

.booking-protection__price {
	color: #ffffff;
	font-weight: 700;
}

.booking-services {
	display: grid;
	grid-template-columns: 1fr;
	gap: 14px;
}

.booking-service {
	position: relative;
	display: grid;
	grid-template-columns: 54px minmax(0, 1fr) auto;
	gap: 16px;
	align-items: center;
	padding: 20px;
	border: 1px solid rgba(255, 255, 255, .1);
	border-radius: 14px;
	background: rgba(24, 20, 24, .74);
	cursor: pointer;
	transition: border-color var(--anim-fast) var(--anim-ease), background var(--anim-fast) var(--anim-ease), box-shadow var(--anim-fast) var(--anim-ease), transform var(--anim-fast) var(--anim-ease);
}

.booking-service:hover {
	border-color: rgba(241, 160, 163, .28);
	transform: translateY(-1px);
}

.booking-service input {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}

.booking-service:has(input:checked),
.booking-service.is-selected {
	border-color: rgba(241, 160, 163, .7);
	background: rgba(58, 16, 22, .92);
	box-shadow: 0 0 0 3px rgba(169, 49, 52, .14);
}

.booking-service__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 54px;
	height: 54px;
	border-radius: 12px;
	background: rgba(169, 49, 52, .22);
	color: #f1a0a3;
	font-size: 23px;
}

.booking-service__content strong,
.booking-service__content span {
	display: block;
}

.booking-service__content strong {
	font-family: 'Montserrat', Arial, sans-serif;
	font-size: 18px;
	line-height: 24px;
}

.booking-service__content span {
	margin-top: 5px;
	color: rgba(255, 255, 255, .62);
	font-size: 14px;
	line-height: 21px;
}

.booking-service__price {
	color: #ffffff;
	font-weight: 700;
}

.booking-seat {
	grid-template-columns: minmax(0, 1fr) 260px;
	align-items: end;
}

.booking-payment {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
}

.booking-payment__option {
	grid-template-columns: 54px minmax(0, 1fr);
	cursor: pointer;
	transition: border-color var(--anim-fast) var(--anim-ease), background var(--anim-fast) var(--anim-ease), box-shadow var(--anim-fast) var(--anim-ease);
}

.booking-payment__option strong,
.booking-payment__option em {
	grid-column: 2;
}

.booking-payment__option > span {
	grid-row: 1 / span 2;
}

.booking-payment__option:has(input:checked) {
	border-color: rgba(241, 160, 163, .7);
	background: rgba(58, 16, 22, .72);
	box-shadow: 0 0 0 3px rgba(169, 49, 52, .12);
}

.booking-card-payment {
	margin-top: 16px;
	padding: 20px;
	border: 1px solid rgba(255, 255, 255, .1);
	border-radius: 14px;
	background: rgba(24, 20, 24, .74);
}

.booking-card-payment__logos {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 16px;
}

.booking-card-payment__logos span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 74px;
	height: 34px;
	padding: 0 12px;
	border-radius: 8px;
	background: #ffffff;
	color: #181418;
	font-size: 12px;
	line-height: 16px;
	font-weight: 700;
	text-transform: uppercase;
}

.booking-rules {
	margin-top: 18px;
	padding-top: 18px;
	border-top: 1px solid rgba(255, 255, 255, .08);
}

.booking-rules__toggle {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	width: 100%;
	padding: 0;
	border: 0;
	background: transparent;
	color: #ffffff;
	font-family: 'Montserrat', Arial, sans-serif;
	font-size: 17px;
	line-height: 24px;
	font-weight: 700;
	cursor: pointer;
}

.booking-rules__toggle.is-open .fa {
	transform: rotate(180deg);
}

.booking-rules__content {
	margin-top: 12px;
	color: rgba(255, 255, 255, .62);
	font-size: 14px;
	line-height: 22px;
}

.booking-form-message {
	display: none;
	margin-top: 16px;
	color: #f1a0a3;
	font-size: 14px;
	line-height: 20px;
}

.booking-form-message.is-visible {
	display: block;
}

.booking-submit {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	width: 100%;
	min-height: 54px;
	margin-top: 18px;
	border: 0;
	border-radius: 14px;
	background: linear-gradient(90deg, #c04448 0%, #a93134 44%, #6f1c22 100%);
	box-shadow: 0 16px 42px rgba(169, 49, 52, .22);
	color: #ffffff;
	font-size: 16px;
	line-height: 24px;
	font-weight: 600;
	cursor: pointer;
	transition: background var(--anim-base) var(--anim-ease), box-shadow var(--anim-base) var(--anim-ease), opacity var(--anim-base) var(--anim-ease);
}

.booking-submit:hover {
	background: linear-gradient(90deg, #d44d52 0%, #b6373b 44%, #81242a 100%);
	box-shadow: 0 20px 48px rgba(169, 49, 52, .3);
}

.booking-summary {
	position: sticky;
	top: 112px;
}

.booking-summary__inner {
	padding: 26px;
	background:
		linear-gradient(180deg, rgba(241, 160, 163, .14), rgba(241, 160, 163, 0) 34%),
		linear-gradient(180deg, rgba(50, 18, 27, .98) 0%, rgba(24, 13, 19, .98) 100%);
}

.booking-summary__top {
	margin: -6px -6px 24px;
	padding: 20px;
	border-radius: 16px;
	background:
		linear-gradient(135deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, 0)),
		#181418;
	border: 1px solid rgba(241, 160, 163, .16);
}

.booking-summary__top span {
	display: block;
	color: rgba(255, 255, 255, .58);
	font-size: 13px;
	line-height: 18px;
	font-weight: 700;
	text-transform: uppercase;
}

.booking-summary__top strong {
	display: block;
	margin-top: 8px;
	font-family: 'Montserrat', Arial, sans-serif;
	font-size: 38px;
	line-height: 44px;
	color: #ffffff;
}

.booking-summary__concierge {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 22px;
	padding: 13px 14px;
	border: 1px solid rgba(241, 160, 163, .22);
	border-radius: 12px;
	background: rgba(12, 11, 13, .54);
	color: rgba(255, 255, 255, .76);
	font-size: 13px;
	line-height: 19px;
}

.booking-summary__concierge .fa {
	color: #f1a0a3;
}

.booking-summary__consultant {
	display: grid;
	gap: 10px;
	margin-bottom: 22px;
	padding: 16px;
	border: 1px solid rgba(255, 255, 255, .1);
	border-radius: 12px;
	background: rgba(24, 20, 24, .62);
}

.booking-summary__consultant span {
	display: block;
	color: rgba(255, 255, 255, .54);
	font-size: 12px;
	line-height: 16px;
	font-weight: 700;
	text-transform: uppercase;
}

.booking-summary__consultant strong {
	display: block;
	margin-top: 4px;
	font-family: 'Montserrat', Arial, sans-serif;
	font-size: 17px;
	line-height: 24px;
}

.booking-summary__consultant a {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: rgba(255, 255, 255, .76);
	font-size: 13px;
	line-height: 19px;
	transition: color var(--anim-fast) var(--anim-ease);
}

.booking-summary__consultant a:hover {
	color: #f1a0a3;
}

.booking-promo {
	margin-bottom: 22px;
}

.booking-promo__line {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 8px;
}

.booking-promo__line .booking-control {
	height: 46px;
}

.booking-promo__line button {
	padding: 0 16px;
	border: 1px solid rgba(241, 160, 163, .38);
	border-radius: 12px;
	background: rgba(241, 160, 163, .08);
	color: #ffffff;
	font-size: 13px;
	line-height: 20px;
	font-weight: 700;
	cursor: pointer;
	transition: border-color var(--anim-fast) var(--anim-ease), background var(--anim-fast) var(--anim-ease);
}

.booking-promo__line button:hover {
	border-color: rgba(241, 160, 163, .68);
	background: rgba(241, 160, 163, .13);
}

.booking-promo__message {
	margin-top: 8px;
	color: #f1a0a3;
	font-size: 12px;
	line-height: 18px;
}

.booking-summary__title {
	margin-bottom: 18px;
	font-family: 'Montserrat', Arial, sans-serif;
	font-size: 24px;
	line-height: 32px;
	font-weight: 700;
}

.booking-summary__row,
.booking-summary__total {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 13px 0;
	border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.booking-summary__row span {
	color: rgba(255, 255, 255, .62);
}

.booking-summary__row strong,
.booking-summary__total strong {
	color: #ffffff;
}

.booking-summary__total {
	margin-top: 8px;
	border-bottom: 0;
	font-family: 'Montserrat', Arial, sans-serif;
	font-size: 22px;
	line-height: 30px;
	font-weight: 700;
}

.booking-summary__included {
	display: grid;
	gap: 10px;
	margin-top: 18px;
	padding-top: 18px;
	border-top: 1px solid rgba(255, 255, 255, .08);
	color: rgba(255, 255, 255, .66);
	font-size: 13px;
	line-height: 19px;
}

.booking-summary__included div {
	display: flex;
	align-items: center;
	gap: 9px;
}

.booking-summary__included .fa {
	color: #f1a0a3;
}

.booking-summary__note {
	margin-top: 18px;
	padding: 14px;
	border-radius: 12px;
	background: rgba(24, 20, 24, .74);
	color: rgba(255, 255, 255, .58);
	font-size: 13px;
	line-height: 20px;
}

.booking-checkout {
	overflow: visible;
	color: #ffffff;
	background: #181418;
}

.booking-checkout:before {
	display: block;
	position: absolute;
	inset: 0;
	width: auto;
	height: auto;
	border-radius: 0;
	background:
		linear-gradient(180deg, rgba(24, 20, 24, .9) 0%, rgba(24, 20, 24, .72) 42%, #181418 100%),
		linear-gradient(120deg, rgba(169, 49, 52, .2) 0%, rgba(24, 20, 24, 0) 50%),
		url('https://www.figma.com/api/mcp/asset/c4d7796c-cf33-433b-8683-3f14e7786b1b') center center / cover no-repeat;
	opacity: .88;
	filter: none;
	pointer-events: none;
}

.booking-card,
.booking-summary__inner {
	border-color: rgba(255, 255, 255, .1);
	background: rgba(24, 20, 24, .72);
	box-shadow: 0 25px 50px rgba(0, 0, 0, .25);
	backdrop-filter: blur(var(--premium-blur));
}

.booking-checkout__request,
.booking-checkout__secure,
.booking-trip__meta div,
.booking-trip__details,
.booking-note,
.booking-passenger,
.booking-protection__item,
.booking-payment__option,
.booking-seat,
.booking-service,
.booking-card-payment,
.booking-summary__top,
.booking-summary__consultant,
.booking-summary__concierge,
.booking-summary__note {
	border-color: rgba(255, 255, 255, .1);
	background: rgba(24, 20, 24, .58);
	box-shadow: none;
}

.booking-checkout__request,
.booking-checkout__secure,
.booking-trip__route {
	border-color: rgba(255, 255, 255, .1);
	background: rgba(24, 20, 24, .68);
	box-shadow: 0 25px 50px rgba(0, 0, 0, .25);
	backdrop-filter: blur(var(--premium-blur));
}

.booking-trip__route:before {
	display: none;
}

.booking-page__label,
.booking-card__eyebrow,
.booking-trip__badge,
.booking-trip__path,
.booking-note .fa,
.booking-checkbox a,
.booking-summary__concierge .fa,
.booking-summary__consultant a:hover,
.booking-summary__included .fa,
.booking-promo__message,
.booking-form-message,
.booking-protection__content em {
	color: #f1a0a3;
}

.booking-page__text,
.booking-checkout__trust,
.booking-field,
.booking-gender,
.booking-checkbox,
.booking-note,
.booking-trip__city,
.booking-trip__facts,
.booking-trip__segment-info span,
.booking-protection__content span,
.booking-payment__option em,
.booking-seat span,
.booking-service__content span,
.booking-rules__content,
.booking-summary__row span,
.booking-summary__included,
.booking-summary__note,
.booking-summary__consultant a {
	color: rgba(255, 255, 255, .68);
}

.booking-page__breadcrumbs,
.booking-page__breadcrumbs-link,
.booking-checkout__request span,
.booking-trip__airport > span,
.booking-trip__meta span,
.booking-summary__top span,
.booking-summary__consultant span,
.booking-field em {
	color: rgba(255, 255, 255, .52);
}

.booking-trip__badge,
.booking-promo__line button {
	border-color: rgba(255, 255, 255, .12);
	background: rgba(255, 255, 255, .06);
}

.booking-trip__path span,
.booking-trip__path span:last-child {
	background: rgba(255, 255, 255, .2);
}

.booking-trip__path .fa {
	background: #a93134;
	box-shadow: none;
	color: #ffffff;
}

.booking-control,
.booking-gender__options label {
	border-color: rgba(255, 255, 255, .16);
	background: rgba(255, 255, 255, .08);
	color: #ffffff;
}

.booking-control option {
	background: #ffffff;
	color: #181418;
}

.booking-control:focus,
.booking-gender__options label:has(input:checked) {
	border-color: rgba(255, 255, 255, .46);
	background: rgba(255, 255, 255, .12);
	box-shadow: none;
}

.booking-protection__item:hover,
.booking-payment__option:hover,
.booking-service:hover,
.booking-trip__details-toggle:hover,
.booking-promo__line button:hover {
	border-color: rgba(255, 255, 255, .18);
	background: rgba(255, 255, 255, .07);
}

.booking-protection__item:has(input:checked),
.booking-protection__item.is-selected,
.booking-payment__option:has(input:checked),
.booking-service:has(input:checked),
.booking-service.is-selected {
	border-color: rgba(169, 49, 52, .55);
	background: rgba(169, 49, 52, .18);
	box-shadow: none;
}

.booking-protection__icon,
.booking-payment__option > span,
.booking-service__icon {
	background: rgba(169, 49, 52, .22);
	color: #f1a0a3;
}

.booking-card-payment__logos span {
	background: #ffffff;
	color: #181418;
}

.booking-submit {
	background: #a93134;
	box-shadow: none;
	color: #ffffff;
}

.booking-submit:hover {
	background: #bb3a3d;
	box-shadow: none;
}

.booking-field.is-invalid .booking-control,
.booking-gender.is-invalid .booking-gender__options label,
.booking-checkbox.is-invalid {
	border-color: rgba(214, 65, 70, .95);
	box-shadow: none;
}

.booking-checkout {
	padding: 132px 0 88px;
}

.booking-page__breadcrumbs {
	margin-bottom: 30px;
	font-size: 13px;
	line-height: 18px;
}

.booking-checkout__head {
	margin-bottom: 32px;
	gap: 24px;
}

.booking-page__title {
	font-size: 48px;
	line-height: 54px;
}

.booking-page__text {
	max-width: 620px;
	margin-top: 16px;
	font-size: 16px;
	line-height: 25px;
}

.booking-checkout__layout {
	gap: 24px;
}

.booking-checkout__main {
	gap: 18px;
}

.booking-card {
	padding: 22px;
	border-radius: 14px;
}

.booking-card__head {
	margin-bottom: 18px;
	padding-bottom: 14px;
	border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.booking-card__title {
	font-size: 22px;
	line-height: 29px;
}

.booking-card__eyebrow {
	font-size: 12px;
	line-height: 16px;
}

.booking-checkout__request {
	padding: 13px 15px;
}

.booking-checkout__request strong {
	font-size: 18px;
	line-height: 24px;
}

.booking-checkout__secure {
	padding: 10px 14px;
	font-size: 13px;
	line-height: 19px;
}

.booking-trip__route {
	gap: 18px;
	padding: 22px;
	border-color: rgba(255, 255, 255, .12);
}

.booking-trip__code {
	font-size: 46px;
	line-height: 50px;
}

.booking-trip__path .fa {
	width: 42px;
	height: 42px;
}

.booking-trip__meta {
	gap: 10px;
	margin-top: 14px;
}

.booking-trip__meta div,
.booking-trip__details {
	padding: 14px;
}

.booking-form-grid {
	gap: 12px;
}

.booking-field,
.booking-gender {
	gap: 6px;
	font-size: 13px;
	line-height: 18px;
}

.booking-control,
.booking-gender__options label {
	height: 46px;
	min-height: 46px;
	padding: 11px 13px;
	font-size: 14px;
	line-height: 20px;
}

.booking-phone,
.booking-birthday,
.booking-date-grid,
.booking-gender__options {
	gap: 8px;
}

.booking-passenger {
	padding: 18px;
	background: rgba(24, 20, 24, .5);
}

.booking-passenger__title {
	margin-bottom: 14px;
	font-size: 18px;
	line-height: 24px;
}

.booking-note {
	margin-bottom: 16px;
	padding: 12px 14px;
}

.booking-protection__item,
.booking-payment__option,
.booking-seat,
.booking-service {
	gap: 12px;
	padding: 16px;
	background: rgba(24, 20, 24, .5);
}

.booking-protection__icon,
.booking-payment__option > span,
.booking-service__icon {
	width: 46px;
	height: 46px;
	font-size: 20px;
}

.booking-protection__content strong,
.booking-payment__option strong,
.booking-seat strong,
.booking-service__content strong {
	font-size: 16px;
	line-height: 22px;
}

.booking-protection__content span,
.booking-payment__option em,
.booking-seat span,
.booking-service__content span {
	font-size: 13px;
	line-height: 19px;
}

.booking-extra-info,
.booking-rules {
	margin-top: 14px;
	padding-top: 14px;
}

.booking-extra-info__toggle,
.booking-rules__toggle {
	font-size: 15px;
	line-height: 21px;
}

.booking-checkbox {
	margin-top: 14px;
	font-size: 13px;
	line-height: 20px;
}

.booking-submit {
	min-height: 50px;
	margin-top: 14px;
	border-radius: 12px;
	font-size: 15px;
	line-height: 22px;
}

.booking-summary {
	position: sticky;
	top: 112px;
}

.booking-summary__inner {
	padding: 22px;
	background: rgba(24, 20, 24, .76);
}

.booking-summary__top {
	margin: -4px -4px 18px;
	padding: 16px;
	background: rgba(169, 49, 52, .16);
}

.booking-summary__top strong {
	font-size: 32px;
	line-height: 38px;
}

.booking-summary__concierge,
.booking-summary__consultant,
.booking-promo {
	margin-bottom: 18px;
}

.booking-summary__title {
	margin-bottom: 14px;
	font-size: 21px;
	line-height: 28px;
}

.booking-summary__row,
.booking-summary__total {
	padding: 10px 0;
}

.booking-summary__total {
	font-size: 20px;
	line-height: 28px;
}

@keyframes flightPlane {
	0% {
		left: 52px;
		transform: scale(.96);
	}
	100% {
		left: calc(100% - 120px);
		transform: scale(.96);
	}
}

@keyframes flightTrail {
	0% {
		left: 52px;
		opacity: 0;
	}
	15% {
		opacity: .8;
	}
	86% {
		opacity: .8;
	}
	100% {
		left: calc(100% - 210px);
		opacity: 0;
	}
}

@keyframes flightRouteProgress {
	0% {
		transform: translateX(-100%);
	}
	100% {
		transform: translateX(0);
	}
}

@keyframes flightPulse {
	0%,
	100% {
		opacity: .32;
		transform: scale(.72);
	}
	50% {
		opacity: 1;
		transform: scale(1);
	}
}

.contacts-hero {
	position: relative;
	padding: 176px 0 86px;
	color: #ffffff;
	background: linear-gradient(180deg, rgba(24, 20, 24, .72) 0%, rgba(40, 16, 24, .86) 100%), url('https://images.unsplash.com/photo-1436491865332-7a61a109cc05?auto=format&fit=crop&w=1920&q=80') center center / cover no-repeat;
	overflow: hidden;
}

.contacts-hero:before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(120deg, rgba(169, 49, 52, .26) 0%, rgba(24, 20, 24, 0) 54%);
	pointer-events: none;
}

.contacts-breadcrumbs {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 44px;
	font-size: 14px;
	line-height: 20px;
	color: rgba(255, 255, 255, .58);
}

.contacts-breadcrumbs__link {
	color: rgba(255, 255, 255, .7);
	transition: color var(--anim-fast) var(--anim-ease);
}

.contacts-breadcrumbs__link:hover {
	color: #ffffff;
}

.contacts-breadcrumbs__separator {
	color: rgba(255, 255, 255, .38);
}

.contacts-breadcrumbs__current {
	color: #ffffff;
}

.contacts-hero__inner {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(0, 1fr) 360px;
	gap: 56px;
	align-items: end;
}

.contacts-hero__content {
	max-width: 760px;
}

.contacts-hero__label {
	font-size: 14px;
	line-height: 20px;
	font-weight: 600;
	text-transform: uppercase;
	color: #f1a0a3;
}

.contacts-hero__title {
	margin-top: 14px;
	font-family: 'Montserrat', Arial, sans-serif;
	font-size: 56px;
	line-height: 62px;
	font-weight: 700;
	letter-spacing: 0;
}

.contacts-hero__text {
	max-width: 620px;
	margin-top: 22px;
	font-size: 18px;
	line-height: 28px;
	color: rgba(255, 255, 255, .74);
}

.contacts-hero__note {
	padding: 24px;
	border: 1px solid rgba(255, 255, 255, .12);
	border-radius: 12px;
	background: rgba(255, 255, 255, .06);
}

.contacts-hero__note-title {
	font-family: 'Montserrat', Arial, sans-serif;
	font-size: 22px;
	line-height: 28px;
	font-weight: 600;
}

.contacts-hero__note-text {
	margin-top: 10px;
	font-size: 15px;
	line-height: 23px;
	color: rgba(255, 255, 255, .68);
}

.contacts-main {
	padding: 88px 0 112px;
	background: #181418;
	color: #ffffff;
}

.contacts-main__grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 438px;
	gap: 48px;
	align-items: start;
}

.contacts-info__title {
	font-family: 'Montserrat', Arial, sans-serif;
	font-size: 36px;
	line-height: 44px;
	font-weight: 700;
}

.contacts-info__text {
	max-width: 650px;
	margin-top: 16px;
	font-size: 17px;
	line-height: 27px;
	color: rgba(255, 255, 255, .68);
}

.contacts-cards {
	display: grid;
	grid-template-columns: 1fr;
	gap: 16px;
	margin-top: 34px;
}

.contacts-card {
	display: grid;
	grid-template-columns: 54px minmax(0, 1fr);
	gap: 18px;
	padding: 22px;
	border: 1px solid rgba(255, 255, 255, .1);
	border-radius: 12px;
	background: rgba(255, 255, 255, .045);
}

.contacts-card__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 54px;
	height: 54px;
	border-radius: 12px;
	background: rgba(169, 49, 52, .22);
	color: #f1a0a3;
	font-size: 24px;
}

.contacts-card__title {
	font-family: 'Montserrat', Arial, sans-serif;
	font-size: 22px;
	line-height: 28px;
	font-weight: 600;
}

.contacts-card__text {
	margin-top: 8px;
	margin-bottom: 14px;
	font-size: 15px;
	line-height: 23px;
	color: rgba(255, 255, 255, .66);
}

.contacts-card__link {
	display: table;
	margin-top: 7px;
	color: rgba(255, 255, 255, .82);
	font-size: 15px;
	line-height: 22px;
	transition: color var(--anim-fast) var(--anim-ease);
}

.contacts-card__link:hover {
	color: #ffffff;
}

.contacts-form {
	padding: 28px;
	border: 1px solid rgba(255, 255, 255, .1);
	border-radius: 12px;
	background: rgba(255, 255, 255, .06);
}

.contacts-form__title {
	font-family: 'Montserrat', Arial, sans-serif;
	font-size: 28px;
	line-height: 34px;
	font-weight: 700;
}

.contacts-form__text {
	margin-top: 10px;
	font-size: 15px;
	line-height: 23px;
	color: rgba(255, 255, 255, .64);
}

.contacts-form__field {
	display: flex;
	flex-direction: column;
	gap: 8px;
	margin-top: 16px;
	font-size: 14px;
	line-height: 20px;
	font-weight: 500;
	color: rgba(255, 255, 255, .64);
}

.contacts-form__control {
	width: 100%;
	height: 48px;
	padding: 12px 14px;
	border: 1px solid rgba(255, 255, 255, .16);
	border-radius: 10px;
	background: rgba(255, 255, 255, .08);
	color: #ffffff;
	font-size: 15px;
	line-height: 22px;
	outline: 0;
	transition: border-color var(--anim-fast) var(--anim-ease), background var(--anim-fast) var(--anim-ease), box-shadow var(--anim-fast) var(--anim-ease);
}

.contacts-form__textarea {
	height: 132px;
	resize: vertical;
}

.contacts-form__control:focus {
	border-color: rgba(241, 160, 163, .72);
	background: rgba(255, 255, 255, .12);
	box-shadow: 0 0 0 3px rgba(169, 49, 52, .18);
}

.contacts-form__field.is-invalid .contacts-form__control {
	border-color: rgba(214, 65, 70, .95);
	box-shadow: 0 0 0 3px rgba(214, 65, 70, .18);
}

.contacts-form__message {
	display: none;
	margin-top: 14px;
	font-size: 14px;
	line-height: 20px;
	color: #9fe2b2;
}

.contacts-form__message.is-visible {
	display: block;
}

.contacts-form__message.is-error {
	color: #f1a0a3;
}

.contacts-form__submit {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	width: 100%;
	min-height: 50px;
	margin-top: 20px;
	border: 0;
	border-radius: 10px;
	background: linear-gradient(90deg, #a93134 0%, #8d272b 50%, #6a1b20 100%);
	color: #ffffff;
	font-size: 16px;
	line-height: 24px;
	font-weight: 600;
	cursor: pointer;
	transition: background var(--anim-base) var(--anim-ease), box-shadow var(--anim-base) var(--anim-ease), opacity var(--anim-base) var(--anim-ease);
}

.contacts-form__submit:hover {
	background: linear-gradient(90deg, #bb3a3d 0%, #982d31 50%, #741f25 100%);
	box-shadow: 0 14px 34px rgba(169, 49, 52, .24);
}

.contacts-form.is-sending .contacts-form__submit {
	opacity: .72;
	pointer-events: none;
}

.site-footer {
	padding: 64px 0 40px;
	border-top: 1px solid rgba(255, 255, 255, .1);
	background: #3a1016;
	color: #ffffff;
}

.site-footer__top {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 48px;
}

.site-footer__logo {
	display: inline-flex;
	font-family: 'Montserrat', Arial, sans-serif;
	font-size: 24px;
	line-height: 32px;
	font-weight: 700;
	color: #ffffff;
	transition: opacity var(--anim-fast) var(--anim-ease);
}

.site-footer__text {
	max-width: 300px;
	margin-top: 16px;
	font-size: 16px;
	line-height: 24px;
	font-weight: 400;
	color: rgba(255, 255, 255, .6);
}

.site-footer__socials {
	display: flex;
	align-items: center;
	gap: 16px;
	margin-top: 20px;
}

.site-footer__social {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 20px;
	height: 20px;
	color: rgba(255, 255, 255, .6);
	font-size: 16px;
	transition: color var(--anim-fast) var(--anim-ease), opacity var(--anim-fast) var(--anim-ease);
}

.site-footer__social-text {
	font-size: 14px;
	line-height: 20px;
}

.site-footer__title {
	font-family: 'Montserrat', Arial, sans-serif;
	font-size: 16px;
	line-height: 24px;
	font-weight: 500;
	color: #ffffff;
}

.site-footer__list {
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin-top: 16px;
}

.site-footer__link,
.site-footer__contact {
	display: inline-flex;
	align-items: flex-start;
	gap: 12px;
	font-size: 16px;
	line-height: 24px;
	font-weight: 400;
	color: rgba(255, 255, 255, .6);
	transition: color var(--anim-fast) var(--anim-ease), opacity var(--anim-fast) var(--anim-ease);
}

.site-footer__contact i {
	width: 18px;
	margin-top: 3px;
	color: rgba(255, 255, 255, .6);
	text-align: center;
	transition: color var(--anim-fast) var(--anim-ease);
}

.site-footer__logo:hover,
.site-footer__social:hover,
.site-footer__link:hover,
.site-footer__contact:hover,
.site-footer__studio a:hover {
	color: #ffffff;
}

.site-footer__bottom {
	margin-top: 48px;
	padding-top: 24px;
	border-top: 1px solid rgba(255, 255, 255, .1);
	text-align: center;
}

.site-footer__copy {
	font-size: 16px;
	line-height: 24px;
	color: rgba(255, 255, 255, .6);
}

.site-footer__studio {
	margin-top: 8px;
	font-size: 13px;
	line-height: 20px;
	color: rgba(255, 255, 255, .36);
}

.site-footer__studio a {
	color: rgba(255, 255, 255, .5);
	transition: color var(--anim-fast) var(--anim-ease);
}

.phone-popup {
	position: fixed;
	inset: 0;
	z-index: 220;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 24px;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: opacity var(--anim-base) var(--anim-ease), visibility var(--anim-base) var(--anim-ease);
}

.phone-popup.is-visible {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}

.phone-popup__overlay {
	position: absolute;
	inset: 0;
	background: rgba(24, 20, 24, .74);
	backdrop-filter: blur(10px);
}

.phone-popup__dialog {
	position: relative;
	z-index: 1;
	width: 100%;
	max-width: 438px;
	padding: 34px;
	border: 1px solid rgba(255, 255, 255, .12);
	border-radius: 16px;
	background: #281018;
	color: #ffffff;
	box-shadow: 0 30px 70px rgba(0, 0, 0, .42);
	transform: translateY(18px);
	transition: transform var(--anim-base) var(--anim-ease);
}

.phone-popup.is-visible .phone-popup__dialog {
	transform: translateY(0);
}

.phone-popup__close {
	position: absolute;
	top: 14px;
	right: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border: 0;
	border-radius: 50%;
	background: rgba(255, 255, 255, .08);
	color: rgba(255, 255, 255, .72);
	cursor: pointer;
	transition: background var(--anim-fast) var(--anim-ease), color var(--anim-fast) var(--anim-ease);
}

.phone-popup__close:hover {
	background: rgba(255, 255, 255, .14);
	color: #ffffff;
}

.phone-popup__title {
	padding-right: 32px;
	font-family: 'Montserrat', Arial, sans-serif;
	font-size: 28px;
	line-height: 34px;
	font-weight: 700;
}

.phone-popup__text {
	margin-top: 12px;
	font-size: 16px;
	line-height: 24px;
	color: rgba(255, 255, 255, .72);
}

.phone-popup__form {
	margin-top: 24px;
}

.phone-popup__label {
	display: flex;
	flex-direction: column;
	gap: 9px;
	font-size: 13px;
	line-height: 18px;
	font-weight: 500;
	color: rgba(255, 255, 255, .7);
}

.phone-popup__row {
	display: grid;
	grid-template-columns: 116px minmax(0, 1fr);
	gap: 10px;
}

.phone-popup__country,
.phone-popup__input {
	width: 100%;
	height: 48px;
	border: 1px solid rgba(255, 255, 255, .12);
	border-radius: 10px;
	background: rgba(255, 255, 255, .08);
	color: #ffffff;
	font-size: 15px;
	line-height: 22px;
	outline: none;
	transition: border-color var(--anim-fast) var(--anim-ease), background var(--anim-fast) var(--anim-ease), box-shadow var(--anim-fast) var(--anim-ease);
}

.phone-popup__country {
	padding: 0 12px;
}

.phone-popup__country option {
	background: #ffffff;
	color: #181418;
}

.phone-popup__input {
	padding: 0 14px;
}

.phone-popup__country:focus,
.phone-popup__input:focus {
	border-color: rgba(241, 160, 163, .72);
	background: rgba(255, 255, 255, .12);
	box-shadow: 0 0 0 3px rgba(169, 49, 52, .22);
}

.phone-popup__input::placeholder {
	color: rgba(255, 255, 255, .42);
}

.phone-popup__message {
	display: none;
	margin-top: 12px;
	font-size: 14px;
	line-height: 20px;
	color: #9fe2b2;
}

.phone-popup__message.is-visible {
	display: block;
}

.phone-popup__message.is-error {
	color: #f1a0a3;
}

.phone-popup__submit {
	width: 100%;
	min-height: 48px;
	margin-top: 18px;
	border: 0;
	border-radius: 10px;
	background: linear-gradient(90deg, #a93134 0%, #8d272b 50%, #6a1b20 100%);
	color: #ffffff;
	font-size: 16px;
	line-height: 24px;
	font-weight: 600;
	cursor: pointer;
	transition: background var(--anim-base) var(--anim-ease), box-shadow var(--anim-base) var(--anim-ease), opacity var(--anim-base) var(--anim-ease);
}

.phone-popup__submit:hover {
	background: linear-gradient(90deg, #bb3a3d 0%, #982d31 50%, #741f25 100%);
	box-shadow: 0 14px 34px rgba(169, 49, 52, .28);
}

.scroll-up {
	position: fixed;
	right: 28px;
	bottom: 28px;
	z-index: 130;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	border: 1px solid rgba(255, 255, 255, .16);
	border-radius: 50%;
	background: rgba(169, 49, 52, .82);
	color: #ffffff;
	font-size: 24px;
	opacity: 0;
	visibility: hidden;
	cursor: pointer;
	pointer-events: none;
	box-shadow: 0 14px 36px rgba(0, 0, 0, .28);
	backdrop-filter: blur(var(--premium-blur));
	transition: background var(--anim-base) var(--anim-ease), opacity var(--anim-base) var(--anim-ease), visibility var(--anim-base) var(--anim-ease), box-shadow var(--anim-base) var(--anim-ease);
}

.scroll-up.is-visible {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}

.scroll-up:hover {
	background: rgba(187, 58, 61, .94);
	box-shadow: 0 18px 42px rgba(169, 49, 52, .3);
}

.landing-page-service {
	background: #121012;
	color: #ffffff;
}

.landing-page-service #page {
	background:
		linear-gradient(180deg, #171316 0%, #24191d 28%, #f6f1e8 28%, #f6f1e8 100%);
}

.landing-page-service .site-header__logo,
.landing-page-service .site-footer__logo {
	letter-spacing: 0;
	white-space: nowrap;
}

.lp-hero {
	position: relative;
	overflow: hidden;
	padding: 112px 0 104px;
	background:
		linear-gradient(135deg, rgba(18, 16, 18, .96) 0%, rgba(40, 27, 33, .95) 55%, rgba(102, 29, 39, .92) 100%);
}

.lp-hero:before,
.lp-hero:after {
	content: "";
	position: absolute;
	pointer-events: none;
}

.lp-hero:before {
	top: 108px;
	left: 0;
	width: 36%;
	height: 1px;
	background: linear-gradient(90deg, rgba(241, 160, 163, 0) 0%, rgba(241, 160, 163, .88) 100%);
}

.lp-hero:after {
	right: 8%;
	bottom: -120px;
	width: 360px;
	height: 360px;
	border: 1px solid rgba(255, 255, 255, .12);
	transform: rotate(12deg);
}

.lp-hero__grid {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: minmax(0, 1.08fr) minmax(360px, .92fr);
	align-items: center;
	gap: 72px;
}

.lp-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 22px;
	color: #f1a0a3;
	font-size: 13px;
	line-height: 18px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1.4px;
}

.lp-eyebrow:before {
	content: "";
	width: 42px;
	height: 2px;
	background: #f1a0a3;
}

.lp-hero__title,
.lp-section-title {
	margin: 0;
	font-family: 'Montserrat', Arial, sans-serif;
	font-weight: 800;
	letter-spacing: 0;
}

.lp-hero__title {
	max-width: 820px;
	font-size: 68px;
	line-height: 74px;
	color: #ffffff;
}

.lp-hero__text {
	max-width: 720px;
	margin-top: 28px;
	color: rgba(255, 255, 255, .82);
	font-size: 21px;
	line-height: 34px;
}

.lp-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	margin-top: 38px;
}

.lp-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 54px;
	padding: 14px 24px;
	border: 0;
	font-size: 16px;
	line-height: 22px;
	font-weight: 700;
	cursor: pointer;
	transition: transform var(--anim-base) var(--anim-ease), background var(--anim-base) var(--anim-ease), color var(--anim-base) var(--anim-ease), border-color var(--anim-base) var(--anim-ease);
}

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

.lp-button--primary {
	background: #ffffff;
	color: #171316;
}

.lp-button--primary:hover {
	background: #f1a0a3;
	color: #171316;
}

.lp-button--ghost {
	border: 1px solid rgba(255, 255, 255, .28);
	color: #ffffff;
	background: transparent;
}

.lp-button--ghost:hover {
	border-color: #ffffff;
	background: rgba(255, 255, 255, .08);
	color: #ffffff;
}

.lp-button--dark {
	margin-top: 30px;
	background: #171316;
	color: #ffffff;
}

.lp-button--dark:hover {
	background: #a93134;
	color: #ffffff;
}

.lp-hero__points {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
	margin-top: 50px;
	max-width: 820px;
}

.lp-hero__points span {
	position: relative;
	padding-top: 16px;
	color: rgba(255, 255, 255, .78);
	font-size: 14px;
	line-height: 21px;
}

.lp-hero__points span:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 2px;
	background: linear-gradient(90deg, #f1a0a3 0%, rgba(255, 255, 255, .12) 100%);
}

.lp-preview {
	position: relative;
	background: #f8f4ed;
	color: #171316;
	border: 1px solid rgba(255, 255, 255, .18);
}

.lp-preview--hero {
	min-height: 520px;
	transform: rotate(-1.5deg);
	box-shadow: 34px 40px 0 rgba(255, 255, 255, .08);
}

.lp-preview__top {
	display: flex;
	align-items: center;
	gap: 8px;
	height: 44px;
	padding: 0 20px;
	background: #171316;
}

.lp-preview__top span,
.lp-case__browser span {
	width: 9px;
	height: 9px;
	background: #f1a0a3;
}

.lp-preview__body {
	padding: 38px;
}

.lp-preview__label {
	margin-bottom: 18px;
	color: #a93134;
	font-size: 12px;
	line-height: 18px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 1.2px;
}

.lp-preview__title {
	max-width: 360px;
	font-family: 'Montserrat', Arial, sans-serif;
	font-size: 38px;
	line-height: 42px;
	font-weight: 800;
}

.lp-preview__text {
	max-width: 380px;
	margin-top: 18px;
	color: rgba(23, 19, 22, .66);
	font-size: 16px;
	line-height: 25px;
}

.lp-preview__screen {
	display: grid;
	grid-template-columns: 1fr .58fr;
	gap: 16px;
	margin-top: 44px;
}

.lp-preview__line,
.lp-preview__button,
.lp-preview__panel {
	display: block;
	background: #171316;
}

.lp-preview__line {
	height: 18px;
	opacity: .2;
}

.lp-preview__line--wide {
	grid-column: 1 / -1;
	height: 30px;
	opacity: .9;
}

.lp-preview__button {
	width: 160px;
	height: 48px;
	background: #a93134;
}

.lp-preview__panel {
	min-height: 150px;
	background:
		linear-gradient(90deg, rgba(169, 49, 52, .92) 0%, rgba(169, 49, 52, .92) 38%, transparent 38%),
		repeating-linear-gradient(180deg, rgba(23, 19, 22, .18) 0, rgba(23, 19, 22, .18) 12px, transparent 12px, transparent 24px);
}

.lp-section-head {
	max-width: 820px;
	margin-bottom: 54px;
}

.lp-section-head--split {
	display: grid;
	grid-template-columns: minmax(0, .95fr) minmax(300px, .65fr);
	align-items: end;
	gap: 64px;
	max-width: none;
}

.lp-section-title {
	color: #171316;
	font-size: 48px;
	line-height: 54px;
}

.lp-section-text {
	color: rgba(23, 19, 22, .72);
	font-size: 18px;
	line-height: 30px;
}

.lp-trust,
.lp-included,
.lp-cases,
.lp-steps,
.lp-template,
.lp-seo,
.lp-faq,
.lp-request {
	padding: 104px 0;
}

.lp-trust {
	background: #f6f1e8;
}

.lp-trust__grid {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	border-top: 1px solid rgba(23, 19, 22, .18);
	border-left: 1px solid rgba(23, 19, 22, .18);
}

.lp-trust__item {
	min-height: 252px;
	padding: 28px 24px;
	border-right: 1px solid rgba(23, 19, 22, .18);
	border-bottom: 1px solid rgba(23, 19, 22, .18);
	color: rgba(23, 19, 22, .68);
	font-size: 15px;
	line-height: 24px;
}

.lp-trust__item:nth-child(1),
.lp-trust__item:nth-child(2) {
	grid-column: span 2;
}

.lp-trust__item:nth-child(3),
.lp-trust__item:nth-child(4),
.lp-trust__item:nth-child(5),
.lp-trust__item:nth-child(6) {
	grid-column: span 1;
}

.lp-trust__mark {
	display: block;
	width: 44px;
	height: 3px;
	margin-bottom: 34px;
	background: #a93134;
}

.lp-trust__item h3,
.lp-included__item h3,
.lp-case__content h3,
.lp-step h3,
.lp-faq__item h3 {
	margin: 0;
	font-family: 'Montserrat', Arial, sans-serif;
	font-weight: 800;
	letter-spacing: 0;
}

.lp-trust__item h3 {
	margin-bottom: 14px;
	color: #171316;
	font-size: 22px;
	line-height: 28px;
}

.lp-audience {
	padding: 112px 0;
	background: #171316;
}

.lp-audience .lp-section-title,
.lp-audience .lp-section-text {
	color: #ffffff;
}

.lp-audience .lp-section-text {
	color: rgba(255, 255, 255, .72);
}

.lp-audience__grid {
	display: grid;
	grid-template-columns: minmax(0, .78fr) minmax(420px, 1fr);
	gap: 76px;
	align-items: center;
}

.lp-audience__list {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	border-top: 1px solid rgba(255, 255, 255, .16);
	border-left: 1px solid rgba(255, 255, 255, .16);
}

.lp-audience__list div {
	min-height: 128px;
	padding: 28px;
	border-right: 1px solid rgba(255, 255, 255, .16);
	border-bottom: 1px solid rgba(255, 255, 255, .16);
	color: rgba(255, 255, 255, .88);
	font-size: 19px;
	line-height: 28px;
	font-weight: 700;
}

.lp-included {
	background: #ffffff;
}

.lp-included__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1px;
	background: rgba(23, 19, 22, .14);
}

.lp-included__item {
	min-height: 300px;
	padding: 34px;
	background: #ffffff;
	color: rgba(23, 19, 22, .66);
	font-size: 16px;
	line-height: 26px;
}

.lp-included__item span,
.lp-step span {
	display: block;
	margin-bottom: 38px;
	color: #a93134;
	font-family: 'Montserrat', Arial, sans-serif;
	font-size: 13px;
	line-height: 18px;
	font-weight: 800;
	letter-spacing: 1.3px;
}

.lp-included__item h3 {
	margin-bottom: 16px;
	color: #171316;
	font-size: 25px;
	line-height: 31px;
}

.lp-cases {
	background: #24191d;
}

.lp-cases .lp-section-title {
	color: #ffffff;
}

.lp-cases .lp-section-text {
	color: rgba(255, 255, 255, .7);
}

.lp-cases__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
}

.lp-case {
	display: grid;
	grid-template-rows: minmax(260px, auto) 1fr;
	background: rgba(255, 255, 255, .06);
	border: 1px solid rgba(255, 255, 255, .12);
}

.lp-case--wide {
	grid-column: span 2;
	grid-template-columns: minmax(0, 1.05fr) minmax(280px, .7fr);
	grid-template-rows: auto;
}

.lp-case__visual {
	padding: 26px;
	background:
		linear-gradient(135deg, rgba(246, 241, 232, .92) 0%, rgba(246, 241, 232, .72) 100%),
		#f6f1e8;
}

.lp-case__visual > img {
	display: block;
	width: 100%;
	height: 100%;
	min-height: 260px;
	object-fit: cover;
}

.lp-case__browser {
	display: flex;
	gap: 7px;
	height: 34px;
	padding: 12px 14px;
	background: #171316;
}

.lp-case__mockup {
	display: grid;
	gap: 14px;
	min-height: 210px;
	padding: 28px;
	background: #ffffff;
}

.lp-case__mockup span {
	display: block;
	height: 16px;
	background: rgba(23, 19, 22, .16);
}

.lp-case__mockup .lp-case__hero-line {
	width: 78%;
	height: 38px;
	background: #171316;
}

.lp-case__mockup .lp-case__cta {
	width: 136px;
	height: 44px;
	background: #a93134;
}

.lp-case__content {
	padding: 30px;
	color: rgba(255, 255, 255, .7);
	font-size: 16px;
	line-height: 26px;
}

.lp-case__content h3 {
	margin-bottom: 14px;
	color: #ffffff;
	font-size: 25px;
	line-height: 31px;
}

.lp-case__content strong {
	display: block;
	margin-top: 24px;
	color: #f1a0a3;
	font-size: 14px;
	line-height: 20px;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.lp-steps {
	background: #f6f1e8;
}

.lp-steps__list {
	border-top: 1px solid rgba(23, 19, 22, .18);
}

.lp-step {
	display: grid;
	grid-template-columns: 120px minmax(260px, .55fr) minmax(0, 1fr);
	gap: 36px;
	padding: 34px 0;
	border-bottom: 1px solid rgba(23, 19, 22, .18);
	color: rgba(23, 19, 22, .68);
	font-size: 17px;
	line-height: 28px;
}

.lp-step span {
	margin-bottom: 0;
}

.lp-step h3 {
	color: #171316;
	font-size: 27px;
	line-height: 34px;
}

.lp-template {
	background: #ffffff;
}

.lp-template__inner {
	display: grid;
	grid-template-columns: minmax(320px, .72fr) minmax(0, 1fr);
	align-items: center;
	gap: 76px;
}

.lp-preview--small {
	min-height: 360px;
	background: #f6f1e8;
	box-shadow: -24px 24px 0 #171316;
}

.lp-preview--small .lp-preview__screen {
	padding: 34px;
}

.lp-seo {
	background: #171316;
}

.lp-seo .lp-section-title,
.lp-seo .lp-section-text {
	color: #ffffff;
}

.lp-seo .lp-section-text {
	color: rgba(255, 255, 255, .72);
}

.lp-seo__grid {
	display: grid;
	grid-template-columns: minmax(0, .85fr) minmax(360px, .9fr);
	gap: 72px;
	align-items: start;
}

.lp-seo__items {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1px;
	background: rgba(255, 255, 255, .16);
}

.lp-seo__items div {
	min-height: 118px;
	padding: 24px;
	background: #171316;
	color: rgba(255, 255, 255, .86);
	font-size: 17px;
	line-height: 25px;
	font-weight: 700;
}

.lp-faq {
	background: #f6f1e8;
}

.lp-faq__list {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1px;
	background: rgba(23, 19, 22, .16);
}

.lp-faq__item {
	padding: 30px;
	background: #f6f1e8;
	color: rgba(23, 19, 22, .7);
	font-size: 16px;
	line-height: 27px;
}

.lp-faq__item h3 {
	margin-bottom: 16px;
	color: #171316;
	font-size: 22px;
	line-height: 29px;
}

.lp-request {
	background:
		linear-gradient(135deg, rgba(36, 25, 29, .98) 0%, rgba(99, 30, 41, .96) 100%);
}

.lp-request .lp-section-title,
.lp-request .lp-section-text {
	color: #ffffff;
}

.lp-request .lp-section-text {
	color: rgba(255, 255, 255, .72);
}

.lp-request__grid {
	display: grid;
	grid-template-columns: minmax(0, .85fr) minmax(360px, .75fr);
	gap: 76px;
	align-items: start;
}

.lp-request__form {
	margin: 0;
	background: #ffffff;
}

.lp-request__form .contacts-form__title,
.lp-request__form .contacts-form__text,
.lp-request__form .contacts-form__field span {
	color: #171316;
}

.lp-request__form .contacts-form__text {
	color: rgba(23, 19, 22, .68);
}

.lp-request__form .contacts-form__control {
	border-color: rgba(23, 19, 22, .22);
	background: #f6f1e8;
	color: #171316;
}

.lp-request__form .contacts-form__control:focus {
	border-color: rgba(169, 49, 52, .72);
	background: #ffffff;
	box-shadow: 0 0 0 3px rgba(169, 49, 52, .14);
}

.lp-request__form .contacts-form__control::placeholder {
	color: rgba(23, 19, 22, .42);
}

.lp-request__form .contacts-form__submit {
	background: #171316;
}

.lp-request__form .contacts-form__submit:hover {
	background: #a93134;
}
