/* ═══════════════════════════════════════════════════════
   COMPUTERHOF — MAIN STYLESHEET
   v2.0.0
   Gedeelde stijlen voor alle pagina's.
   Page-specifieke stijlen blijven inline in de page-template.
   ═══════════════════════════════════════════════════════ */

/* ───────────── 1. TOKENS ───────────── */
:root {
	--navy:       #08142A;
	--navy-mid:   #0D1E3D;
	--blue:       #1D5CC8;
	--blue-v:     #2D6FDB;
	--blue-lt:    #5B9CF0;
	--blue-mist:  rgba(29,92,200,0.08);
	--white:      #FFFFFF;
	--off-white:  #F9FAFB;
	--surface:    #F4F7FD;
	--border:     #E1E8F5;
	--border-b:   rgba(29,92,200,0.16);
	--text:       #0C1829;
	--text-2:     #2D3F5C;
	--text-3:     #5C718A;
	--text-4:     #8FA3BB;
	--gold:       #E8A020;
	--green:      #0EA472;

	--s-xs: 0 1px 3px rgba(12,24,41,0.05), 0 2px 6px rgba(12,24,41,0.04);
	--s-sm: 0 2px 8px rgba(12,24,41,0.06), 0 8px 20px rgba(12,24,41,0.05);
	--s-md: 0 4px 12px rgba(12,24,41,0.05), 0 16px 32px rgba(12,24,41,0.07);
	--s-lg: 0 8px 20px rgba(12,24,41,0.05), 0 24px 56px rgba(12,24,41,0.09), 0 48px 96px rgba(12,24,41,0.06);
	--s-blue:    0 6px 20px rgba(29,92,200,0.22), 0 18px 48px rgba(29,92,200,0.12);
	--s-blue-xl: 0 10px 36px rgba(29,92,200,0.3), 0 28px 72px rgba(29,92,200,0.15);

	--r-sm:  8px;
	--r-md:  14px;
	--r-lg:  22px;
	--r-xl:  30px;
	--r-pill: 999px;

	--f-hd: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
	--f-bd: 'Inter', system-ui, -apple-system, sans-serif;

	--ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
	--ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
	--ease-sm:     cubic-bezier(0.4, 0, 0.2, 1);

	--t-fast: 0.14s var(--ease-sm);
	--t-base: 0.24s var(--ease-sm);
	--t-slow: 0.4s  var(--ease-out);

	--nav-h:  72px;
}

/* ───────────── 2. RESET & BASE ───────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
	font-family: var(--f-bd);
	font-size: 16px;
	line-height: 1.7;
	color: var(--text);
	background: var(--white);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	overflow-x: hidden;
}
h1, h2, h3, h4, h5, h6 {
	font-family: var(--f-hd);
	line-height: 1.15;
	letter-spacing: -0.025em;
	color: var(--text);
}
a { color: var(--blue); text-decoration: none; }
img, svg, video { max-width: 100%; display: block; height: auto; }
button { font: inherit; }
input, textarea, select { font: inherit; color: inherit; }
::selection { background: rgba(29,92,200,0.14); color: var(--blue); }
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: var(--r-pill); }

.skip-link {
	position: absolute;
	left: -9999px;
	top: 0;
	background: var(--navy);
	color: #fff;
	padding: 10px 16px;
	border-radius: 0 0 8px 0;
	z-index: 1000;
}
.skip-link:focus { left: 0; }

/* Honeypot — onzichtbaar maar bereikbaar voor bots */
.ch-hp {
	position: absolute !important;
	left: -9999px !important;
	width: 1px !important;
	height: 1px !important;
	opacity: 0 !important;
	pointer-events: none !important;
}

/* ───────────── 3. LAYOUT ───────────── */
.wrap     { max-width: 1120px; margin: 0 auto; padding: 0 28px; }
.wrap-sm  { max-width: 820px;  margin: 0 auto; padding: 0 28px; }
.sec      { padding: 100px 0; }
.sec-alt  { background: var(--off-white); }
.sec-surf { background: var(--surface); }

/* ───────────── 4. SCROLL REVEAL ───────────── */
.r {
	opacity: 0;
	transform: translateY(28px);
	transition: opacity 0.65s var(--ease-out), transform 0.65s var(--ease-out);
}
.r.in { opacity: 1; transform: none; }
.d1 { transition-delay: 0.08s; }
.d2 { transition-delay: 0.16s; }
.d3 { transition-delay: 0.24s; }
.d4 { transition-delay: 0.32s; }
.d5 { transition-delay: 0.40s; }

[data-aos] {
	opacity: 0;
	transform: translateY(28px);
	transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
[data-aos].in { opacity: 1; transform: none; }
[data-aos="zoom-in"] { transform: scale(0.96); }
[data-aos="zoom-in"].in { transform: scale(1); }
[data-aos="fade-right"] { transform: translateX(-28px); }
[data-aos="fade-right"].in { transform: translateX(0); }
[data-aos="fade-left"] { transform: translateX(28px); }
[data-aos="fade-left"].in { transform: translateX(0); }

/* ───────────── 5. TYPOGRAPHY HELPERS ───────────── */
.eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-family: var(--f-hd);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--blue);
	margin-bottom: 18px;
}
.eyebrow::before {
	content: '';
	width: 22px;
	height: 2px;
	border-radius: 2px;
	background: var(--blue-v);
	flex-shrink: 0;
}
.hdg {
	font-size: clamp(28px, 4vw, 48px);
	font-weight: 800;
	color: var(--text);
	margin-bottom: 18px;
	line-height: 1.1;
	letter-spacing: -0.03em;
}
.hdg em {
	font-style: normal;
	background: linear-gradient(130deg, var(--blue) 0%, var(--blue-v) 60%, var(--blue-lt) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}
.sub {
	font-size: 17px;
	color: var(--text-3);
	font-weight: 400;
	line-height: 1.75;
	max-width: 580px;
}
.sec-hd { margin-bottom: 60px; }
.sec-hd.center { text-align: center; }
.sec-hd.center .sub { margin: 0 auto; }
.sec-hd.center .eyebrow { justify-content: center; }

/* ───────────── 6. BUTTONS ───────────── */
.btn {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 14px 28px;
	border-radius: var(--r-md);
	font-family: var(--f-hd);
	font-size: 15px;
	font-weight: 600;
	letter-spacing: -0.01em;
	cursor: pointer;
	border: none;
	overflow: hidden;
	text-decoration: none;
	white-space: nowrap;
	transition: transform var(--t-base), box-shadow var(--t-base), background var(--t-base);
	-webkit-tap-highlight-color: transparent;
	user-select: none;
	min-height: 44px; /* WCAG tap target */
}
.btn::after {
	content: '';
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(255,255,255,0.22) 0%, transparent 65%);
	opacity: 0;
	transition: opacity 0.3s;
	pointer-events: none;
}
.btn:hover::after { opacity: 1; }

.btn-p, .btn-primary {
	background: linear-gradient(130deg, var(--blue) 0%, var(--blue-v) 100%);
	color: var(--white);
	box-shadow: var(--s-blue);
}
.btn-p:hover, .btn-primary:hover {
	transform: translateY(-2px);
	box-shadow: var(--s-blue-xl);
}
.btn-p:active, .btn-primary:active { transform: translateY(0) scale(0.99); }

.btn-o, .btn-outline {
	background: var(--white);
	color: var(--text-2);
	border: 1.5px solid var(--border);
	box-shadow: var(--s-xs);
}
.btn-o:hover, .btn-outline:hover {
	border-color: var(--blue);
	color: var(--blue);
	transform: translateY(-2px);
	box-shadow: var(--s-sm), 0 0 0 4px var(--blue-mist);
}

.btn-g, .btn-ghost {
	background: rgba(255,255,255,0.1);
	color: var(--white);
	border: 1.5px solid rgba(255,255,255,0.2);
}
.btn-g:hover, .btn-ghost:hover {
	background: rgba(255,255,255,0.16);
	border-color: rgba(255,255,255,0.3);
	transform: translateY(-2px);
}

