/* Space Grotesk from Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&display=swap');

:root {
	--brand: #1a3a5c;
	--brand-dark: #0f2540;
	--brand-soft: #dde8f4;
	--cta: #e85d26;
	--cta-dark: #c44c1b;
	--cta-bright: #f27040;
	--ink: #1c2026;
	--muted: #5a6270;
	--line: #d3d8df;
	--soft: #f2f5f9;
	--white: #ffffff;
	--font-main: 'Space Grotesk', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, 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; }

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

/* ——— buttons ——— */
.rnx7btn {
	display: inline-block;
	font-family: var(--font-main);
	font-weight: 700;
	font-size: 1rem;
	text-decoration: none;
	border: 0;
	border-radius: 4px;
	padding: 14px 28px;
	cursor: pointer;
	transition: background-color 0.16s ease, color 0.16s ease;
	background: var(--cta);
	color: var(--white);
	letter-spacing: 0.01em;
}
.rnx7btn:hover { background: var(--cta-dark); color: var(--white); }
.rnx7btnfull { display: block; width: 100%; text-align: center; }
.rnx7btnout {
	background: transparent;
	color: var(--white);
	border: 2px solid var(--white);
	padding: 12px 26px;
}
.rnx7btnout:hover { background: rgba(255,255,255,0.12); color: var(--white); }

/* ——— legacy btn compat (used in footer) ——— */
.aozu0t2 {
	display: inline-block;
	font-family: var(--font-main);
	font-weight: 700;
	font-size: 1rem;
	text-decoration: none;
	border: 0;
	border-radius: 4px;
	padding: 14px 28px;
	cursor: pointer;
	transition: background-color 0.16s ease;
}
.ck6vxc2b { background: var(--cta); color: var(--white); }
.ck6vxc2b:hover { background: var(--cta-dark); color: var(--white); }
.l1aocau { display: block; width: 100%; text-align: center; }

/* ——— header ——— */
.ccq1vxvr8 {
	position: relative;
	background: var(--white);
	border-bottom: 2px solid var(--brand);
}
.ud8e9gy {
	max-width: 1200px;
	margin: 0 auto;
	padding: 12px 24px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
}
.vtn6ju6 { display: inline-flex; flex-shrink: 0; }
.vtn6ju6 img { height: 50px; width: auto; }

.hvp3409e .rt614yy8 {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	align-items: center;
	gap: 24px;
}
.hvp3409e .rt614yy8 li { margin: 0; }
.hvp3409e a {
	text-decoration: none;
	color: var(--ink);
	font-size: 0.97rem;
	font-weight: 500;
	padding: 6px 0;
	transition: color 0.14s;
}
.hvp3409e a:hover { color: var(--brand); }
.hvp3409e .idzbcm0 a,
.hvp3409e .menu-item-cta a {
	background: var(--cta);
	color: var(--white);
	padding: 10px 20px;
	border-radius: 4px;
}
.hvp3409e .idzbcm0 a:hover,
.hvp3409e .menu-item-cta a:hover { background: var(--cta-dark); color: var(--white); }

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

/* ——— HERO ——— */
.rnx7hero {
	position: relative;
	background: var(--brand-dark);
	overflow: hidden;
}
.rnx7bgimg {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 0;
}
.rnx7hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(110deg, rgba(10,22,40,0.94) 0%, rgba(10,22,40,0.75) 100%);
	z-index: 1;
}
.rnx7wrap {
	position: relative;
	z-index: 2;
	max-width: 1200px;
	margin: 0 auto;
	padding: 52px 24px 64px;
	display: grid;
	grid-template-columns: 0.9fr 1.1fr;
	gap: 48px;
	align-items: start;
}

/* form links */
.rnx7form { }
.rnx7card {
	background: var(--white);
	border-radius: 6px;
	padding: 28px 26px 24px;
	box-shadow: 0 20px 50px rgba(0,0,0,0.35);
	border-top: 4px solid var(--cta);
}
.rnx7frmttl {
	font-size: 1.3rem;
	margin-bottom: 6px;
	color: var(--brand);
	letter-spacing: -0.01em;
}
.rnx7frmsub {
	font-size: 0.9rem;
	color: var(--muted);
	margin-bottom: 16px;
}

