:root {
	--brand:      #0f4c75;
	--brand-dark: #0a3558;
	--brand-soft: #e8f4fd;
	--cta:        #f59e0b;
	--cta-dark:   #d08007;
	--cta-text:   #1a0f00;
	--text:       #1c1c1c;
	--text-muted: #525252;
	--border:     #d4dde8;
	--bg-alt:     #f4f8fc;
	--bg-card:    #ffffff;
	--rad:        12px;
	--rad-sm:     8px;
}

*, *::before, *::after { box-sizing: border-box; }
html, body { overflow-x: hidden; }

body {
	margin: 0;
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
	font-size: 17px;
	font-weight: 400;
	line-height: 1.7;
	color: var(--text);
	background: #fff;
}

img, video, iframe, svg { max-width: 100%; height: auto; }
img { display: block; }
a { color: var(--brand); }

h1, h2, h3, h4 {
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
	font-weight: 700;
	line-height: 1.2;
	margin: 0 0 14px;
	color: var(--text);
}
h1 { font-size: clamp(30px, 5vw, 44px); }
h2 { font-size: clamp(24px, 4vw, 34px); }
h3 { font-size: 20px; }
p  { margin: 0 0 14px; overflow-wrap: break-word; word-wrap: break-word; }

.container {
	width: 92%;
	max-width: 1200px;
	margin: 0 auto;
}

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

.btn-primary {
	display: inline-block;
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
	font-weight: 700;
	font-size: 16px;
	text-decoration: none;
	border: 0;
	border-radius: var(--rad-sm);
	padding: 14px 28px;
	cursor: pointer;
	background: var(--cta);
	color: var(--cta-text);
}
.btn-primary:hover, .btn-primary:focus { background: var(--cta-dark); color: var(--cta-text); }
.btn-full { width: 100%; text-align: center; display: block; }
.btn-lg { font-size: 18px; padding: 18px 36px; }

.hdr-wrap {
	position: sticky;
	top: 0;
	z-index: 100;
	background: var(--brand);
	box-shadow: 0 2px 8px rgba(0,0,0,0.22);
}
.hdr-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	width: 92%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 14px 0;
	gap: 16px;
}
.hdr-logo { display: block; line-height: 1; }
.hdr-logo img { width: auto; height: 42px; }

.nav-chk { display: none; }
.nav-burger {
	display: none;
	width: 42px;
	height: 38px;
	cursor: pointer;
	padding: 8px 6px;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
}
.nav-burger span {
	display: block;
	height: 3px;
	background: #fff;
	border-radius: 2px;
}

.nav-main { display: block; }
.n7bqe2wx {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	align-items: center;
	gap: 28px;
}
.n7bqe2wx a {
	text-decoration: none;
	color: rgba(255,255,255,0.88);
	font-weight: 700;
	font-size: 15px;
}
.n7bqe2wx a:hover, .n7bqe2wx a:focus { color: #fff; }
.n7bqe2wx .cta-li a {
	background: var(--cta);
	color: var(--cta-text);
	padding: 9px 18px;
	border-radius: var(--rad-sm);
}
.n7bqe2wx .cta-li a:hover { background: var(--cta-dark); color: var(--cta-text); }

.hero-section {
	position: relative;
	background-color: var(--brand-dark);
	background-image: url('img/hero.jpg');
	background-size: cover;
	background-position: center;
	min-height: 580px;
}
.hero-overlay {
	position: absolute;
	inset: 0;
	background: rgba(8, 36, 60, 0.80);
}
.hero-content {
	position: relative;
	width: 92%;
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1.15fr 0.85fr;
	gap: 48px;
	align-items: center;
	padding: 64px 0;
}

.hero-copy-col { order: 1; }
.hero-copy-col h1 { color: #fff; font-size: clamp(32px, 5vw, 52px); margin-bottom: 18px; }
.hero-lead { color: rgba(255,255,255,0.85); font-size: 18px; margin-bottom: 28px; }
.hero-checks {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 12px;
}
.hero-checks li {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	color: #fff;
	font-size: 16px;
}
.hero-checks svg { flex-shrink: 0; margin-top: 2px; color: var(--cta); }

.hero-form-col { order: 0; }
.form-card {
	background: var(--bg-card);
	border-radius: var(--rad);
	padding: 32px 28px;
	box-shadow: 0 16px 48px rgba(0,0,0,0.4);
}
.form-title {
	font-size: 21px;
	font-weight: 700;
	color: var(--brand);
	margin-bottom: 4px;
}
.form-sub { font-size: 14px; color: var(--text-muted); margin-bottom: 18px; }

.frm-msg {
	font-size: 14px;
	border-radius: var(--rad-sm);
	padding: 10px 12px;
	margin-bottom: 14px;
}
.frm-ok  { background: var(--brand-soft); color: var(--brand); }
.frm-err { background: #fde8e8; color: #991b1b; }

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

.vch-form .form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
}
.form-group {
	display: flex;
	flex-direction: column;
	gap: 4px;
	margin-bottom: 12px;
}
.form-group label {
	font-size: 13px;
	font-weight: 700;
	color: var(--text-muted);
}
.form-group input {
	border: 1.5px solid var(--border);
	border-radius: var(--rad-sm);
	padding: 10px 12px;
	font-size: 15px;
	font-family: inherit;
	color: var(--text);
	background: #fff;
}
.form-group input:focus { outline: 2px solid var(--brand); border-color: var(--brand); }
.form-group--sm { min-width: 0; }

.form-legal { font-size: 12px; color: var(--text-muted); margin-top: 8px; margin-bottom: 0; }

.sec-diensten,
.sec-aanpak,
.sec-content,
.sec-prijzen,
.sec-faq,
.sec-cta { padding: 72px 0; }
.sec-alt { background: var(--bg-alt); }

.sec-title {
	text-align: center;
	color: var(--brand);
	margin-bottom: 12px;
}
.sec-intro {
	text-align: center;
	color: var(--text-muted);
	max-width: 680px;
	margin: 0 auto 40px;
}

.diensten-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 28px;
}
.dienst-card {
	border-radius: var(--rad);
	overflow: hidden;
	border: 1px solid var(--border);
	background: var(--bg-card);
}
.dienst-card img { width: 100%; height: 200px; object-fit: cover; }
.dienst-body { padding: 20px; }
.dienst-body h3 { color: var(--brand); margin-bottom: 8px; }
.dienst-body p { color: var(--text); margin: 0; }

.stappen-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 24px;
	max-width: 800px;
	margin: 0 auto;
}
.stap-item {
	display: flex;
	align-items: flex-start;
	gap: 20px;
	background: var(--bg-card);
	border-radius: var(--rad);
	padding: 24px;
	border: 1px solid var(--border);
}
.stap-num {
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 44px;
	height: 44px;
	background: var(--brand);
	color: #fff;
	font-weight: 700;
	font-size: 20px;
	border-radius: 50%;
	flex-shrink: 0;
}
.stap-body h3 { color: var(--brand); margin-bottom: 6px; }
.stap-body p { margin: 0; color: var(--text); }