.btn-lg { padding: 16px 34px; font-size: 16px; border-radius: var(--r-lg); min-height: 52px; }
.btn .arr, .arr {
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background: rgba(255,255,255,0.18);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 11px;
	flex-shrink: 0;
	transition: transform var(--t-base);
}
.btn:hover .arr { transform: translateX(3px); }

/* ───────────── 7. NAVBAR ───────────── */
.nav {
	position: fixed;
	top: 0; left: 0; right: 0;
	z-index: 999;
	transition: background var(--t-base), box-shadow var(--t-base), border-color var(--t-base);
	background: transparent;
	border-bottom: 1px solid transparent;
}
.nav.scrolled {
	background: rgba(8,20,42,0.95);
	-webkit-backdrop-filter: blur(20px) saturate(180%);
	backdrop-filter: blur(20px) saturate(180%);
	border-bottom-color: rgba(255,255,255,0.07);
	box-shadow: 0 4px 28px rgba(0,0,0,0.2);
}
.nav-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: var(--nav-h);
	gap: 12px;
}
.nav-logo {
	display: inline-flex;
	align-items: center;
	flex-shrink: 0;
}
.nav-logo img {
	height: 40px;
	width: auto;
	object-fit: contain;
	display: block;
}
.nav-logo-text {
	font-family: var(--f-hd);
	font-size: 20px;
	font-weight: 800;
	color: #fff;
	letter-spacing: -0.04em;
}
.nav-logo-text span { color: #7BB8FF; }

.nav-menu {
	display: flex;
	align-items: center;
	gap: 4px;
}
.nav-link {
	position: relative;
	font-family: var(--f-hd);
	font-size: 14px;
	font-weight: 500;
	color: rgba(255,255,255,0.7);
	padding: 9px 14px;
	border-radius: var(--r-sm);
	text-decoration: none;
	transition: color var(--t-fast), background var(--t-fast);
	letter-spacing: -0.01em;
}
.nav-link::after {
	content: '';
	position: absolute;
	left: 14px; right: 14px;
	bottom: 4px;
	height: 1.5px;
	background: linear-gradient(90deg, var(--blue-lt), #93C5FD);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.32s var(--ease-out);
}
.nav-link:hover { color: var(--white); }
.nav-link:hover::after { transform: scaleX(1); }
.nav-link.active {
	color: var(--white);
	background: rgba(91,156,240,0.1);
}
.nav-link.active::after { transform: scaleX(1); }

.nav-right { display: flex; align-items: center; gap: 14px; }
.nav-cta {
	padding: 11px 20px !important;
	font-size: 14px !important;
	border-radius: 11px !important;
	letter-spacing: -0.005em;
	font-weight: 600 !important;
	min-height: 0;
}
.nav-cta-icon {
	font-size: 14px;
	display: inline-flex;
	align-items: center;
	animation: navPhoneShake 4s ease-in-out infinite;
	transform-origin: 70% 30%;
}
@keyframes navPhoneShake {
	0%, 70%, 100% { transform: rotate(0); }
	72% { transform: rotate(-12deg); }
	74% { transform: rotate(12deg); }
	76% { transform: rotate(-10deg); }
	78% { transform: rotate(10deg); }
	80%, 90% { transform: rotate(0); }
}

/* Hamburger — clean lijntjes, geen emoji */
.nav-toggle {
	display: none;
	background: rgba(255,255,255,0.08);
	border: 1px solid rgba(255,255,255,0.14);
	color: var(--white);
	width: 44px; height: 44px;
	border-radius: var(--r-md);
	cursor: pointer;
	padding: 0;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 5px;
	-webkit-tap-highlight-color: transparent;
}
.nav-toggle-bar {
	display: block;
	width: 20px;
	height: 2px;
	background: #fff;
	border-radius: 2px;
	transition: transform 0.25s var(--ease-sm), opacity 0.2s;
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
	display: none;
	position: fixed;
	top: var(--nav-h);
	left: 0; right: 0;
	background: rgba(8,20,42,0.98);
	-webkit-backdrop-filter: blur(20px);
	backdrop-filter: blur(20px);
	border-bottom: 1px solid rgba(255,255,255,0.1);
	padding: 14px 20px 24px;
	z-index: 998;
	flex-direction: column;
	gap: 2px;
	box-shadow: 0 12px 32px rgba(0,0,0,0.3);
	max-height: calc(100vh - var(--nav-h));
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
	transform: translateY(-12px);
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.25s, transform 0.25s;
}
.nav-mobile.open {
	opacity: 1;
	transform: translateY(0);
	pointer-events: auto;
}
.nav-mobile a {
	display: block;
	padding: 14px 14px;
	color: rgba(255,255,255,0.85);
	font-family: var(--f-hd);
	font-size: 16px;
	font-weight: 500;
	border-radius: var(--r-md);
	text-decoration: none;
	transition: background var(--t-fast), color var(--t-fast);
	min-height: 44px;
}
.nav-mobile a:hover, .nav-mobile a.active {
	background: rgba(91,156,240,0.14);
	color: var(--white);
}
.nav-mobile-cta {
	margin-top: 14px;
	padding-top: 16px;
	border-top: 1px solid rgba(255,255,255,0.08);
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.nav-mobile-cta .btn {
	width: 100%;
	text-align: center;
	justify-content: center;
}
.nav-mobile-plan {
	text-align: center;
	background: rgba(255,255,255,0.06) !important;
	color: #fff !important;
	border: 1px solid rgba(255,255,255,0.12);
	padding: 14px !important;
	border-radius: var(--r-md);
	font-family: var(--f-hd);
	font-weight: 600;
	font-size: 14px;
}

/* ───────────── 8. PAGE HERO (.phero) ───────────── */
.phero {
	position: relative;
	padding: calc(var(--nav-h) + 70px) 0 80px;
	background: linear-gradient(170deg, var(--navy) 0%, var(--navy-mid) 100%);
	color: var(--white);
	text-align: center;
	overflow: hidden;
}
.phero::before {
	content: '';
	position: absolute;
	inset: 0;
	background: radial-gradient(ellipse 80% 60% at 50% 30%, rgba(29,92,200,0.18) 0%, transparent 65%);
	pointer-events: none;
}
.phero > .wrap { position: relative; z-index: 1; }
.phero-chip {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: rgba(29,92,200,0.18);
	border: 1px solid rgba(91,156,240,0.28);
	color: #9EC4F8;
	font-family: var(--f-hd);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	padding: 8px 20px;
	border-radius: var(--r-pill);
	margin-bottom: 24px;
}
.phero h1 {
	font-size: clamp(30px, 4.6vw, 52px);
	font-weight: 800;
	color: var(--white);
	line-height: 1.08;
	letter-spacing: -0.035em;
	margin-bottom: 14px;
}
.phero h1 em {
	font-style: normal;
	background: linear-gradient(130deg, #7BB8FF 0%, #A8D4FF 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}
.phero-lead {
	font-size: clamp(16px, 2vw, 19px);
	color: rgba(255,255,255,0.7);
	max-width: 640px;
	margin: 0 auto 32px;
	line-height: 1.65;
}
.phero-btns {
	display: flex;
	gap: 14px;
	justify-content: center;
	flex-wrap: wrap;
}

/* ───────────── 9. TRUST BAR ───────────── */
.tbar {
	background: var(--navy);
	border-bottom: 1px solid rgba(255,255,255,0.06);
}
.tbar-inner {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	padding: 18px 0;
}
.ti {
	display: flex;
	align-items: center;
	gap: 9px;
	padding: 6px 28px;
	color: rgba(255,255,255,0.7);
	font-family: var(--f-hd);
	font-size: 13px;
	font-weight: 500;
	border-right: 1px solid rgba(255,255,255,0.08);
}
.ti:last-of-type { border-right: none; }
.ti-icon {
	width: 22px; height: 22px;
	border-radius: 50%;
	display: flex; align-items: center; justify-content: center;
	font-size: 11px;
	font-weight: 800;
	flex-shrink: 0;
}
.ti-icon.g { background: rgba(14,164,114,0.14); border: 1px solid rgba(14,164,114,0.28); color: var(--green); }
.ti-icon.s { background: rgba(232,160,32,0.12); border: 1px solid rgba(232,160,32,0.25); color: var(--gold); }
.ti-quote {
	padding: 6px 28px;
	font-size: 13px;
	color: rgba(255,255,255,0.38);
	font-style: italic;
	border-right: none;
}
.ti-quote strong { color: rgba(255,255,255,0.58); font-style: normal; font-weight: 500; }

/* ───────────── 10. CARDS (shared) ───────────── */
.pc, .sc, .wc, .rc, .prc {
	transition: transform 0.45s var(--ease-out), box-shadow 0.45s var(--ease-out), border-color 0.28s var(--ease-sm);
}
.pc:hover, .sc:hover, .wc:hover, .rc:hover { transform: translateY(-4px); box-shadow: var(--s-lg); }

/* ───────────── 11. FORM ───────────── */
.fg { margin-bottom: 16px; }
.fg label {
	display: block;
	font-family: var(--f-hd);
	font-size: 13px;
	font-weight: 600;
	color: var(--text);
	margin-bottom: 7px;
	letter-spacing: -0.01em;
}
.fg input, .fg textarea {
	width: 100%;
	padding: 14px 15px;
	border: 1.5px solid var(--border);
	border-radius: var(--r-md);
	font-family: var(--f-bd);
	font-size: 16px; /* 16px voorkomt iOS zoom-in op focus */
	color: var(--text);
	background: var(--off-white);
	outline: none;
	transition: border-color var(--t-base), box-shadow var(--t-base), background var(--t-base);
	-webkit-appearance: none;
	min-height: 44px;
}
.fg input:focus, .fg textarea:focus {
	border-color: var(--blue);
	background: var(--white);
	box-shadow: 0 0 0 4px rgba(29,92,200,0.09);
}
.fg input::placeholder, .fg textarea::placeholder { color: var(--text-4); }
.fg textarea { height: 120px; resize: vertical; line-height: 1.55; }
.f2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.fsubmit {
	width: 100%;
	padding: 16px;
	background: linear-gradient(130deg, var(--blue), var(--blue-v));
	color: var(--white);
	border: none;
	border-radius: var(--r-md);
	font-family: var(--f-hd);
	font-size: 16px;
	font-weight: 700;
	cursor: pointer;
	margin-top: 6px;
	letter-spacing: -0.01em;
	box-shadow: var(--s-blue);
	position: relative;
	overflow: hidden;
	transition: transform var(--t-base), box-shadow var(--t-base);
	min-height: 52px;
}
.fsubmit::after {
	content: '';
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(255,255,255,0.22) 0%, transparent 60%);
	opacity: 0;
	transition: opacity 0.3s;
}
.fsubmit:hover { transform: translateY(-2px); box-shadow: var(--s-blue-xl); }
.fsubmit:hover::after { opacity: 1; }
.ch-form-message {
	margin-top: 16px;
	padding: 12px 16px;
	border-radius: var(--r-md);
	font-size: 14px;
	font-weight: 500;
}
.ch-form-message.success {
	background: rgba(14,164,114,0.1);
	border: 1px solid rgba(14,164,114,0.25);
	color: var(--green);
}
.ch-form-message.error {
	background: rgba(220,38,38,0.08);
	border: 1px solid rgba(220,38,38,0.2);
	color: #b91c1c;
}

/* ───────────── 12. MOBILE STICKY BAR ───────────── */
.mbar {
	display: none;
	position: fixed;
	bottom: 0; left: 0; right: 0;
	z-index: 997;
	background: rgba(255,255,255,0.97);
	-webkit-backdrop-filter: blur(16px);
	backdrop-filter: blur(16px);
	padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
	border-top: 1px solid var(--border);
	gap: 10px;
	box-shadow: 0 -8px 28px rgba(12,24,41,0.1);
}
.mbar a {
	flex: 1;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 14px;
	border-radius: var(--r-md);
	font-family: var(--f-hd);
	font-size: 15px;
	font-weight: 700;
	text-align: center;
	letter-spacing: -0.01em;
	min-height: 48px;
}
.mbar-call {
	background: linear-gradient(130deg, var(--blue), var(--blue-v));
	color: var(--white);
	box-shadow: var(--s-blue);
}
.mbar-plan {
	background: var(--off-white);
	color: var(--text);
	border: 1.5px solid var(--border);
}

/* ───────────── 13. FOOTER ───────────── */
.footer {
	background: var(--navy);
	border-top: 1px solid rgba(255,255,255,0.05);
	color: rgba(255,255,255,0.55);
}
.footer-grid {
	display: grid;
	grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
	gap: 56px;
	padding: 80px 0 56px;
	border-bottom: 1px solid rgba(255,255,255,0.07);
}
.fcol h4 {
	font-family: var(--f-hd);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: rgba(255,255,255,0.4);
	margin-bottom: 22px;
}
.fcol-brand img {
	height: 42px;
	width: auto;
	margin-bottom: 18px;
	opacity: 0.95;
}
.fcol-brand p {
	font-size: 14px;
	color: rgba(255,255,255,0.55);
	line-height: 1.7;
	margin-bottom: 12px;
	max-width: 260px;
}
.fcol-tagline-sm {
	font-family: var(--f-hd);
	font-size: 12px !important;
	font-weight: 500 !important;
	color: rgba(255,255,255,0.32) !important;
	margin-bottom: 0 !important;
	letter-spacing: 0.01em;
}
.fcol ul { list-style: none; }
.fcol ul li { margin-bottom: 11px; }
.fcol ul li a {
	font-size: 14px;
	color: rgba(255,255,255,0.55);
	transition: color var(--t-fast), padding-left var(--t-base);
	display: inline-block;
}
.fcol ul li a:hover {
	color: var(--white);
	padding-left: 6px;
}
.fcol-contact-list { list-style: none; margin-bottom: 22px; }
.fcol-contact-list li {
	display: flex;
	align-items: center;
	gap: 11px;
	margin-bottom: 12px;
	font-size: 14px;
	color: rgba(255,255,255,0.55);
}
.fcol-contact-list li a {
	color: rgba(255,255,255,0.55);
	transition: color var(--t-fast);
}
.fcol-contact-list li a:hover { color: var(--white); }
.fcol-contact-list svg { opacity: 0.45; flex-shrink: 0; }
.footer-bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 16px;
	padding: 22px 0;
}
.footer-bottom p, .footer-bottom a {
	font-size: 12px;
	color: rgba(255,255,255,0.32);
	transition: color var(--t-fast);
}
.footer-bottom a:hover { color: rgba(255,255,255,0.7); }
.footer-legal { display: flex; gap: 24px; align-items: center; }

/* ───────────── 14. HERO (homepage) — COMPACTER ───────────── */
.hero {
	position: relative;
	min-height: 70vh;
	display: flex;
	align-items: center;
	padding-top: var(--nav-h);
	overflow: hidden;
	color: var(--white);
}
.hero-img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: 42% center;
	z-index: 0;
	filter: brightness(0.36) saturate(0.75);
}
.hero-ov {
	position: absolute;
	inset: 0;
	z-index: 1;
	background:
		radial-gradient(ellipse 90% 70% at 50% 40%, rgba(29,92,200,0.18) 0%, transparent 65%),
		linear-gradient(170deg, rgba(8,20,42,0.78) 0%, rgba(12,28,60,0.62) 100%);
	pointer-events: none;
}
.hero-fade {
	position: absolute;
	bottom: 0; left: 0; right: 0;
	height: 140px;
	z-index: 2;
	background: linear-gradient(to top, var(--white), transparent);
	pointer-events: none;
}
.hero-inner {
	position: relative;
	z-index: 3;
	text-align: center;
	max-width: 780px;
	margin: 0 auto;
	padding: 44px 0 52px;
}
.hero-chip {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: rgba(29,92,200,0.2);
	border: 1px solid rgba(91,156,240,0.32);
	color: #9EC4F8;
	font-family: var(--f-hd);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	padding: 8px 18px;
	border-radius: var(--r-pill);
	margin-bottom: 24px;
}
.hero-chip .dot {
	width: 8px; height: 8px;
	border-radius: 50%;
	background: var(--green);
	box-shadow: 0 0 0 3px rgba(14,164,114,0.2);
	animation: blink 2.4s ease-in-out infinite;
	flex-shrink: 0;
}
@keyframes blink {
	0%, 100% { box-shadow: 0 0 0 3px rgba(14,164,114,0.2); }
	50%      { box-shadow: 0 0 0 7px rgba(14,164,114,0.06); }
}
.hero h1 {
	font-size: clamp(30px, 4.6vw, 52px);
	font-weight: 800;
	color: var(--white);
	line-height: 1.08;
	letter-spacing: -0.035em;
	margin-bottom: 14px;
}
.hero h1 em {
	font-style: normal;
	background: linear-gradient(130deg, #7BB8FF 0%, #A8D4FF 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}
.hero-lead {
	font-size: clamp(16px, 2vw, 20px);
	color: rgba(255,255,255,0.7);
	margin-bottom: 12px;
	line-height: 1.6;
}
.hero-note {
	font-size: 14px;
	color: rgba(255,255,255,0.5);
	margin-bottom: 28px;
	letter-spacing: 0.01em;
}
.hero-trust {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 32px;
}
.hero-tag {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: rgba(255,255,255,0.08);
	border: 1px solid rgba(255,255,255,0.14);
	color: rgba(255,255,255,0.85);
	font-family: var(--f-hd);
	font-size: 13px;
	font-weight: 500;
	padding: 7px 16px;
	border-radius: var(--r-pill);
}
.hero-tag .ck {
	width: 16px; height: 16px;
	border-radius: 50%;
	background: rgba(14,164,114,0.2);
	border: 1px solid rgba(14,164,114,0.4);
	color: var(--green);
	font-size: 9px;
	font-weight: 800;
	display: flex; align-items: center; justify-content: center;
	flex-shrink: 0;
}
.hero-btns {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 14px;
}

/* ───────────── 15. ANIMATIONS ───────────── */
@keyframes floatY { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }
@keyframes pulseGlow { 0%, 100% { box-shadow: var(--s-blue); } 50% { box-shadow: var(--s-blue-xl); } }
.about-float, .feat-badge { animation: floatY 4.5s ease-in-out infinite; }

/* ───────────── 16. RESPONSIVE ───────────── */
@media (max-width: 1024px) {
	.footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; padding: 64px 0 44px; }
	.fcol-brand { grid-column: 1 / -1; }
}

@media (max-width: 900px) {
	.nav-menu { display: none; }
	.nav-toggle { display: flex; }
	.nav-mobile { display: flex; }
	.nav-right .nav-cta { display: none; } /* op mobiel zit Bel direct in mobile menu + sticky bar */
	.mbar { display: flex; }
	body { padding-bottom: 78px; } /* ruimte voor sticky bar */
	.sec { padding: 76px 0; }
	.hero { min-height: auto; }
	.hero-inner { padding: 36px 0 56px; }
}

@media (max-width: 640px) {
	.wrap, .wrap-sm { padding: 0 20px; }
	.sec { padding: 60px 0; }
	.hdg { font-size: clamp(24px, 7vw, 34px); }
	.hero h1 { font-size: clamp(28px, 8vw, 38px); }
	.hero-inner { padding: 32px 0 48px; }
	.hero-lead { font-size: 16px; }
	.hero-trust { gap: 8px; }
	.hero-tag { font-size: 12px; padding: 6px 12px; }
	.hero-btns { flex-direction: column; width: 100%; align-items: stretch; }
	.hero-btns .btn { justify-content: center; }
	.phero { padding: calc(var(--nav-h) + 50px) 0 60px; }
	.phero h1 { font-size: clamp(26px, 8vw, 36px); }
	.phero-btns { flex-direction: column; align-items: stretch; }
	.tbar-inner { flex-direction: column; }
	.ti { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.07); width: 100%; justify-content: center; padding: 10px 16px; }
	.ti:last-of-type { border-bottom: none; }
	.ti-quote { padding: 12px 0; text-align: center; }
	.f2 { grid-template-columns: 1fr; }
	.footer-grid { grid-template-columns: 1fr; gap: 36px; padding: 52px 0 36px; }
	.footer-bottom { flex-direction: column; align-items: flex-start; gap: 8px; }
	.fcol ul li a { padding: 4px 0; min-height: 32px; } /* iets ruimere tap targets */
}

/* ───────────── 17. REDUCED MOTION ───────────── */
@media (prefers-reduced-motion: reduce) {
	*, *::before, *::after {
		animation-duration: 0.001ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.001ms !important;
		scroll-behavior: auto !important;
	}
	.r, [data-aos] { opacity: 1 !important; transform: none !important; }
}

/* ───────────── 18. PRINT ───────────── */
@media print {
	.nav, .nav-mobile, .mbar, .hero-fade, .hero-ov { display: none !important; }
	body { padding: 0; color: #000; background: #fff; }
}

/* ═══════════════════════════════════════════════════════
   19. SHARED COMPONENTS — gebruikt op meerdere pagina's
   (Trust strip, service cards, value cards, work steps,
    CTA blocks, stat cards, mini reviews, intro grid,
    contact blocks, feat-review)
   ═══════════════════════════════════════════════════════ */

/* Trust strip (subpagina's) */
.trust-strip {
	background: var(--navy);
	border-bottom: 1px solid rgba(255,255,255,0.06);
}
.trust-strip-inner {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	padding: 16px 0;
}
.ts-i {
	display: flex;
	align-items: center;
	gap: 9px;
	padding: 6px 24px;
	color: rgba(255,255,255,0.7);
	font-family: var(--f-hd);
	font-size: 13px;
	font-weight: 500;
	border-right: 1px solid rgba(255,255,255,0.08);
}
.ts-i:last-child { border-right: none; }
.ts-ico {
	width: 22px; height: 22px;
	border-radius: 50%;
	display: flex; align-items: center; justify-content: center;
	font-size: 11px;
	font-weight: 800;
	flex-shrink: 0;
}
.ts-ico.g { background: rgba(14,164,114,0.14); border: 1px solid rgba(14,164,114,0.28); color: var(--green); }
.ts-ico.s { background: rgba(232,160,32,0.12); border: 1px solid rgba(232,160,32,0.25); color: var(--gold); }

/* Service cards (diensten-pagina) */
.sgrid3 {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}
.scard {
	position: relative;
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: var(--r-xl);
	padding: 32px 26px;
	overflow: hidden;
	transition: transform 0.45s var(--ease-out), box-shadow 0.45s var(--ease-out), border-color 0.28s var(--ease-sm);
}
.scard::before {
	content: '';
	position: absolute;
	top: 0; left: 0; right: 0;
	height: 2px;
	background: linear-gradient(90deg, var(--blue), var(--blue-lt));
	transform: scaleX(0);
	transform-origin: left;
	transition: transform var(--t-slow);
}
.scard:hover::before { transform: scaleX(1); }
.scard-ico {
	display: inline-flex;
	width: 52px; height: 52px;
	border-radius: 14px;
	background: var(--surface);
	align-items: center;
	justify-content: center;
	font-size: 24px;
	margin-bottom: 18px;
	transition: transform 0.5s var(--ease-spring), background var(--t-base);
}
.scard:hover .scard-ico { transform: scale(1.1) rotate(-5deg); background: rgba(29,92,200,0.09); }
.scard-tag {
	display: inline-block;
	background: rgba(29,92,200,0.1);
	color: var(--blue);
	font-family: var(--f-hd);
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	padding: 4px 10px;
	border-radius: var(--r-pill);
	margin-bottom: 12px;
}
.scard h3 {
	font-size: 18px;
	font-weight: 700;
	color: var(--text);
	margin-bottom: 10px;
	letter-spacing: -0.02em;
}
.scard p {
	font-size: 14px;
	color: var(--text-3);
	line-height: 1.7;
}
.scard a { color: var(--blue); }

/* Split cards (diensten — aan huis vs op afstand) */
.split {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 24px;
}
.split-card {
	background: var(--white);
	border: 1.5px solid var(--border);
	border-radius: var(--r-xl);
	padding: 36px 30px;
	transition: transform var(--t-slow), box-shadow var(--t-slow), border-color var(--t-base);
}
.split-card:hover { transform: translateY(-4px); box-shadow: var(--s-lg); }
.split-thuis { border-color: rgba(29,92,200,0.25); }
.split-label {
	display: inline-block;
	font-family: var(--f-hd);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--blue);
	background: rgba(29,92,200,0.08);
	padding: 5px 12px;
	border-radius: var(--r-pill);
	margin-bottom: 16px;
}
.split-card h3 {
	font-size: 22px;
	font-weight: 800;
	color: var(--text);
	margin-bottom: 10px;
	letter-spacing: -0.025em;
}
.split-card > p {
	font-size: 15px;
	color: var(--text-3);
	line-height: 1.7;
	margin-bottom: 18px;
}
.split-list {
	list-style: none;
	margin-bottom: 24px;
}
.split-list li {
	display: flex;
	gap: 10px;
	font-size: 14px;
	color: var(--text-2);
	padding: 7px 0;
	line-height: 1.5;
}
.split-list li::before {
	content: '✓';
	width: 20px; height: 20px;
	border-radius: 50%;
	background: rgba(29,92,200,0.09);
	border: 1px solid rgba(29,92,200,0.2);
	color: var(--blue);
	font-size: 10px;
	font-weight: 800;
	display: flex; align-items: center; justify-content: center;
	flex-shrink: 0;
	margin-top: 1px;
}

/* Comparison table (diensten) */
.comp-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.comp-table {
	width: 100%;
	border-collapse: separate;
	border-spacing: 0;
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: var(--r-xl);
	overflow: hidden;
	min-width: 520px;
}
.comp-table thead { background: var(--off-white); }
.comp-table th {
	font-family: var(--f-hd);
	font-size: 13px;
	font-weight: 700;
	color: var(--text);
	text-align: left;
	padding: 16px 22px;
	letter-spacing: -0.01em;
}
.comp-table th:nth-child(2), .comp-table th:nth-child(3) { text-align: center; }
.comp-table td {
	padding: 14px 22px;
	border-top: 1px solid var(--border);
	font-size: 14px;
	color: var(--text-2);
}
.comp-table td:nth-child(2), .comp-table td:nth-child(3) { text-align: center; font-weight: 600; }
.comp-table td.yes { color: var(--green); }
.comp-table td.no  { color: var(--text-4); }

/* Why4 grid (diensten) — 4 kleine kaarten met SVG icoon */
.why4-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 16px;
}
.why4-card {
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: var(--r-xl);
	padding: 28px 22px;
	text-align: center;
	transition: transform var(--t-slow), box-shadow var(--t-slow), border-color var(--t-base);
}
.why4-card:hover { transform: translateY(-4px); box-shadow: var(--s-lg); border-color: var(--border-b); }
.why4-ico {
	width: 52px; height: 52px;
	border-radius: 14px;
	background: rgba(29,92,200,0.08);
	color: var(--blue);
	display: flex; align-items: center; justify-content: center;
	margin: 0 auto 16px;
}
.why4-card h3 {
	font-size: 16px;
	font-weight: 700;
	margin-bottom: 8px;
	letter-spacing: -0.02em;
}
.why4-card p { font-size: 14px; color: var(--text-3); line-height: 1.6; }

/* Value cards (over-mij — Waarvoor u mij kunt vertrouwen) */
.val-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 18px;
}
.val-card {
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: var(--r-xl);
	padding: 32px 26px;
	transition: transform var(--t-slow), box-shadow var(--t-slow), border-color var(--t-base);
}
.val-card:hover { transform: translateY(-4px); box-shadow: var(--s-lg); }
.val-ico {
	width: 52px; height: 52px;
	border-radius: 14px;
	background: var(--surface);
	display: flex; align-items: center; justify-content: center;
	font-size: 24px;
	margin-bottom: 18px;
}
.val-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; letter-spacing: -0.02em; }
.val-card p  { font-size: 14px; color: var(--text-3); line-height: 1.7; }