.rnx7msg {
	font-size: 0.92rem;
	padding: 11px 13px;
	border-radius: 4px;
	margin-bottom: 14px;
}
.rnx7ok { background: var(--brand-soft); color: var(--brand-dark); }
.rnx7err { background: #fce8e1; color: #b13810; }

.rnx7frmgrid { display: flex; flex-direction: column; gap: 0; }
.rnx7row2 {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
}
.rnx7fld { margin-bottom: 12px; }
.rnx7fld label {
	display: block;
	font-size: 0.85rem;
	font-weight: 600;
	color: var(--ink);
	margin-bottom: 4px;
	letter-spacing: 0.01em;
}
.rnx7fld input {
	width: 100%;
	font-family: var(--font-main);
	font-size: 0.97rem;
	padding: 10px 12px;
	border: 1px solid var(--line);
	border-radius: 4px;
	background: #fafbfc;
	color: var(--ink);
	transition: border-color 0.14s, box-shadow 0.14s;
}
.rnx7fld input:focus {
	outline: none;
	border-color: var(--brand);
	box-shadow: 0 0 0 3px rgba(26,58,92,0.14);
}
.mj2f7onr { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.rnx7privacy {
	font-size: 0.78rem;
	color: #8a8fa0;
	margin-top: 10px;
	margin-bottom: 0;
}

/* tekst rechts */
.rnx7txt { color: #dce7f1; padding-top: 10px; }
.rnx7txt h1 {
	color: var(--white);
	font-size: 2.7rem;
	margin-bottom: 18px;
	line-height: 1.12;
}
.rnx7sub {
	font-size: 1.1rem;
	color: #b8ccdf;
	margin-bottom: 26px;
	line-height: 1.55;
}
.rnx7trust { list-style: none; margin: 0 0 32px; padding: 0; }
.rnx7trust li {
	display: flex;
	align-items: flex-start;
	gap: 11px;
	margin-bottom: 12px;
	color: var(--white);
	font-size: 1rem;
	font-weight: 500;
}
.rnx7trust svg { color: var(--cta-bright); flex-shrink: 0; margin-top: 2px; }

.rnx7kpi {
	display: flex;
	gap: 24px;
	flex-wrap: wrap;
}
.rnx7kpii {
	display: flex;
	flex-direction: column;
	background: rgba(255,255,255,0.10);
	border: 1px solid rgba(255,255,255,0.18);
	border-radius: 6px;
	padding: 14px 20px;
	min-width: 100px;
}
.rnx7kpii strong {
	display: block;
	font-size: 1.6rem;
	font-weight: 700;
	color: var(--cta-bright);
	line-height: 1;
	margin-bottom: 4px;
}
.rnx7kpii span { font-size: 0.8rem; color: #b8ccdf; line-height: 1.3; }

/* ——— main body ——— */
.rnx7main { background: var(--white); }
.rnx7sec { padding: 60px 0; }
.rnx7altbg { background: var(--soft); }
.rnx7cnt {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 24px;
}
.rnx7hdr { max-width: 760px; margin-bottom: 36px; }
.rnx7hdr h2 { margin-bottom: 12px; }
.rnx7hdr p { color: var(--muted); font-size: 1.05rem; margin-bottom: 0; }

/* ——— Product cards 4-col ——— */
.rnx7cards4 {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 22px;
}
.rnx7prodc {
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: 6px;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	transition: box-shadow 0.18s ease, transform 0.18s ease;
}
.rnx7prodc:hover {
	box-shadow: 0 8px 24px rgba(26,58,92,0.14);
	transform: translateY(-2px);
}
.rnx7imgbox img { width: 100%; height: 190px; object-fit: cover; }
.rnx7prodbody { padding: 20px 20px 22px; display: flex; flex-direction: column; flex: 1; }
.rnx7prodbody h3 { margin-bottom: 8px; font-size: 1.1rem; }
.rnx7prodbody p { color: var(--muted); font-size: 0.95rem; }
.rnx7price {
	margin-top: auto;
	padding-top: 14px;
	font-size: 1rem;
	color: var(--ink);
	border-top: 1px solid var(--line);
}
.rnx7price strong { font-size: 1.4rem; color: var(--brand); }

/* ——— Timeline vertical ——— */
.rnx7timeline { max-width: 680px; }
.rnx7tstep {
	display: grid;
	grid-template-columns: 52px 1fr;
	gap: 20px;
	position: relative;
}
.rnx7tstep + .rnx7tstep { margin-top: 0; }
.rnx7tline {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0;
}
.rnx7tnum {
	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;
	letter-spacing: 0;
}
.rnx7tbar {
	display: block;
	width: 2px;
	flex: 1;
	min-height: 40px;
	background: var(--line);
	margin-top: 6px;
	margin-bottom: 6px;
}
.rnx7tlast .rnx7tbar { display: none; }
.rnx7tcontent { padding: 10px 0 32px; }
.rnx7tlast .rnx7tcontent { padding-bottom: 0; }
.rnx7tcontent h3 { margin-bottom: 6px; }
.rnx7tcontent p { color: var(--muted); font-size: 0.97rem; margin-bottom: 0; }

/* ——— Pricing cards ——— */
.rnx7pcards {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(256px, 1fr));
	gap: 20px;
	margin-bottom: 28px;
}
.rnx7pcard {
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: 6px;
	padding: 24px 22px;
	display: flex;
	flex-direction: column;
	position: relative;
}
.rnx7pcardfeat {
	border: 2px solid var(--brand);
	box-shadow: 0 8px 28px rgba(26,58,92,0.14);
}
.rnx7pcardtag {
	position: absolute;
	top: -12px;
	left: 20px;
	background: var(--cta);
	color: var(--white);
	font-size: 0.75rem;
	font-weight: 700;
	padding: 3px 12px;
	border-radius: 20px;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}
.rnx7pcardtop { margin-bottom: 16px; border-bottom: 1px solid var(--line); padding-bottom: 16px; }
.rnx7pcardtop h3 { font-size: 1rem; margin-bottom: 8px; line-height: 1.25; }
.rnx7pcardprice { font-size: 1.05rem; margin-bottom: 0; color: var(--muted); }
.rnx7pcardprice strong { font-size: 1.8rem; color: var(--brand); font-weight: 700; display: block; line-height: 1; }
.rnx7pcardul {
	list-style: none;
	padding: 0;
	margin: 0;
	flex: 1;
}
.rnx7pcardul li {
	font-size: 0.9rem;
	color: var(--muted);
	padding: 6px 0;
	border-bottom: 1px solid var(--soft);
	display: flex;
	align-items: center;
	gap: 8px;
}
.rnx7pcardul li::before {
	content: "";
	display: inline-block;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--cta);
	flex-shrink: 0;
}
.rnx7pcardnote {
	font-size: 0.87rem;
	color: var(--muted);
	max-width: 860px;
	border-left: 3px solid var(--brand-soft);
	padding-left: 16px;
}

/* ——— Split layout ——— */
.rnx7split {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 48px;
	align-items: center;
}
.rnx7splitrev { }
.rnx7fig { margin: 0; }
.rnx7fig img { border-radius: 6px; box-shadow: 0 8px 28px rgba(0,0,0,0.16); width: 100%; }
.rnx7fig figcaption { font-size: 0.86rem; color: var(--muted); margin-top: 10px; }
.rnx7splittxt h2 { margin-bottom: 16px; }
.rnx7splittxt p { color: var(--muted); }

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

/* ——— Info cols ——— */
.rnx7infocols {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 36px;
}
.rnx7infocol h3 { margin-top: 24px; }
.rnx7infocol h3:first-child { margin-top: 0; }
.rnx7infocol p { color: var(--muted); font-size: 0.97rem; }

/* ——— CTA Band split ——— */
.rnx7ctaband { background: var(--brand); }
.rnx7ctasplit {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 12px 40px rgba(0,0,0,0.22);
}
.rnx7ctaimg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	min-height: 260px;
}
.rnx7ctatxt {
	background: var(--brand-dark);
	padding: 48px 40px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 18px;
}
.rnx7ctatxt h2 { color: var(--white); margin-bottom: 0; }
.rnx7ctatxt p { color: #a8bdcc; margin-bottom: 0; }

/* ——— FAQ accordion ——— */
.rnx7faq { max-width: 800px; }
.rnx7faqitem {
	border-bottom: 1px solid var(--line);
}
.rnx7faqitem:first-child { border-top: 1px solid var(--line); }
.rnx7faqq {
	display: flex;
	align-items: center;
	justify-content: space-between;
	list-style: none;
	padding: 18px 4px;
	cursor: pointer;
	font-size: 1.02rem;
	font-weight: 600;
	color: var(--brand);
	user-select: none;
	gap: 16px;
	letter-spacing: -0.01em;
}
.rnx7faqq::-webkit-details-marker { display: none; }
.rnx7faqq::after {
	content: "+";
	font-size: 1.4rem;
	font-weight: 400;
	color: var(--cta);
	flex-shrink: 0;
	line-height: 1;
	transition: transform 0.2s ease;
}
.rnx7faqitem[open] .rnx7faqq::after {
	transform: rotate(45deg);
}
.rnx7faqa {
	padding: 0 4px 18px;
}
.rnx7faqa p { color: var(--muted); font-size: 0.97rem; margin-bottom: 0; }

/* ——— footer ——— */
.ga3e13 { background: var(--brand-dark); color: #dde6ef; }
.erwltu2 {
	max-width: 1200px;
	margin: 0 auto;
	padding: 50px 24px 36px;
	display: grid;
	grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
	gap: 34px;
}
.nv17y1f9 p { color: #8fa8be; font-size: 0.94rem; }
.x36edga {
	height: 52px;
	width: auto;
	margin-bottom: 14px;
	background: var(--white);
	border-radius: 4px;
	padding: 8px 12px;
}
.wrkqhk {
	display: block;
	font-weight: 700;
	font-size: 1rem;
	color: var(--white);
	margin-bottom: 14px;
	letter-spacing: 0.01em;
}
.ewiupkjhg { list-style: none; padding: 0; margin: 0; }
.ewiupkjhg li {
	color: #8fa8be;
	font-size: 0.92rem;
	padding: 5px 0;
}
.nv17y1f9 .aozu0t2 { margin-top: 8px; }
.liszfw {
	border-top: 1px solid rgba(255,255,255,0.12);
	max-width: 1200px;
	margin: 0 auto;
	padding: 20px 24px 30px;
	display: flex;
	flex-direction: column;
	gap: 8px;
}
.liszfw span { color: #6a8096; font-size: 0.84rem; }
.h9ho4x { max-width: 900px; }

/* ——— responsive ——— */
@media (max-width: 1000px) {
	.rnx7wrap { grid-template-columns: 1fr; gap: 32px; }
	.rnx7txt h1 { font-size: 2.1rem; }
	.rnx7split { grid-template-columns: 1fr; gap: 28px; }
	.rnx7splitrev .rnx7splitimg { order: -1; }
	.rnx7infocols { grid-template-columns: 1fr; gap: 24px; }
	.rnx7ctasplit { grid-template-columns: 1fr; }
	.rnx7ctaimg { display: none; }
	.rnx7ctatxt { padding: 40px 32px; }
	.erwltu2 { grid-template-columns: 1fr 1fr; gap: 28px; }
}

@media (max-width: 900px) {
	.grs3wwy {
		display: block;
		cursor: pointer;
		padding: 6px;
		background: transparent;
		border: 0;
	}
	.hvp3409e {
		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.13);
		z-index: 90;
	}
	.n6957y:checked ~ .hvp3409e { display: block; }
	.hvp3409e .rt614yy8 {
		flex-direction: column;
		align-items: stretch;
		gap: 0;
		padding: 8px 24px 18px;
	}
	.hvp3409e .rt614yy8 li { border-bottom: 1px solid var(--line); margin: 0; }
	.hvp3409e .rt614yy8 li:last-child { border-bottom: 0; }
	.hvp3409e a { display: block; padding: 14px 0; }
	.hvp3409e .idzbcm0 a,
	.hvp3409e .menu-item-cta a {
		text-align: center;
		margin: 14px 0 4px;
		padding: 13px 20px;
	}
	.n6957y:checked ~ .grs3wwy span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
	.n6957y:checked ~ .grs3wwy span:nth-child(2) { opacity: 0; }
	.n6957y:checked ~ .grs3wwy 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; }
	.rnx7txt h1 { font-size: 1.9rem; }
	.rnx7wrap { padding: 36px 20px 44px; }
	.rnx7kpi { gap: 12px; }
	.rnx7kpii { padding: 12px 16px; min-width: 80px; }
	.rnx7sec { padding: 44px 0; }
	.rnx7cnt { padding: 0 20px; }
	.rnx7row2 { grid-template-columns: 1fr; gap: 0; }
	.rnx7cards4 { grid-template-columns: 1fr; }
	.rnx7pcards { grid-template-columns: 1fr; }
	.rnx7timeline { max-width: 100%; }
	.erwltu2 { grid-template-columns: 1fr; gap: 24px; }
	.rnx7ctatxt { padding: 32px 22px; }
	.ud8e9gy { padding: 10px 20px; }
	.vtn6ju6 img { height: 42px; }
	.rnx7card { padding: 22px 18px 20px; }
}
