:root {
	--brand: #1d5c3f;
	--brand-dark: #133f2b;
	--brand-soft: #e8f0ea;
	--cta: #e0962a;
	--cta-dark: #c47d18;
	--ink: #262626;
	--muted: #5e5e5e;
	--line: #dad9d4;
	--soft: #f4f2ec;
	--font-main: Tahoma, Geneva, Verdana, sans-serif;
}

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

html, body { overflow-x: hidden; }

body {
	margin: 0;
	font-family: var(--font-main);
	font-size: 17px;
	font-weight: 400;
	line-height: 1.6;
	color: var(--ink);
	background: #ffffff;
}

img, svg, video, iframe { max-width: 100%; height: auto; }
img { display: block; }

a { color: var(--brand); }
a:hover { color: var(--brand-dark); }

h1, h2, h3, h4 {
	font-weight: 700;
	line-height: 1.6;
	margin: 0 0 14px;
	color: var(--brand);
}
h1 { font-size: 2.2rem; }
h2 { font-size: 1.7rem; }
h3 { font-size: 1.22rem; }
h4 { font-size: 1.05rem; }
p { margin: 0 0 16px; }
p:last-child { margin-bottom: 0; }
ul, ol { margin: 0 0 16px; padding-left: 22px; }
li { margin-bottom: 7px; }
strong { font-weight: 700; }