/* Work steps (over-mij — Zo help ik u stap voor stap) */
.wsteps { max-width: 720px; margin: 0 auto; }
.wstep {
	display: flex;
	gap: 24px;
	padding-bottom: 32px;
	position: relative;
}
.wstep:not(:last-child)::after {
	content: '';
	position: absolute;
	left: 23px; top: 56px; bottom: 0;
	width: 1px;
	background: linear-gradient(to bottom, var(--border), transparent);
}
.wstep-num {
	width: 48px; height: 48px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--navy), var(--navy-mid));
	display: flex; align-items: center; justify-content: center;
	font-family: var(--f-hd);
	font-size: 19px;
	font-weight: 800;
	color: var(--white);
	flex-shrink: 0;
	box-shadow: var(--s-sm), 0 0 0 4px rgba(29,92,200,0.08);
}
.wstep-body h3 {
	font-size: 18px;
	font-weight: 700;
	margin-bottom: 7px;
	padding-top: 12px;
	letter-spacing: -0.02em;
}
.wstep-body p { font-size: 15px; color: var(--text-3); line-height: 1.7; }

/* Intro grid (over-mij) */
.intro-grid {
	display: grid;
	grid-template-columns: 1fr 1.2fr;
	gap: 64px;
	align-items: center;
}
.intro-img { position: relative; }
.intro-img img {
	width: 100%;
	aspect-ratio: 4 / 5;
	object-fit: cover;
	border-radius: var(--r-xl);
	box-shadow: var(--s-lg);
}
.intro-badge {
	position: absolute;
	bottom: 22px; left: -18px;
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: var(--r-xl);
	padding: 16px 22px;
	box-shadow: var(--s-lg);
	text-align: center;
	min-width: 112px;
	animation: floatY 4.5s ease-in-out infinite;
}
.intro-badge .num {
	font-family: var(--f-hd);
	font-size: 34px;
	font-weight: 800;
	letter-spacing: -0.04em;
	line-height: 1;
	background: linear-gradient(130deg, var(--blue), var(--blue-v));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}
