/* =========================================================
   Zorg op Weg — style.css
   Eén stylesheet, geen framework. Zelfde ontwerptaal als het
   eerder gemaakte WordPress-theme (turquoise/navy, warme
   witruimte, zachte schaduwen, afgeronde hoeken) — nu
   uitgebreid met alle onderdelen die een volledige meerpagina-
   site nodig heeft: paginakoppen, prijskaarten, FAQ, formulieren.

   Lettertypes: bewust GEEN Google Fonts (niets wordt extern van
   Google geladen — zie de opdracht). In plaats daarvan een
   robuuste system-font-stack: laadt altijd meteen, geen extra
   requests of cookies, en oogt op elk apparaat vertrouwd.
   ========================================================= */

:root {
	--font: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;

	--teal: #74d6c9;
	--teal-soft: #dcf3ef;
	--teal-dark: #3e8e86;
	--teal-deep: #2e6b65;
	--navy: #1c4f5e;
	--navy-deep: #123844;
	--ink: #293338;
	--ink-soft: #5b676c;
	--bg: #ffffff;
	--bg-soft: #f5fbfa;
	--bg-warm: #fbfaf6;
	--border: #dfe7e6;
	--red: #b3452f;
	--red-soft: #fbeae5;

	--radius: 18px;
	--radius-sm: 10px;
	--shadow: 0 24px 48px -18px rgba(18, 56, 68, 0.28);
	--shadow-soft: 0 12px 28px -14px rgba(18, 56, 68, 0.22);

	--wrap-width: 1180px;
	--wrap-narrow-width: 760px;
	--wrap-breed-width: 980px;
}

/* ---------- Reset ---------- */
*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	-webkit-text-size-adjust: 100%;
}

@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
		scroll-behavior: auto !important;
	}
}

body {
	margin: 0;
	font-family: var(--font);
	color: var(--ink);
	background: var(--bg);
	line-height: 1.65;
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}

img {
	max-width: 100%;
	display: block;
	height: auto;
}

a {
	color: var(--teal-deep);
	text-decoration: underline;
	text-decoration-color: rgba(46, 107, 101, 0.35);
	text-underline-offset: 2px;
}

a:hover {
	color: var(--navy);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
.menu-toggle:focus-visible,
summary:focus-visible {
	outline: 3px solid var(--teal-dark);
	outline-offset: 2px;
	border-radius: 4px;
}

h1,
h2,
h3,
h4 {
	font-family: var(--font);
	font-weight: 700;
	color: var(--navy);
	line-height: 1.25;
	margin: 0 0 16px;
}

h1 {
	font-size: clamp(28px, 4vw, 44px);
}

h2 {
	font-size: clamp(24px, 3vw, 33px);
}

h3 {
	font-size: 19px;
}

p {
	margin: 0 0 16px;
}

ul,
ol {
	padding-left: 22px;
}

li {
	margin-bottom: 6px;
}

.skip-link {
	position: absolute;
	left: -9999px;
	top: 0;
	background: var(--navy);
	color: #fff;
	padding: 10px 16px;
	z-index: 1000;
	text-decoration: none;
}

.skip-link:focus {
	left: 12px;
	top: 12px;
}

.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(1px, 1px, 1px, 1px);
}

/* ---------- Layout helpers ---------- */
.wrap {
	max-width: var(--wrap-width);
	margin: 0 auto;
	padding: 0 24px;
}

.wrap-narrow {
	max-width: var(--wrap-narrow-width);
}

.wrap-breed {
	max-width: var(--wrap-breed-width);
}

.section {
	padding: 72px 0;
	position: relative;
}

.section-tight {
	padding: 44px 0;
}

.section-heading {
	max-width: 680px;
	margin: 0 auto 40px;
	text-align: center;
}

.section-heading.align-left {
	margin-left: 0;
	text-align: left;
}

.eyebrow {
	display: inline-block;
	font-size: 12.5px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--teal-deep);
	background: var(--teal-soft);
	padding: 5px 12px;
	border-radius: 999px;
	margin-bottom: 16px;
}

.lede {
	font-size: 17px;
	color: var(--ink-soft);
	max-width: 640px;
}

.center {
	text-align: center;
	margin-left: auto;
	margin-right: auto;
}

