/* ===== Hero Banner ===== */
.hero {
	position: relative;
	padding: 40px 64px 0;
	background-size: cover;
	background-position: center right;
	overflow: hidden;
	color: #fff;
	min-height: 520px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

/* ---- Content area ---- */
.hero__content {
	position: relative;
	z-index: 2;
	max-width: 900px;
	flex: 1 1 auto;
	display: flex;
	flex-direction: column;
}

/* Subtitle */
.hero__subtitle {
	font-weight: 600;
	font-size: 24px;
	color: #ACC8FA;
	margin: 0 0 80px;
	line-height: 1.3;
}

/* Main row: left text + circle */
.hero__main-row {
	display: flex;
	align-items: flex-start;
	gap: 40px;
	flex: 1 1 auto;
}

.hero__left {
	flex: 0 0 auto;
}

/* Heading */
.hero__heading {
	font-size: 32px;
    font-weight: 600;
    line-height: 1.1;
    text-transform: uppercase;
    margin: 0 0 8px;
    letter-spacing: 0.5px;
}

/* Price */
.hero__price {
	font-size: 68px;
    font-weight: 700;
    line-height: 1;
    margin: 0 0 6px;
}

/* Badge "Всё включено!" */
.hero__badge {
	display: block;
    width: fit-content;
    background: rgba(20, 30, 70, 0.55);
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #8FA7DC;
}

/* CTA Button */
.hero__btn {
	display: block;
	width: fit-content;
	background: #ff2b7a;
	color: #fff;
	border: 0;
	appearance: none;
	font-size: 16px;
	font-weight: 700;
	text-transform: uppercase;
	padding: 12px 28px;
	border-radius: 32px;
	cursor: pointer;
	text-decoration: none;
	transition: background .25s, transform .15s;
}
.hero__btn:hover {
	background: #e0225e;
	transform: scale(1.03);
}
.hero__btn:active {
	transform: scale(.98);
}

/* ---- Promo circle — Liquid Glass (pure CSS) ---- */
.hero__circle {
	width: 160px;
    height: 160px;
    min-width: 160px;
    border-radius: 50%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: -40px;

	/* Glass foundation */
	background: rgb(255 255 255 / 2%);
    backdrop-filter: blur(4px) saturate(110%);
	-webkit-backdrop-filter: blur(2px) saturate(180%);
	border: 1px solid rgb(255 255 255 / 11%);
    box-shadow: 0 8px 32px rgb(31 38 135 / 20%), inset 0 4px 20px rgb(255 255 255 / 9%);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

/* Liquid shine layer */
.hero__circle::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.08);
	backdrop-filter: blur(1px);
	-webkit-backdrop-filter: blur(1px);
	box-shadow:
		inset -10px -8px 0px -11px rgba(255, 255, 255, 1),
		inset 0px -9px 0px -8px rgba(255, 255, 255, 1);
	opacity: 0.6;
	z-index: 0;
	filter: blur(1px) drop-shadow(10px 4px 6px rgba(0,0,0,0.3)) brightness(115%);
	pointer-events: none;
}

.hero__circle:hover {
	transform: scale(1.05);
	box-shadow:
		0 12px 40px rgba(31, 38, 135, 0.35),
		inset 0 4px 24px rgba(255, 255, 255, 0.3);
}

.hero__circle-text {
	font-size: 16px;
	font-weight: 400;
	line-height: 1.4;
	color: #fff;
	padding: 16px;
	position: relative;
	z-index: 1;
	text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}


/* ===== Бегущая строка (ticker) ===== */
.hero__ticker {
	--gap: 2rem;
	--duration: 40s;
	width: 100%;
	position: relative;
	z-index: 2;
	margin-top: auto;
	-webkit-transform: translateZ(0);
	transform: translateZ(0);
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	margin-bottom: 20px;
    opacity: 50%;
}

.hero__ticker .ticker__track {
	display: flex;
	width: max-content;
	will-change: transform;
	animation: ticker-move var(--duration) linear infinite;
	gap: 0;
	background: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

.hero__ticker .ticker__content {
	display: inline-flex;
	align-items: center;
	gap: var(--gap);
	list-style: none;
	margin: 0;
	padding: 12px 20px;
	width: max-content;
	flex: 0 0 auto;
}

.hero__ticker .ticker__item {
	display: inline-flex;
	align-items: center;
	white-space: nowrap;
	letter-spacing: .2px;
	color: #fff;
}
.hero__ticker .ticker__item i { margin-right: .5rem; }

.hero__ticker .ticker__item a {
	color: #fff;
	text-decoration: none;
}
.hero__ticker .ticker__item a:hover {
	opacity: 0.85;
}

.hero__ticker .ticker__sep {
	list-style: none;
	color: rgba(255,255,255,.5);
	font-size: 14px;
	user-select: none;
}

@keyframes ticker-move {
	0%   { transform: translateX(calc(-1 * var(--shift, 0px))); }
	100% { transform: translateX(calc(-2 * var(--shift, 0px))); }
}

@media (prefers-reduced-motion: reduce) {
	.hero__ticker .ticker__track { animation: none; }
}


/* ===== Responsive ===== */
@media (min-width: 992px) {
	.hero { padding: 40px 64px 0; }
}

@media (max-width: 991px) {
	.hero { padding: 40px 32px 0; min-height: 440px; }
	.hero__heading { font-size: 36px; }
	.hero__price { font-size: 54px; }
	.hero__circle { width: 160px; height: 160px; min-width: 160px; }
	.hero__circle-text { font-size: 14px; }
}

@media (max-width: 767px) {
	.hero {
		padding: 28px 20px 0;
		min-height: 400px;
		background-position: center right -80px;
	}
	.hero__subtitle { font-size: 16px; margin-bottom: 20px; }
	.hero__main-row { gap: 20px; flex-wrap: wrap; }
	.hero__heading { font-size: 28px; }
	.hero__price { font-size: 44px; }
	.hero__badge { font-size: 11px; padding: 4px 12px; margin-bottom: 16px; }
	.hero__btn { font-size: 14px; padding: 12px 28px; }
	.hero__circle { width: 140px; height: 140px; min-width: 140px; }
	.hero__circle-text { font-size: 13px; padding: 12px; }

	.hero__ticker { --gap: 1.5rem; --duration: 30s; }
	.hero__ticker .ticker__content { padding: 8px 20px; }
}

@media (max-width: 480px) {
	.hero {
		padding: 20px 16px 0;
		min-height: 360px;
		background-position: center right -120px;
	}
	.hero__subtitle { font-size: 14px; margin-bottom: 40px; }
	.hero__heading { font-size: 22px; }
	.hero__price { font-size: 34px; }
	.hero__btn { font-size: 12px; padding: 10px 22px; letter-spacing: 1px; }
	.hero__circle { width: 110px; height: 110px; min-width: 110px; margin-top: 0; }
	.hero__circle-text { font-size: 11px; padding: 10px; }

	.hero__ticker { --gap: 1rem; --duration: 25s; }
	.hero__ticker .ticker__content { padding: 6px 15px; }
	.hero__ticker .ticker__item { font-size: 14px; }
}