.intro-badge .lbl { font-size: 11px; color: var(--text-4); font-weight: 500; margin-top: 4px; }
.intro-txt p { font-size: 17px; color: var(--text-3); line-height: 1.78; margin-bottom: 18px; }
.intro-hl {
	background: linear-gradient(130deg, var(--surface) 0%, rgba(29,92,200,0.04) 100%);
	border-left: 3px solid var(--blue);
	border-radius: 0 var(--r-lg) var(--r-lg) 0;
	padding: 18px 22px;
	margin: 22px 0;
	font-family: var(--f-hd);
	font-size: 18px;
	font-weight: 600;
	color: var(--navy);
	line-height: 1.5;
	letter-spacing: -0.02em;
}
.intro-checks {
	list-style: none;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
	margin-bottom: 28px;
}
.intro-checks li {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 14px;
	color: var(--text-2);
	font-weight: 500;
}
.intro-checks li::before {
	content: '✓';
	width: 22px; height: 22px;
	border-radius: 50%;
	background: rgba(29,92,200,0.08);
	border: 1px solid rgba(29,92,200,0.18);
	color: var(--blue);
	font-size: 10px;
	font-weight: 800;
	display: flex; align-items: center; justify-content: center;
	flex-shrink: 0;
}

/* Mini reviews (over-mij) */
.mini-reviews {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
	margin-bottom: 32px;
}
.mrev {
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: var(--r-xl);
	padding: 24px 22px;
}
.mrev-stars { color: var(--gold); font-size: 14px; margin-bottom: 10px; }
.mrev-txt { font-size: 14px; color: var(--text-2); line-height: 1.65; font-style: italic; margin-bottom: 14px; }
.mrev-by  { font-size: 12px; color: var(--text-4); font-weight: 500; }

