:root {
	--brand:      #0D4F5C;
	--brand-dark: #0A3F4A;
	--brand-soft: #E0F0F3;
	--cta:        #E8826F;
	--cta-dark:   #CC6A58;
	--cta-text:   #fff;
	--text:       #1c1c1c;
	--text-muted: #555;
	--border:     #D0DEE0;
	--bg:         #F4F1EA;
	--bg-alt:     #EBE7DE;
	--bg-card:    #ffffff;
}

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

html { font-size: 16px; }

body {
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.65;
	color: var(--text);
	background: var(--bg);
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--brand); text-decoration: none; }
a:hover, a:focus { color: var(--cta); }
h1, h2, h3, h4, h5, h6 { font-weight: 700; line-height: 1.3; }
ul, ol { padding-left: 1.4em; }

/* ============================================================
   HEADER evb-hdr
   ============================================================ */
.evb-hdr {
	background: var(--brand-dark);
	position: sticky;
	top: 0;
	z-index: 100;
	box-shadow: 0 2px 8px rgba(0,0,0,0.18);
}

.evb-hdr-inner {
	max-width: 1200px;
	margin-inline: auto;
	padding: 0 20px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 60px;
	gap: 16px;
}

.evb-logo {
	display: flex;
	align-items: center;
	gap: 10px;
	text-decoration: none;
}

.evb-logo img {
	width: 44px;
	height: 44px;
	object-fit: contain;
}

.evb-logo .evb-logo-text {
	font-size: 17px;
	font-weight: 700;
	color: #fff;
	line-height: 1.3;
}

/* Hamburger CSS-only */
.evb-menu-toggle {
	position: absolute;
	opacity: 0;
	pointer-events: none;
	width: 0;
	height: 0;
}

.evb-menu-burger {
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 36px;
	height: 36px;
	cursor: pointer;
	padding: 4px;
	flex-shrink: 0;
}

.evb-menu-burger span {
	display: block;
	width: 100%;
	height: 2px;
	background: #fff;
}

.evb-menu-toggle:checked ~ .evb-menu-burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.evb-menu-toggle:checked ~ .evb-menu-burger span:nth-child(2) { opacity: 0; }
.evb-menu-toggle:checked ~ .evb-menu-burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.evb-nav ul {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 4px;
	align-items: center;
}

.evb-nav ul li a {
	color: #fff;
	font-size: 14px;
	font-weight: 400;
	padding: 8px 12px;
	display: block;
	border-radius: 4px;
}

.evb-nav ul li a:hover,
.evb-nav ul li a:focus {
	background: var(--brand);
	color: #fff;
}

.evb-hdr-cta {
	display: inline-block;
	background: var(--cta);
	color: #fff;
	font-weight: 700;
	font-size: 14px;
	padding: 8px 18px;
	border-radius: 4px;
	white-space: nowrap;
	text-decoration: none;
	flex-shrink: 0;
}

.evb-hdr-cta:hover,
.evb-hdr-cta:focus {
	background: var(--cta-dark);
	color: #fff;
}

@media (max-width: 767px) {
	.evb-menu-burger { display: flex; }
	.evb-nav {
		display: none;
		width: 100%;
		background: var(--brand);
		padding: 12px 20px 16px;
	}
	.evb-menu-toggle:checked ~ .evb-nav {
		display: block;
	}
	.evb-nav ul {
		flex-direction: column;
		gap: 2px;
	}
	.evb-hdr-inner { flex-wrap: wrap; }
	.evb-hdr-cta { display: none; }
}

/* ============================================================
   HERO - H1 centred top + trust bar + bandeau form bottom
   ============================================================ */
