.fl-hero-header {
	--hero-badge-background: #ffcc00;
	--hero-badge-color: #213d77;
	width: 100vw;
	position: relative;
	overflow: visible;
	margin-left: calc(-50vw + 50%);
	margin-right: calc(-50vw + 50%);
}

.hero-header-container {
	position: relative;
	width: 100%;
	height: 350px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #f5f7fa;
	border-radius: 0 0 0 75px;
	overflow: hidden;
}

.hero-header-container.homepage-type {
	height: 100vh;
	border-radius: 0;
}

.hero-background-image {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}

.hero-background-image img {
	width: 100%;
	height: 100%;
	object-position: center;
}

.hero-placeholder {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #f5f7fa;
	color: #666;
}

.hero-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.3);
	z-index: 2;
}

.hero-content {
	position: relative;
	z-index: 3;
	max-width: 1200px;
	width: 100%;
	padding: 0 40px;
}

.hero-headline {
	font-family: "Aktiv Grotesk", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
	font-size: clamp(32px, 4vw + 1rem, 64px) !important;
	font-style: normal;
	font-weight: 400;
	line-height: 1.1;
	margin: 0;
	color: #ffffff;
	text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.homepage-type .hero-headline {
	font-size: clamp(2rem, 3.5vw + 1rem, 4rem);
	text-align: center;
}

.hero-badge {
	--hero-badge-base-font-size: 38;
	--hero-badge-min-font-size: 16;
	--hero-badge-text-width-ratio: 0.68;
	--hero-badge-text-height-ratio: 0.58;
	position: absolute;
	right: clamp(1rem, 7vw, 10.5rem);
	bottom: 0;
	z-index: 4;
	display: flex;
	width: 204.194px;
	height: 204.194px;
	padding: 10px;
	box-sizing: border-box;
	justify-content: center;
	align-items: center;
	gap: 10px;
	border-radius: 500px;
	background: var(--hero-badge-background);
	box-shadow: 0 18px 34px rgba(0, 0, 0, 0.16);
	color: var(--hero-badge-color);
	text-align: center;
	transform: translateY(38%) rotate(-7.059deg);
}

.hero-badge-text {
	display: block;
	font-family: "Aktiv Grotesk Corp", "Aktiv Grotesk", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
	font-size: calc(var(--hero-badge-base-font-size) * 1px);
	font-style: normal;
	font-weight: 700;
	line-height: 1.07895;
	text-align: center;
	overflow-wrap: anywhere;
	word-break: break-word;
	hyphens: auto;
	text-wrap: balance;
}

@media (max-width: 1200px) {
	.hero-content {
		padding: 0 30px;
	}

	.hero-badge {
		right: clamp(1rem, 4vw, 4rem);
	}
}

@media (max-width: 992px) {
	.hero-content {
		padding: 0 25px;
	}

	.hero-badge {
		width: 180px;
		height: 180px;
	}
}

@media (max-width: 768px) {
	.fl-hero-header {
		margin-top: -120px;
	}

	.hero-header-container {
		margin-top: 0;
		padding-top: 120px;
		border-radius: 0 0 0 50px;
	}

	.hero-content {
		padding: 0 20px;
	}

	.hero-badge {
		right: clamp(0.75rem, 4vw, 2rem);
		width: 154px;
		height: 154px;
		padding: 10px;
		transform: translateY(42%) rotate(-7.059deg);
	}
}

@media (max-width: 576px) {
	.fl-hero-header {
		margin-top: -100px;
	}

	.hero-header-container {
		margin-top: 0;
		padding-top: 100px;
		border-radius: 0 0 0 30px;
	}

	.hero-content {
		padding: 0 15px;
	}

	.hero-badge {
		right: 0.85rem;
		width: 132px;
		height: 132px;
		padding: 8px;
		transform: translateY(45%) rotate(-7.059deg);
	}
}