/* Stats (reviews-pagina) */
.stats {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 18px;
	margin-bottom: 48px;
}
.stat-card {
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: var(--r-xl);
	padding: 32px 24px;
	text-align: center;
}
.stat-num {
	font-family: var(--f-hd);
	font-size: 48px;
	font-weight: 800;
	letter-spacing: -0.04em;
	line-height: 1;
	background: linear-gradient(130deg, var(--blue), var(--blue-v));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	margin-bottom: 8px;
}
.stat-lbl { font-family: var(--f-hd); font-size: 15px; font-weight: 700; color: var(--text); letter-spacing: -0.02em; }
.stat-sub { font-size: 13px; color: var(--text-4); margin-top: 4px; }

/* Featured review (reviews-pagina) */
.feat-review {
	background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
	border-radius: var(--r-xl);
	padding: 44px 40px;
	color: var(--white);
	margin-bottom: 48px;
	position: relative;
	overflow: hidden;
}
.feat-review::before {
	content: '"';
	position: absolute;
	top: 20px; right: 36px;
	font-family: Georgia, serif;
	font-size: 140px;
	color: rgba(91,156,240,0.12);
	line-height: 1;
	pointer-events: none;
}
.feat-badge {
	display: inline-block;
	background: rgba(91,156,240,0.18);
	border: 1px solid rgba(91,156,240,0.28);
	color: #9EC4F8;
	font-family: var(--f-hd);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	padding: 6px 14px;
	border-radius: var(--r-pill);
	margin-bottom: 18px;
}
.feat-stars { color: var(--gold); font-size: 18px; margin-bottom: 16px; }
.feat-txt { font-size: 17px; line-height: 1.7; color: rgba(255,255,255,0.92); margin-bottom: 22px; font-style: italic; }
.feat-by { display: flex; align-items: center; gap: 14px; }
.feat-av {
	width: 44px; height: 44px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--blue), var(--blue-v));
	display: flex; align-items: center; justify-content: center;
	font-family: var(--f-hd);
	font-size: 16px;
	font-weight: 700;
	color: var(--white);
	flex-shrink: 0;
}
.feat-name { font-size: 15px; font-weight: 600; color: var(--white); }
.feat-ver  { font-size: 12px; color: rgba(255,255,255,0.5); margin-top: 2px; }

