/* ============================================================
   GEPOLIJST BETON — MAIN.CSS
   Kleurenpalet: antraciet/donkergrijs (brand) + amber/goud (CTA)
   ============================================================ */

:root {
	--brand:      #2c2c2c;
	--brand-dark: #1a1a1a;
	--brand-soft: #e8e4df;
	--cta:        #c8820a;
	--cta-dark:   #a86a06;
	--cta-bright: #e09a18;
	--ink:        #1e1e1e;
	--muted:      #666;
	--line:       #ccc;
	--soft:       #f5f4f2;
	--white:      #fff;
	--font-main:  Verdana, Geneva, Tahoma, sans-serif;
}

/* RESET */
*, *::before, *::after { box-sizing: border-box; }
html, body { overflow-x: hidden; }
body {
	margin: 0;
	font-family: var(--font-main);
	font-size: 17px;
	line-height: 1.6;
	color: var(--ink);
	background: var(--white);
}
img, svg { max-width: 100%; height: auto; }
img { display: block; }
a { color: var(--brand); }
h1, h2, h3, h4 {
	font-family: var(--font-main);
	font-weight: 700;
	line-height: 1.6;
	margin: 0 0 14px;
	color: var(--brand);
}
h1 { font-size: 2.4rem; }
h2 { font-size: 1.8rem; }
h3 { font-size: 1.25rem; }
p { margin: 0 0 16px; }
ul, ol { padding-left: 1.5em; }
details { margin-bottom: 0; }
summary { cursor: pointer; }

