body.has-hero-header .page_content {
	margin-top: 0;
	margin-bottom: 0;
}

.hero_header {
	background-color: var(--light-blue);
	padding: 60px 0 80px;
}

.hero_header_rating {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 16px;
	padding: 0 15px;
	min-height: 40px;
	font-size: 14px;
	line-height: 20px;
	background-color: #fff;
	border-radius: 16px;
	box-shadow: 0px 1px 2px -1px #0000001A, 0px 1px 3px 0px #0000001A;
}

.hero_header_rating_stars {
	display: flex;
	align-items: center;
	gap: 2px;
}

.hero_header_rating_stars svg {
	width: 16px;
	height: 24px;
	flex-shrink: 0;
}

.hero_header_rating_text {
	font-weight: normal;
}

.hero_header_top {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
	align-items: start;
}

.hero_header_title {
	margin: 0 0 32px;
	font-size: 60px;
	line-height: 66px;
	font-weight: 500;
}

.hero_header_title em {
	font-style: normal;
	color: var(--blue);
}

.hero_header .nbtn.g_ {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background-color: var(--blue);
	color: #fff;
	font-size: 20px;
	line-height: 28px;
	font-weight: 700;
	min-width: 326px;
	min-height: 54px;
	text-align: center;
	box-shadow: 0px 4px 6px -4px #0000001A, 0px 10px 15px -3px #0000001A;
}

.hero_header .nbtn.g_:hover {
	background-color: var(--blue);
	color: #fff;
	opacity: 0.9;
	box-shadow: 0px 4px 6px -4px #0000001A, 0px 10px 15px -3px #0000001A;
}

.hero_header_subtitle {
	font-size: 18px;
	line-height: 28px;
	margin-bottom: 38px;
}

.hero_header_cta_wrapper {
	display: inline-flex;
	flex-direction: column;
	align-items: center;
}

.hero_header_cta_links {
	display: flex;
	flex-direction: row;
	align-items: flex-start;
	gap: 32px;
}

.hero_header_cta_primary {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.hero_header_secondary_link {
	color: var(--blue);
	font-weight: 700;
	text-decoration: underline;
}

.hero_header_secondary_link:hover {
	text-decoration-thickness: 2px;
}

.hero_header_below_button_text {
	margin-top: 12px;
	font-size: 12px;
	line-height: 20px;
	font-weight: 700;
	text-align: center;
}

.hero_header_right {
	text-align: right;
}

.hero_header_image {
	max-width: 100%;
	height: auto;
	width: 100% !important;
}

/* Mobile-only: hidden on desktop */
.hero_header_image_mobile_wrapper,
.hero_header_quote_mobile {
	display: none;
}

.hero_header_usps {
	margin-top: 60px;
	padding: 34px 0 0;
	list-style: none;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 16px 20px;
	border-top: 1px solid #E5E7EB;
}

.hero_header_usp {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 7px;
}

.hero_header_usp_icon {
	display: flex;
	justify-content: center;
}

.hero_header_usp_icon img {
	max-width: 32px;
	height: auto;
}

.hero_header_usp_title {
	font-size: 14px;
	line-height: 20px;
}

.hero_header_usp_title em {
	font-style: normal;
	font-weight: 700;
}

@media (min-width: 768px) {
	.hero_header_secondary_link {
		margin-top: 15px;
	}
}

@media (max-width: 1199px) {
	.hero_header_title {
		font-size: 40px;
		line-height: 1.2;
	}
}

@media (max-width: 991px) {
	.hero_header_title {
		font-size: 32px;
	}
}

@media only screen and (max-width: 767px) {
	.hero_header_top {
		grid-template-columns: 1fr;
	}

	/* Mobiele volgorde: 1 rating, 2 titel, 3 ondertitel, 4 image, 5 CTA, 6 tekst onder CTA, 7 USPs, 8 quote */
	.hero_header_left {
		display: flex;
		flex-direction: column;
	}

	.hero_header_rating {
		order: 1;
		font-size: 12px;
	}

	.hero_header_title {
		order: 2;
		margin: 0 0 20px;
	}

	.hero_header_subtitle {
		order: 3;
		font-size: 12px;
		line-height: 18px;
	}

	.hero_header_image_mobile_wrapper {
		order: 4;
		display: block;
		position: relative;
		margin-bottom: 0;
		/* Full width: compenseer container padding (30px per zijde) */
		margin-left: -30px;
		margin-right: -30px;
		width: calc(100% + 60px);
		overflow: hidden;
	}

	/* Gradient overlay: achtergrondkleur → image → achtergrondkleur (boven en onder) */
	.hero_header_image_mobile_wrapper::after {
		content: "";
		position: absolute;
		inset: 0;
		background: linear-gradient(
		180deg,
		var(--light-blue) 0%,
		rgba(240, 252, 253, 0) 15%,
		rgba(240, 252, 253, 0) 85%,
		var(--light-blue) 100%
		);
		pointer-events: none;
	}

	.hero_header_cta_wrapper {
		order: 5;
		/* Overlap onderkant mobiele image */
		margin-top: -35px;
		position: relative;
		z-index: 1;
	}

	.hero_header_cta_links {
		flex-direction: column;
		gap: 16px;
	}

	.hero_header_secondary_link {
		text-align: center;
		margin: auto;
	}

	.hero_header .nbtn.g_ {
		font-size: 20px !important;
		line-height: 28px;
	}

	.hero_header_below_button_text {
		font-size: 14px;
		line-height: 20px;
	}

	.hero_header_usps {
		order: 7;
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 2px;
		border-top: none;
		margin-top: 30px;
		margin-top: 0;
	}

	.hero_header_usp_title {
		font-size: 10px;
		line-height: 20px;
	}

	.hero_header_quote_mobile {
		order: 8;
		display: block;
		margin-top: 30px;
	}

	.hero_header_quote_mobile_image {
		max-width: 100%;
		height: auto;
	}

	/* Desktop image verbergen op mobiel */
	.hero_header_right {
		display: none;
	}

	.hero_header {
		padding: 20px 0;
	}
}
