.zfs-hero {
	position: relative;
	height: 480px;
	min-height: 200px;
	overflow: hidden;
	color: #fff;
	background: #0a0a0f;
	display: flex;
	align-items: center;
	justify-content: flex-start;
}

.zfs-hero__bg-layer {
	position: absolute;
	inset: 0;
}

.zfs-hero__bg {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	opacity: 0;
	will-change: transform, opacity;
}

.zfs-hero__bg.is-active {
	opacity: 1;
}

.zfs-hero__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(10, 10, 15, 0.55) 0%, rgba(10, 10, 15, 0.05) 70%);
	pointer-events: none;
}

.zfs-hero__content {
	position: relative;
	z-index: 2;
	width: 45%;
	max-width: 45%;
	padding: 0 0 0 5%;
	display: flex;
	flex-direction: column;
	text-align: left;
	transition: opacity 0.3s ease, transform 0.3s ease;
}

.zfs-hero--anim-up .zfs-hero__content.is-changing {
	opacity: 0;
	transform: translateY(24px);
}

.zfs-hero--anim-down .zfs-hero__content.is-changing {
	opacity: 0;
	transform: translateY(-24px);
}

.zfs-hero--anim-fade .zfs-hero__content.is-changing {
	opacity: 0;
}

.zfs-hero__title {
	margin: 0 0 16px;
	font-size: 2.5rem;
	font-weight: 800;
	line-height: 1.1;
}

.zfs-hero__desc {
	margin: 0 0 16px;
	font-size: 1.05rem;
	line-height: 1.5;
	opacity: 0.92;
}

.zfs-hero__button {
	display: inline-block;
	align-self: flex-start;
	padding: 14px 28px;
	border-radius: 999px;
	background: var(--zfs-hero-accent, #f0919c);
	color: #241318;
	font-weight: 700;
	text-decoration: none;
	transition: filter 0.15s ease;
}

.zfs-hero--btn-sm .zfs-hero__button {
	padding: 10px 22px;
	font-size: 0.9rem;
}

.zfs-hero--btn-md .zfs-hero__button {
	padding: 14px 28px;
	font-size: 1rem;
}

.zfs-hero--btn-lg .zfs-hero__button {
	padding: 18px 36px;
	font-size: 1.15rem;
}

.zfs-hero__button:hover {
	filter: brightness(0.95);
}

.zfs-hero__arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 3;
	width: 44px;
	height: 44px;
	border: none;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.12);
	color: #fff;
	font-size: 1.5rem;
	line-height: 1;
	cursor: pointer;
}

.zfs-hero__arrow:hover {
	background: rgba(255, 255, 255, 0.22);
}

.zfs-hero__arrow:focus,
.zfs-hero__arrow:focus-visible {
	outline: none;
	box-shadow: none;
}

.zfs-hero__arrow--prev {
	left: 20px;
}

.zfs-hero__arrow--next {
	right: 20px;
}

.zfs-hero--arrows-outside {
	overflow: visible;
}

.zfs-hero--arrows-outside .zfs-hero__arrow--prev {
	left: -22px;
}

.zfs-hero--arrows-outside .zfs-hero__arrow--next {
	right: -22px;
}

.zfs-hero__dots {
	position: absolute;
	z-index: 3;
	left: 0;
	right: 0;
	bottom: 20px;
	display: flex;
	justify-content: center;
	gap: 10px;
}

.zfs-hero--dots-outside {
	overflow: visible;
}

.zfs-hero--dots-outside .zfs-hero__dots {
	position: static;
	margin-top: 16px;
}

.zfs-hero__dot {
	width: 9px;
	height: 9px;
	padding: 0;
	border: none;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.45);
	cursor: pointer;
}

.zfs-hero__dot.is-active {
	background: var(--zfs-hero-accent, #f0919c);
}

.zfs-hero__dot:focus,
.zfs-hero__dot:focus-visible {
	outline: none;
	box-shadow: none;
}

@media (max-width: 767px) {
	.zfs-hero__content {
		width: 100%;
		max-width: 100%;
		padding: 0 28px;
	}

	.zfs-hero__title {
		font-size: 1.8rem;
	}
}