/* ---------- Buttons ---------- */
.btn {
	display: inline-block;
	padding: 14px 28px;
	font-family: var(--font);
	font-weight: 700;
	font-size: 14.5px;
	border: 1.5px solid transparent;
	border-radius: 999px;
	cursor: pointer;
	text-decoration: none;
	transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn-teal {
	background: var(--teal);
	color: var(--navy-deep);
	box-shadow: 0 12px 24px -10px rgba(62, 142, 134, 0.55);
}

.btn-teal:hover {
	background: var(--teal-dark);
	color: #fff;
	transform: translateY(-1px);
}

.btn-outline {
	background: transparent;
	border-color: var(--navy);
	color: var(--navy);
}

.btn-outline:hover {
	background: var(--navy);
	color: #fff;
	transform: translateY(-1px);
}

.btn-navy {
	background: var(--navy);
	color: #fff;
}

.btn-navy:hover {
	background: var(--navy-deep);
	transform: translateY(-1px);
}

.btn-sm {
	padding: 10px 20px;
	font-size: 13px;
}

.btn-block {
	display: block;
	text-align: center;
}

.btn-row {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	align-items: center;
}

.link-arrow {
	display: inline-block;
	margin-top: 20px;
	font-weight: 700;
	color: var(--navy);
	text-decoration: none;
	border-bottom: 1.5px solid var(--teal);
	padding-bottom: 2px;
}

.link-arrow::after {
	content: '→';
	margin-left: 6px;
	transition: margin-left 0.15s ease;
}

.link-arrow:hover::after {
	margin-left: 10px;
}

/* ---------- Topbar ---------- */
.topbar {
	background: var(--teal);
}

.topbar-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 9px 24px;
	gap: 12px;
	flex-wrap: wrap;
}

.topbar-tagline,
.topbar-link {
	font-size: 12.5px;
	font-weight: 700;
	letter-spacing: 0.03em;
	color: var(--navy-deep);
	text-decoration: none;
}

.topbar-link {
	opacity: 0.85;
	text-decoration: underline;
}

.topbar-link:hover {
	opacity: 1;
	color: var(--navy-deep);
}

/* ---------- Header ---------- */
.site-header {
	background: #fff;
	position: relative;
	z-index: 40;
}

.site-header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	padding: 18px 24px;
	position: relative;
}

.brand {
	display: block;
	flex: none;
}

.brand-logo {
	height: 68px;
	width: auto;
}

.header-nav-area {
	display: flex;
	align-items: center;
	gap: 28px;
	flex: 1;
	justify-content: flex-end;
}

.primary-nav-list {
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	gap: 6px 20px;
	margin: 0;
	padding: 0;
}

.primary-nav-list a {
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.02em;
	color: var(--ink);
	padding: 6px 0;
	border-bottom: 2px solid transparent;
	text-decoration: none;
}

.primary-nav-list a:hover,
.primary-nav-list a.is-active {
	color: var(--teal-dark);
	border-bottom-color: var(--teal);
}

.header-cta {
	flex: none;
}

/* Mobiel menu: CSS-only via een verborgen checkbox, werkt zonder JS. */
.nav-toggle-checkbox {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}

.menu-toggle {
	display: none;
	background: none;
	border: none;
	cursor: pointer;
	padding: 8px;
}

.menu-toggle-bar {
	display: block;
	width: 24px;
	height: 2px;
	background: var(--navy);
	margin: 5px 0;
}

/* ---------- CTA strip ---------- */
.cta-strip {
	background: var(--navy);
	padding: 11px 0;
	text-align: center;
}

.cta-strip span {
	color: #fff;
	font-weight: 600;
	font-size: 13.5px;
	letter-spacing: 0.01em;
}

.cta-strip-link {
	color: #fff;
	text-decoration: underline;
	text-underline-offset: 2px;
	font-weight: 700;
	white-space: nowrap;
}

.cta-strip-link:hover {
	color: var(--teal-soft);
}

/* =========================================================
   Hero (homepage) — grote foto met tekstkaart die er gedeeltelijk
   overheen ligt. De kaart wordt met flexbox tegen de rechter-onderhoek
   van de foto "verankerd" (i.p.v. met een vaste negatieve margin), zodat
   de kaart nooit een leeg wit vlak naast zich overlaat: hij groeit bij
   meer tekst omhoog de foto in, in plaats van verder naar beneden weg
   te steken.
   ========================================================= */
