.pricing-hero {
	overflow: hidden;
	background: #080908;
	color: #ffffff;
}

.pricing-hero,
.pricing-hero * {
	box-sizing: border-box;
}

.pricing-hero__container {
	width: 100%;
	max-width: calc(
		var(--container-large-width) +
		var(--container-padding-x) * 2
	);
	margin: 0 auto;
	padding: 48px var(--container-padding-x) 24px;
}

.pricing-hero__heading {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	align-items: end;
	gap: 24px;
}

.pricing-hero__intro {
	grid-column: 1 / 4;
}

.pricing-hero__badges {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 7px;
	margin-bottom: 24px;
}

.pricing-hero__badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	padding: 0 18px;
	border: 1px solid #343634;
	border-radius: 999px;
	color: #ffffff;
	font-family: var(--font-family-secondary), "Anton", sans-serif;
	font-size: 17px;
	line-height: 1;
	text-transform: uppercase;
	white-space: nowrap;
}

.pricing-hero__badge--rating {
	gap: 10px;
}

.pricing-hero__star {
	color: #d7ff00;
	font-family: Arial, sans-serif;
	font-size: 20px;
	line-height: 1;
}

.pricing-hero__title {
	max-width: 900px;
	margin: 0;
	color: #ffffff;
	font-family: var(--font-family-secondary), "Anton", sans-serif;
	font-size: clamp(52px, 4vw, 68px);
	font-weight: 400;
	line-height: 0.92;
	letter-spacing: -1px;
	text-transform: uppercase;
}

.pricing-hero__special {
	grid-column: 4 / 5;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	width: 100%;
	min-height: 90px;
	margin-bottom: 2px;
	padding: 20px;
	background: #d7ff00;
	color: #080908;
}

.pricing-hero__special-label {
	max-width: 110px;
	font-size: 13px;
	font-weight: 500;
	line-height: 1.15;
	text-transform: uppercase;
	white-space: nowrap;
}

.pricing-hero__special-value {
	font-family: var(--font-family-secondary), "Anton", sans-serif;
	font-size: 48px;
	font-weight: 400;
	line-height: 1;
}

.pricing-hero__cars {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 24px;
	margin-top: 40px;
}

.pricing-car {
	min-width: 0;
	overflow: hidden;
	border: 1px solid #33362e;
	background: linear-gradient(
		135deg,
		rgba(215, 255, 0, 0.07),
		rgba(255, 255, 255, 0.015)
	);
}

.pricing-car__name {
	display: flex;
	align-items: center;
	min-height: 55px;
	padding: 12px 20px;
	border-bottom: 1px solid #33362e;
	font-family: var(--font-family-secondary), "Anton", sans-serif;
	font-size: 18px;
	line-height: 1;
	text-transform: uppercase;
}

.pricing-car__image {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 178px;
	padding: 18px 20px 8px;
}

.pricing-car__image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center;
}

.pricing-car__footer {
	min-height: 116px;
	padding: 17px 20px;
	border-top: 1px solid #33362e;
}

.pricing-car__package {
	margin-bottom: 10px;
	color: #d7ff00;
	font-family: var(--font-family-secondary), "Anton", sans-serif;
	font-size: 18px;
	line-height: 1;
	text-transform: uppercase;
}

.pricing-car__details {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 12px;
}

.pricing-car__prices {
	display: flex;
	align-items: flex-end;
	gap: 14px;
}

.pricing-car__prices strong {
	font-family: var(--font-family-secondary), "Anton", sans-serif;
	font-size: 48px;
	font-weight: 400;
	line-height: 0.95;
}

.pricing-car__prices del {
	padding-bottom: 3px;
	color: #767876;
	font-family: var(--font-family-secondary), "Anton", sans-serif;
	font-size: 25px;
	line-height: 1;
	text-decoration-thickness: 2px;
}

.pricing-car__duration {
	padding-bottom: 4px;
	color: #898b89;
	font-size: 13px;
	line-height: 1;
	text-transform: uppercase;
	white-space: nowrap;
}

.pricing-hero__pagination {
	display: none;
}

.pricing-hero__cta {
	display: grid;
	grid-template-columns: 48px minmax(0, 1fr) auto;
	align-items: center;
	gap: 22px;
	min-height: 114px;
	margin-top: 24px;
	padding: 16px 20px;
	border: 1px dashed #d7ff00;
}

.pricing-hero__cta-arrow {
	position: relative;
	width: 42px;
	height: 62px;
}

.pricing-hero__cta-arrow::before {
	content: "";
	position: absolute;
	top: 0;
	left: 50%;
	width: 11px;
	height: 43px;
	background: #d7ff00;
	transform: translateX(-50%);
}

.pricing-hero__cta-arrow::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 50%;
	width: 0;
	height: 0;
	border-top: 20px solid #d7ff00;
	border-right: 20px solid transparent;
	border-left: 20px solid transparent;
	transform: translateX(-50%);
}

.pricing-hero__cta-content {
	min-width: 0;
}

.pricing-hero__cta-title {
	margin-bottom: 7px;
	font-family: var(--font-family-secondary), "Anton", sans-serif;
	font-size: 30px;
	line-height: 1;
	text-transform: uppercase;
}

.pricing-hero__cta-description {
	color: #8c8e8c;
	font-size: 16px;
	line-height: 1.35;
}

