:root {
	--brand: #2c4a2e;
	--brand-dark: #1a2e1c;
	--brand-soft: #d8e8d9;
	--cta: #c85a1e;
	--cta-dark: #a54718;
	--cta-bright: #e0703a;
	--ink: #1c2022;
	--muted: #576070;
	--line: #d0d6d8;
	--soft: #f3f5f2;
	--white: #ffffff;
	--font-main: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Helvetica Neue", Arial, sans-serif;
}

*, *::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: var(--white);
}

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-family: var(--font-main);
	font-weight: 700;
	line-height: 1.2;
	margin: 0 0 14px;
	color: var(--brand);
	letter-spacing: -0.02em;
}
h1 { font-size: 2.4rem; }
h2 { font-size: 1.8rem; }
h3 { font-size: 1.2rem; }
h4 { font-size: 1rem; }
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; }

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

.tzbtn {
	display: inline-block;
	font-family: var(--font-main);
	font-weight: 700;
	font-size: 1rem;
	text-decoration: none;
	border: 0;
	border-radius: 3px;
	padding: 14px 28px;
	cursor: pointer;
	background: var(--cta);
	color: var(--white);
	letter-spacing: 0.01em;
}
.tzbtn:hover { background: var(--cta-dark); color: var(--white); }
.tzbtnfull { display: block; width: 100%; text-align: center; }
.tzbtnout {
	background: transparent;
	color: var(--white);
	border: 2px solid var(--white);
	padding: 12px 26px;
}
.tzbtnout:hover { background: rgba(255,255,255,0.12); color: var(--white); }

/* HEADER */
.tzhdr {
	position: relative;
	background: var(--white);
	border-bottom: 3px solid var(--brand);
}
.tzhdrwrap {
	max-width: 1200px;
	margin: 0 auto;
	padding: 12px 24px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
}
.tzlogo { display: inline-flex; flex-shrink: 0; }
.tzlogo img { height: 52px; width: auto; }

.tznav .tznl {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	align-items: center;
	gap: 24px;
}
.tznav .tznl li { margin: 0; }
.tznav a {
	text-decoration: none;
	color: var(--ink);
	font-size: 0.97rem;
	font-weight: 400;
	padding: 6px 0;
}
.tznav a:hover { color: var(--brand); }
.tznav .tzcta a {
	background: var(--cta);
	color: var(--white);
	padding: 10px 20px;
	border-radius: 3px;
}
.tznav .tzcta a:hover { background: var(--cta-dark); color: var(--white); }

.tzhambcheck { display: none; }
.tzhamb { display: none; }

/* HERO */
.tzhero {
	position: relative;
	background: var(--brand-dark);
	overflow: hidden;
}
.tzhero::before {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(10, 22, 12, 0.72);
	z-index: 1;
}
.tzbgimg {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 0;
}
.tzheroinner {
	position: relative;
	z-index: 2;
	max-width: 1200px;
	margin: 0 auto;
	padding: 56px 24px 68px;
	display: grid;
	grid-template-columns: 1.1fr 0.9fr;
	gap: 52px;
	align-items: start;
}