.skip-link {
	position: absolute;
	left: -999px;
	top: 0;
	background: var(--brand);
	color: #fff;
	padding: 10px 16px;
	z-index: 200;
}
.skip-link:focus { left: 8px; top: 8px; color: #fff; }

:focus-visible { outline: 3px solid var(--cta); outline-offset: 2px; }

/* Knoppen */
.btn {
	display: inline-block;
	font-weight: 700;
	font-size: 1rem;
	text-decoration: none;
	border: 0;
	border-radius: 6px;
	padding: 14px 26px;
	cursor: pointer;
	transition: background-color 0.18s ease;
}
.btn-cta { background: var(--cta); color: #1a0a00; }
.btn-cta:hover { background: var(--cta-dark); color: #1a0a00; }
.btn-block { display: block; width: 100%; text-align: center; }

/* Hoofding */
.site-header {
	position: relative;
	background: #ffffff;
	border-bottom: 1px solid var(--line);
}
.header-inner {
	max-width: 1180px;
	margin: 0 auto;
	padding: 14px 24px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
}
.site-logo { display: inline-flex; flex-shrink: 0; }
.site-logo img { height: 44px; width: auto; }

.main-nav .nav-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	align-items: center;
	gap: 26px;
}
.main-nav .nav-list li { margin: 0; }
.main-nav a {
	text-decoration: none;
	color: var(--ink);
	font-size: 1rem;
	padding: 6px 0;
}
.main-nav a:hover { color: var(--brand); }
.main-nav .nav-cta a,
.main-nav .menu-item-cta a {
	background: var(--cta);
	color: #1a0a00;
	padding: 11px 20px;
	border-radius: 6px;
}
.main-nav .nav-cta a:hover,
.main-nav .menu-item-cta a:hover { background: var(--cta-dark); }

.nav-burger { display: none; }
.nav-burger span {
	display: block;
	width: 26px;
	height: 3px;
	background: var(--brand);
	border-radius: 2px;
	transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav-burger span + span { margin-top: 5px; }

/* Hero */
.hero {
	position: relative;
	background-color: var(--brand-dark);
	background-image: url("img/hero.webp");
	background-size: cover;
	background-position: center;
}
.hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background-color: rgba(15, 48, 32, 0.72);
}
.hero-inner {
	position: relative;
	max-width: 1180px;
	margin: 0 auto;
	padding: 56px 24px 64px;
	display: grid;
	grid-template-columns: 1.05fr 0.95fr;
	gap: 44px;
	align-items: start;
}
.hero-text { color: #f2f3f0; padding-top: 12px; }
.hero-text h1 { color: #ffffff; font-size: 2.5rem; margin-bottom: 16px; }
.hero-sub {
	font-size: 1.15rem;
	color: #e3e7e2;
	margin-bottom: 24px;
}
.hero-points { list-style: none; margin: 0; padding: 0; }
.hero-points li {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	margin-bottom: 13px;
	color: #ffffff;
	font-size: 1.03rem;
}
.hero-points svg { color: #ffffff; flex-shrink: 0; margin-top: 1px; }

/* Formulierkaart */
.form-card {
	background: #ffffff;
	border-radius: 10px;
	padding: 28px 26px 26px;
	border: 1px solid var(--line);
}
.form-title { font-size: 1.4rem; margin-bottom: 8px; }
.form-intro { font-size: 0.97rem; color: var(--muted); margin-bottom: 18px; }

.offerte-form .form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 14px;
}
.form-field { margin-bottom: 14px; }
.form-field label {
	display: block;
	font-size: 0.9rem;
	font-weight: 700;
	color: var(--ink);
	margin-bottom: 5px;
}
.form-field input {
	width: 100%;
	font-family: inherit;
	font-size: 16px;
	padding: 11px 12px;
	border: 1.5px solid #c7c7c2;
	border-radius: 4px;
	background: #fcfcfb;
	color: var(--ink);
}
.form-field input:focus {
	outline: none;
	border-color: var(--brand);
	box-shadow: 0 0 0 3px rgba(29, 92, 63, 0.16);
}
.form-field-cp { max-width: 100%; }
.form-hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.offerte-form .btn-block { margin-top: 6px; }
.form-legal {
	font-size: 0.82rem;
	color: #8a8a8a;
	margin-top: 12px;
	margin-bottom: 0;
}
.form-feedback {
	font-size: 0.95rem;
	padding: 12px 14px;
	border-radius: 8px;
	margin-bottom: 16px;
}
.form-feedback-ok { background: var(--brand-soft); color: var(--brand-dark); border: 1px solid var(--line); }
.form-feedback-err { background: var(--soft); color: var(--ink); border: 1px solid var(--line); }

/* Pagina-inhoud */
.page-content { background: #ffffff; }
.content-wrap {
	max-width: 1180px;
	margin: 0 auto;
	padding: 0 24px;
}
.section { padding: 62px 0; }
.section-alt { background: var(--soft); }
.section-brand { background: var(--brand-dark); }
.section-head { max-width: 770px; margin-bottom: 34px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head p { color: var(--muted); font-size: 1.07rem; }
.lead { font-size: 1.12rem; }

.prose p { margin-bottom: 16px; }
.prose-center { text-align: center; max-width: 680px; margin: 0 auto; }

/* Tekst en beeld naast elkaar */
.split {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
	align-items: center;
}
.split.section { padding: 62px 0; }
.split-media img { border-radius: 8px; }
.split-text h2 { margin-bottom: 16px; }

/* Stappen */
.steps {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(225px, 1fr));
	gap: 22px;
}
.step {
	background: #ffffff;
	border: 1px solid var(--line);
	border-radius: 10px;
	padding: 24px 22px;
}
.step-num {
	display: inline-block;
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--brand);
	margin-bottom: 6px;
}
.step h3 { margin-bottom: 8px; }
.step p { color: var(--muted); margin-bottom: 0; font-size: 0.98rem; }

/* Materiaalkaarten */
.material-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(258px, 1fr));
	gap: 26px;
}
.material-card {
	background: #ffffff;
	border: 1px solid var(--line);
	border-radius: 12px;
	overflow: hidden;
	display: flex;
	flex-direction: column;
}
.material-card img { width: 100%; height: 198px; object-fit: cover; }
.material-body { padding: 20px 20px 22px; display: flex; flex-direction: column; flex: 1; }
.material-card h3 { margin-bottom: 8px; }
.material-card p { color: var(--muted); font-size: 0.97rem; }
.material-price {
	margin-top: auto;
	padding-top: 14px;
	font-size: 1.02rem;
	color: var(--ink);
}
.material-price strong { font-size: 1.42rem; color: var(--brand); }

/* Prijstabel */
.table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; border-radius: 8px; }
.price-table {
	width: 100%;
	border-collapse: collapse;
	background: #ffffff;
	min-width: 560px;
}
.price-table caption {
	caption-side: bottom;
	font-size: 0.85rem;
	color: var(--muted);
	padding-top: 10px;
	text-align: left;
}
.price-table th, .price-table td {
	padding: 14px 16px;
	text-align: left;
	border-bottom: 1px solid var(--line);
}
.price-table thead th {
	background: var(--brand);
	color: #ffffff;
	font-size: 0.95rem;
}
.price-table tbody th { font-weight: 700; color: var(--ink); }
.price-table tbody tr:nth-child(even) { background: #faf9f6; }
.price-table .price-cell { font-weight: 700; color: var(--brand); white-space: nowrap; }

/* Keuzehulp */
.choice-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 22px;
}
.choice-card {
	background: #ffffff;
	border: 1px solid var(--line);
	border-top: 5px solid var(--brand);
	border-radius: 10px;
	padding: 24px 22px;
}
.choice-card h3 { margin-bottom: 6px; }
.choice-for { color: var(--brand); font-weight: 700; font-size: 0.95rem; margin-bottom: 12px; }
.choice-card ul { padding-left: 20px; margin-bottom: 0; }
.choice-card li { color: var(--muted); font-size: 0.97rem; }

/* Fotos */
.figure { margin: 0; }
.figure img { border-radius: 8px; }
.figure figcaption {
	font-size: 0.9rem;
	color: var(--muted);
	margin-top: 10px;
}
.media-duo {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 24px;
}

/* Voordelenlijst */
.check-list { list-style: none; padding: 0; margin: 0 0 16px; }
.check-list li {
	display: flex;
	align-items: flex-start;
	gap: 11px;
	margin-bottom: 12px;
	color: var(--ink);
}
.check-list li:last-child { margin-bottom: 0; }
.check-list svg { color: var(--brand); flex-shrink: 0; margin-top: 3px; }

/* Infokaarten */
.info-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(255px, 1fr));
	gap: 22px;
}
.info-card {
	background: #ffffff;
	border: 1px solid var(--line);
	border-radius: 10px;
	padding: 24px 22px;
}
.info-card h3 { margin-bottom: 10px; }
.info-card p { color: var(--muted); font-size: 0.98rem; }
.info-card p:last-child { margin-bottom: 0; }