.section-hero {
	/* Bodem-padding = kaartoverlap (48px, zie .hero-card transform) +
	   een kleine marge, zodat de kaart nooit over de volgende sectie
	   heen valt maar er ook geen groot leeg vlak ontstaat. */
	padding: 0 0 72px;
	position: relative;
}

.hero-media {
	position: relative;
	width: 100%;
	height: min(540px, 62vh);
	min-height: 460px;
}

.hero-photo-wrap {
	position: absolute;
	inset: 0;
	overflow: hidden;
}

.hero-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hero-photo-wrap::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(18, 56, 68, 0.12) 0%, rgba(18, 56, 68, 0) 35%, rgba(18, 56, 68, 0.08) 100%);
}

.hero-card-anchor {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: flex-end;
	justify-content: flex-end;
	pointer-events: none;
}

.hero-card {
	position: relative;
	pointer-events: auto;
	z-index: 5;
	width: min(520px, 100%);
	/* Vaste, kleine overlap onder de foto — "grounded", geen leeg vlak. */
	transform: translateY(48px);
	background: #fff;
	border-radius: var(--radius);
	box-shadow: var(--shadow);
	padding: 32px 36px;
}

/* ---------- Paginakop (binnenpagina's, geen homepage) ---------- */
.page-hero {
	background: var(--bg-warm);
	padding: 56px 0 48px;
	border-bottom: 1px solid var(--border);
}

.page-hero-inner {
	display: grid;
	grid-template-columns: 1.1fr 0.9fr;
	gap: 48px;
	align-items: center;
}

.page-hero.no-media .page-hero-inner {
	grid-template-columns: 1fr;
	max-width: var(--wrap-narrow-width);
}

.page-hero-media img {
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	border-radius: var(--radius);
	box-shadow: var(--shadow-soft);
}

.page-hero h1 {
	margin-bottom: 14px;
}

.breadcrumb {
	font-size: 12.5px;
	font-weight: 700;
	letter-spacing: 0.03em;
	text-transform: uppercase;
	color: var(--ink-soft);
	margin-bottom: 14px;
}

.breadcrumb a {
	color: var(--ink-soft);
}

/* ---------- Kaarten (generiek) ---------- */
.card-grid {
	display: grid;
	gap: 28px;
}

.card-grid.cols-2 {
	grid-template-columns: repeat(2, 1fr);
}

.card-grid.cols-3 {
	grid-template-columns: repeat(3, 1fr);
}

.card-grid.cols-4 {
	grid-template-columns: repeat(4, 1fr);
}

.card {
	background: #fff;
	border-radius: var(--radius);
	box-shadow: var(--shadow-soft);
	padding: 32px 28px;
}

.card.bordered {
	box-shadow: none;
	border: 1px solid var(--border);
}

.card-icon {
	display: inline-flex;
	width: 52px;
	height: 52px;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: var(--teal-soft);
	color: var(--teal-deep);
	margin-bottom: 18px;
}

.card-icon.lg {
	width: 62px;
	height: 62px;
	background: var(--teal);
	color: var(--navy-deep);
	box-shadow: 0 14px 26px -12px rgba(62, 142, 134, 0.6);
}

.card-icon svg {
	width: 24px;
	height: 24px;
}

.card-icon.lg svg {
	width: 26px;
	height: 26px;
}

.card h3 {
	margin-bottom: 8px;
}

.card p:last-child {
	margin-bottom: 0;
}

.card p {
	color: var(--ink-soft);
}

/* ---------- Route / werkwijze ---------- */
.route {
	position: relative;
	margin-top: 24px;
}

.route-steps {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 32px;
	position: relative;
}

.route-steps.steps-2 {
	grid-template-columns: repeat(2, 1fr);
}

.route::before {
	content: '';
	position: absolute;
	top: 21px;
	left: calc(12.5% + 21px);
	right: calc(12.5% + 21px);
	height: 2px;
	background: repeating-linear-gradient(90deg, var(--teal) 0 10px, transparent 10px 18px);
}

.route-step {
	position: relative;
	text-align: center;
	padding: 0 8px;
}

.route-nummer {
	position: relative;
	z-index: 2;
	display: inline-flex;
	width: 44px;
	height: 44px;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: var(--navy);
	color: #fff;
	font-family: var(--font);
	font-weight: 700;
	font-size: 15px;
	margin-bottom: 18px;
	box-shadow: var(--shadow-soft);
}

.route-step h3 {
	margin-bottom: 8px;
	font-size: 17px;
}