.tzherototxt { color: #d8e8d9; padding-top: 8px; }
.tzherototxt h1 {
	color: var(--white);
	font-size: 2.8rem;
	margin-bottom: 18px;
	line-height: 1.1;
}
.tzherosubt {
	font-size: 1.1rem;
	color: #a8c8aa;
	margin-bottom: 28px;
	line-height: 1.55;
}
.tztrustlist { list-style: none; margin: 0 0 30px; padding: 0; }
.tztrustlist li {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	margin-bottom: 11px;
	color: var(--white);
	font-size: 1rem;
	font-weight: 400;
}
.tztrustlist svg { color: var(--cta-bright); flex-shrink: 0; margin-top: 3px; }

.tzkpi {
	display: flex;
	gap: 20px;
	flex-wrap: wrap;
}
.tzkpii {
	display: flex;
	flex-direction: column;
	background: rgba(255,255,255,0.09);
	border: 1px solid rgba(255,255,255,0.16);
	border-radius: 4px;
	padding: 12px 18px;
	min-width: 90px;
}
.tzkpii strong {
	display: block;
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--cta-bright);
	line-height: 1;
	margin-bottom: 4px;
}
.tzkpii span { font-size: 0.78rem; color: #a8c8aa; line-height: 1.3; }

/* FORM CARD */
.tzformcard {
	background: var(--white);
	border-radius: 4px;
	padding: 28px 24px 24px;
	box-shadow: 0 18px 48px rgba(0,0,0,0.38);
	border-top: 4px solid var(--cta);
}
.tzformttl {
	font-size: 1.25rem;
	margin-bottom: 6px;
	color: var(--brand);
	letter-spacing: -0.01em;
}
.tzformsub {
	font-size: 0.88rem;
	color: var(--muted);
	margin-bottom: 16px;
}
.tzmsg {
	font-size: 0.92rem;
	padding: 11px 13px;
	border-radius: 3px;
	margin-bottom: 14px;
}
.tzok { background: var(--brand-soft); color: var(--brand-dark); }
.tzerr { background: #fce8e0; color: #b03810; }

.tzfrmgrid { display: flex; flex-direction: column; gap: 0; }
.tzrow2 {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
}
.tzfld { margin-bottom: 12px; }
.tzfld label {
	display: block;
	font-size: 0.84rem;
	font-weight: 700;
	color: var(--ink);
	margin-bottom: 4px;
}
.tzfld input {
	width: 100%;
	font-family: var(--font-main);
	font-size: 0.96rem;
	padding: 10px 12px;
	border: 1px solid var(--line);
	border-radius: 3px;
	background: #f8faf8;
	color: var(--ink);
}
.tzfld input:focus {
	outline: none;
	border-color: var(--brand);
	box-shadow: 0 0 0 3px rgba(44,74,46,0.14);
}
.tzhoneypot { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.tzprivacy {
	font-size: 0.77rem;
	color: #8a8fa0;
	margin-top: 10px;
	margin-bottom: 0;
}

/* MAIN */
.tzmain { background: var(--white); }
.tzsec { padding: 62px 0; }
.tzaltbg { background: var(--soft); }
.tzcnt {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 24px;
}
.tzschdr { max-width: 760px; margin-bottom: 36px; }
.tzschdr h2 { margin-bottom: 10px; }
.tzschdr p { color: var(--muted); font-size: 1.05rem; margin-bottom: 0; }

/* DIENSTEN */
.tzdienstenlist {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 22px;
}
.tzdienstcard {
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: 4px;
	overflow: hidden;
	display: flex;
	flex-direction: column;
}
.tzdienstimg img { width: 100%; height: 190px; object-fit: cover; }
.tzdienstbody { padding: 20px 20px 22px; display: flex; flex-direction: column; flex: 1; }
.tzdienstbody h3 { margin-bottom: 8px; font-size: 1.1rem; }
.tzdienstbody p { color: var(--muted); font-size: 0.95rem; margin-bottom: 0; }

/* WERKWIJZE */
.tzsteps { max-width: 700px; }
.tzstep {
	display: grid;
	grid-template-columns: 52px 1fr;
	gap: 20px;
	position: relative;
}
.tzstepline {
	display: flex;
	flex-direction: column;
	align-items: center;
}
.tzstepnum {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: var(--brand);
	color: var(--white);
	font-size: 1rem;
	font-weight: 700;
	flex-shrink: 0;
}
.tzstepbar {
	display: block;
	width: 2px;
	flex: 1;
	min-height: 40px;
	background: var(--line);
	margin-top: 6px;
	margin-bottom: 6px;
}
.tzsteplast .tzstepbar { display: none; }
.tzstepcont { padding: 10px 0 30px; }
.tzsteplast .tzstepcont { padding-bottom: 0; }
.tzstepcont h3 { margin-bottom: 6px; }
.tzstepcont p { color: var(--muted); font-size: 0.97rem; margin-bottom: 0; }

/* TARIEVEN */
.tztarcards {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 20px;
	margin-bottom: 26px;
}
.tztarcard {
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: 4px;
	padding: 22px 20px;
	display: flex;
	flex-direction: column;
}
.tzfeatcard {
	border: 2px solid var(--brand);
	box-shadow: 0 6px 24px rgba(44,74,46,0.13);
}
.tztarcardtop { margin-bottom: 14px; border-bottom: 1px solid var(--line); padding-bottom: 14px; }
.tztarcardtop h3 { font-size: 1rem; margin-bottom: 8px; }
.tztarcardprice { font-size: 1rem; margin-bottom: 0; color: var(--muted); }
.tztarcardprice strong { font-size: 1.75rem; color: var(--brand); font-weight: 700; display: block; line-height: 1; }
.tztarcardul {
	list-style: none;
	padding: 0;
	margin: 0;
	flex: 1;
}
.tztarcardul li {
	font-size: 0.9rem;
	color: var(--muted);
	padding: 6px 0;
	border-bottom: 1px solid var(--soft);
	display: flex;
	align-items: center;
	gap: 8px;
}
.tztarcardul li::before {
	content: "";
	display: inline-block;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--cta);
	flex-shrink: 0;
}
.tztarcardnote {
	font-size: 0.87rem;
	color: var(--muted);
	max-width: 860px;
	border-left: 3px solid var(--brand-soft);
	padding-left: 16px;
}

/* SPLIT */
.tzsplit {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 48px;
	align-items: center;
}
.tzfig { margin: 0; }
.tzfig img { border-radius: 4px; box-shadow: 0 8px 28px rgba(0,0,0,0.16); width: 100%; }
.tzfig figcaption { font-size: 0.86rem; color: var(--muted); margin-top: 10px; }
.tzsplittxt h2 { margin-bottom: 14px; }
.tzsplittxt p { color: var(--muted); }

.tzcheckul { list-style: none; padding: 0; margin: 0; }
.tzcheckul li {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	margin-bottom: 12px;
	color: var(--ink);
	font-size: 0.97rem;
}
.tzcheckul svg { color: var(--brand); flex-shrink: 0; margin-top: 3px; }

.tzinfocols {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 36px;
}
.tzinfocol h3 { margin-top: 24px; }
.tzinfocol h3:first-child { margin-top: 0; }
.tzinfocol p { color: var(--muted); font-size: 0.97rem; }

/* CTA BAND */
.tzctaband { background: var(--brand); }
.tzctasplit {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0;
	border-radius: 6px;
	overflow: hidden;
	box-shadow: 0 12px 40px rgba(0,0,0,0.22);
}
.tzctaimg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	min-height: 260px;
}
.tzctacopie {
	background: var(--brand-dark);
	padding: 46px 40px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 18px;
}
.tzctacopie h2 { color: var(--white); margin-bottom: 0; }
.tzctacopie p { color: #98b89a; margin-bottom: 0; }

/* FAQ */
.tzfaq { max-width: 820px; }
.tzfaqitem { border-bottom: 1px solid var(--line); }
.tzfaqitem:first-child { border-top: 1px solid var(--line); }
.tzfaqq {
	display: flex;
	align-items: center;
	justify-content: space-between;
	list-style: none;
	padding: 18px 4px;
	cursor: pointer;
	font-size: 1.02rem;
	font-weight: 700;
	color: var(--brand);
	user-select: none;
	gap: 16px;
	letter-spacing: -0.01em;
}
.tzfaqq::-webkit-details-marker { display: none; }
.tzfaqq::after {
	content: "+";
	font-size: 1.4rem;
	font-weight: 400;
	color: var(--cta);
	flex-shrink: 0;
	line-height: 1;
}
.tzfaqitem[open] .tzfaqq::after { content: "-"; }
.tzfaqa { padding: 0 4px 18px; }
.tzfaqa p { color: var(--muted); font-size: 0.97rem; margin-bottom: 0; }

/* FOOTER */
.tzfooter { background: var(--brand-dark); color: #d0e4d1; }
.tzfooterwrap {
	max-width: 1200px;
	margin: 0 auto;
	padding: 50px 24px 36px;
	display: grid;
	grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
	gap: 32px;
}
.tzfcol p { color: #7aa07c; font-size: 0.94rem; }
.tzflogo {
	height: 50px;
	width: auto;
	margin-bottom: 14px;
	background: var(--white);
	border-radius: 3px;
	padding: 7px 11px;
}
.tzfcoltit {
	display: block;
	font-weight: 700;
	font-size: 1rem;
	color: var(--white);
	margin-bottom: 14px;
}
.tzfulist { list-style: none; padding: 0; margin: 0; }
.tzfulist li {
	color: #7aa07c;
	font-size: 0.92rem;
	padding: 5px 0;
}
.tzfbot {
	border-top: 1px solid rgba(255,255,255,0.11);
	max-width: 1200px;
	margin: 0 auto;
	padding: 18px 24px 28px;
	display: flex;
	flex-direction: column;
	gap: 8px;
}
.tzfbot span { color: #5a7a5c; font-size: 0.84rem; }
.tzfbotnote { max-width: 900px; }

/* RESPONSIVE */
@media (max-width: 1000px) {
	.tzheroinner { grid-template-columns: 1fr; gap: 32px; }
	.tzherototxt h1 { font-size: 2.1rem; }
	.tzsplit { grid-template-columns: 1fr; gap: 28px; }
	.tzinfocols { grid-template-columns: 1fr; gap: 24px; }
	.tzctasplit { grid-template-columns: 1fr; }
	.tzctaimg { display: none; }
	.tzctacopie { padding: 40px 32px; }
	.tzfooterwrap { grid-template-columns: 1fr 1fr; gap: 28px; }
}

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

@media (max-width: 680px) {
	body { font-size: 16px; }
	h1 { font-size: 1.7rem; }
	h2 { font-size: 1.4rem; }
	.tzherototxt h1 { font-size: 1.9rem; }
	.tzheroinner { padding: 38px 20px 46px; }
	.tzkpi { gap: 12px; }
	.tzsec { padding: 44px 0; }
	.tzcnt { padding: 0 20px; }
	.tzrow2 { grid-template-columns: 1fr; gap: 0; }
	.tzdienstenlist { grid-template-columns: 1fr; }
	.tztarcards { grid-template-columns: 1fr; }
	.tzsteps { max-width: 100%; }
	.tzfooterwrap { grid-template-columns: 1fr; gap: 24px; }
	.tzctacopie { padding: 32px 22px; }
	.tzhdrwrap { padding: 10px 20px; }
	.tzlogo img { height: 44px; }
	.tzformcard { padding: 22px 18px 20px; }
}