/* ACCESSIBILITEIT */
.gpb-skip {
	position: absolute;
	left: -999px;
	top: 0;
	background: var(--brand);
	color: #fff;
	padding: 10px 16px;
	z-index: 200;
}
.gpb-skip:focus { left: 8px; top: 8px; color: #fff; }
:focus-visible { outline: 3px solid var(--cta-bright); outline-offset: 2px; }

/* ============================================================
   BUTTON
   ============================================================ */
.gpb-btn {
	display: inline-block;
	font-family: var(--font-main);
	font-weight: 700;
	font-size: 1rem;
	text-decoration: none;
	border: 0;
	border-radius: 6px;
	padding: 14px 28px;
	cursor: pointer;
	background: var(--cta);
	color: #1a1000;
	transition: background-color 0.18s;
}
.gpb-btn:hover, .gpb-btn:focus { background: var(--cta-dark); color: #1a1000; }
.gpb-btnfull { display: block; width: 100%; text-align: center; }

/* ============================================================
   HEADER / NAV
   ============================================================ */
.gpb-hdr {
	position: relative;
	background: var(--brand-dark);
}
.gpb-nav-wrap {
	max-width: 1240px;
	margin: 0 auto;
	padding: 14px 24px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
}
.gpb-logo-a { display: inline-flex; flex-shrink: 0; }
.gpb-logo-a img { height: 52px; width: auto; }

/* Hamburger (CSS-only checkbox trick) */
.gpb-burger-chk { display: none; }
.gpb-burger {
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	background: transparent;
	border: 0;
	padding: 6px;
	cursor: pointer;
	width: 38px;
	height: 38px;
}
.gpb-burger span {
	display: block;
	width: 24px;
	height: 2px;
	background: #fff;
	transition: transform 0.18s, opacity 0.18s;
}
.gpb-burger-chk:checked ~ .gpb-burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.gpb-burger-chk:checked ~ .gpb-burger span:nth-child(2) { opacity: 0; }
.gpb-burger-chk:checked ~ .gpb-burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.gpb-nav ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	align-items: center;
	gap: 22px;
}
.gpb-nav a {
	text-decoration: none;
	color: #ddd;
	font-size: .95rem;
	font-weight: 400;
	padding: 6px 0;
}
.gpb-nav a:hover { color: #fff; }
.gpb-nav .gpb-nav-cta a {
	background: var(--cta);
	color: #1a1000;
	padding: 10px 20px;
	border-radius: 6px;
	font-weight: 700;
}
.gpb-nav .gpb-nav-cta a:hover { background: var(--cta-dark); }

/* ============================================================
   HERO
   ============================================================ */
.gpb-hero {
	position: relative;
	background: var(--brand-dark);
	overflow: hidden;
}
.gpb-hero-bg {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 0;
}
.gpb-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(20, 18, 16, .72);
	z-index: 1;
}
.gpb-hero-inner {
	position: relative;
	z-index: 2;
	max-width: 1240px;
	margin: 0 auto;
	padding: 54px 24px 68px;
	display: grid;
	grid-template-columns: 1fr 1.05fr;
	gap: 52px;
	align-items: start;
}

/* FORMULIER CARD */
.gpb-card {
	background: #fff;
	border-radius: 8px;
	padding: 28px 26px 24px;
	border: 1px solid var(--line);
}
.gpb-card-ttl {
	font-size: 1.25rem;
	margin-bottom: 6px;
	color: var(--brand);
}
.gpb-card-sub {
	font-size: .9rem;
	color: var(--muted);
	margin-bottom: 16px;
}
.gpb-row2 {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
}
.gpb-fld { margin-bottom: 12px; }
.gpb-fld label {
	display: block;
	font-size: .85rem;
	font-weight: 700;
	color: var(--ink);
	margin-bottom: 4px;
}
.gpb-fld input,
.gpb-fld select,
.gpb-fld textarea {
	width: 100%;
	font-family: var(--font-main);
	font-size: 16px;
	padding: 10px 12px;
	border: 1.5px solid var(--line);
	border-radius: 4px;
	background: #fafaf9;
	color: var(--ink);
}
.gpb-fld input:focus,
.gpb-fld select:focus {
	outline: 2px solid var(--cta);
	border-color: var(--cta);
}
.gpb-honeypot {
	position: absolute;
	left: -9999px;
	width: 1px;
	height: 1px;
	overflow: hidden;
}
.gpb-privacy {
	font-size: .78rem;
	color: var(--muted);
	margin-top: 10px;
	margin-bottom: 0;
}
.gpb-msg {
	padding: 10px 14px;
	border-radius: 4px;
	margin-bottom: 14px;
	font-size: .93rem;
}
.gpb-msg-ok { background: var(--soft); color: var(--ink); border: 1px solid var(--line); }
.gpb-msg-err { background: var(--soft); color: var(--ink); border: 1px solid var(--line); }

/* HERO TEXT */
.gpb-hero-txt { color: #ddd; padding-top: 8px; }
.gpb-hero-txt h1 { color: #fff; font-size: 2.6rem; margin-bottom: 18px; line-height: 1.4; }
.gpb-hero-sub { font-size: 1.1rem; color: #bbb; margin-bottom: 28px; }
.gpb-trust { list-style: none; margin: 0 0 30px; padding: 0; }
.gpb-trust li {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	margin-bottom: 12px;
	color: #fff;
	font-size: 1rem;
	font-weight: 400;
}
.gpb-trust svg { color: rgba(255,255,255,0.85); flex-shrink: 0; margin-top: 2px; }
.gpb-kpi { display: flex; gap: 24px; flex-wrap: wrap; }
.gpb-kpi-i {
	background: rgba(255, 255, 255, .09);
	border-radius: 4px;
	padding: 12px 18px;
	text-align: center;
	min-width: 80px;
}
.gpb-kpi-i strong { display: block; font-size: 1.5rem; font-weight: 700; color: #fff; }
.gpb-kpi-i span { font-size: .78rem; color: #bbb; }

/* ============================================================
   MAIN CONTENT
   ============================================================ */
.gpb-main > * { margin-bottom: 0; }

/* SECTIONS */
.gpb-sec { padding: 64px 0; }
.gpb-altbg { background: var(--soft); }
.gpb-cnt { max-width: 1240px; margin: 0 auto; padding: 0 24px; }
.gpb-sec-hdr { max-width: 760px; margin: 0 auto 44px; text-align: center; }
.gpb-sec-hdr h2 { margin-bottom: 12px; }
.gpb-sec-hdr p { color: var(--muted); font-size: 1.05rem; margin: 0; }

/* CARDS 4 */
.gpb-cards4 {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 24px;
}
.gpb-card-item {
	background: #fff;
	border-radius: 4px;
	overflow: hidden;
	box-shadow: 0 2px 8px rgba(0, 0, 0, .08);
}
.gpb-imgbox { overflow: hidden; }
.gpb-imgbox img {
	width: 100%;
	height: 220px;
	object-fit: cover;
	display: block;
}
.gpb-card-body { padding: 18px 20px 20px; }
.gpb-card-body h3 { font-size: 1.05rem; margin-bottom: 8px; }
.gpb-card-body p { color: var(--muted); font-size: .93rem; margin-bottom: 8px; }
.gpb-price { font-size: .92rem; color: var(--muted); margin-bottom: 0; }
.gpb-price strong { color: #855305; }

/* TIMELINE */
.gpb-timeline { display: flex; flex-direction: column; gap: 0; }
.gpb-tstep { display: grid; grid-template-columns: 64px 1fr; gap: 24px; }
.gpb-tline {
	display: flex;
	flex-direction: column;
	align-items: center;
}
.gpb-tnum {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: var(--brand);
	color: #fff;
	font-weight: 700;
	font-size: .9rem;
	flex-shrink: 0;
}
.gpb-tbar {
	flex: 1;
	width: 2px;
	background: var(--cta);
	margin: 6px 0;
	min-height: 40px;
}
.gpb-tcontent { padding: 8px 0 36px; }
.gpb-tcontent h3 { margin-bottom: 8px; }
.gpb-tcontent p { color: var(--muted); margin: 0; }
.gpb-tlast .gpb-tcontent { padding-bottom: 0; }

/* PRICING CARDS */
.gpb-pcards {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 22px;
	margin-bottom: 24px;
}
.gpb-pcard {
	background: #fff;
	border-radius: 4px;
	overflow: hidden;
	box-shadow: 0 2px 8px rgba(0, 0, 0, .07);
	border-top: 3px solid var(--line);
}
.gpb-pcardfeat { border-top: 3px solid var(--cta); }
.gpb-pcardfeat .gpb-pcardtop { background: var(--brand); color: #fff; }
.gpb-pcardfeat .gpb-pcardtop h3 { color: #fff; }
.gpb-pcardfeat .gpb-pcardprice strong { color: var(--brand); }
.gpb-pcardtop {
	padding: 20px 20px 16px;
	background: var(--soft);
}
.gpb-pcardtop h3 { font-size: 1rem; margin-bottom: 6px; }
.gpb-pcardprice { font-size: .9rem; color: #9a9a9a; margin: 0; }
.gpb-pcardprice strong { font-size: 1.4rem; color: var(--brand); }
.gpb-pcardul {
	list-style: none;
	margin: 0;
	padding: 16px 20px 20px;
}
.gpb-pcardul li {
	padding: 6px 0;
	border-bottom: 1px solid #eee;
	font-size: .9rem;
	color: var(--muted);
}
.gpb-pcardul li:last-child { border-bottom: 0; }
.gpb-pcardnote {
	font-size: .88rem;
	color: var(--muted);
	border-left: 3px solid var(--cta);
	padding-left: 14px;
	margin: 0;
}

/* SPLIT SECTIONS */
.gpb-split {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 56px;
	align-items: center;
}
.gpb-splitrev { direction: rtl; }
.gpb-splitrev > * { direction: ltr; }
.gpb-fig { margin: 0; }
.gpb-fig img { border-radius: 4px; width: 100%; height: auto; }
.gpb-fig figcaption {
	font-size: .82rem;
	color: var(--muted);
	margin-top: 8px;
}
.gpb-splittxt h2 { margin-bottom: 14px; }
.gpb-splittxt p { color: var(--muted); }
.gpb-checkul {
	list-style: none;
	margin: 16px 0 0;
	padding: 0;
}
.gpb-checkul li {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	margin-bottom: 14px;
	color: var(--ink);
	font-size: .97rem;
}
.gpb-checkul svg { color: var(--brand); flex-shrink: 0; margin-top: 2px; }

/* INFO COLS */
.gpb-infocols {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 48px;
}
.gpb-infocol h3 { margin-top: 0; margin-bottom: 10px; font-size: 1.1rem; }
.gpb-infocol p { color: var(--muted); }

/* CTA BAND */
.gpb-ctaband { }
.gpb-ctasplit {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 48px;
	align-items: center;
}
.gpb-ctaimg img { border-radius: 4px; width: 100%; height: auto; }
.gpb-ctatxt h2 { margin-bottom: 14px; }
.gpb-ctatxt p { color: var(--muted); margin-bottom: 20px; }

/* FAQ */
.gpb-faq { max-width: 800px; margin: 0 auto; }
.gpb-faqitem {
	border-bottom: 1px solid var(--line);
}
.gpb-faqitem:first-child { border-top: 1px solid var(--line); }
.gpb-faqq {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 18px 0;
	font-weight: 700;
	font-size: 1rem;
	color: var(--brand);
	list-style: none;
}
.gpb-faqq::after {
	content: "+";
	font-size: 1.4rem;
	font-weight: 400;
	color: var(--brand);
	flex-shrink: 0;
	margin-left: 16px;
}
details[open] .gpb-faqq::after { content: "-"; }
.gpb-faqa { padding: 0 0 18px; }
.gpb-faqa p { color: var(--muted); margin: 0; }

/* ============================================================
   FOOTER
   ============================================================ */
.gpb-ft { background: var(--brand-dark); color: #bbb; padding: 56px 0 0; }
.gpb-ft-inner {
	max-width: 1240px;
	margin: 0 auto;
	padding: 0 24px 48px;
	display: grid;
	grid-template-columns: 1.4fr 1fr 1fr 1fr;
	gap: 40px;
}
.gpb-ft-brand .gpb-ft-logo { margin-bottom: 16px; }
.gpb-ft-brand p { font-size: .9rem; color: #999; }
.gpb-ft-ttl {
	display: block;
	font-weight: 700;
	font-size: 1rem;
	color: #fff;
	margin-bottom: 14px;
}
.gpb-ft-ul { list-style: none; margin: 0; padding: 0; }
.gpb-ft-ul li {
	padding: 4px 0;
	font-size: .88rem;
	color: #999;
	border-bottom: 1px solid #2e2e2e;
}
.gpb-ft-ul li:last-child { border-bottom: 0; }
.gpb-ft-col p { font-size: .9rem; color: #999; margin-bottom: 14px; }
.gpb-ft-bar {
	border-top: 1px solid #2e2e2e;
	padding: 16px 24px;
	max-width: 1240px;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	justify-content: space-between;
	font-size: .8rem;
	color: #8a8a8a;
}
.gpb-ft-note { color: #8a8a8a; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1020px) {
	.gpb-hero-inner { grid-template-columns: 1fr; gap: 34px; }
	.gpb-hero-txt h1 { font-size: 2.1rem; }
	.gpb-split { grid-template-columns: 1fr; gap: 32px; }
	.gpb-splitrev { direction: ltr; }
	.gpb-infocols { grid-template-columns: 1fr; gap: 32px; }
	.gpb-ctasplit { grid-template-columns: 1fr; gap: 28px; }
	.gpb-ft-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
	.gpb-burger { display: flex; }
	.gpb-nav {
		display: none;
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		background: var(--brand-dark);
		padding: 16px 24px;
		border-top: 1px solid #444;
		z-index: 100;
	}
	.gpb-burger-chk:checked ~ .gpb-nav { display: block; }
	.gpb-nav ul { flex-direction: column; gap: 0; }
	.gpb-nav li { border-bottom: 1px solid #333; }
	.gpb-nav a { display: block; padding: 12px 0; }
	.gpb-nav .gpb-nav-cta a { margin: 10px 0 4px; display: inline-block; }
	.gpb-hdr { position: relative; }
}

@media (max-width: 680px) {
	body { font-size: 16px; }
	h1 { font-size: 1.75rem; }
	.gpb-hero-txt h1 { font-size: 1.9rem; }
	.gpb-hero-inner { padding: 36px 20px 44px; }
	.gpb-row2 { grid-template-columns: 1fr; gap: 0; }
	.gpb-nav-wrap { padding: 12px 20px; }
	.gpb-logo-a img { height: 44px; }
	.gpb-card { padding: 22px 18px 20px; }
	.gpb-sec { padding: 44px 0; }
	.gpb-cards4 { grid-template-columns: 1fr; }
	.gpb-pcards { grid-template-columns: 1fr; }
	.gpb-ft-inner { grid-template-columns: 1fr; gap: 28px; }
	.gpb-tstep { grid-template-columns: 48px 1fr; gap: 16px; }
	.gpb-timeline { gap: 0; }
}


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

/* hero offset */
body.home .gpb-main {
	margin-top: 26px;
}

/* === Vergelijkende tabel === */
.gpb-main table {
	width: 100%;
	border-collapse: collapse;
	margin: 32px auto;
	font-size: 0.95rem;
	background: var(--white);
	border-top: 4px double var(--cta);
	border-bottom: 4px double var(--cta);
}
.gpb-main table tr:first-child th {
	background: transparent;
	color: var(--brand);
	padding: 12px 16px;
	text-align: left;
	font-weight: 700;
	font-size: 0.88rem;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	border-bottom: 2px solid var(--brand);
}
.gpb-main table td {
	padding: 14px 16px;
	border-bottom: 1px solid var(--line);
	vertical-align: top;
	color: var(--ink);
}
.gpb-main table tr:last-child td { border-bottom: 0; }
.gpb-main table tr td:first-child {
	font-weight: 600;
	color: var(--brand-dark);
}
.gpb-main table strong { color: var(--cta-dark); }
@media (max-width: 680px) {
	.gpb-main table { font-size: 0.88rem; }
	.gpb-main table th, .gpb-main table td { padding: 10px 12px; }
}

/* home spacing — eerste content element heeft adem boven hero */
body.home .gpb-main > *:first-child { padding-top: 56px; }

/* witte logo header */

/* tekst spatiëring in content */
.gpb-main > p { margin-bottom: 18px; line-height: 1.65; }
.gpb-main > h2 { margin-top: 38px; margin-bottom: 14px; font-size: 1.5rem; color: var(--brand-dark); font-weight: 700; }
.gpb-main > h3 { margin-top: 26px; margin-bottom: 10px; font-size: 1.15rem; color: var(--brand); font-weight: 700; }
.gpb-main > ul, .gpb-main > ol { margin-bottom: 18px; padding-left: 0; }
.gpb-main > ul > li, .gpb-main > ol > li { margin-left: 24px; margin-bottom: 6px; }

/* logo : icoon kleurig houden + tekst gepolijst-beton.be in wit */
.gpb-logo-a { position: relative; }
.gpb-logo-a::after {
	content: '';
	position: absolute;
	inset: 0;
	background-image: url('../assets/img/logo.webp');
	background-repeat: no-repeat;
	background-position: left center;
	background-size: contain;
	filter: brightness(0) invert(1);
	-webkit-mask-image: linear-gradient(to right, transparent 0, transparent 22%, #000 24%, #000 100%);
	mask-image: linear-gradient(to right, transparent 0, transparent 22%, #000 24%, #000 100%);
	pointer-events: none;
}
.gpb-ft-brand { position: relative; display: inline-block; }
.gpb-ft-brand .gpb-ft-logo { position: relative; z-index: 1; }
.gpb-ft-brand::after {
	content: '';
	position: absolute;
	left: 0; top: 0;
	width: var(--ft-logo-w, 320px);
	height: var(--ft-logo-h, 100px);
	background-image: url('../assets/img/logo.webp');
	background-repeat: no-repeat;
	background-position: left center;
	background-size: contain;
	filter: brightness(0) invert(1);
	-webkit-mask-image: linear-gradient(to right, transparent 0, transparent 22%, #000 24%, #000 100%);
	mask-image: linear-gradient(to right, transparent 0, transparent 22%, #000 24%, #000 100%);
	pointer-events: none;
	z-index: 2;
}