.route-step p {
	color: var(--ink-soft);
	margin: 0;
	font-size: 15px;
}

/* Uitgebreide werkwijze-stap met tekstblok (zorgadvies-aan-huis.php) */
.werkwijze-detail {
	display: grid;
	grid-template-columns: 64px 1fr;
	gap: 20px;
	padding: 28px 0;
	border-top: 1px solid var(--border);
}

.werkwijze-detail:first-of-type {
	border-top: none;
}

.werkwijze-detail .route-nummer {
	margin-bottom: 0;
}

.werkwijze-detail h3 {
	margin-bottom: 10px;
}

.werkwijze-detail ul {
	margin-top: 12px;
	color: var(--ink-soft);
}

/* ---------- Situaties / herkenning ---------- */
.situaties-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.situatie-card {
	background: #fff;
	border-radius: var(--radius);
	box-shadow: var(--shadow-soft);
	padding: 28px 26px;
	transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.situatie-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow);
}

.situatie-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	gap: 14px;
}

.situatie-list li {
	background: #fff;
	border-radius: var(--radius-sm);
	box-shadow: var(--shadow-soft);
	padding: 16px 20px;
	margin: 0;
	display: flex;
	gap: 12px;
	align-items: flex-start;
}

.situatie-list li svg {
	flex: none;
	width: 20px;
	height: 20px;
	color: var(--teal-deep);
	margin-top: 3px;
}

/* ---------- "Wat we niet doen"-lijst ---------- */
.niet-lijst {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	gap: 10px;
}

.niet-lijst li {
	display: flex;
	gap: 10px;
	align-items: flex-start;
	color: var(--ink-soft);
	margin: 0;
}

.niet-lijst svg {
	flex: none;
	width: 18px;
	height: 18px;
	color: var(--red);
	margin-top: 3px;
}

/* ---------- Info- / waarschuwingsboxen ---------- */
.info-box {
	background: var(--bg-soft);
	border-radius: var(--radius-sm);
	padding: 22px 24px;
	border-left: 4px solid var(--teal);
}

.info-box p:last-child {
	margin-bottom: 0;
}

.warning-box {
	background: var(--red-soft);
	border-radius: var(--radius-sm);
	padding: 22px 24px;
	border-left: 4px solid var(--red);
	color: var(--navy-deep);
}

.warning-box strong {
	color: var(--red);
}

.warning-box p:last-child {
	margin-bottom: 0;
}

/* ---------- Split-secties (foto + tekst) ---------- */
.split {
	display: grid;
	grid-template-columns: 1.05fr 0.95fr;
	gap: 56px;
	align-items: center;
}

.split.reverse {
	grid-template-columns: 0.95fr 1.05fr;
}

.split.reverse .split-media {
	order: 2;
}

.split-media img {
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	border-radius: var(--radius);
	box-shadow: var(--shadow);
}

.split-media.portrait img {
	aspect-ratio: 3 / 4;
}

.image-note {
	font-size: 12.5px;
	color: var(--ink-soft);
	font-style: italic;
	margin-top: 8px;
}

/* ---------- Noodboekje-sectie (donker, turquoise accent) ---------- */
.section-donker {
	background: linear-gradient(160deg, var(--navy-deep) 0%, var(--navy) 100%);
	color: #fff;
	overflow: hidden;
	position: relative;
}

.section-donker::before {
	content: '';
	position: absolute;
	top: -120px;
	right: -120px;
	width: 360px;
	height: 360px;
	border-radius: 50%;
	background: rgba(116, 214, 201, 0.16);
}

.section-donker h2,
.section-donker .eyebrow {
	color: #fff;
}

.section-donker .eyebrow {
	background: rgba(255, 255, 255, 0.14);
	color: #dff5f1;
}

.section-donker p {
	color: #d7e6e4;
}

.section-donker .btn-outline {
	border-color: #fff;
	color: #fff;
}

.section-donker .btn-outline:hover {
	background: #fff;
	color: var(--navy-deep);
}

.cover-media {
	position: relative;
	display: flex;
	justify-content: center;
}

.cover-media img {
	width: 78%;
	max-width: 320px;
	border-radius: var(--radius-sm);
	box-shadow: 0 30px 60px -14px rgba(0, 0, 0, 0.45);
	transform: rotate(-4deg);
}

/* ---------- Slot-CTA ---------- */
.section-cta {
	padding: 56px 0;
}