/* Reviews grid (gedeeld op reviews én front-page) */
.rgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.rc {
	position: relative;
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: var(--r-xl);
	padding: 32px 26px;
	transition: transform var(--t-slow), box-shadow var(--t-slow), border-color var(--t-base);
}
.rc:hover { transform: translateY(-4px); box-shadow: var(--s-lg); border-color: var(--border-b); }
.rstar { display: flex; gap: 3px; color: var(--gold); font-size: 16px; margin-bottom: 14px; }
.rtxt { font-size: 15px; color: var(--text-2); line-height: 1.75; margin-bottom: 22px; font-style: italic; }
.rby {
	display: flex;
	align-items: center;
	gap: 12px;
	padding-top: 16px;
	border-top: 1px solid var(--border);
}
.rav {
	width: 40px; height: 40px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--navy), var(--blue));
	display: flex; align-items: center; justify-content: center;
	font-family: var(--f-hd);
	font-size: 15px;
	font-weight: 700;
	color: var(--white);
	flex-shrink: 0;
}
.rname { font-size: 14px; font-weight: 600; color: var(--text); letter-spacing: -0.01em; }
.rver  { font-size: 11px; color: var(--text-4); margin-top: 2px; }

/* Contact page blocks */
.contact-grid {
	display: grid;
	grid-template-columns: 1fr 1.1fr;
	gap: 32px;
	align-items: start;
}
.phone-block {
	background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
	border-radius: var(--r-xl);
	padding: 36px 30px;
	text-align: center;
	color: var(--white);
	margin-bottom: 18px;
	position: relative;
	overflow: hidden;
}
.phone-block-label {
	font-family: var(--f-hd);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: #9EC4F8;
	margin-bottom: 8px;
}
.phone-number {
	display: inline-block;
	font-family: var(--f-hd);
	font-size: 28px;
	font-weight: 800;
	color: var(--white);
	letter-spacing: -0.03em;
	margin-bottom: 8px;
	transition: color var(--t-fast);
}
.phone-number:hover { color: #93C5FD; }
.phone-note { font-size: 14px; color: rgba(255,255,255,0.62); margin-bottom: 22px; }
.phone-trusts {
	display: flex;
	flex-direction: column;
	gap: 8px;
	padding-top: 18px;
	border-top: 1px solid rgba(255,255,255,0.08);
}
.pt-item {
	display: flex;
	align-items: center;
	gap: 10px;
	justify-content: center;
	font-family: var(--f-hd);
	font-size: 13px;
	font-weight: 500;
	color: rgba(255,255,255,0.75);
}
.pt-ico {
	width: 18px; height: 18px;
	border-radius: 50%;
	background: rgba(14,164,114,0.18);
	border: 1px solid rgba(14,164,114,0.32);
	color: var(--green);
	font-size: 9px;
	font-weight: 800;
	display: flex; align-items: center; justify-content: center;
	flex-shrink: 0;
}
.plan-block {
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: var(--r-xl);
	padding: 26px 26px;
	margin-bottom: 18px;
}
.plan-block h4 {
	font-size: 18px;
	font-weight: 700;
	margin-bottom: 8px;
	letter-spacing: -0.02em;
}
.plan-block p { font-size: 14px; color: var(--text-3); margin-bottom: 16px; line-height: 1.65; }
.email-block {
	display: flex;
	gap: 14px;
	align-items: center;
	background: var(--off-white);
	border: 1px solid var(--border);
	border-radius: var(--r-xl);
	padding: 22px 24px;
}
.email-block .email-ico {
	width: 44px; height: 44px;
	border-radius: 12px;
	background: var(--white);
	border: 1px solid var(--border);
	display: flex; align-items: center; justify-content: center;
	font-size: 20px;
	flex-shrink: 0;
}
.email-block a { font-family: var(--f-hd); font-size: 16px; font-weight: 600; color: var(--text); }
.email-block p { font-size: 13px; color: var(--text-3); margin-top: 2px; }

.form-card {
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: var(--r-xl);
	padding: 40px 36px;
	box-shadow: var(--s-lg);
	position: relative;
	overflow: hidden;
}
.form-card::before {
	content: '';
	position: absolute;
	top: 0; left: 0; right: 0;
	height: 3px;
	background: linear-gradient(90deg, var(--blue), var(--blue-lt));
}
.form-card h3 { font-size: 22px; font-weight: 800; margin-bottom: 6px; letter-spacing: -0.025em; }
.form-card .sub { font-size: 14px; color: var(--text-3); margin-bottom: 22px; max-width: none; }
.form-trust {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	justify-content: center;
	margin-top: 20px;
	padding-top: 20px;
	border-top: 1px solid var(--border);
}
.form-trust span {
	font-family: var(--f-hd);
	font-size: 13px;
	font-weight: 600;
	color: var(--green);
}

/* CTA blok (gedeeld op alle subpagina's) */
.cta-blok {
	background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
	border-radius: var(--r-xl);
	padding: 56px 48px;
	text-align: center;
	position: relative;
	overflow: hidden;
	color: var(--white);
}
.cta-blok::before {
	content: '';
	position: absolute;
	width: 540px; height: 540px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(29,92,200,0.14) 0%, transparent 70%);
	top: 50%; left: 50%;
	transform: translate(-50%, -50%);
	pointer-events: none;
}
.cta-blok h3 {
	font-family: var(--f-hd);
	font-size: clamp(24px, 3.5vw, 36px);
	font-weight: 800;
	color: var(--white);
	margin-bottom: 14px;
	letter-spacing: -0.03em;
	position: relative;
	z-index: 1;
}
.cta-blok p {
	font-size: 16px;
	color: rgba(255,255,255,0.65);
	max-width: 560px;
	margin: 0 auto 26px;
	line-height: 1.7;
	position: relative;
	z-index: 1;
}
.cta-blok .btns {
	display: flex;
	gap: 14px;
	justify-content: center;
	flex-wrap: wrap;
	position: relative;
	z-index: 1;
}