/* Veelgestelde vragen */
.faq { max-width: 850px; }
.faq-item {
	border-bottom: 1px solid var(--line);
	padding: 22px 0;
}
.faq-item:first-child { padding-top: 0; }
.faq-item h3 { margin-bottom: 8px; }
.faq-item p { color: var(--muted); margin-bottom: 0; }

/* CTA-band */
.cta-band {
	background: var(--brand-dark);
	color: #ffffff;
	border-radius: 14px;
	padding: 40px 38px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 28px;
	flex-wrap: wrap;
}
.cta-band h2, .cta-band p, .cta-band span, .cta-band li { color: #ffffff; }
.cta-band h2 { margin-bottom: 8px; }
.cta-band p { margin-bottom: 0; color: #dde6df; }
.cta-band-text { max-width: 620px; }

/* Donkere secties : leesbaarheid van de afstammelingen */
.section-brand,
.section-brand h2, .section-brand h3, .section-brand h4,
.section-brand p, .section-brand li, .section-brand span, .section-brand strong,
.section-brand dt, .section-brand dd { color: #ffffff; }
.section-brand .section-head p { color: #d6ddd7; }

/* Footer */
.site-footer { background: var(--brand-dark); color: #e6ece7; }
.footer-inner {
	max-width: 1180px;
	margin: 0 auto;
	padding: 50px 24px 36px;
	display: grid;
	grid-template-columns: 1.5fr 1fr 1.2fr;
	gap: 38px;
}
.footer-col p { color: #ccd5ce; font-size: 0.96rem; }
.footer-logo {
	height: 42px;
	width: auto;
	margin-bottom: 14px;
	background: #ffffff;
	border-radius: 8px;
	padding: 7px 10px;
}
.footer-col-title {
	display: block;
	font-weight: 700;
	font-size: 1.05rem;
	color: #ffffff;
	margin-bottom: 14px;
}
.footer-list { list-style: none; padding: 0; margin: 0; }
.footer-list li {
	color: #ccd5ce;
	font-size: 0.95rem;
	padding: 5px 0;
}
.footer-col .btn { margin-top: 6px; }
.footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.16);
	max-width: 1180px;
	margin: 0 auto;
	padding: 20px 24px 30px;
	display: flex;
	flex-direction: column;
	gap: 8px;
}
.footer-bottom span { color: #aab5ad; font-size: 0.86rem; }
.footer-note { max-width: 920px; }

/* Responsive */
@media (max-width: 980px) {
	.hero-inner { grid-template-columns: 1fr; gap: 34px; }
	.split { grid-template-columns: 1fr; gap: 28px; }
	.split-media { order: -1; }
	.footer-inner { grid-template-columns: 1fr 1fr; gap: 28px; }
}

@media (max-width: 900px) {
	.nav-burger {
		display: block;
		cursor: pointer;
		padding: 6px;
		background: transparent;
		border: 0;
	}
	.main-nav {
		display: none;
		position: absolute;
		left: 0;
		right: 0;
		top: 100%;
		background: #ffffff;
		border-bottom: 1px solid var(--line);
		box-shadow: 0 16px 26px rgba(0, 0, 0, 0.12);
		z-index: 90;
	}
	.nav-toggle:checked ~ .main-nav { display: block; }
	.main-nav .nav-list {
		flex-direction: column;
		align-items: stretch;
		gap: 0;
		padding: 8px 24px 18px;
	}
	.main-nav .nav-list li { border-bottom: 1px solid var(--line); }
	.main-nav .nav-list li:last-child { border-bottom: 0; }
	.main-nav a { display: block; padding: 14px 0; }
	.main-nav .nav-cta a,
	.main-nav .menu-item-cta a {
		text-align: center;
		margin: 14px 0 4px;
		padding: 13px 20px;
	}
	.nav-toggle:checked ~ .nav-burger span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
	.nav-toggle:checked ~ .nav-burger span:nth-child(2) { opacity: 0; }
	.nav-toggle:checked ~ .nav-burger span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
}

@media (max-width: 680px) {
	body { font-size: 16px; }
	h1 { font-size: 1.7rem; }
	.hero-text h1 { font-size: 1.95rem; }
	h2 { font-size: 1.42rem; }
	.hero-inner { padding: 40px 20px 46px; }
	.header-inner { padding: 12px 20px; }
	.content-wrap { padding: 0 20px; }
	.section { padding: 46px 0; }
	.split.section { padding: 46px 0; }
	.offerte-form .form-row { grid-template-columns: 1fr; gap: 0; }
	.media-duo { grid-template-columns: 1fr; }
	.footer-inner { grid-template-columns: 1fr; gap: 26px; }
	.cta-band { padding: 30px 24px; }
	.form-card { padding: 22px 18px; }
	.site-logo img { height: 40px; }
}


/* aps-post-content-fix : constrain AI-generated <section> children of main */
.page-content > section,
.page-content > p,
.page-content > h2,
.page-content > h3,
.page-content > ul,
.page-content > ol,
.page-content > dl {
	max-width: 1180px;
	margin-left: auto;
	margin-right: auto;
	padding-left: 24px;
	padding-right: 24px;
}
.page-content > section {
	padding-top: 44px;
	padding-bottom: 44px;
}
.page-content > section + section {
	border-top: 1px solid rgba(0,0,0,.08);
}
.page-content > section h2 {
	margin-bottom: 18px;
}
.page-content > section h3 {
	margin-top: 26px;
	margin-bottom: 10px;
}
.page-content > section p {
	margin-bottom: 14px;
}
.page-content > section ul,
.page-content > section ol {
	padding-left: 22px;
	margin-bottom: 18px;
}
.page-content > section ul li,
.page-content > section ol li {
	margin-bottom: 6px;
}
.page-content > section dl dt {
	font-weight: 700;
	margin-top: 14px;
}
.page-content > section dl dd {
	margin: 0 0 12px;
	color: #5a6b72;
}
/* Geo maillage block sections */
.page-content > .znw75gigx {
	padding-top: 32px;
	padding-bottom: 32px;
}
.page-content > .znw75gigx + .znw75gigx {
	border-top: 1px solid rgba(0,0,0,.08);
}
.page-content > .znw75gigx .im8mi3twj {
	max-width: 1180px;
	margin: 0 auto;
	padding: 0 24px;
}
.page-content > .znw75gigx h2 {
	font-size: 1.4rem;
	margin-bottom: 16px;
}
.page-content > .znw75gigx .t86qtl5z {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
	gap: 6px 22px;
	list-style: none;
	padding: 0;
	margin: 0;
}
.page-content > .znw75gigx .t86qtl5z li {
	padding: 5px 0;
	border-bottom: 1px solid rgba(0,0,0,.06);
}
.page-content > .znw75gigx .t86qtl5z a {
	color: inherit;
	text-decoration: none;
}
.page-content > .znw75gigx .t86qtl5z .u9075zst {
	color: #5a6b72;
	font-size: .85em;
	margin-left: 6px;
}

/* breathing room */
body.home .page-content > p:first-of-type {
	margin-top: 36px;
}

/* ============================================
   Sections enrichies (prefix .oab-)
   Layout différent des sites précédents
   ============================================ */

/* Override theme wrapper main.page-content */
.page-content > section.oab-sec,
.page-content > section.oab-cta {
  max-width: none !important;
  padding: 80px 0 !important;
  width: 100% !important;
}

.oab-sec { background: #ffffff; }
.oab-sec-alt { background: var(--brand-soft, #e8f0ea); }

.oab-wrap { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.oab-wrap-narrow { max-width: 880px; }

.oab-hd { text-align: center; margin-bottom: 48px; }
.oab-hd h2 {
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  color: var(--brand-dark, #133f2b);
  margin: 0 0 14px;
  line-height: 1.2;
  font-weight: 700;
}
.oab-lead {
  color: var(--muted, #5e5e5e);
  font-size: 1.02rem;
  max-width: 740px;
  margin: 0 auto;
  line-height: 1.65;
}

/* === TYPES — 4 cards 2-col with image thumb header === */
.oab-types {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}
@media (min-width: 720px) { .oab-types { grid-template-columns: 1fr 1fr; } }

.oab-type-card {
  background: #fff;
  border: 1px solid var(--line, #dad9d4);
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.oab-type-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(29,92,63,0.12);
}
.oab-type-thumb {
  overflow: hidden;
  background: var(--soft, #f4f2ec);
  position: relative;
}
.oab-type-thumb img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.oab-type-card:hover .oab-type-thumb img { transform: scale(1.05); }
.oab-type-body { padding: 22px 24px 24px; }
.oab-type-body h3 {
  margin: 0 0 10px;
  color: var(--brand-dark, #133f2b);
  font-size: 1.2rem;
}
.oab-type-body p {
  margin: 0 0 14px;
  color: var(--ink, #262626);
  font-size: 0.95rem;
  line-height: 1.62;
}
.oab-type-meta {
  list-style: none;
  padding: 14px 0 0;
  margin: 0;
  border-top: 1px dashed var(--line, #dad9d4);
}
.oab-type-meta li {
  padding: 5px 0;
  font-size: 0.88rem;
  color: var(--muted, #5e5e5e);
}
.oab-type-meta strong {
  display: inline-block;
  min-width: 130px;
  color: var(--brand, #1d5c3f);
  font-weight: 700;
}

/* === RAIL — vertical numbered timeline with thick left rail === */
.oab-rail {
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
}
.oab-rail::before {
  content: '';
  position: absolute;
  left: 28px;
  top: 24px;
  bottom: 24px;
  width: 4px;
  background: linear-gradient(to bottom, var(--brand, #1d5c3f) 0%, var(--cta, #e0962a) 100%);
  border-radius: 2px;
}
.oab-rail li {
  position: relative;
  padding: 8px 0 32px 80px;
}
.oab-rail li:last-child { padding-bottom: 4px; }
.oab-rail-bullet {
  position: absolute;
  left: 0;
  top: 6px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--brand, #1d5c3f);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  border: 4px solid #fff;
  box-shadow: 0 0 0 1px var(--brand, #1d5c3f), 0 4px 12px rgba(29,92,63,0.20);
  z-index: 1;
}
.oab-rail li:nth-child(even) .oab-rail-bullet { background: var(--cta-dark, #c47d18); box-shadow: 0 0 0 1px var(--cta-dark, #c47d18), 0 4px 12px rgba(196,125,24,0.20); }
.oab-rail-body h3 {
  margin: 6px 0 8px;
  color: var(--brand-dark, #133f2b);
  font-size: 1.18rem;
}
.oab-rail-body p {
  margin: 0;
  color: var(--ink, #262626);
  line-height: 1.65;
}

/* === MASONRY-LIKE 6 photos asymmetric === */
.oab-mason {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
@media (min-width: 720px) {
  .oab-mason {
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 200px 200px 200px;
    gap: 16px;
  }
  .oab-m-tall { grid-column: 1 / 2; grid-row: 1 / 3; }
  .oab-m-wide { grid-column: 1 / 4; grid-row: 3 / 4; }
}
.oab-mason figure {
  margin: 0;
  border-radius: 10px;
  overflow: hidden;
  background: var(--soft, #f4f2ec);
  position: relative;
}
.oab-mason figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 200px;
  transition: transform 0.35s ease;
}
.oab-mason figure:hover img { transform: scale(1.04); }

/* === PRIJS TABLE === */
.oab-prijs-wrap {
  background: #fff;
  border: 1px solid var(--line, #dad9d4);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(29,92,63,0.06);
}
.oab-prijs {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}
.oab-prijs thead { background: var(--brand-dark, #133f2b); }
.oab-prijs thead th {
  color: #fff;
  padding: 14px 18px;
  text-align: left;
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.oab-prijs tbody td {
  padding: 13px 18px;
  border-bottom: 1px solid var(--line, #dad9d4);
  color: var(--ink, #262626);
}
.oab-prijs tbody tr:last-child td { border-bottom: 0; }
.oab-prijs tbody tr:nth-child(even) td { background: var(--soft, #f4f2ec); }
.oab-prijs tbody td:first-child strong { color: var(--brand, #1d5c3f); }
.oab-prijs-foot {
  text-align: center;
  margin-top: 16px;
  color: var(--muted, #5e5e5e);
  font-size: 0.9rem;
  font-style: italic;
}

/* === SPLIT img + checks === */
.oab-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  align-items: center;
}
@media (min-width: 880px) { .oab-split { grid-template-columns: 1fr 1.15fr; gap: 56px; } }

.oab-split-img {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(29,92,63,0.15);
}
.oab-split-img img { width: 100%; height: auto; display: block; }
.oab-split-body h2 {
  text-align: left;
  color: var(--brand-dark, #133f2b);
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  margin: 0 0 14px;
}
.oab-split-body .oab-lead { text-align: left; margin: 0 0 22px; }
.oab-checks { list-style: none; padding: 0; margin: 0; }
.oab-checks li {
  padding: 12px 0 12px 40px;
  position: relative;
  border-top: 1px solid var(--line, #dad9d4);
  color: var(--ink, #262626);
  line-height: 1.65;
}
.oab-checks li:first-child { border-top: 0; padding-top: 4px; }
.oab-checks li:first-child::before { top: 6px; }
.oab-checks li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 14px;
  width: 26px;
  height: 26px;
  background: var(--brand, #1d5c3f);
  border-radius: 50%;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round' d='M5 13l4 4 10-10'/></svg>");
  background-size: 16px 16px;
  background-position: center;
  background-repeat: no-repeat;
}
.oab-checks strong { color: var(--brand-dark, #133f2b); }

/* === FAQ === */
.oab-faq details {
  background: #fff;
  border: 1px solid var(--line, #dad9d4);
  border-radius: 10px;
  margin-bottom: 12px;
  overflow: hidden;
  transition: box-shadow .2s ease, border-color .2s ease;
}
.oab-faq details[open] {
  box-shadow: 0 6px 18px rgba(29,92,63,0.10);
  border-color: var(--brand, #1d5c3f);
}
.oab-faq summary {
  padding: 16px 56px 16px 22px;
  cursor: pointer;
  font-weight: 600;
  color: var(--brand-dark, #133f2b);
  position: relative;
  list-style: none;
  font-size: 1rem;
  line-height: 1.4;
}
.oab-faq summary::-webkit-details-marker { display: none; }
.oab-faq summary::after {
  content: '+';
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--brand, #1d5c3f);
  line-height: 1;
}
.oab-faq details[open] summary::after { content: '−'; color: var(--cta-dark, #c47d18); }
.oab-faq details p {
  padding: 0 22px 18px;
  margin: 0;
  color: var(--muted, #5e5e5e);
  line-height: 1.65;
}

/* === CTA finale === */
.oab-cta {
  background: linear-gradient(135deg, var(--brand, #1d5c3f) 0%, var(--brand-dark, #133f2b) 100%);
  color: #fff;
  text-align: center;
}
.oab-cta h2 {
  color: #fff;
  font-size: clamp(1.8rem, 3.2vw, 2.3rem);
  margin: 0 0 14px;
}
.oab-cta p {
  color: rgba(255,255,255,0.85);
  max-width: 640px;
  margin: 0 auto 28px;
  font-size: 1.05rem;
  line-height: 1.6;
}
.oab-cta-btn {
  display: inline-block;
  background: var(--cta, #e0962a);
  color: #fff !important;
  padding: 16px 36px;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
  font-size: 1.05rem;
  transition: background .2s ease, transform .2s ease;
  box-shadow: 0 6px 18px rgba(0,0,0,0.22);
}
.oab-cta-btn:hover {
  background: #fff;
  color: var(--brand, #1d5c3f) !important;
  transform: translateY(-2px);
}

/* === content fixes 2026-05-31 === */

/* Add > table to existing wrapper max-width rule */
.page-content > table {
	max-width: 1180px;
	width: calc(100% - 48px);
	margin-left: auto;
	margin-right: auto;
	box-sizing: border-box;
}

/* Home spacing — first paragraph gap + explicit margins (global reset zeroed) */
body.home .page-content > p:first-of-type {
	margin-top: 64px;
}
body.home .page-content > p {
	margin-bottom: 18px;
}
body.home .page-content > h2 {
	margin-top: 40px;
	margin-bottom: 14px;
}
body.home .page-content > h3 {
	margin-top: 26px;
	margin-bottom: 10px;
}
body.home .page-content > ul,
body.home .page-content > ol {
	margin-bottom: 18px;
}
body.home .page-content > table {
	margin-top: 28px;
	margin-bottom: 28px;
}

/* === Table design v21: paving stone — moss green header + amber droplet bullets + sandstone alt rows + boxed amber-cream last column === */
.page-content table,
.page-content > section table {
	width: 100%;
	max-width: 100%;
	margin: 32px auto;
	border-collapse: separate;
	border-spacing: 0;
	font-size: 0.95rem;
	background: #ffffff;
	border-radius: 2px;
	overflow: hidden;
	border-left: 6px solid #1d5c3f;
	box-shadow: inset 0 0 0 1px #dad9d4;
}
.page-content table thead th {
	background: #1d5c3f;
	color: #f4f2ec;
	text-align: left;
	padding: 16px 22px;
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	border-bottom: 3px solid #e0962a;
	vertical-align: middle;
}
.page-content table thead th:last-child {
	text-align: right;
	color: #e0962a;
}
.page-content table tbody td {
	padding: 14px 22px 14px 50px;
	border-bottom: 1px solid #ecebe5;
	color: #262626;
	vertical-align: top;
	line-height: 1.65;
	position: relative;
}
.page-content table tbody td:not(:first-child) {
	padding-left: 22px;
}
.page-content table tbody td:first-child {
	color: #133f2b;
	font-weight: 700;
}
.page-content table tbody td:first-child::before {
	content: "";
	position: absolute;
	left: 20px;
	top: 20px;
	width: 12px;
	height: 12px;
	background: #e0962a;
	clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}
.page-content table tbody td:last-child {
	background: #fbf6ea;
	text-align: right;
	color: #c47d18;
	font-weight: 700;
	letter-spacing: 0.01em;
	box-shadow: inset 3px 0 0 #e0962a;
}
.page-content table tbody td strong {
	color: #1d5c3f;
}
.page-content table tbody tr:nth-child(even) td:not(:last-child) {
	background: #f4f2ec;
}
.page-content table tbody tr:last-child td {
	border-bottom: none;
}
.page-content table tbody tr:hover td:not(:last-child) {
	background: #e8f0ea;
}
.page-content table tbody tr:hover td:first-child::before {
	background: #133f2b;
}

/* Mobile compact */
@media (max-width: 640px) {
	.page-content table thead th {
		padding: 10px 12px;
		font-size: 0.80rem;
	}
	.page-content table tbody td {
		padding: 10px 12px 10px 32px;
		font-size: 0.90rem;
	}
	.page-content table tbody td:not(:first-child) {
		padding-left: 12px;
	}
	.page-content table tbody td:first-child::before {
		left: 12px;
		top: 14px;
		width: 10px;
		height: 10px;
	}
}