.section-cta-block {
	background: linear-gradient(135deg, var(--teal-dark) 0%, var(--navy) 100%);
	border-radius: var(--radius);
	padding: 64px 40px;
	text-align: center;
	position: relative;
	overflow: hidden;
}

.section-cta-block::before,
.section-cta-block::after {
	content: '';
	position: absolute;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.08);
}

.section-cta-block::before {
	width: 260px;
	height: 260px;
	top: -120px;
	left: -80px;
}

.section-cta-block::after {
	width: 180px;
	height: 180px;
	bottom: -90px;
	right: -40px;
}

.section-cta h2,
.section-cta p {
	color: #fff;
	position: relative;
}

.section-cta-inner {
	max-width: 560px;
	margin: 0 auto;
	position: relative;
}

.section-cta p {
	color: #d7e6e4;
}

/* ---------- Prijzen ---------- */
.pricing-note {
	background: var(--bg-soft);
	border-radius: var(--radius-sm);
	padding: 18px 22px;
	font-size: 14.5px;
	color: var(--ink-soft);
	margin-bottom: 40px;
}

.pricing-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
	align-items: stretch;
}

.pricing-card {
	background: #fff;
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 30px 26px;
	display: flex;
	flex-direction: column;
	position: relative;
}

.pricing-card.highlight {
	border-color: var(--teal);
	box-shadow: var(--shadow);
	transform: translateY(-8px);
}

.pricing-badge {
	position: absolute;
	top: -14px;
	left: 26px;
	background: var(--teal);
	color: var(--navy-deep);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.03em;
	text-transform: uppercase;
	padding: 6px 14px;
	border-radius: 999px;
}

.pricing-naam {
	font-family: var(--font);
	font-weight: 700;
	color: var(--navy);
	font-size: 17px;
	margin-bottom: 6px;
}

.pricing-prijs {
	font-family: var(--font);
	font-weight: 700;
	color: var(--navy-deep);
	font-size: 32px;
	margin-bottom: 2px;
}

.pricing-sub {
	color: var(--ink-soft);
	font-size: 13.5px;
	margin-bottom: 20px;
}

.pricing-lijst {
	list-style: none;
	padding: 0;
	margin: 0 0 24px;
	flex: 1;
}

.pricing-lijst li {
	display: flex;
	gap: 10px;
	align-items: flex-start;
	color: var(--ink-soft);
	font-size: 14.5px;
	margin-bottom: 10px;
}

.pricing-lijst svg {
	flex: none;
	width: 17px;
	height: 17px;
	color: var(--teal-deep);
	margin-top: 3px;
}

.pricing-extra {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
	margin-top: 40px;
}

.pricing-extra-item {
	background: var(--bg-soft);
	border-radius: var(--radius-sm);
	padding: 20px 22px;
	display: flex;
	justify-content: space-between;
	gap: 16px;
	align-items: baseline;
}

.pricing-extra-item strong {
	color: var(--navy);
}

/* ---------- Organisaties / gemeenten kaarten ---------- */
.doelgroep-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 28px;
}

.doelgroep-card {
	background: var(--bg-warm);
	border-radius: var(--radius);
	padding: 32px;
}

/* ---------- FAQ ---------- */
.faq-list {
	display: grid;
	gap: 12px;
}

.faq-item {
	background: #fff;
	border: 1px solid var(--border);
	border-radius: var(--radius-sm);
	padding: 4px 22px;
}

.faq-item summary {
	cursor: pointer;
	list-style: none;
	padding: 18px 28px 18px 0;
	font-weight: 700;
	color: var(--navy);
	position: relative;
}

.faq-item summary::-webkit-details-marker {
	display: none;
}

.faq-item summary::after {
	content: '+';
	position: absolute;
	right: 0;
	top: 14px;
	font-size: 22px;
	color: var(--teal-dark);
	font-weight: 400;
}

.faq-item[open] summary::after {
	content: '−';
}

.faq-item p {
	color: var(--ink-soft);
	padding-bottom: 18px;
	margin: 0;
}

/* ---------- Formulieren ---------- */
.form-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
}

.form-field {
	display: flex;
	flex-direction: column;
	gap: 6px;
	margin-bottom: 20px;
}

.form-field.full {
	grid-column: 1 / -1;
}

.form-field label {
	font-weight: 700;
	font-size: 14.5px;
	color: var(--navy);
}