.pricing-hero__cta-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 14px;
	min-width: 226px;
	min-height: 54px;
	padding: 12px 24px;
	border-radius: 15px;
	background: #d7ff00;
	color: #080908;
	font-size: 14px;
	font-weight: 700;
	line-height: 1;
	text-decoration: none;
	text-transform: uppercase;
	transition:
		background-color 0.2s ease,
		color 0.2s ease,
		transform 0.2s ease;
}

.pricing-hero__cta-button:hover {
	background: #ffffff;
	color: #080908;
	transform: translateY(-2px);
}

@media (max-width: 1300px) {

	.pricing-hero__container {
		padding-top: 40px;
		padding-bottom: 24px;
	}

	.pricing-hero__title {
		font-size: 54px;
	}

	.pricing-car__image {
		height: 155px;
	}

	.pricing-car__prices strong {
		font-size: 42px;
	}

}

@media (max-width: 810px) {

	.pricing-hero__container {
		max-width: none;
		padding: 32px 20px 20px;
	}

	.pricing-hero__heading {
		display: block;
	}

	.pricing-hero__intro,
	.pricing-hero__special {
		width: 100%;
	}

	.pricing-hero__badges {
		display: grid;
		grid-template-columns: auto auto auto;
		align-items: center;
		gap: 0;
		margin-bottom: 28px;
	}

	.pricing-hero__badge {
		justify-content: flex-start;
		min-height: 18px;
		padding: 0 12px;
		border: 0;
		border-radius: 0;
		font-size: 12px;
		white-space: nowrap;
	}

	.pricing-hero__badge:first-child {
		padding-left: 0;
	}

	.pricing-hero__badge + .pricing-hero__badge {
		border-left: 1px solid #565856;
	}

	.pricing-hero__badge--rating {
		gap: 3px;
	}

	.pricing-hero__star {
		font-size: 17px;
	}

	.pricing-hero__title {
		max-width: 100%;
		font-size: clamp(38px, 11.2vw, 43px);
		line-height: 0.98;
		letter-spacing: -0.5px;
	}

	.pricing-hero__title br {
		display: none;
	}

	.pricing-hero__special {
		display: flex;
		min-height: 60px;
		margin-top: 20px;
		margin-bottom: 0;
		padding: 13px 14px;
	}

	.pricing-hero__special-label {
		max-width: none;
		font-size: 12px;
	}

	.pricing-hero__special-value {
		font-size: 40px;
	}

	.pricing-hero__cars {
		position: relative;
		display: flex;
		gap: 8px;
		margin-top: 20px;
		overflow-x: auto;
		overflow-y: hidden;
		scroll-behavior: smooth;
		scroll-snap-type: x mandatory;
		scrollbar-width: none;
		-webkit-overflow-scrolling: touch;
	}

	.pricing-hero__cars::-webkit-scrollbar {
		display: none;
	}

	.pricing-car {
		flex: 0 0 222px;
		width: 222px;
		scroll-snap-align: start;
		scroll-snap-stop: always;
	}

	.pricing-car__name {
		min-height: 46px;
		padding: 11px 13px;
		font-size: 15px;
	}

	.pricing-car__image {
		height: 116px;
		padding: 13px 16px 7px;
	}

	.pricing-car__footer {
		min-height: 96px;
		padding: 14px 13px;
	}

	.pricing-car__package {
		margin-bottom: 9px;
		font-size: 15px;
		white-space: nowrap;
	}

	.pricing-car__details {
		gap: 8px;
	}

	.pricing-car__prices {
		gap: 10px;
	}

	.pricing-car__prices strong {
		font-size: 40px;
	}

	.pricing-car__prices del {
		padding-bottom: 2px;
		font-size: 20px;
	}

	.pricing-car__duration {
		padding-bottom: 3px;
		font-size: 10px;
	}

	.pricing-hero__pagination {
		display: flex;
		align-items: center;
		justify-content: center;
		gap: 10px;
		margin: 13px 0 20px;
	}

	.pricing-hero__dot {
		display: block;
		width: 7px;
		height: 7px;
		margin: 0;
		padding: 0;
		border: 0;
		border-radius: 50%;
		background: #dedede;
		cursor: pointer;
		transition:
			background-color 0.2s ease,
			transform 0.2s ease;
	}

	.pricing-hero__dot.is-active {
		background: #d7ff00;
		transform: scale(1.25);
	}

	.pricing-hero__cta {
		display: block;
		min-height: 0;
		margin-top: 0;
		padding: 20px;
	}

	.pricing-hero__cta-arrow {
		display: none;
	}

	.pricing-hero__cta-title {
		margin-bottom: 10px;
		font-size: 22px;
		line-height: 1.05;
	}

	.pricing-hero__cta-description {
		max-width: 290px;
		font-size: 13px;
		line-height: 1.2;
	}

	.pricing-hero__cta-button {
		width: 100%;
		min-width: 0;
		min-height: 49px;
		margin-top: 32px;
		padding: 10px 15px;
		border-radius: 14px;
		font-size: 12px;
	}

}

.pricing-car__details,
.pricing-hero__special {
	transition: opacity 0.18s ease;
}

.pricing-hero:not(.pricing-data-loaded) .pricing-car__details,
.pricing-hero:not(.pricing-data-loaded) .pricing-hero__special {
	visibility: hidden;
	opacity: 0;
}