/* FAQ — layout + items */
.faq-layout {
	display: grid;
	grid-template-columns: 220px 1fr;
	gap: 48px;
	align-items: start;
}
.faq-nav {
	position: sticky;
	top: calc(var(--nav-h) + 24px);
	background: var(--off-white);
	border: 1px solid var(--border);
	border-radius: var(--r-xl);
	padding: 20px;
}
.faq-nav-title {
	font-family: var(--f-hd);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--text-4);
	margin-bottom: 14px;
}
.faq-nav a {
	display: block;
	font-family: var(--f-hd);
	font-size: 14px;
	font-weight: 500;
	color: var(--text-2);
	padding: 9px 12px;
	border-radius: var(--r-sm);
	margin-bottom: 4px;
	transition: background var(--t-fast), color var(--t-fast);
}
.faq-nav a:hover { background: var(--white); color: var(--text); }
.faq-nav a.active { background: var(--white); color: var(--blue); font-weight: 600; }
.faq-cat {
	font-family: var(--f-hd);
	font-size: 14px;
	font-weight: 700;
	letter-spacing: -0.01em;
	color: var(--text);
	margin-bottom: 16px;
	padding-bottom: 14px;
	border-bottom: 1px solid var(--border);
}
.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item {
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: var(--r-lg);
	overflow: hidden;
	transition: border-color var(--t-base), background var(--t-base);
}
.faq-item:hover { border-color: var(--border-b); background: var(--off-white); }
.faq-item.open { background: var(--white); border-color: var(--blue-mist); }
.faq-q {
	width: 100%;
	background: transparent;
	border: none;
	padding: 18px 22px;
	font-family: var(--f-hd);
	font-size: 15px;
	font-weight: 600;
	color: var(--text);
	text-align: left;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	letter-spacing: -0.01em;
	min-height: 56px;
	line-height: 1.4;
}
.faq-icon {
	width: 22px; height: 22px;
	border-radius: 50%;
	background: rgba(29,92,200,0.08);
	color: var(--blue);
	display: flex; align-items: center; justify-content: center;
	flex-shrink: 0;
	transition: transform var(--t-base), background var(--t-base);
	position: relative;
}
.faq-icon::before,
.faq-icon::after {
	content: '';
	position: absolute;
	background: var(--blue);
	border-radius: 2px;
}
.faq-icon::before { width: 10px; height: 2px; }
.faq-icon::after  { width: 2px; height: 10px; transition: opacity var(--t-base); }
.faq-item.open .faq-icon { background: var(--blue); }
.faq-item.open .faq-icon::before,
.faq-item.open .faq-icon::after { background: var(--white); }
.faq-item.open .faq-icon::after { opacity: 0; }
.faq-a {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.35s var(--ease-out);
}
.faq-item.open .faq-a { max-height: 600px; }
.faq-a-inner {
	padding: 0 22px 20px;
	font-size: 14.5px;
	color: var(--text-2);
	line-height: 1.7;
}

/* Legal pages (AV, privacyverklaring) */
.legal-wrap {
	max-width: 820px;
	margin: 0 auto;
	padding: 0 28px;
}
.legal-section {
	padding: 60px 0 100px;
}
.legal-intro {
	font-size: 17px;
	color: var(--text-3);
	line-height: 1.78;
	margin-bottom: 36px;
	padding-bottom: 28px;
	border-bottom: 1px solid var(--border);
}
.legal-section h2 {
	font-size: 22px;
	font-weight: 800;
	color: var(--text);
	margin: 36px 0 14px;
	letter-spacing: -0.025em;
	line-height: 1.3;
}
.legal-section h2:first-child { margin-top: 0; }
.legal-section h3 {
	font-size: 17px;
	font-weight: 700;
	color: var(--text);
	margin: 22px 0 8px;
	letter-spacing: -0.02em;
}
.legal-section p {
	font-size: 15.5px;
	color: var(--text-2);
	line-height: 1.78;
	margin-bottom: 14px;
}
.legal-section ul {
	margin: 8px 0 18px 22px;
	padding: 0;
}
.legal-section ul li {
	font-size: 15.5px;
	color: var(--text-2);
	line-height: 1.78;
	margin-bottom: 6px;
}
.legal-meta {
	background: var(--off-white);
	border: 1px solid var(--border);
	border-radius: var(--r-lg);
	padding: 22px 26px;
	margin-bottom: 36px;
	font-size: 14.5px;
	color: var(--text-2);
	line-height: 1.75;
}
.legal-meta p { margin-bottom: 4px; font-size: 14.5px; }
.legal-meta strong { color: var(--text); font-family: var(--f-hd); }
.legal-placeholder {
	background: rgba(232,160,32,0.08);
	border: 1px dashed rgba(232,160,32,0.4);
	border-radius: var(--r-sm);
	padding: 2px 8px;
	font-family: var(--f-bd);
	font-size: 13px;
	color: #946207;
}

/* RESPONSIVE OVERRIDES voor shared components */
@media (max-width: 1024px) {
	.sgrid3, .why4-grid, .val-grid, .rgrid, .mini-reviews, .stats { grid-template-columns: repeat(2, 1fr); }
	.split, .intro-grid, .contact-grid { grid-template-columns: 1fr; gap: 32px; }
	.intro-img { max-width: 380px; margin: 0 auto; }
	.intro-badge { left: auto; right: 0; }
	.intro-checks { grid-template-columns: 1fr; }
	.faq-layout { grid-template-columns: 1fr; gap: 24px; }
	.faq-nav { position: static; }
	.faq-nav a { display: inline-block; margin-right: 6px; margin-bottom: 6px; }
}
@media (max-width: 640px) {
	.sgrid3, .why4-grid, .val-grid, .rgrid, .mini-reviews, .stats { grid-template-columns: 1fr; }
	.trust-strip-inner { flex-direction: column; }
	.ts-i { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.07); width: 100%; justify-content: center; padding: 10px 16px; }
	.ts-i:last-child { border-bottom: none; }
	.cta-blok { padding: 40px 24px; }
	.cta-blok .btns { flex-direction: column; align-items: stretch; }
	.phone-block { padding: 28px 22px; }
	.phone-number { font-size: 24px; }
	.form-card { padding: 28px 22px; }
	.feat-review { padding: 32px 24px; }
	.feat-review::before { font-size: 100px; right: 16px; }
	.wstep { gap: 16px; padding-bottom: 26px; }
	.wstep-num { width: 40px; height: 40px; font-size: 16px; }
	.wstep:not(:last-child)::after { left: 19px; top: 48px; }
	.legal-section h2 { font-size: 19px; }
}