.form-field .hint {
	font-size: 13px;
	color: var(--ink-soft);
	margin-top: -2px;
}

.form-field input[type="text"],
.form-field input[type="email"],
.form-field input[type="tel"],
.form-field select,
.form-field textarea {
	font-family: var(--font);
	font-size: 15.5px;
	padding: 12px 14px;
	border: 1.5px solid var(--border);
	border-radius: var(--radius-sm);
	background: #fff;
	color: var(--ink);
	width: 100%;
}

.form-field textarea {
	min-height: 140px;
	resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
	border-color: var(--teal-dark);
	outline: none;
}

.form-field.has-error input,
.form-field.has-error select,
.form-field.has-error textarea {
	border-color: var(--red);
}

.field-error {
	color: var(--red);
	font-size: 13.5px;
	font-weight: 600;
}

.radio-group,
.checkbox-group {
	display: flex;
	flex-wrap: wrap;
	gap: 10px 24px;
}

.radio-group label,
.checkbox-group label {
	display: flex;
	align-items: center;
	gap: 8px;
	font-weight: 400;
	color: var(--ink);
	font-size: 15px;
}

.radio-group input,
.checkbox-group input {
	width: 18px;
	height: 18px;
}

.hp-field {
	position: absolute;
	left: -9999px;
	top: -9999px;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

.form-alert {
	border-radius: var(--radius-sm);
	padding: 18px 22px;
	margin-bottom: 28px;
	font-weight: 600;
}

.form-alert.error {
	background: var(--red-soft);
	color: var(--red);
	border-left: 4px solid var(--red);
}

.form-alert.success {
	background: var(--teal-soft);
	color: var(--teal-deep);
	border-left: 4px solid var(--teal-dark);
}

/* ---------- Sticky mobiele contactknop ---------- */
.sticky-contact {
	display: none;
}

/* ---------- 404 / generieke afsluiter ---------- */
.section-simple {
	text-align: center;
}

.section-simple-inner {
	max-width: 520px;
	margin: 0 auto;
}

/* ---------- Prose (privacy, disclaimer, lange teksten) ---------- */
.prose h2 {
	margin-top: 40px;
}

.prose h2:first-child {
	margin-top: 0;
}

.prose h3 {
	margin-top: 28px;
}

.prose p,
.prose li {
	color: var(--ink-soft);
	font-size: 16px;
}

.prose ul {
	margin-bottom: 20px;
}

.post-meta {
	color: var(--ink-soft);
	font-size: 13.5px;
	text-transform: uppercase;
	letter-spacing: 0.03em;
}

/* ---------- Footer ---------- */
.site-footer {
	background: var(--navy-deep);
	color: #cfe4e1;
	margin-top: 40px;
}

.footer-grid {
	display: grid;
	grid-template-columns: 1.3fr 1fr 1fr;
	gap: 40px;
	padding: 56px 24px 32px;
}

.footer-brand {
	font-family: var(--font);
	font-weight: 700;
	color: #fff;
	font-size: 18px;
	margin-bottom: 10px;
}

.footer-heading {
	font-family: var(--font);
	font-weight: 700;
	color: #fff;
	font-size: 14px;
	text-transform: uppercase;
	letter-spacing: 0.03em;
	margin-bottom: 14px;
}

.site-footer a {
	color: #cfe4e1;
}

.site-footer p {
	font-size: 14.5px;
}

.site-footer a:hover {
	color: var(--teal);
}

.footer-nav-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.footer-nav-list li {
	margin-bottom: 8px;
}

.footer-bottom {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 12px;
	padding: 20px 24px;
	border-top: 1px solid rgba(255, 255, 255, 0.12);
	font-size: 12.5px;
}

.footer-legal a {
	margin-left: 16px;
}

.footer-legal a:first-child {
	margin-left: 0;
}

/* =========================================================
   Responsive
   ========================================================= */

@media (max-width: 960px) {
	.split,
	.page-hero-inner {
		grid-template-columns: 1fr;
		gap: 32px;
	}

	.split.reverse .split-media,
	.split .split-media.mobile-first {
		order: -1;
	}

	.section-hero {
		padding-bottom: 56px;
	}

	.hero-media {
		height: min(500px, 58vh);
		min-height: 440px;
	}

	.hero-card-anchor {
		justify-content: center;
		padding: 0 24px;
	}

	.hero-card {
		width: 100%;
		max-width: 480px;
		transform: translateY(36px);
		padding: 28px 28px;
	}

	.situaties-grid,
	.card-grid.cols-3,
	.card-grid.cols-4,
	.pricing-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.route-steps {
		grid-template-columns: repeat(2, 1fr);
		row-gap: 40px;
	}

	.route::before {
		display: none;
	}

	.pricing-card.highlight {
		transform: none;
	}

	.doelgroep-grid,
	.pricing-extra,
	.form-grid {
		grid-template-columns: 1fr;
	}

	.footer-grid {
		grid-template-columns: 1fr 1fr;
	}
}

@media (max-width: 720px) {
	.topbar-tagline {
		font-size: 11px;
	}

	.menu-toggle {
		display: block;
	}

	.header-nav-area {
		display: none;
		/* Overschrijft de "flex: 1" (met flex-basis: 0%) van de desktopstijl
		   hierboven, die anders op mobiel de volgorde van de flex-regels
		   verstoort en het uitklapmenu vóór het logo laat verschijnen. */
		flex: 1 1 100%;
		width: 100%;
		order: 3;
		flex-direction: column;
		align-items: stretch;
		gap: 0;
	}

	.nav-toggle-checkbox:checked ~ .header-nav-area,
	.header-nav-area.is-open {
		display: flex;
	}

	.site-header-inner {
		flex-wrap: wrap;
	}

	.primary-nav-list {
		flex-direction: column;
		gap: 4px;
		padding: 16px 0 8px;
		border-top: 1px solid var(--border);
		margin-top: 16px;
		width: 100%;
	}

	.primary-nav-list a {
		display: block;
		padding: 10px 0;
	}

	.header-cta {
		margin: 4px 0 16px;
	}

	.header-cta .btn {
		display: block;
		text-align: center;
	}

	.section {
		padding: 48px 0;
	}

	/* Mobiel: gewone documentstroom i.p.v. verankering met flexbox/transform
	   — eenvoudiger en voorkomt dat de kaart ooit over gezichten in de
	   foto zou kunnen vallen op een smal scherm. */
	.section-hero {
		padding-bottom: 32px;
	}

	.hero-media {
		height: auto;
		min-height: 0;
	}

	.hero-photo-wrap {
		position: relative;
		inset: auto;
		height: 220px;
	}

	.hero-card-anchor {
		position: relative;
		inset: auto;
		display: block;
		padding: 0 20px;
	}

	.hero-card {
		width: 100%;
		max-width: none;
		margin: -32px auto 0;
		transform: none;
		padding: 24px 22px;
	}

	.section-cta-block {
		padding: 40px 22px;
	}

	.situaties-grid,
	.card-grid.cols-2,
	.card-grid.cols-3,
	.card-grid.cols-4,
	.route-steps,
	.pricing-grid,
	.footer-grid {
		grid-template-columns: 1fr;
	}

	.werkwijze-detail {
		grid-template-columns: 1fr;
	}

	.footer-bottom {
		flex-direction: column;
	}

	.sticky-contact {
		display: flex;
		align-items: center;
		justify-content: center;
		gap: 8px;
		position: fixed;
		left: 16px;
		right: 16px;
		bottom: 16px;
		z-index: 50;
		background: var(--navy);
		color: #fff;
		padding: 14px 20px;
		border-radius: 999px;
		box-shadow: var(--shadow);
		font-weight: 700;
		font-size: 14.5px;
		text-decoration: none;
	}

	.sticky-contact svg {
		width: 18px;
		height: 18px;
	}

	/* Ruimte onderaan zodat de sticky knop de footer niet overlapt */
	.site-footer {
		padding-bottom: 76px;
	}
}

/* =========================================================
   Homepage: iets compactere secties (gerichte aanpassing, alleen
   index.php — via de "pagina-home" body-klasse — andere pagina's
   behouden de normale, ruimere sectiehoogte).
   ========================================================= */
.pagina-home .section {
	padding: 52px 0;
}

.pagina-home .section-heading {
	margin-bottom: 32px;
}

.pagina-home .section-cta {
	padding: 40px 0;
}

.pagina-home .section-cta-block {
	padding: 48px 40px;
}

@media (max-width: 720px) {
	.pagina-home .section {
		padding: 36px 0;
	}
}

@media print {
	.sticky-contact,
	.cta-strip,
	.topbar,
	.menu-toggle {
		display: none !important;
	}
}
