.zeltix-site .zeltix-hero {
	position: relative;
	width: 100vw;
	max-width: 100vw;
	margin-left: calc(50% - 50vw);
	display: flex;
	flex-direction: column;
	overflow: hidden;
	background-color: var(--zeltix-bg, #f5f7fb);
}

.zeltix-site .zeltix-hero__media {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 50%;
	right: max(0px, calc(50% - var(--zeltix-container, 1280px) / 2));
	background-repeat: no-repeat;
	background-position: center right;
	background-size: contain;
	pointer-events: none;
	z-index: 0;
}

.zeltix-site .zeltix-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 1;
	background:
		radial-gradient(640px 420px at 72% 28%, rgba(47, 120, 239, 0.10), transparent 70%),
		radial-gradient(520px 360px at 90% 82%, rgba(99, 160, 255, 0.08), transparent 70%);
	pointer-events: none;
}

.zeltix-site .zeltix-hero::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 2;
	background: linear-gradient(90deg,
		var(--zeltix-bg, #f5f7fb) 0%,
		rgba(245, 247, 251, 0.96) 34%,
		rgba(245, 247, 251, 0.55) 52%,
		transparent 68%);
	pointer-events: none;
}

.zeltix-site .zeltix-hero__layout,
.zeltix-site .zeltix-hero__footer {
	width: min(calc(100% - 20px), var(--zeltix-container, 1280px));
	margin-inline: auto;
	position: relative;
	z-index: 3;
}

.zeltix-site .zeltix-hero__layout {
	display: flex;
	align-items: center;
	min-height: clamp(520px, 60vh, 640px);
	padding-top: clamp(48px, 7vw, 88px);
	padding-bottom: clamp(20px, 2.5vw, 32px);
}

.zeltix-site .zeltix-hero__content {
	max-width: 560px;
}

.zeltix-site .zeltix-hero__badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin: 0 0 24px;
	padding: 8px 16px;
	border: 1px solid rgba(47, 120, 239, 0.16);
	border-radius: 999px;
	background: linear-gradient(180deg, rgba(47, 120, 239, 0.08), rgba(47, 120, 239, 0.05));
	color: var(--zeltix-blue, #2f78ef);
	font-size: 14px;
	font-weight: 600;
	line-height: 1;
	letter-spacing: 0.01em;
}

.zeltix-site .zeltix-hero__badge svg {
	flex-shrink: 0;
}

