/* =========================================================
   Installateur Nederland — huisstijl
   Design system + componenten. Mobile-first.
   ========================================================= */

/* box-sizing reset: padding telt mee in de breedte (voorkomt sitebrede overflow) */
*, *::before, *::after { box-sizing: border-box; }

/* Merk-lettertypes (self-hosted, AVG-veilig) */
@font-face{font-family:'Inter';font-style:normal;font-weight:100 900;font-display:swap;src:url('../fonts/inter.woff2') format('woff2');}
@font-face{font-family:'Plus Jakarta Sans';font-style:normal;font-weight:200 800;font-display:swap;src:url('../fonts/plusjakarta.woff2') format('woff2');}

:root {
	/* ===== Installateur Nederland huisstijl ===== */
	/* Kern: diep navy + heldere merkblauw (uit logo) + fris smaragdgroen voor acties */
	--in-navy: #0e2340;
	--in-navy-700: #17345f;
	--in-blue: #2563eb;
	--in-blue-600: #1d4ed8;
	--in-blue-050: #eef3fe;
	--in-teal: #0ea5a0;
	--in-teal-600: #0b8c88;
	--in-green: #10b981;
	--in-green-600: #059467;
	--in-orange: #ff6a2b;   /* alleen in het logo */
	--in-orange-600: #f2551a;
	--in-amber: #f5b301;

	/* Neutraal (koel) */
	--in-ink: #0e2340;
	--in-body: #47566b;
	--in-muted: #6a778c;
	--in-line: #e6e9f2;
	--in-bg: #ffffff;
	--in-bg-alt: #f5f7fc;
	--in-bg-soft: #eef2fb;

	/* Vorm */
	--in-radius: 16px;
	--in-radius-lg: 24px;
	--in-radius-sm: 10px;
	--in-shadow-sm: 0 2px 8px rgba(14, 35, 64, .06);
	--in-shadow: 0 12px 32px rgba(14, 35, 64, .10);
	--in-shadow-lg: 0 26px 64px rgba(14, 35, 64, .18);

	--in-gradient: linear-gradient(125deg, #1d4ed8 0%, #2563eb 50%, #3b82f6 100%);
	--in-gradient-dark: linear-gradient(140deg, #0b1c36 0%, #14315c 60%, #1c3f77 100%);

	--in-maxw: 1180px;
	--in-font: 'Inter', system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
	--in-font-head: 'Plus Jakarta Sans', 'Inter', system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
}

/* ---------- Base ---------- */
body.wp-site-blocks,
body {
	font-family: var(--in-font);
	color: var(--in-body);
	background: var(--in-bg);
	line-height: 1.65;
	-webkit-font-smoothing: antialiased;
	font-size: 17px;
}

.inl h1, .inl h2, .inl h3, .inl h4,
h1, h2, h3, h4 {
	color: var(--in-ink);
	font-family: var(--in-font-head);
	line-height: 1.14;
	font-weight: 800;
	letter-spacing: -.02em;
	margin: 0 0 .5em;
}

a { color: var(--in-blue); text-decoration: none; }
a:hover { color: var(--in-blue-600); }
img { max-width: 100%; height: auto; display: block; }

/* Voorkom horizontale overflow op smalle schermen */
html, body { overflow-x: clip; max-width: 100%; }
/* Laat de header-template-part géén eigen box vormen, zodat .in-header sticky blijft t.o.v. de hele pagina */
header.wp-block-template-part { display: contents; }
/* Content-wrappers clippen horizontaal, zodat geen enkel kind de pagina breder maakt dan het scherm */
.wp-site-blocks, main.wp-block-group, .wp-block-post-content, .in-hero, .in-section, .in-cta { overflow-x: clip; }
.in-cta__form, .in-cta__form .in-btn, .in-hero__cta, .in-hero__content, .in-hero__grid { min-width: 0; }
/* Laat flex/grid-items én invoervelden krimpen (min-width:auto veroorzaakt anders overflow) */
.in-header__row > *, .in-header__search, .in-searchbar, .in-searchbar input,
.in-offerte__grid > *, .in-hero__grid > *, .in-grid > *, .in-tiles > *, .in-related > *,
.in-reviews > *, .in-steps > *, .in-cats > *, .in-form__row > *, .in-wizard__nav > * { min-width: 0; }
.in-header, .in-catnav { overflow-x: clip; }
img { max-width: 100%; }

.in-container {
	width: 100%;
	max-width: var(--in-maxw);
	margin-inline: auto;
	padding-inline: 20px;
}

.in-section { padding: 68px 0; }
.in-section--alt { background: var(--in-bg-alt); }
.in-section--soft { background: var(--in-bg-soft); }

/* ---------- Section heading ---------- */
.in-heading { max-width: 760px; margin: 0 auto 42px; text-align: center; }
.in-eyebrow {
	display: inline-block;
	font-size: 13px;
	font-weight: 800;
	letter-spacing: .12em;
	text-transform: uppercase;
	color: var(--in-teal-600);
	background: rgba(5, 182, 162, .1);
	padding: 6px 14px;
	border-radius: 999px;
	margin-bottom: 16px;
}
.in-heading h2 { font-size: clamp(28px, 4vw, 40px); }
.in-lead { font-size: 18px; color: var(--in-muted); margin: 0; }

/* ---------- Buttons ---------- */
.in-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 9px;
	font-weight: 700;
	font-size: 16px;
	line-height: 1;
	padding: 14px 22px;
	border-radius: var(--in-radius-sm);
	border: 2px solid transparent;
	cursor: pointer;
	transition: transform .12s ease, box-shadow .2s ease, background .2s ease;
	white-space: nowrap;
}
.in-btn:active { transform: translateY(1px); }
.in-btn--primary { background: var(--in-green); color: #fff; box-shadow: 0 8px 20px rgba(16, 185, 129, .3); }
.in-btn--primary:hover { background: var(--in-green-600); color: #fff; box-shadow: 0 12px 26px rgba(16, 185, 129, .4); }
.in-btn--blue { background: var(--in-blue); color: #fff; }
.in-btn--blue:hover { background: var(--in-blue-600); color: #fff; }
.in-btn--green { background: var(--in-green); color: #fff; box-shadow: 0 8px 20px rgba(0, 182, 122, .32); }
.in-btn--green:hover { background: var(--in-green-600); color: #fff; box-shadow: 0 12px 26px rgba(0, 182, 122, .4); }
.in-btn--ghost { background: rgba(255, 255, 255, .12); color: #fff; border-color: rgba(255, 255, 255, .55); }
.in-btn--ghost:hover { background: rgba(255, 255, 255, .22); color: #fff; }
.in-btn--outline { background: #fff; color: var(--in-navy); border-color: var(--in-line); }
.in-btn--outline:hover { border-color: var(--in-blue); color: var(--in-blue); }
.in-btn--lg { padding: 17px 30px; font-size: 17px; }
.in-btn--block { width: 100%; }

/* ---------- Header ---------- */
.in-topbar {
	background: var(--in-bg-alt);
	color: var(--in-muted);
	font-size: 13.5px;
	border-bottom: 1px solid var(--in-line);
}
.in-topbar .in-container {
	display: flex;
	flex-wrap: wrap;
	gap: 8px 26px;
	justify-content: center;
	padding-block: 9px;
}
.in-topbar span { display: inline-flex; align-items: center; gap: 7px; }
.in-topbar b { color: var(--in-ink); }
.in-topbar .in-check { color: var(--in-teal-600); font-weight: 800; }

.in-header {
	position: sticky;
	top: 0;
	z-index: 60;
	background: #fff;
	border-bottom: 1px solid var(--in-line);
	box-shadow: var(--in-shadow-sm);
	transition: transform .3s ease;
}
.in-header.is-hidden { transform: translateY(-100%); }
/* Offset onder de WordPress admin-bar (alleen zichtbaar voor ingelogde beheerders) */
.admin-bar .in-header { top: 32px; }
@media screen and (max-width: 782px) { .admin-bar .in-header { top: 46px; } }
/* Mobiel: verberg de categoriebalk zodra je van de top af scrolt */
@media (max-width: 980px) {
	.in-header.is-scrolled .in-catnav { display: none; }
}
.in-header__row {
	display: flex;
	align-items: center;
	gap: 20px;
	padding-block: 15px;
}
.in-logo { display: inline-flex; align-items: center; gap: 10px; font-weight: 900; font-size: 21px; color: var(--in-navy); letter-spacing: -.02em; }
.in-logo:hover { color: var(--in-navy); }
.in-logo__mark {
	width: 34px; height: 34px; border-radius: 9px;
	background: var(--in-gradient);
	display: grid; place-items: center;
	color: #fff; font-size: 18px; box-shadow: var(--in-shadow-sm);
}
.in-logo__mark svg { width: 20px; height: 20px; }
.in-logo b { color: var(--in-blue); }
.in-logo__img { height: 54px; width: auto; display: block; }
.in-drawer__head .in-logo__img { height: 40px; }
@media (max-width: 640px) { .in-logo__img { height: 42px; } }

.in-header__search { flex: 1; max-width: 520px; margin-inline: auto; }
.in-searchbar { display: flex; width: 100%; border: 2px solid var(--in-line); border-radius: 999px; overflow: hidden; background: #fff; transition: border-color .2s; }
.in-searchbar:focus-within { border-color: var(--in-blue); }
.in-searchbar input { flex: 1; border: 0; padding: 12px 20px; font-size: 15px; outline: none; background: transparent; color: var(--in-ink); }
.in-searchbar button { border: 0; background: var(--in-blue); color: #fff; padding: 0 24px; font-size: 17px; cursor: pointer; display: grid; place-items: center; }
.in-searchbar button:hover { background: var(--in-blue-600); }

.in-header__nav { display: flex; align-items: center; gap: 22px; }
.in-header__nav a { color: var(--in-navy); font-weight: 600; font-size: 15px; }
.in-header__nav a:hover { color: var(--in-blue); }
.in-header__nav .in-btn { padding: 11px 18px; font-size: 15px; }

/* Category nav strip */
.in-catnav { border-top: 1px solid var(--in-line); background: #fff; }
.in-catnav .in-container { display: flex; gap: 6px; overflow-x: auto; padding-block: 4px; scrollbar-width: none; }
.in-catnav .in-container::-webkit-scrollbar { display: none; }
.in-catnav__item { position: relative; }
.in-catnav__item > a {
	display: inline-block; white-space: nowrap; color: var(--in-body); font-weight: 600; font-size: 14.5px;
	padding: 13px 14px; border-bottom: 3px solid transparent;
}
.in-catnav__item > a:hover,
.in-catnav__item:hover > a { color: var(--in-blue); border-color: var(--in-blue); }

/* Mega menu (per categorie) — position:fixed zodat de dropdown niet door de
   horizontaal-scrollende categoriebalk wordt afgekapt; JS zet left/top. */
.in-mega {
	position: fixed; top: 0; left: 0; z-index: 80; min-width: 240px;
	background: #fff; border: 1px solid var(--in-line);
	border-radius: 0 0 12px 12px; box-shadow: var(--in-shadow); padding: 8px;
	display: none;
}
.in-mega.is-open { display: block; }
.in-mega a { display: block; padding: 9px 12px; border-radius: 8px; font-size: 14px; color: var(--in-body); white-space: nowrap; }
.in-mega a:hover { background: #eef4ff; color: var(--in-blue); }
.in-mega__all { font-weight: 700; color: var(--in-navy); border-bottom: 1px solid var(--in-line); border-radius: 8px 8px 0 0; margin-bottom: 4px; }
/* Categoriebalk: altijd één regel met horizontale scroll (desktop én mobiel) */
.in-catnav .in-container { flex-wrap: nowrap; }
/* Mobiel: geen mega-dropdown */
@media (max-width: 980px) {
	.in-mega { display: none !important; }
}

/* ---------- Hamburger + drawer ---------- */
.in-burger { display: none; flex-direction: column; justify-content: center; align-items: center; gap: 5px; width: 46px; height: 46px; padding: 0; background: none; border: 0; cursor: pointer; }
.in-burger span { display: block; width: 24px; height: 2.5px; background: var(--in-navy); border-radius: 2px; transition: transform .2s, opacity .2s; }
.in-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.in-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.in-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

.in-drawer { position: fixed; inset: 0; z-index: 200; }
.in-drawer[hidden] { display: none; }
.in-drawer__overlay { position: absolute; inset: 0; background: rgba(10, 37, 64, .5); opacity: 0; transition: opacity .3s ease; }
.in-drawer.is-open .in-drawer__overlay { opacity: 1; }
.in-drawer__panel {
	position: absolute; top: 0; right: 0; height: 100%; width: min(87vw, 350px);
	background: #fff; box-shadow: -12px 0 44px rgba(10, 37, 64, .28);
	transform: translateX(100%); transition: transform .3s ease;
	display: flex; flex-direction: column; padding: 18px 18px 30px; overflow-y: auto;
}
.in-drawer.is-open .in-drawer__panel { transform: translateX(0); }
.in-drawer__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.in-drawer__head .in-logo { font-size: 18px; }
.in-drawer__head .in-logo__mark { font-size: 16px; }
.in-drawer__close { background: none; border: 0; font-size: 34px; line-height: 1; color: var(--in-navy); cursor: pointer; padding: 0 6px; }
.in-drawer__nav { display: flex; flex-direction: column; margin-top: 6px; }
.in-drawer__nav a { padding: 13px 4px; border-bottom: 1px solid var(--in-line); color: var(--in-navy); font-weight: 600; }
.in-drawer__nav a:hover { color: var(--in-blue); }
.in-drawer__label { text-transform: uppercase; font-size: 12px; letter-spacing: .1em; color: var(--in-muted); font-weight: 800; margin: 20px 0 2px; }
.in-drawer__panel > .in-btn { margin-bottom: 6px; }
.in-drawer__head { padding-bottom: 14px; border-bottom: 1px solid var(--in-line); margin-bottom: 14px; }
.in-drawer__head .in-logo__img { height: 36px; }
.in-drawer__nav a { font-size: 15.5px; }
.in-drawer__nav a:last-child { border-bottom: 0; }

/* ---------- Distraction-free formulier-pagina's ---------- */
body.inl-formpage .in-header__search,
body.inl-formpage .in-header__nav,
body.inl-formpage .in-catnav,
body.inl-formpage .in-footer__grid { display: none; }
body.inl-formpage .in-header__row { justify-content: center; }
body.inl-formpage .in-footer { padding-top: 26px; }
body.inl-formpage .in-footer__bar { border-top: 0; }

/* ---------- Zoek-autocomplete ---------- */
.in-ac { position: absolute; z-index: 140; background: #fff; border: 1px solid var(--in-line); border-radius: 14px; box-shadow: var(--in-shadow-lg); padding: 6px; display: none; }
.in-ac.is-open { display: block; }
.in-ac__item { display: flex; align-items: center; gap: 10px; padding: 11px 12px; border-radius: 9px; color: var(--in-navy); font-weight: 600; font-size: 15px; }
.in-ac__item svg { width: 17px; height: 17px; color: var(--in-muted); flex: none; }
.in-ac__item:hover, .in-ac__item.is-hl { background: var(--in-bg-soft); color: var(--in-blue); }
.in-ac__item:hover svg, .in-ac__item.is-hl svg { color: var(--in-blue); }

/* ---------- Wizard-knoppen (primair boven, Vorige als link) ---------- */
.in-wizard__nav { display: flex; flex-direction: column; gap: 6px; margin-top: 24px; }
.in-linkbtn { background: none; border: 0; color: var(--in-muted); font-weight: 600; font-size: 15px; cursor: pointer; padding: 8px; align-self: center; }
.in-linkbtn:hover { color: var(--in-navy); }

/* ---------- Footer-logo (witte chip op donkere footer) ---------- */
.in-footer__logo { display: inline-block; background: #fff; padding: 9px 13px; border-radius: 12px; margin-bottom: 14px; }
.in-footer__logo img { height: 34px; width: auto; display: block; }

/* Remove default block-gap between header template-part and main content */
.wp-site-blocks > main,
.wp-site-blocks > .wp-block-group { margin-block-start: 0 !important; }
.wp-site-blocks > main > .in-hero:first-child,
main.wp-block-group > .in-hero:first-child { margin-top: 0; }

/* ---------- Hero ---------- */
.in-hero {
	position: relative;
	background: var(--in-gradient-dark);
	color: #fff;
	overflow: hidden;
	padding: 76px 0 96px;
}
.in-hero::before {
	content: "";
	position: absolute; inset: 0;
	background:
		radial-gradient(900px 400px at 85% -10%, rgba(5, 182, 162, .35), transparent 60%),
		radial-gradient(700px 500px at 0% 120%, rgba(20, 102, 216, .35), transparent 55%);
	pointer-events: none;
}
.in-hero > .in-container { position: relative; z-index: 1; }
.in-hero h1 { color: #fff; font-size: clamp(32px, 5.2vw, 56px); max-width: 15ch; }
.in-hero .in-lead { color: rgba(255, 255, 255, .82); font-size: clamp(17px, 2vw, 21px); max-width: 60ch; }
.in-hero__card {
	margin-top: 30px;
	background: rgba(255, 255, 255, .1);
	border: 1px solid rgba(255, 255, 255, .18);
	backdrop-filter: blur(6px);
	border-radius: var(--in-radius-lg);
	padding: 26px;
	max-width: 640px;
}
.in-hero__card label { display: block; font-weight: 700; margin-bottom: 10px; color: #fff; }
.in-hero .in-searchbar { border: 0; padding: 6px; }
.in-hero .in-searchbar input { font-size: 16px; padding-left: 22px; }
.in-hero .in-searchbar button { border-radius: 999px; width: 50px; height: 50px; padding: 0; flex: none; }
.in-hero .in-searchbar button svg { width: 20px; height: 20px; }
.in-hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }

.in-hero__stats {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 14px;
	margin-top: 40px;
}
.in-stat {
	background: rgba(255, 255, 255, .1);
	border: 1px solid rgba(255, 255, 255, .16);
	border-radius: var(--in-radius);
	padding: 18px;
}
.in-stat b { display: block; color: #fff; font-size: 26px; font-weight: 900; letter-spacing: -.02em; }
.in-stat span { color: rgba(255, 255, 255, .78); font-size: 14px; }

/* Service hero (lighter) */
.in-hero--service { padding: 60px 0 66px; }
.in-hero--service h1 { max-width: 20ch; }

/* Service hero: tekst links, foto rechts */
.in-hero__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 44px; align-items: center; }
.in-hero__content { min-width: 0; }
.in-hero__media { border-radius: var(--in-radius-lg); overflow: hidden; box-shadow: var(--in-shadow-lg); aspect-ratio: 4 / 3; }
.in-hero__media img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 900px) {
	.in-hero__grid { grid-template-columns: 1fr; gap: 28px; }
	.in-hero__media { max-width: 560px; aspect-ratio: 16 / 9; }
}
.in-breadcrumb { color: rgba(255, 255, 255, .7); font-size: 14px; margin-bottom: 18px; }
.in-breadcrumb a { color: rgba(255, 255, 255, .9); }
.in-breadcrumb a:hover { color: #fff; text-decoration: underline; }
.in-hero__usps { list-style: none; display: flex; flex-wrap: wrap; gap: 10px 22px; padding: 0; margin: 24px 0 0; }
.in-hero__usps li { color: #fff; font-weight: 600; font-size: 15px; }

/* Hero CTA (postcode + groene knop + rating) */
.in-hero__cta { display: flex; flex-direction: column; align-items: flex-start; gap: 16px; margin-top: 30px; max-width: 640px; }
.in-hero__cta .in-cta__form { justify-content: flex-start; max-width: none; margin: 0; width: 100%; }
.in-hero__cta .in-cta__pc { flex: 0 0 auto; width: 240px; max-width: 240px; }

/* Ronde installateur-foto in homepage-hero */
.in-hero__portrait {
	position: absolute; top: 44px; right: 0; width: 300px; height: 300px;
	border-radius: 50%; overflow: hidden;
	border: 6px solid rgba(255, 255, 255, .14); box-shadow: var(--in-shadow-lg);
}
.in-hero__portrait img { width: 100%; height: 100%; object-fit: cover; object-position: 32% 28%; }
@media (max-width: 1040px) { .in-hero__portrait { display: none; } }
.in-hero__rating { justify-content: flex-start !important; margin: 0; }
.in-hero__pricelink { display: inline-block; margin: 0; color: rgba(255, 255, 255, .85); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
.in-hero__pricelink:hover { color: #fff; }

/* ---------- Category grid (foto-tegels) ---------- */
.in-cats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.in-cat {
	position: relative; display: block; aspect-ratio: 4 / 3;
	border-radius: var(--in-radius); overflow: hidden;
	transition: transform .15s ease, box-shadow .2s ease;
}
.in-cat img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.in-cat::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(10, 37, 64, .9) 0%, rgba(10, 37, 64, .35) 45%, rgba(10, 37, 64, .04) 100%); }
.in-cat:hover { transform: translateY(-4px); box-shadow: var(--in-shadow); }
.in-cat:hover img { transform: scale(1.06); }
.in-cat__label { position: absolute; left: 0; right: 0; bottom: 0; z-index: 1; color: #fff; font-weight: 700; font-size: 16px; padding: 14px 16px; }

/* ---------- Service / product cards (with image) ---------- */
.in-tiles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.in-tile {
	background: #fff; border: 1px solid var(--in-line); border-radius: var(--in-radius);
	overflow: hidden; transition: transform .15s ease, box-shadow .2s ease;
	display: flex; flex-direction: column;
}
.in-tile:hover { transform: translateY(-5px); box-shadow: var(--in-shadow); }
.in-tile__media { aspect-ratio: 16/10; background: var(--in-gradient); position: relative; display: grid; place-items: center; overflow: hidden; }
.in-tile__media span { font-size: 54px; filter: drop-shadow(0 6px 14px rgba(0,0,0,.25)); }
.in-tile__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .3s ease; }
.in-tile:hover .in-tile__media img { transform: scale(1.05); }
.in-tile__body { padding: 20px 20px 22px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.in-tile__body h3 { font-size: 19px; margin: 0; }
.in-tile__body p { margin: 0; color: var(--in-muted); font-size: 15px; }
.in-tile__link { margin-top: auto; font-weight: 700; color: var(--in-blue); display: inline-flex; align-items: center; gap: 6px; }
.in-tile__link::after { content: "→"; transition: transform .15s; }
.in-tile:hover .in-tile__link::after { transform: translateX(4px); }

/* ---------- Feature columns (waarom) ---------- */
.in-grid { display: grid; gap: 22px; }
.in-grid--2 { grid-template-columns: repeat(2, 1fr); }
.in-grid--3 { grid-template-columns: repeat(3, 1fr); }
.in-grid--4 { grid-template-columns: repeat(4, 1fr); }
.in-card {
	background: #fff; border: 1px solid var(--in-line); border-radius: var(--in-radius);
	padding: 26px; transition: box-shadow .2s ease, transform .15s ease;
}
.in-card:hover { box-shadow: var(--in-shadow); transform: translateY(-3px); }
.in-card__icon {
	display: inline-grid; place-items: center; width: 52px; height: 52px;
	border-radius: 13px; background: var(--in-bg-soft); color: var(--in-blue); margin-bottom: 14px;
}
.in-card__icon svg { width: 28px; height: 28px; }

/* Custom SVG-iconen: grootte + kleur per context */
.in-offerte__ic { color: var(--in-blue); }
.in-offerte__ic svg { width: 22px; height: 22px; }
h1 svg, h2 svg, h3 svg, p svg, li svg { width: 1em; height: 1em; vertical-align: -.12em; }
.in-card__icon svg, .in-offerte__ic svg { width: 28px; height: 28px; vertical-align: middle; }
.in-offerte__ic svg { width: 22px; height: 22px; }
.in-card__title { font-size: 18px; margin: 0 0 8px; }
.in-card__text { margin: 0; color: var(--in-muted); font-size: 15.5px; }

/* ---------- Steps ---------- */
.in-steps { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; counter-reset: step; }
.in-steps--3 { grid-template-columns: repeat(3, 1fr); }
.in-step { position: relative; background: #fff; border: 1px solid var(--in-line); border-radius: var(--in-radius); padding: 26px 22px; }
.in-step__num {
	display: grid; place-items: center; width: 42px; height: 42px; border-radius: 50%;
	background: var(--in-gradient); color: #fff; font-weight: 900; font-size: 18px; margin-bottom: 14px;
}
.in-step h3 { font-size: 17px; margin: 0 0 6px; }
.in-step p { margin: 0; color: var(--in-muted); font-size: 15px; }

/* ---------- Price cards ---------- */
.in-price {
	background: #fff; border: 1px solid var(--in-line); border-radius: var(--in-radius);
	padding: 26px; text-align: center; transition: box-shadow .2s, transform .15s, border-color .2s;
}
.in-price:hover { box-shadow: var(--in-shadow); transform: translateY(-3px); border-color: var(--in-teal); }
.in-price h3 { font-size: 17px; color: var(--in-muted); font-weight: 700; margin: 0 0 10px; }
.in-price__amount { font-size: 26px; font-weight: 900; color: var(--in-navy); margin: 0 0 10px; letter-spacing: -.02em; }
.in-price__note { font-size: 14.5px; color: var(--in-muted); margin: 0; }

/* ---------- Checklist ---------- */
.in-checklist { list-style: none; padding: 0; margin: 0 auto; max-width: 820px; display: grid; gap: 12px; }
.in-checklist li { position: relative; padding-left: 38px; color: var(--in-body); font-size: 16px; }
.in-checklist li::before {
	content: "✓"; position: absolute; left: 0; top: 1px;
	width: 24px; height: 24px; border-radius: 50%; background: rgba(5, 182, 162, .14);
	color: var(--in-teal-600); font-weight: 900; display: grid; place-items: center; font-size: 13px;
}

/* ---------- FAQ ---------- */
.in-faq { max-width: 820px; margin: 0 auto; display: grid; gap: 12px; }
.in-faq__item { background: #fff; border: 1px solid var(--in-line); border-radius: var(--in-radius-sm); overflow: hidden; }
.in-faq__item summary {
	cursor: pointer; list-style: none; padding: 18px 22px; font-weight: 700; color: var(--in-navy);
	display: flex; justify-content: space-between; align-items: center; gap: 16px; font-size: 16.5px;
}
.in-faq__item summary::-webkit-details-marker { display: none; }
.in-faq__item summary::after { content: "+"; font-size: 24px; color: var(--in-teal-600); font-weight: 400; transition: transform .2s; }
.in-faq__item[open] summary::after { transform: rotate(45deg); }
.in-faq__a { padding: 0 22px 20px; color: var(--in-muted); }
.in-faq__a p { margin: 0; }

/* ---------- Reviews ---------- */
.in-reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.in-review { background: #fff; border: 1px solid var(--in-line); border-radius: var(--in-radius); padding: 26px; }
.in-review__stars { color: var(--in-amber); font-size: 18px; letter-spacing: 2px; margin-bottom: 12px; }
.in-review__text { color: var(--in-body); font-size: 15.5px; margin: 0 0 16px; }
.in-review__who { font-weight: 700; color: var(--in-navy); font-size: 15px; }
.in-review__meta { color: var(--in-muted); font-size: 13px; }

/* ---------- Rating badge row ---------- */
.in-trust { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 14px 34px; }
.in-trust__item { display: inline-flex; align-items: center; gap: 10px; color: var(--in-navy); font-weight: 700; }
.in-trust__stars { color: var(--in-amber); font-size: 20px; letter-spacing: 1px; }

/* ---------- Subnavigatie (Independer-stijl) ---------- */
.in-subnav-wrap { padding: 22px 0; background: #eef4ff; border-top: 1px solid var(--in-line); border-bottom: 1px solid var(--in-line); }
.in-subnav__label { display: block; font-family: var(--in-font-head); font-weight: 800; font-size: 13px; letter-spacing: .05em; text-transform: uppercase; color: var(--in-blue); margin-bottom: 12px; }
.in-subnav { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.in-subnav__item {
	display: flex; align-items: center; justify-content: space-between; gap: 10px;
	background: #fff; border: 1px solid var(--in-line); border-radius: var(--in-radius-sm);
	padding: 15px 18px; color: var(--in-navy); font-weight: 600; font-size: 15.5px;
	transition: border-color .15s, box-shadow .2s, transform .15s;
}
.in-subnav__item:hover { border-color: var(--in-blue); box-shadow: var(--in-shadow-sm); color: var(--in-blue); transform: translateY(-2px); }
.in-subnav__item svg { width: 18px; height: 18px; color: var(--in-blue); flex: none; }
@media (max-width: 900px) { .in-subnav { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .in-subnav { grid-template-columns: 1fr; } }

/* ---------- Gerelateerde diensten ---------- */
.in-related { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.in-related__item { position: relative; display: block; aspect-ratio: 3 / 2; border-radius: var(--in-radius); overflow: hidden; box-shadow: var(--in-shadow-sm); }
.in-related__item img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.in-related__item::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(10, 37, 64, .88) 0%, rgba(10, 37, 64, .2) 60%, transparent 100%); }
.in-related__item span { position: absolute; left: 0; right: 0; bottom: 0; z-index: 1; color: #fff; font-weight: 700; font-size: 15px; padding: 12px 14px; }
.in-related__item:hover img { transform: scale(1.06); }
@media (max-width: 900px) { .in-related { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 620px) { .in-related { grid-template-columns: repeat(2, 1fr); } }

/* ---------- CTA band ---------- */
.in-cta { background: var(--in-gradient); color: #fff; padding: 62px 0; text-align: center; }
.in-cta h2 { color: #fff; font-size: clamp(26px, 3.6vw, 38px); }
.in-cta p { color: rgba(255, 255, 255, .9); font-size: 18px; max-width: 56ch; margin: 0 auto 22px; }
.in-cta .in-btn--primary { box-shadow: 0 12px 30px rgba(0, 0, 0, .2); }
.in-cta__form { display: flex; flex-wrap: wrap; align-items: stretch; gap: 12px; justify-content: center; max-width: 560px; margin: 0 auto 22px; }
.in-cta__pc {
	flex: 1 1 180px; max-width: 220px; height: 56px; border: 0; border-radius: var(--in-radius-sm);
	padding: 0 18px; font-size: 16px; font-family: inherit; background: #fff; color: var(--in-ink);
	box-sizing: border-box;
}
.in-cta__pc:focus { outline: 3px solid rgba(255, 255, 255, .55); }
.in-cta__form .in-btn { flex: 0 1 auto; min-height: 56px; height: auto; padding-top: 8px; padding-bottom: 8px; box-sizing: border-box; white-space: normal; text-align: center; line-height: 1.2; }

/* ---------- Trustpilot-stijl sterren (eigen weergave) ---------- */
.in-tp { display: inline-flex; align-items: center; gap: 12px; flex-wrap: wrap; justify-content: center; }
.in-tp__stars { display: inline-flex; gap: 4px; }
.in-tp__star {
	width: 26px; height: 26px; border-radius: 4px; background: #dcdce6;
	display: inline-flex; align-items: center; justify-content: center;
	color: #fff; font-size: 17px; line-height: 1;
}
.in-tp__star::before { content: "\2605"; }
.in-tp__star.is-on { background: var(--in-green); }
.in-tp__star.is-half { background: linear-gradient(90deg, var(--in-green) 50%, #dcdce6 50%); }
.in-tp__label { color: var(--in-body); font-size: 15.5px; }
.in-tp__label b { color: var(--in-ink); font-weight: 800; }
.in-tp__count { color: var(--in-muted); }
.in-tp--sm .in-tp__star { width: 19px; height: 19px; font-size: 12px; border-radius: 3px; }
.in-tp--on-dark .in-tp__label,
.in-tp--on-dark .in-tp__label b { color: #fff; }
.in-tp--on-dark .in-tp__count { color: rgba(255, 255, 255, .82); }

/* ---------- Blog teasers ---------- */
.in-posts { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.in-post { background: #fff; border: 1px solid var(--in-line); border-radius: var(--in-radius); overflow: hidden; display: flex; flex-direction: column; transition: transform .15s, box-shadow .2s; }
.in-post:hover { transform: translateY(-4px); box-shadow: var(--in-shadow); }
.in-post__media { aspect-ratio: 16/10; background: var(--in-bg-soft); display: grid; place-items: center; font-size: 40px; color: var(--in-blue); }
.in-post__media svg { width: 46px; height: 46px; }
.in-post__body { padding: 18px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.in-post__body h3 { font-size: 16.5px; margin: 0; }
.in-post__date { color: var(--in-muted); font-size: 13px; margin-top: auto; }

/* ---------- Form ---------- */
.in-form { background: #fff; border: 1px solid var(--in-line); border-radius: var(--in-radius-lg); padding: 30px; box-shadow: var(--in-shadow); max-width: 720px; margin: 0 auto; }
.in-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.in-form__field { margin-bottom: 16px; display: flex; flex-direction: column; }
.in-form__field label { font-weight: 700; color: var(--in-navy); font-size: 14.5px; margin-bottom: 7px; }
.in-form input, .in-form select, .in-form textarea {
	border: 2px solid var(--in-line); border-radius: var(--in-radius-sm); padding: 12px 14px; font-size: 15.5px;
	font-family: inherit; color: var(--in-ink); background: #fff; transition: border-color .2s;
}
.in-form input:focus, .in-form select:focus, .in-form textarea:focus { outline: none; border-color: var(--in-blue); }
.in-form__check { display: flex; gap: 10px; align-items: flex-start; font-size: 14.5px; color: var(--in-body); margin: 4px 0 18px; }
.in-form__check input { width: 18px; height: 18px; margin-top: 2px; }
.in-form__note { text-align: center; color: var(--in-muted); font-size: 13px; margin: 12px 0 0; }
.in-hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.in-alert { border-radius: var(--in-radius-sm); padding: 16px 20px; margin-bottom: 20px; font-size: 15.5px; }
.in-alert--success { background: rgba(5, 182, 162, .12); color: var(--in-teal-600); border: 1px solid rgba(5, 182, 162, .3); }
.in-alert--error { background: #fdecec; color: #c0392b; border: 1px solid #f5c6c6; }

/* Split layout for klus-plaatsen */
.in-split { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: start; }
.in-split__aside h3 { font-size: 22px; }
.in-split__aside .in-checklist { margin: 0 0 24px; }
.in-split__aside .in-checklist li { font-size: 15.5px; }

/* ---------- Focus-modus (spotlight op formulier) ---------- */
.in-focus-overlay { position: fixed; inset: 0; background: rgba(10, 37, 64, .55); opacity: 0; visibility: hidden; transition: opacity .25s ease; z-index: 800; cursor: pointer; }
body.in-focusmode .in-focus-overlay { opacity: 1; visibility: visible; }
.in-focus-active { position: relative; z-index: 810; }

/* ---------- Offerte-wizard ---------- */
.in-offerte__grid { display: grid; grid-template-columns: 1.6fr 1fr; gap: 28px; align-items: start; }
.in-offerte__main { background: #fff; border: 1px solid var(--in-line); border-radius: var(--in-radius-lg); box-shadow: var(--in-shadow); padding: 34px; }
.in-offerte__main h1 { font-size: clamp(26px, 3.4vw, 34px); margin: 0 0 20px; }
.in-offerte__note { display: flex; gap: 14px; align-items: flex-start; background: var(--in-bg-soft); border-left: 4px solid var(--in-blue); border-radius: var(--in-radius-sm); padding: 16px 18px; margin-bottom: 26px; }
.in-offerte__note p { margin: 0; color: var(--in-body); font-size: 15.5px; }
.in-offerte__note-ic { flex: none; width: 26px; height: 26px; border-radius: 50%; background: #fff; color: var(--in-teal-600); display: grid; place-items: center; font-weight: 900; box-shadow: var(--in-shadow-sm); }

.in-wizard__bar { display: flex; gap: 8px; height: 8px; background: transparent; margin-bottom: 26px; }
.in-wizard__bar span { display: block; height: 100%; background: var(--in-green); border-radius: 999px; transition: width .3s ease; box-shadow: 0 0 0 100px var(--in-line) inset; background-clip: padding-box; }
.in-wizard__bar { position: relative; background: var(--in-line); border-radius: 999px; }
.in-wizard__bar span { box-shadow: none; }

.in-wizard__step { display: none; }
.in-wizard__step.is-active { display: block; animation: inl-fade .25s ease; }
@keyframes inl-fade { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }
.in-wizard__step h2 { font-size: 22px; margin: 0 0 18px; }
.in-wizard .in-form__field { display: flex; flex-direction: column; margin-bottom: 16px; }
.in-wizard .in-form__field label { font-weight: 700; color: var(--in-navy); font-size: 14.5px; margin-bottom: 7px; }
.in-wizard .in-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.in-wizard input, .in-wizard select, .in-wizard textarea {
	border: 2px solid var(--in-line); border-radius: var(--in-radius-sm); padding: 13px 14px; font-size: 15.5px;
	font-family: inherit; color: var(--in-ink); background: #fff; transition: border-color .2s;
}
.in-wizard input:focus, .in-wizard select:focus, .in-wizard textarea:focus { outline: none; border-color: var(--in-blue); }
.in-wizard .in-invalid { border-color: #e5484d !important; background: #fff6f6; }
.in-wizard .in-form__check { display: flex; gap: 10px; align-items: flex-start; font-size: 14.5px; color: var(--in-body); margin: 4px 0 6px; }
.in-wizard .in-form__check input { width: 18px; height: 18px; margin-top: 2px; }
.in-wizard__nav { display: flex; justify-content: space-between; align-items: center; gap: 12px; margin-top: 24px; }
.in-wizard__nav .in-btn { min-height: 52px; }
.in-form__note { color: var(--in-muted); font-size: 13px; margin: 14px 0 0; }

.in-offerte__side { position: sticky; top: 96px; background: #fff; border: 1px solid var(--in-line); border-radius: var(--in-radius-lg); box-shadow: var(--in-shadow); padding: 16px; }
.in-offerte__img { border-radius: var(--in-radius); overflow: hidden; aspect-ratio: 4 / 3; margin-bottom: 16px; }
.in-offerte__img img { width: 100%; height: 100%; object-fit: cover; }
.in-offerte__trust { list-style: none; padding: 4px 6px 6px; margin: 0; display: grid; gap: 16px; }
.in-offerte__trust li { display: flex; gap: 12px; align-items: center; color: var(--in-body); font-size: 15px; }
.in-offerte__trust strong { color: var(--in-ink); }
.in-offerte__ic { flex: none; width: 40px; height: 40px; border-radius: 11px; background: var(--in-bg-soft); display: grid; place-items: center; font-size: 19px; }

@media (max-width: 860px) {
	.in-offerte__grid { grid-template-columns: 1fr; }
	.in-offerte__side { position: static; }
	.in-offerte__main { padding: 24px; }
	.in-wizard .in-form__row { grid-template-columns: 1fr; gap: 0; }
	.in-wizard__nav { flex-wrap: wrap; }
	.in-wizard__nav .in-btn { flex: 1 1 auto; }
}

/* ---------- Footer ---------- */
.in-footer { background: var(--in-navy); color: #b9c6d6; padding: 60px 0 0; font-size: 15px; }
.in-footer a { color: #b9c6d6; }
.in-footer a:hover { color: #fff; }
.in-footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 36px; padding-bottom: 44px; }
.in-footer h4 { color: #fff; font-size: 15px; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 16px; }
.in-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.in-footer__brand .in-logo { color: #fff; margin-bottom: 14px; }
.in-footer__brand .in-logo b { color: var(--in-teal); }
.in-footer__brand p { color: #93a4b8; max-width: 34ch; }
.in-footer__social { display: flex; gap: 12px; margin-top: 16px; }
.in-footer__social a { width: 38px; height: 38px; border-radius: 9px; background: rgba(255,255,255,.08); display: grid; place-items: center; font-size: 18px; }
.in-footer__social a:hover { background: var(--in-blue); }
.in-footer__bar { border-top: 1px solid rgba(255, 255, 255, .1); padding: 20px 0; display: flex; flex-wrap: wrap; gap: 8px 22px; justify-content: space-between; color: #7f92a8; font-size: 13.5px; }

/* ---------- Content prose (blog/pages) ---------- */
.in-prose { max-width: 760px; margin: 0 auto; }
.in-prose h2 { font-size: 28px; margin-top: 1.6em; }
.in-prose h3 { font-size: 21px; margin-top: 1.4em; }
.in-prose p, .in-prose ul, .in-prose ol { margin: 0 0 1.1em; }
.in-prose ul, .in-prose ol { padding-left: 1.3em; }
.in-prose li { margin-bottom: .4em; }

/* ---------- Utilities ---------- */
.in-center { text-align: center; }
.in-mt { margin-top: 28px; }
.in-narrow { max-width: 820px; margin-inline: auto; }
.in-section > .in-container > p { color: var(--in-body); }
.in-section #kosten, .in-section[id] { scroll-margin-top: 120px; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
	.in-cats { grid-template-columns: repeat(3, 1fr); }
	.in-tiles, .in-grid--3, .in-reviews, .in-steps { grid-template-columns: repeat(2, 1fr); }
	.in-grid--4, .in-posts { grid-template-columns: repeat(2, 1fr); }
	.in-hero__stats { grid-template-columns: repeat(2, 1fr); }
	.in-footer__grid { grid-template-columns: 1fr 1fr; }
	.in-split { grid-template-columns: 1fr; gap: 30px; }
	.in-header__row { flex-wrap: wrap; }
	.in-header__search { order: 3; flex-basis: 100%; max-width: none; }
}
@media (max-width: 640px) {
	body { font-size: 16px; }
	.in-section { padding: 44px 0; }
	.in-topbar { display: none; }

	/* Header compacter + hamburger */
	.in-header__row { gap: 12px; padding-block: 12px; }
	.in-logo { font-size: 18px; }
	.in-logo__mark { width: 30px; height: 30px; }
	.in-header__nav { gap: 8px; margin-left: auto; }
	.in-hide-mobile { display: none !important; }
	.in-searchbar input { padding: 11px 16px; }
	.in-burger { display: inline-flex; }
	/* horizontale categoriebalk blijft op mobiel (scrollt zijwaarts) */
	.in-catnav .in-container { padding-inline: 16px; }

	/* Hero */
	.in-hero { padding: 44px 0 52px; }
	.in-hero--service { padding: 36px 0 44px; }
	.in-hero__card { padding: 18px; }
	.in-hero__stats { grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 30px; }
	.in-stat { padding: 14px; }
	.in-stat b { font-size: 22px; }
	.in-hero__usps { gap: 8px 16px; }
	.in-hero__usps li { font-size: 14px; }
	.in-hero__cta { width: 100%; max-width: none; margin-top: 26px; }

	/* CTA-formulier: full-width gestapeld */
	.in-cta__form,
	.in-cta__form--left { flex-direction: column; align-items: stretch; width: 100%; max-width: none; }
	.in-cta__pc,
	.in-hero__cta .in-cta__pc { flex: 0 0 auto; max-width: none; width: 100%; height: 56px; }
	.in-cta__form .in-btn { width: 100%; }
	.in-tp__label { font-size: 14px; }
	.in-tp__star { width: 22px; height: 22px; font-size: 14px; }

	/* Overige grids naar 1 kolom */
	.in-cats { grid-template-columns: repeat(2, 1fr); }
	.in-tiles, .in-grid--2, .in-grid--3, .in-grid--4, .in-reviews, .in-steps, .in-steps--3, .in-posts { grid-template-columns: 1fr; }
	.in-form { padding: 22px; }
	.in-form__row { grid-template-columns: 1fr; gap: 0; }
	.in-footer__grid { grid-template-columns: 1fr 1fr; gap: 26px; }
	.in-heading { margin-bottom: 30px; }
	.in-cta { padding: 48px 0; }
}
@media (max-width: 400px) {
	.in-cats { grid-template-columns: 1fr; }
	.in-hero__stats { grid-template-columns: 1fr; }
	.in-footer__grid { grid-template-columns: 1fr; }
	.in-hero__usps { flex-direction: column; gap: 8px; }
}