.evb-hero {
	position: relative;
	overflow: hidden;
	min-height: 620px;
	background: var(--brand);
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.evb-hero::before {
	content: '';
	position: absolute;
	inset: 0;
	background-image: url('assets/img/hero.webp');
	background-size: cover;
	background-position: center;
	opacity: 0.2;
	pointer-events: none;
}

.evb-hero__top {
	position: relative;
	z-index: 2;
	text-align: center;
	padding: 60px 20px 32px;
	max-width: 840px;
	margin-inline: auto;
	width: 100%;
}

.evb-hero__top h1 {
	font-size: clamp(34px, 5vw, 60px);
	font-weight: 700;
	color: #fff;
	line-height: 1.15;
	margin-bottom: 20px;
}

.evb-hero__sub {
	font-size: 18px;
	color: rgba(255,255,255,0.88);
	line-height: 1.65;
	margin-bottom: 28px;
}

/* Trust bar: 4 items side by side with vertical separators */
.evb-trust {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 0;
	margin: 0 auto;
}

.evb-trust-item {
	display: flex;
	align-items: center;
	gap: 8px;
	color: rgba(255,255,255,0.92);
	font-size: 14px;
	font-weight: 700;
	padding: 8px 20px;
}

.evb-trust-item + .evb-trust-item {
	border-left: 1px solid rgba(255,255,255,0.3);
}

.evb-trust-item svg {
	flex-shrink: 0;
	color: var(--cta);
}

/* Bandeau form - full width at bottom of hero */
.evb-hero__form-strip {
	position: relative;
	z-index: 2;
	background: rgba(10,63,74,0.92);
	border-top: 2px solid var(--cta);
	padding: 28px 20px 32px;
}

.evb-hero__form-strip h2 {
	font-size: 18px;
	font-weight: 700;
	color: #fff;
	text-align: center;
	margin-bottom: 18px;
}

.evb-form-horiz {
	max-width: 1100px;
	margin-inline: auto;
	display: grid;
	grid-template-columns: repeat(6, 1fr) auto;
	gap: 10px;
	align-items: end;
}

.evb-fld {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.evb-fld label {
	font-size: 12px;
	font-weight: 700;
	color: rgba(255,255,255,0.8);
	text-transform: uppercase;
	letter-spacing: 0.03em;
}

.evb-fld input {
	padding: 10px 12px;
	border: 1px solid rgba(255,255,255,0.25);
	border-radius: 4px;
	font-size: 14px;
	font-family: inherit;
	color: var(--text);
	background: #fff;
	line-height: 1.65;
}

.evb-fld input:focus {
	outline: none;
	border-color: var(--cta);
	box-shadow: 0 0 0 2px rgba(232,130,111,0.25);
}

.evb-hp { display: none; }

.evb-btn-submit {
	padding: 11px 22px;
	background: var(--cta);
	color: #fff;
	font-size: 15px;
	font-weight: 700;
	border: none;
	border-radius: 4px;
	cursor: pointer;
	font-family: inherit;
	white-space: nowrap;
	line-height: 1.3;
}

.evb-btn-submit:hover,
.evb-btn-submit:focus {
	background: var(--cta-dark);
	outline: none;
}

.evb-form-msg {
	padding: 10px 14px;
	border-radius: 4px;
	font-size: 14px;
	margin-bottom: 12px;
	text-align: center;
	line-height: 1.65;
}
.evb-form-msg.evb-ok { background: #d4edda; color: #1a5c2a; }
.evb-form-msg.evb-err { background: #fde8e0; color: #7a1a00; }

.evb-form-privacy {
	font-size: 11px;
	color: rgba(255,255,255,0.5);
	text-align: center;
	margin-top: 10px;
}

/* Mobile: stack form fields */
@media (max-width: 1024px) {
	.evb-form-horiz {
		grid-template-columns: 1fr 1fr 1fr;
	}
}

@media (max-width: 640px) {
	.evb-form-horiz {
		grid-template-columns: 1fr 1fr;
	}
	.evb-form-horiz .evb-btn-submit {
		grid-column: 1 / -1;
		width: 100%;
	}
	.evb-trust-item {
		padding: 6px 10px;
		font-size: 13px;
	}
}

/* ============================================================
   SHARED WRAP
   ============================================================ */
.evb-wrap {
	max-width: 1200px;
	margin-inline: auto;
	padding: 0 20px;
}

/* ============================================================
   SECTION: PROBLEMEN (horizontal scroll-snap carousel)
   ============================================================ */
.evb-problemen {
	padding: 56px 0;
	background: var(--bg);
}

.evb-problemen-hd {
	text-align: center;
	margin-bottom: 36px;
}

.evb-problemen-hd h2 {
	font-size: clamp(22px, 3vw, 30px);
	font-weight: 700;
	color: var(--brand);
}

.evb-problemen-hd p {
	font-size: 16px;
	color: var(--text-muted);
	margin-top: 8px;
}

.evb-carousel {
	display: flex;
	gap: 20px;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	padding: 4px 20px 16px;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: thin;
	scrollbar-color: var(--brand) var(--bg-alt);
}

.evb-prob-card {
	flex: 0 0 260px;
	scroll-snap-align: start;
	background: var(--bg-card);
	border-radius: 8px;
	padding: 28px 22px;
	border-top: 4px solid var(--brand);
	box-shadow: 0 2px 10px rgba(13,79,92,0.1);
}

.evb-prob-card h3 {
	font-size: 17px;
	font-weight: 700;
	color: var(--brand);
	margin-bottom: 10px;
}

.evb-prob-card p {
	font-size: 14px;
	color: var(--text-muted);
	line-height: 1.65;
}

.evb-prob-icon {
	width: 44px;
	height: 44px;
	background: var(--brand-soft);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 14px;
	color: var(--brand);
}

/* ============================================================
   SECTION: FOTOS
   ============================================================ */
.evb-fotos {
	background: var(--bg-alt);
	padding: 48px 0;
}

.evb-fotos-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 16px;
}

.evb-fotos-grid img {
	width: 100%;
	height: 220px;
	object-fit: cover;
	border-radius: 6px;
}

/* ============================================================
   SECTION: WERKWIJZE
   ============================================================ */
.evb-werkwijze {
	padding: 64px 0;
	background: var(--bg);
}

.evb-werkwijze-hd {
	text-align: center;
	margin-bottom: 40px;
}

.evb-werkwijze-hd h2 {
	font-size: clamp(22px, 3vw, 30px);
	font-weight: 700;
	color: var(--brand);
}

.evb-werkwijze-hd p {
	font-size: 16px;
	color: var(--text-muted);
	margin-top: 8px;
}

.evb-stappen {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 24px;
}

.evb-stap {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 12px;
}

.evb-stap-nr {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: var(--brand);
	color: #fff;
	font-size: 18px;
	font-weight: 700;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.evb-stap h3 {
	font-size: 16px;
	font-weight: 700;
	color: var(--brand);
}

.evb-stap p {
	font-size: 14px;
	color: var(--text-muted);
	line-height: 1.65;
}

/* ============================================================
   SECTION: CONTENT (article)
   ============================================================ */
.evb-content {
	padding: 56px 0;
	background: var(--bg);
}

.evb-content h2 {
	font-size: clamp(20px, 2.8vw, 28px);
	font-weight: 700;
	color: var(--brand);
	margin-bottom: 16px;
	line-height: 1.3;
}

.evb-content h3 {
	font-size: clamp(17px, 2.2vw, 22px);
	font-weight: 700;
	color: var(--brand-dark);
	margin-bottom: 12px;
	margin-top: 24px;
	line-height: 1.3;
}

.evb-content p {
	margin-bottom: 16px;
	font-size: 16px;
	line-height: 1.65;
	color: var(--text);
}

.evb-content ul,
.evb-content ol {
	margin-bottom: 16px;
	font-size: 16px;
	line-height: 1.65;
	color: var(--text);
}

.evb-content ul li,
.evb-content ol li {
	margin-bottom: 6px;
	line-height: 1.65;
	color: var(--text);
}

.evb-content table {
	width: 100%;
	border-collapse: collapse;
	margin-bottom: 20px;
	font-size: 15px;
}

.evb-content table th,
.evb-content table td {
	border: 1px solid var(--border);
	padding: 10px 14px;
	text-align: left;
	line-height: 1.65;
	color: var(--text);
}

.evb-content table th {
	background: var(--bg-alt);
	font-weight: 700;
	color: var(--brand);
}

.evb-content a { color: var(--brand); }
.evb-content a:hover, .evb-content a:focus { color: var(--cta); }

/* Geo stat block */
.evb-geo-stats {
	background: var(--bg-alt);
	border: 1px solid var(--border);
	border-radius: 6px;
	padding: 20px 24px;
	margin-bottom: 24px;
}

.evb-geo-stats table {
	width: 100%;
	border-collapse: collapse;
	font-size: 14px;
}

.evb-geo-stats table tr td {
	border: none;
	padding: 4px 12px 4px 0;
	vertical-align: top;
	line-height: 1.65;
	color: var(--text);
}

.evb-geo-stats table tr td:first-child {
	font-weight: 700;
	color: var(--brand);
	white-space: nowrap;
	min-width: 110px;
}

/* ============================================================
   SECTION: PRIJZEN
   ============================================================ */
.evb-prijzen {
	padding: 64px 0;
	background: var(--brand);
}

.evb-prijzen-hd {
	text-align: center;
	margin-bottom: 40px;
}

.evb-prijzen-hd h2 {
	font-size: clamp(22px, 3vw, 30px);
	font-weight: 700;
	color: #fff;
}

.evb-prijzen-hd p {
	font-size: 16px;
	color: rgba(255,255,255,0.8);
	margin-top: 8px;
}

.evb-prijzen-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 20px;
}

.evb-prijs-card {
	background: rgba(255,255,255,0.08);
	border: 1px solid rgba(255,255,255,0.2);
	border-radius: 8px;
	padding: 28px 22px;
}

.evb-prijs-card h3 {
	font-size: 16px;
	font-weight: 700;
	color: #fff;
	margin-bottom: 8px;
}

.evb-prijs-card .evb-prijs-val {
	font-size: 26px;
	font-weight: 700;
	color: var(--cta);
	margin-bottom: 10px;
}

.evb-prijs-card p {
	font-size: 14px;
	color: rgba(255,255,255,0.75);
	line-height: 1.65;
}

/* ============================================================
   SECTION: FAQ
   ============================================================ */
.evb-faq {
	padding: 64px 0;
	background: var(--bg-alt);
}

.evb-faq-hd {
	text-align: center;
	margin-bottom: 36px;
}

.evb-faq-hd h2 {
	font-size: clamp(22px, 3vw, 30px);
	font-weight: 700;
	color: var(--brand);
}

.evb-faq-list {
	display: flex;
	flex-direction: column;
	gap: 12px;
	max-width: 860px;
	margin-inline: auto;
}

.evb-faq-item {
	background: var(--bg-card);
	border: 1px solid var(--border);
	border-radius: 6px;
	overflow: hidden;
}

.evb-faq-item summary {
	padding: 16px 20px;
	cursor: pointer;
	font-weight: 700;
	font-size: 15px;
	color: var(--brand);
	list-style: none;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 12px;
	line-height: 1.3;
}

.evb-faq-item summary::-webkit-details-marker { display: none; }

.evb-faq-item summary::after {
	content: '+';
	font-size: 20px;
	font-weight: 700;
	color: var(--cta);
	flex-shrink: 0;
}

.evb-faq-item[open] summary::after { content: '-'; }

.evb-faq-item .evb-faq-body {
	padding: 0 20px 18px;
	font-size: 14px;
	color: var(--text-muted);
	line-height: 1.65;
}

/* ============================================================
   FOOTER evb-ftr
   ============================================================ */
.evb-ftr {
	background: var(--brand-dark);
	color: rgba(255,255,255,0.75);
	padding: 40px 0 24px;
}

.evb-ftr-inner {
	max-width: 1200px;
	margin-inline: auto;
	padding: 0 20px;
}

.evb-ftr-cols {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 32px;
	margin-bottom: 32px;
}

.evb-ftr-col h3 {
	font-size: 15px;
	font-weight: 700;
	color: #fff;
	margin-bottom: 12px;
	line-height: 1.3;
}

.evb-ftr-col p,
.evb-ftr-col ul {
	font-size: 13px;
	color: rgba(255,255,255,0.7);
	line-height: 1.65;
}

.evb-ftr-col ul {
	list-style: none;
	padding: 0;
}

.evb-ftr-col ul li { margin-bottom: 6px; }

.evb-ftr-col ul li a {
	color: rgba(255,255,255,0.7);
	font-size: 13px;
}

.evb-ftr-col ul li a:hover,
.evb-ftr-col ul li a:focus {
	color: #fff;
}

.evb-ftr-bottom {
	border-top: 1px solid rgba(255,255,255,0.12);
	padding-top: 20px;
	font-size: 12px;
	color: rgba(255,255,255,0.5);
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 8px;
	line-height: 1.65;
}

.evb-btn-cta {
	display: inline-block;
	background: var(--cta);
	color: #fff;
	font-weight: 700;
	font-size: 15px;
	padding: 13px 28px;
	border-radius: 4px;
	text-decoration: none;
	white-space: nowrap;
	flex-shrink: 0;
}

.evb-btn-cta:hover,
.evb-btn-cta:focus {
	background: var(--cta-dark);
	color: #fff;
}