.sec-content .container { max-width: 880px; }

.prijzen-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	align-items: start;
}
.prijs-card {
	border-radius: var(--rad);
	overflow: hidden;
	border: 2px solid var(--border);
	background: var(--bg-card);
}
.prijs-featured { border-color: var(--brand); }
.prijs-header {
	background: var(--brand);
	padding: 20px 24px;
}
.prijs-featured .prijs-header { background: var(--brand-dark); }
.prijs-header h3 { color: #fff; margin: 0; font-size: 18px; }
.prijs-body { padding: 20px 24px; }
.prijs-amount { font-size: 28px; font-weight: 700; color: var(--brand); margin-bottom: 14px; }
.prijs-list {
	list-style: none;
	margin: 0 0 20px;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 8px;
}
.prijs-list li { font-size: 15px; color: var(--text); padding-left: 16px; position: relative; }
.prijs-list li::before { content: ""; position: absolute; left: 0; top: 8px; width: 6px; height: 6px; background: var(--brand); border-radius: 50%; }

.faq-container { max-width: 820px; }
.faq-list { margin: 0; padding: 0; }
.faq-list dt {
	font-weight: 700;
	font-size: 17px;
	color: var(--brand);
	padding: 18px 0 8px;
	border-top: 1px solid var(--border);
}
.faq-list dd { margin: 0 0 10px; color: var(--text); }

.sec-cta { background: var(--brand); }
.cta-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 32px;
	flex-wrap: wrap;
}
.cta-text { flex: 1 1 400px; }
.cta-text h2 { color: #fff; margin-bottom: 8px; }
.cta-text p { color: rgba(255,255,255,0.85); margin: 0; }
.sec-cta .btn-primary { flex-shrink: 0; }

.ftr-wrap { background: #0a2840; color: rgba(255,255,255,0.88); padding: 56px 0 0; }
.ftr-grid {
	width: 92%;
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1.5fr 1fr 1fr 1fr;
	gap: 40px;
	padding-bottom: 40px;
	border-bottom: 1px solid rgba(255,255,255,0.12);
}
.ftr-logo { height: 36px; width: auto; margin-bottom: 16px; }
.ftr-brand p { font-size: 14px; color: rgba(255,255,255,0.7); margin: 0; }
.ftr-heading { display: block; font-weight: 700; font-size: 14px; text-transform: uppercase; letter-spacing: 0.06em; color: #fff; margin-bottom: 14px; }
.ftr-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.ftr-list li { font-size: 14px; color: rgba(255,255,255,0.7); }
.ftr-col p { font-size: 14px; color: rgba(255,255,255,0.7); }
.ftr-cta { margin-top: 16px; }
.ftr-bottom {
	width: 92%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 18px 0;
}
.ftr-bottom span { font-size: 13px; color: rgba(255,255,255,0.5); }

@media (max-width: 1024px) {
	.diensten-grid { grid-template-columns: repeat(2, 1fr); }
	.prijzen-grid  { grid-template-columns: repeat(2, 1fr); }
	.ftr-grid      { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
	.hero-content {
		grid-template-columns: 1fr;
		padding: 40px 0;
		gap: 32px;
	}
	.hero-form-col { order: 0; }
	.hero-copy-col { order: 1; }

	.nav-burger { display: flex; }
	.nav-main   { display: none; width: 100%; }
	.n7bqe2wx   { flex-direction: column; align-items: flex-start; gap: 4px; padding: 12px 0; }
	.nav-chk:checked ~ .nav-main { display: block; }

	.diensten-grid { grid-template-columns: 1fr; }
	.prijzen-grid  { grid-template-columns: 1fr; }

	.vch-form .form-row { grid-template-columns: 1fr; }
	.cta-inner { flex-direction: column; }
	.ftr-grid  { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
	h1 { font-size: 28px; }
	h2 { font-size: 22px; }
	.form-card { padding: 24px 18px; }
	.sec-diensten, .sec-aanpak, .sec-content, .sec-prijzen, .sec-faq, .sec-cta { padding: 48px 0; }
}