/* ═══════════════════════════════════════════════════════
   20. FASE 3 — PREMIUM POLISH
   Subtiele depth, focus-visible, recommended states,
   accordion-smoothness, sticky-bar fade.
   Alles transform/opacity. Mobiel lichter.
   ═══════════════════════════════════════════════════════ */

/* --- Hero: zachte radial glow achter content --- */
.hero-inner {
	position: relative;
}
.hero-inner::before {
	content: '';
	position: absolute;
	top: 50%; left: 50%;
	width: 720px; height: 520px;
	transform: translate(-50%, -50%);
	background: radial-gradient(ellipse at center, rgba(91,156,240,0.14) 0%, transparent 65%);
	z-index: -1;
	pointer-events: none;
	filter: blur(8px);
}
@media (max-width: 640px) {
	.hero-inner::before { width: 380px; height: 320px; filter: blur(6px); }
}

/* --- Hero CTA premium "breath" — extreem subtiel --- */
@keyframes ctaBreath {
	0%, 100% { box-shadow: var(--s-blue); }
	50%      { box-shadow: 0 8px 28px rgba(29,92,200,0.32), 0 22px 56px rgba(29,92,200,0.18); }
}
.hero-btns .btn-primary,
.phero-btns .btn-p {
	animation: ctaBreath 5s ease-in-out infinite;
}
@media (prefers-reduced-motion: reduce), (max-width: 640px) {
	.hero-btns .btn-primary,
	.phero-btns .btn-p { animation: none; }
}

/* --- Premium cards: subtle gradient border --- */
.scard, .val-card, .wc, .why4-card, .pc, .rc, .mrev {
	position: relative;
	isolation: isolate;
}
.scard::after, .val-card::after, .wc::after, .why4-card::after, .rc::after {
	content: '';
	position: absolute;
	inset: 0;
	border-radius: inherit;
	padding: 1px;
	background: linear-gradient(135deg, rgba(91,156,240,0) 0%, rgba(91,156,240,0.18) 50%, rgba(91,156,240,0) 100%);
	-webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
	-webkit-mask-composite: xor;
	        mask-composite: exclude;
	opacity: 0;
	transition: opacity 0.4s var(--ease-out);
	pointer-events: none;
	z-index: 1;
}
.scard:hover::after, .val-card:hover::after, .wc:hover::after,
.why4-card:hover::after, .rc:hover::after {
	opacity: 1;
}
/* Op mobiel: geen extra gradient layer */
@media (max-width: 900px) {
	.scard::after, .val-card::after, .wc::after,
	.why4-card::after, .rc::after { display: none; }
}

/* --- Hot/recommended pricing card glow --- */
.prc.hot {
	border-color: var(--blue);
	border-width: 2px;
	position: relative;
}
.prc.hot::before {
	content: '';
	position: absolute;
	inset: -2px;
	border-radius: inherit;
	background: linear-gradient(135deg, var(--blue), var(--blue-lt), var(--blue));
	background-size: 200% 200%;
	z-index: -1;
	opacity: 0.45;
	filter: blur(14px);
	animation: hotGlow 6s ease-in-out infinite;
}
@keyframes hotGlow {
	0%, 100% { background-position: 0% 50%; opacity: 0.35; }
	50%      { background-position: 100% 50%; opacity: 0.55; }
}
@media (prefers-reduced-motion: reduce), (max-width: 640px) {
	.prc.hot::before { animation: none; opacity: 0.3; }
}

/* --- FAQ accordion: smoother open/close --- */
.faq-a {
	max-height: 0;
	overflow: hidden;
	opacity: 0;
	transition: max-height 0.4s var(--ease-out), opacity 0.3s ease;
}
.faq-item.open .faq-a {
	max-height: 1200px; /* groter dan elke realistische FAQ-tekst */
	opacity: 1;
}
.faq-q {
	transition: background var(--t-fast), color var(--t-fast);
}
.faq-q:hover {
	background: rgba(29,92,200,0.03);
}
.faq-item.open .faq-q {
	color: var(--blue);
}
/* FAQ inline mini-CTA */
.faq-cta {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	margin-top: 12px;
	font-family: var(--f-hd);
	font-size: 13px;
	font-weight: 600;
	color: var(--blue);
	text-decoration: none;
	transition: gap var(--t-base);
}
.faq-cta:hover { gap: 10px; }

/* --- Phone block: "live" pulse rond icoon --- */
.phone-block > div:first-child {
	position: relative;
}
.phone-block > div:first-child::after {
	content: '';
	position: absolute;
	inset: -6px;
	border-radius: 50%;
	border: 1.5px solid rgba(91,156,240,0.4);
	animation: phonePulse 2.6s ease-out infinite;
	pointer-events: none;
}
@keyframes phonePulse {
	0%   { transform: scale(0.92); opacity: 0.7; }
	100% { transform: scale(1.35); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
	.phone-block > div:first-child::after { animation: none; opacity: 0; }
}

/* --- Form: premium focus state --- */
.fg input:focus-visible,
.fg textarea:focus-visible {
	outline: none;
	border-color: var(--blue);
	background: var(--white);
	box-shadow: 0 0 0 4px rgba(29,92,200,0.12), 0 2px 8px rgba(29,92,200,0.08);
}

/* --- Sticky bar: fade in op scroll --- */
.mbar {
	opacity: 0;
	transform: translateY(8px);
	transition: opacity 0.3s var(--ease-out), transform 0.3s var(--ease-out);
	pointer-events: none;
}
.mbar.visible {
	opacity: 1;
	transform: translateY(0);
	pointer-events: auto;
}
@media (prefers-reduced-motion: reduce) {
	.mbar { transition: none; }
}

/* --- :focus-visible voor toetsenbordgebruikers --- */
.btn:focus-visible,
.pbtn:focus-visible,
.fsubmit:focus-visible,
.nav-link:focus-visible,
.faq-q:focus-visible,
.mbar a:focus-visible,
.nav-mobile a:focus-visible {
	outline: 3px solid var(--blue-lt);
	outline-offset: 3px;
	border-radius: var(--r-md);
}
.nav-toggle:focus-visible {
	outline: 3px solid var(--blue-lt);
	outline-offset: 2px;
}
a:focus-visible {
	outline: 2px solid var(--blue-lt);
	outline-offset: 2px;
	border-radius: 4px;
}

/* --- Mobile sticky bar: net iets minder hoog/strakker --- */
@media (max-width: 900px) {
	.mbar { padding: 8px 12px calc(8px + env(safe-area-inset-bottom)); }
	.mbar a { padding: 13px; font-size: 14.5px; min-height: 46px; }
	body { padding-bottom: 74px; }
}

/* --- 3D tilt: alleen-visueel CSS-vangnet (JS doet het echte werk) --- */
.tilt-wrap {
	transform-style: preserve-3d;
	transition: transform 0.45s var(--ease-out);
	will-change: transform;
}
@media (hover: none), (max-width: 900px), (prefers-reduced-motion: reduce) {
	.tilt-wrap { transform: none !important; }
}

/* --- Phone number: groter contrast voor leesbaarheid 30-100 jaar --- */
.phone-number {
	font-weight: 800;
	letter-spacing: -0.02em;
}
.fcol-contact-list li a,
.fcol ul li a {
	font-size: 14.5px;
}

/* --- Hero h1: wat extra premiumheid (text-shadow zacht) --- */
.hero h1, .phero h1 {
	text-shadow: 0 1px 2px rgba(0,0,0,0.18);
}

/* --- CTA links in cards: subtiele gap-shift bij hover --- */
.scard a:hover,
.val-card a:hover {
	gap: 10px !important;
}

/* --- Reduced motion: alle animaties pulled --- */
@media (prefers-reduced-motion: reduce) {
	.hot::before, .phone-block > div:first-child::after,
	.hero-btns .btn-primary, .phero-btns .btn-p,
	.nav-cta-icon, .about-float, .feat-badge,
	.hero-chip .dot {
		animation: none !important;
	}
}