.zeltix-site .zeltix-hero__title {
	margin: 0 0 24px;
	font-family: inherit;
	font-size: clamp(40px, 5.2vw, 64px);
	font-weight: 800;
	line-height: 1.08;
	letter-spacing: -0.025em;
	color: var(--zeltix-text, #090e1f);
}

.zeltix-site .zeltix-hero__accent {
	background: linear-gradient(92deg, var(--zeltix-blue, #2f78ef) 0%, #4d8bff 100%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	color: var(--zeltix-blue, #2f78ef);
}

.zeltix-site .zeltix-hero__lead {
	margin: 0 0 36px;
	max-width: 520px;
	font-size: clamp(16px, 1.4vw, 18px);
	line-height: 1.65;
	color: var(--zeltix-muted, #5f6778);
}

.zeltix-site .zeltix-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
}

.zeltix-site .zeltix-hero .zeltix-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 15px 28px;
	border: 1px solid transparent;
	border-radius: 12px;
	font-family: inherit;
	font-size: 16px;
	font-weight: 600;
	line-height: 1;
	text-decoration: none;
	white-space: nowrap;
	cursor: pointer;
	transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.zeltix-site .zeltix-hero .zeltix-btn svg {
	flex-shrink: 0;
	transition: transform 0.2s ease;
}

.zeltix-site .zeltix-hero .zeltix-btn--primary {
	background: linear-gradient(180deg, #3b82f6 0%, var(--zeltix-blue-dark, #1768df) 100%);
	color: #ffffff;
	box-shadow: 0 10px 24px -10px rgba(23, 104, 223, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.zeltix-site .zeltix-hero .zeltix-btn--primary:hover {
	transform: translateY(-1px);
	box-shadow: 0 14px 30px -10px rgba(23, 104, 223, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.18);
	color: #ffffff;
}

.zeltix-site .zeltix-hero .zeltix-btn--primary:hover svg {
	transform: translateX(3px);
}

.zeltix-site .zeltix-hero .zeltix-btn--outline {
	background: rgba(255, 255, 255, 0.85);
	border-color: #e3e8f2;
	color: var(--zeltix-text, #090e1f);
	box-shadow: 0 6px 18px -10px rgba(15, 30, 70, 0.18);
	backdrop-filter: blur(6px);
}

.zeltix-site .zeltix-hero .zeltix-btn--outline svg {
	color: var(--zeltix-blue, #2f78ef);
}

.zeltix-site .zeltix-hero .zeltix-btn--outline:hover {
	transform: translateY(-1px);
	border-color: rgba(47, 120, 239, 0.35);
	box-shadow: 0 10px 24px -10px rgba(15, 30, 70, 0.22);
	color: var(--zeltix-text, #090e1f);
}

.zeltix-site .zeltix-hero .zeltix-btn:focus-visible {
	outline: 2px solid var(--zeltix-blue, #2f78ef);
	outline-offset: 3px;
}

.zeltix-site .zeltix-hero__footer {
	padding-bottom: clamp(40px, 5vw, 64px);
}

.zeltix-site .zeltix-hero__stats {
	display: flex;
	flex-wrap: wrap;
	gap: 18px 36px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.zeltix-site .zeltix-hero__stat {
	display: flex;
	align-items: center;
	gap: 12px;
	margin: 0;
	padding: 0;
	flex: 0 0 auto;
}

.zeltix-site .zeltix-hero__stat-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 46px;
	height: 46px;
	flex-shrink: 0;
	border-radius: 12px;
	background: linear-gradient(180deg, #eef4ff 0%, #e6efff 100%);
	box-shadow: inset 0 0 0 1px rgba(47, 120, 239, 0.10);
	color: var(--zeltix-blue, #2f78ef);
}

.zeltix-site .zeltix-hero__stat-meta {
	display: flex;
	flex-direction: column;
	gap: 2px;
	min-width: 0;
}

.zeltix-site .zeltix-hero__stat-value {
	font-size: 20px;
	font-weight: 800;
	line-height: 1.2;
	letter-spacing: -0.01em;
	color: var(--zeltix-text, #090e1f);
}

.zeltix-site .zeltix-hero__stat-label {
	font-size: 14px;
	line-height: 1.35;
	color: var(--zeltix-muted, #5f6778);
}

/* --- Адаптация --- */

@media (max-width: 1180px) {
	.zeltix-site .zeltix-hero__media {
		left: 54%;
	}
}

@media (max-width: 1023px) {
	.zeltix-site .zeltix-hero__media {
		position: static;
		order: 2;
		width: min(100%, 680px);
		margin: 4px auto 0;
		right: auto;
		aspect-ratio: 16 / 11;
		background-position: center;
	}

	.zeltix-site .zeltix-hero::after {
		background: linear-gradient(180deg,
			var(--zeltix-bg, #f5f7fb) 0%,
			rgba(245, 247, 251, 0.7) 55%,
			transparent 100%);
	}

	.zeltix-site .zeltix-hero__layout {
		order: 1;
		min-height: 0;
		padding-top: clamp(32px, 6vw, 48px);
		padding-bottom: 0;
	}

	.zeltix-site .zeltix-hero__footer {
		order: 3;
		padding-top: clamp(24px, 5vw, 40px);
	}

	.zeltix-site .zeltix-hero__content {
		max-width: 640px;
	}

	.zeltix-site .zeltix-hero__stats {
		max-width: none;
		gap: 18px 32px;
	}
}

/* Компактная мобильная версия */
@media (max-width: 600px) {
	.zeltix-site .zeltix-hero__badge {
		padding: 6px 12px;
		font-size: 12px;
		margin-bottom: 16px;
	}

	.zeltix-site .zeltix-hero__title {
		font-size: clamp(28px, 8vw, 36px);
		margin-bottom: 16px;
	}

	.zeltix-site .zeltix-hero__lead {
		font-size: 14px;
		margin-bottom: 24px;
		line-height: 1.5;
	}

	.zeltix-site .zeltix-hero__actions {
		flex-direction: column;
		align-items: stretch;
		gap: 12px;
	}

	.zeltix-site .zeltix-hero .zeltix-btn {
		width: 100%;
		padding: 12px 20px;
		font-size: 15px;
	}
    
    .zeltix-site .zeltix-hero .zeltix-btn svg {
        width: 16px;
        height: 16px;
    }

	.zeltix-site .zeltix-hero__media {
		aspect-ratio: 16 / 9;
		margin-top: 0;
	}

	.zeltix-site .zeltix-hero__footer {
        padding-bottom: 32px;
    }

	.zeltix-site .zeltix-hero__stats {
		gap: 16px 12px; /* Уменьшенное расстояние между элементами статистики */
	}

	.zeltix-site .zeltix-hero__stat {
		flex: 1 1 calc(50% - 12px); /* Аккуратная сетка в 2 колонки */
		min-width: 0;
		gap: 10px;
	}

	.zeltix-site .zeltix-hero__stat-icon {
		width: 38px;
		height: 38px;
        border-radius: 10px;
	}

    .zeltix-site .zeltix-hero__stat-icon svg {
        width: 18px;
        height: 18px;
    }

	.zeltix-site .zeltix-hero__stat-value {
		font-size: 17px;
	}

	.zeltix-site .zeltix-hero__stat-label {
		font-size: 12px;
	}
}

/* Самые маленькие экраны */
@media (max-width: 380px) {
	.zeltix-site .zeltix-hero__stats {
		/* Оставляем 2 колонки, но делаем их максимально компактными */
		gap: 12px 8px;
	}

	.zeltix-site .zeltix-hero__stat {
		flex: 1 1 calc(50% - 8px);
        gap: 8px;
	}

    .zeltix-site .zeltix-hero__stat-icon {
        width: 32px;
        height: 32px;
    }
    
    .zeltix-site .zeltix-hero__stat-icon svg {
        width: 16px;
        height: 16px;
    }

    .zeltix-site .zeltix-hero__stat-value {
		font-size: 15px;
	}

	.zeltix-site .zeltix-hero__stat-label {
		font-size: 11px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.zeltix-site .zeltix-hero .zeltix-btn,
	.zeltix-site .zeltix-hero .zeltix-btn svg {
		transition: none;
	}
}