/* =========================================================
   Bedrijfsoffertes â€” 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 {
	/* ===== Bedrijfsoffertes huisstijl (navy + oranje, geen blauw) ===== */
	--in-navy: #022253;
	--in-navy-700: #0a3b7a;
	--in-blue: #022253;          /* blauw uitgefaseerd â†’ navy */
	--in-blue-600: #0a3b7a;
	--in-blue-050: #eef2f8;
	--in-teal: #0ea5a0;
	--in-teal-600: #0b8c88;
	--in-green: #12a66a;         /* alleen success */
	--in-green-600: #0e8c59;
	--in-orange: #ff5a36;        /* Brand Orange */
	--in-orange-600: #d94422;    /* Dark Orange (hover) */
	--in-soft-orange: #fff0eb;   /* Soft Orange */
	--in-amber: #f79009;

	/* Neutraal */
	--in-ink: #022253;           /* koppen navy */
	--in-body: #475467;
	--in-muted: #667085;
	--in-line: #e4e7ec;
	--in-bg: #ffffff;
	--in-bg-alt: #f7f9fc;
	--in-bg-soft: #fff0eb;

	/* 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, #022253 0%, #0a3b7a 100%);
	--in-gradient-dark: linear-gradient(140deg, #021734 0%, #022253 60%, #0a3b7a 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-orange-600);
	background: rgba(255, 106, 43, .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-orange-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: header + categoriebalk NIET sticky (scrollt gewoon mee, geen beweging aan het begin).
   Categoriebalk krijgt de topbar-kleur zodat 'ie afsteekt tegen de witte header. */
@media (max-width: 980px) {
	.in-header { position: static; }
	.in-header.is-hidden { transform: none; }
	.in-header .in-catnav { background: var(--in-bg-alt); }
}
.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; }
/* Breed mega-menu met kolommen (per pillar) */
.in-mega--cols { min-width: 0; padding: 12px; }
.in-mega--cols .in-mega__all { margin-bottom: 8px; }
.in-mega__cols { display: grid; grid-template-columns: repeat(4, minmax(168px, 1fr)); gap: 4px 14px; }
.in-mega__col { display: flex; flex-direction: column; }
.in-mega__col a { white-space: normal; }
.in-mega__head { font-weight: 700; color: var(--in-navy); border-bottom: 1px solid var(--in-line); border-radius: 0; margin-bottom: 4px; }
.in-mega__head:hover { background: transparent; color: var(--in-blue); }
/* 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; left: 0; right: 0; top: calc(100% + 6px); z-index: 140; background: #fff; border: 1px solid var(--in-line); border-radius: 14px; box-shadow: var(--in-shadow-lg); padding: 6px; display: none; max-height: 62vh; overflow-y: auto; }
.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(255, 106, 43, .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(3, 1fr); gap: 22px; counter-reset: step; max-width: 1000px; margin-inline: auto; }
.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-orange); }
.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(255, 106, 43, .14);
	color: var(--in-orange-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-orange-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: 20px; }
.in-related__item {
	display: flex; flex-direction: column;
	background: var(--in-bg); border: 1px solid var(--in-line);
	border-radius: var(--in-radius); overflow: hidden;
	box-shadow: var(--in-shadow-sm);
	transition: transform .2s ease, box-shadow .25s ease, border-color .2s ease;
}
.in-related__item img, .in-related__item .in-related__ph { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; display: block; transition: transform .4s ease; }
.in-related__item .in-related__thumb { overflow: hidden; }
.in-related__item span {
	display: flex; align-items: center; justify-content: space-between; gap: 10px;
	padding: 16px 18px; color: var(--in-ink); font-family: var(--in-font-head);
	font-weight: 700; font-size: 16px; line-height: 1.25;
}
.in-related__item span::after { content: "â€º"; color: var(--in-orange); font-size: 20px; font-weight: 800; flex: none; transition: transform .2s ease; }
.in-related__item:hover { transform: translateY(-4px); box-shadow: var(--in-shadow); border-color: var(--in-soft-orange); }
.in-related__item:hover img { transform: scale(1.05); }
.in-related__item:hover span::after { transform: translateX(3px); }
@media (max-width: 900px) { .in-related { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 620px) { .in-related { grid-template-columns: repeat(2, 1fr); gap: 14px; } }

/* ---------- 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(16, 185, 129, .12); color: var(--in-green-600); border: 1px solid rgba(16, 185, 129, .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-orange-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; }

/* Social-proof stats in de sidebar */
.in-offerte__stats { list-style: none; margin: 0; padding: 4px 6px 6px; display: grid; gap: 16px; }
.in-offerte__stats li { display: flex; gap: 12px; align-items: center; color: var(--in-body); font-size: 15px; }
.in-offerte__stats strong { color: var(--in-ink); font-variant-numeric: tabular-nums; }
.in-offerte__ic--live { background: rgba(34, 197, 94, .12); color: #16a34a; }
.in-livedot { width: 10px; height: 10px; border-radius: 50%; background: #22c55e; box-shadow: 0 0 0 0 rgba(34, 197, 94, .55); animation: in-pulse 1.8s infinite; }
@keyframes in-pulse { 70% { box-shadow: 0 0 0 8px rgba(34, 197, 94, 0); } 100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); } }

@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-orange); }
.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; }

	/* USP-topbar: auto-slider op mobiel (i.p.v. verbergen) */
	.in-topbar { display: block; }
	.in-topbar .in-container { gap: 4px 18px; padding-block: 8px; font-size: 12.5px; }
	.in-topbar.is-slider .in-container { position: relative; display: block; height: 34px; padding-block: 0; }
	.in-topbar.is-slider span { position: absolute; inset: 0; justify-content: center; opacity: 0; transition: opacity .45s ease; will-change: opacity; }
	.in-topbar.is-slider span.is-active { opacity: 1; }

	/* 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; }
}

/* ---------- Cookie consent (Wallfield-stijl) ---------- */
.in-cc__overlay { position: fixed; inset: 0; background: rgba(14, 35, 64, .45); z-index: 2000; }
.in-cc__card {
	position: fixed; z-index: 2001; left: 50%; top: 50%; transform: translate(-50%, -50%);
	width: min(680px, calc(100vw - 32px)); max-height: calc(100vh - 40px); overflow: hidden;
	background: #fff; border-radius: 16px; box-shadow: var(--in-shadow-lg); display: flex; flex-direction: column;
}
.in-cc__head { display: flex; align-items: center; justify-content: space-between; padding: 18px 24px; border-bottom: 1px solid var(--in-line); }
.in-cc__brand { font-family: var(--in-font-head); font-weight: 800; color: var(--in-navy); font-size: 15px; }
.in-cc__badge { font-weight: 800; font-size: 13px; letter-spacing: .04em; color: var(--in-navy); }
.in-cc__badge::first-letter { color: var(--in-orange); }
.in-cc__tabs { display: flex; border-bottom: 1px solid var(--in-line); }
.in-cc__tab { flex: 1; background: none; border: 0; padding: 15px 10px; font: inherit; font-weight: 700; font-size: 14.5px; color: var(--in-muted); cursor: pointer; border-bottom: 3px solid transparent; }
.in-cc__tab.is-active { color: var(--in-navy); border-color: var(--in-navy); }
.in-cc__body { padding: 22px 24px; overflow-y: auto; }
.in-cc__pane { display: none; }
.in-cc__pane.is-active { display: block; }
.in-cc__body h3 { font-size: 17px; margin: 0 0 10px; color: var(--in-ink); }
.in-cc__body p { color: var(--in-body); font-size: 14.5px; line-height: 1.6; margin: 0 0 12px; }
.in-cc__opts { display: grid; gap: 10px; margin-top: 16px; }
.in-cc__opt { display: flex; align-items: center; justify-content: space-between; gap: 16px; border: 1px solid var(--in-line); border-radius: 10px; padding: 12px 14px; }
.in-cc__opt span { display: flex; flex-direction: column; }
.in-cc__opt b { font-size: 14.5px; color: var(--in-ink); }
.in-cc__opt small { color: var(--in-muted); font-size: 13px; }
.in-cc__opt input { width: 20px; height: 20px; flex: none; accent-color: var(--in-navy); }
.in-cc__foot { display: flex; gap: 12px; padding: 18px 24px; border-top: 1px solid var(--in-line); }
.in-cc__btn { flex: 1; border: 0; border-radius: 10px; padding: 14px 18px; font: inherit; font-weight: 800; font-size: 15px; cursor: pointer; }
.in-cc__btn--sec { background: #fff; color: var(--in-navy); border: 1px solid var(--in-line); }
.in-cc__btn--sec:hover { background: var(--in-bg-alt); border-color: var(--in-navy); }
.in-cc__btn--all { background: var(--in-navy); color: #fff; box-shadow: 0 8px 20px rgba(2, 34, 83, .28); }
.in-cc__btn--all:hover { background: var(--in-navy-700); }
@media (max-width: 560px) {
	.in-cc__foot { flex-direction: column-reverse; }
	.in-cc__tab { font-size: 13px; padding: 13px 6px; }
}

/* ---------- Formulier-validatie ---------- */
.in-invalid { border-color: #e5484d !important; background: #fff6f6; }
.in-err { color: #d92d20; font-size: 13px; font-weight: 600; margin-top: 5px; }

/* Cookie-categorie badge (aantal cookies) */
.in-cc__count { display: inline-grid; place-items: center; min-width: 20px; height: 20px; padding: 0 5px; margin-left: 4px; border-radius: 999px; background: var(--in-blue-050); color: var(--in-blue); font-size: 12px; font-weight: 800; vertical-align: middle; }

/* ===== Bedrijfsoffertes: illustratie-media + kaart-iconen ===== */
.in-hero__media--illu { aspect-ratio: auto; box-shadow: none; overflow: visible; background: transparent; }
.in-hero__media--illu img { width: 100%; height: auto; object-fit: contain; display: block; }
.in-cardicon { display: inline-flex; width: 48px; height: 48px; align-items: center; justify-content: center; border-radius: 13px; background: var(--in-blue-050); color: var(--in-blue); margin-bottom: 15px; }
.in-cardicon svg { width: 25px; height: 25px; }
a.in-card:hover .in-cardicon { background: var(--in-blue); color: #fff; }

/* Bedrijfsoffertes: prijs/vergelijk-tabel */
.in-ptable { width: 100%; border-collapse: collapse; margin: 22px 0; font-size: 15px; }
.in-ptable th, .in-ptable td { text-align: left; padding: 12px 14px; border-bottom: 1px solid var(--in-line); }
.in-ptable th { background: var(--in-bg-soft); font-weight: 700; color: var(--in-ink); }
.in-ptable tr:last-child td { border-bottom: none; }
.in-prose h3 { margin-top: 26px; }

/* Bedrijfsoffertes: in-ac dropdown fix â€” autosuggest altijd bovenop */
.in-header__search, .in-hero__card { position: relative; z-index: 400; }
.in-ac { z-index: 1600; }

/* Bedrijfsoffertes: footer-logo + drawer fix */
.in-footer__logo { background: transparent; padding: 0; border-radius: 0; }
.in-drawer { z-index: 1900; }

/* Bedrijfsoffertes: checklist checkmark uitlijning fix */
.in-checklist li { display: flex; align-items: flex-start; gap: 14px; padding-left: 0; line-height: 1.5; }
.in-checklist li::before { position: static; top: auto; left: auto; flex: 0 0 24px; }

/* ===== Bedrijfsoffertes: prose-tabellen (workflow-content) + foto-placeholders ===== */
.in-prose table { width: 100%; border-collapse: collapse; margin: 22px 0; font-size: 15px; }
.in-prose table th, .in-prose table td { text-align: left; padding: 12px 14px; border-bottom: 1px solid var(--in-line); vertical-align: top; }
.in-prose table th { background: var(--in-bg-soft); font-weight: 700; color: var(--in-ink); }
.in-prose table tr:last-child td { border-bottom: none; }
.in-prose table tbody tr:nth-child(even) td { background: rgba(0,0,0,.015); }
/* Placeholder-vlakken tot er echte foto's zijn */
.in-hero__media--ph { border-radius: 18px; min-height: 320px;
	background:
		radial-gradient(120% 120% at 80% 10%, rgba(255,255,255,.10), transparent 60%),
		linear-gradient(140deg, var(--in-primary, #2b3a67) 0%, #1c2747 100%);
	box-shadow: inset 0 0 0 1px rgba(255,255,255,.06); }
.in-related__ph { aspect-ratio: 16/10; border-radius: 12px 12px 0 0;
	background:
		radial-gradient(100% 100% at 20% 0%, rgba(255,255,255,.12), transparent 55%),
		linear-gradient(140deg, var(--in-primary, #2b3a67), var(--in-green, #1f9d6b)); }

/* ===== Bedrijfsoffertes: hero-kaart formulier (postcode + knop) ===== */
.in-hero__cardrow { display: flex; gap: 10px; align-items: stretch; flex-wrap: wrap; }
.in-hero__cardrow input {
	flex: 1 1 180px;
	min-width: 0;
	height: 56px;
	padding: 0 18px;
	font-size: 16px;
	color: var(--in-ink, #101828);
	background: #fff;
	border: 1px solid rgba(255, 255, 255, .35);
	border-radius: var(--in-radius, 12px);
	box-sizing: border-box;
}
.in-hero__cardrow input::placeholder { color: #98a2b3; }
.in-hero__cardrow input:focus { outline: 3px solid rgba(255, 255, 255, .55); outline-offset: 1px; }
.in-hero__cardrow .in-btn { flex: 0 0 auto; white-space: nowrap; }
@media (max-width: 560px) {
	.in-hero__cardrow { flex-direction: column; }
	.in-hero__cardrow input, .in-hero__cardrow .in-btn { width: 100%; }
	/* In kolomrichting wordt flex-basis de HOOGTE â†’ reset zodat height:56px geldt (fix 180px-veld) */
	.in-hero__cardrow input { flex: 0 0 auto; height: 56px; }
}

/* ===== Bedrijfsoffertes: hero-afbeelding per categorie (vervangt gradient-placeholder) ===== */
.in-hero__media--ph { background-size: cover; background-position: center; }
.bo-cat-home .in-hero__media--ph            { background-image: url(../img/diensten/home.jpg); }
.bo-cat-payroll .in-hero__media--ph          { background-image: url(../img/diensten/payroll.jpg); }
.bo-cat-schoonmaak-kantoor .in-hero__media--ph { background-image: url(../img/diensten/schoonmaak-kantoor.jpg); }
.bo-cat-koffiemachine-kantoor .in-hero__media--ph { background-image: url(../img/diensten/koffiemachine-kantoor.jpg); }
.bo-cat-zakelijk-leasen .in-hero__media--ph  { background-image: url(../img/diensten/zakelijk-leasen.jpg); }
.bo-cat-beveiliging-zakelijk .in-hero__media--ph { background-image: url(../img/diensten/beveiliging-zakelijk.jpg); }
.bo-cat-zakelijke-batterijopslag .in-hero__media--ph { background-image: url(../img/diensten/zakelijke-batterijopslag.jpg); }
.bo-cat-boekhouding .in-hero__media--ph      { background-image: url(../img/diensten/boekhouding.jpg); }

/* ===== Bedrijfsoffertes: sticky bottom CTA-balk (alle landers) ===== */
.in-stickycta {
	position: fixed; left: 0; right: 0; bottom: 0; z-index: 1500;
	background: #fff; border-top: 1px solid var(--in-line, #e4e7ec);
	box-shadow: 0 -6px 24px rgba(16, 24, 40, .12);
	padding: 12px 0;
	transform: translateY(120%); transition: transform .32s cubic-bezier(.2,.7,.3,1);
}
.in-stickycta.is-visible { transform: none; }
.in-stickycta__row { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.in-stickycta__text strong { display: block; color: var(--in-ink, #101828); font-size: 16px; line-height: 1.2; }
.in-stickycta__usps { font-size: 13px; color: var(--in-muted, #667085); }
.in-stickycta .in-btn { flex: 0 0 auto; white-space: nowrap; }
@media (max-width: 640px) {
	.in-stickycta { padding: 10px 0; }
	.in-stickycta__usps { display: none; }
	.in-stickycta__text strong { font-size: 14px; }
	.in-stickycta .in-btn { padding: 12px 16px; font-size: 15px; }
}

/* ===== Bedrijfsoffertes: lange (een-woord) titels netjes laten afbreken i.p.v. overlopen ===== */
/* Alleen lange Ã©Ã©n-woord-KOPpen afbreken (niet de korte nav/kaart-labels) */
.in-hero h1, .in-prose h1, .in-prose h2, .in-prose h3, .in-heading h2 {
	overflow-wrap: break-word;
	word-break: break-word;
	-webkit-hyphens: auto;
	hyphens: auto;
}
/* Nav- en kaart-labels: alleen op spaties afbreken, nooit midden in een woord */
.in-subnav__item, .in-related__item span { overflow-wrap: normal; word-break: normal; hyphens: none; }
.in-hero__content { min-width: 0; }

/* ===== Bedrijfsoffertes: nieuwe huisstijl â€” logo, knoppen, badges ===== */
/* Beeldlogo (vervangt tekstlogo) â€” groter/leesbaarder */
.in-logo__img { height: 60px; width: auto; display: block; }
.in-footer__logo .in-logo__img { height: 58px; }
@media (max-width: 600px) { .in-logo__img { height: 50px; } }

/* Actie-knoppen = oranje conversie (brand); header/primary Ã³Ã³k oranje op verzoek */
.in-btn--primary, .in-btn--green { background: var(--in-orange); color: #fff; box-shadow: 0 8px 20px rgba(255, 90, 54, .28); }
.in-btn--primary:hover, .in-btn--green:hover { background: var(--in-orange-600); color: #fff; box-shadow: 0 12px 26px rgba(255, 90, 54, .36); }

/* Eyebrow-badge op soft orange */
.in-eyebrow { background: var(--in-soft-orange); color: var(--in-orange-600); }

/* Wizard/voortgang in oranje (brand: voortgang oranje) */
.in-wizard__bar span { background: var(--in-orange); }

/* Hero-form input focus in oranje (brand) */
.in-hero__cardrow input:focus { outline-color: var(--in-orange); }

/* Akkoord-tekst i.p.v. verplichte checkbox in formulieren */
.in-form__consent { font-size: 13px; color: var(--in-muted); margin: 4px 0 0; line-height: 1.5; }
.in-form__consent a { color: var(--in-muted); text-decoration: underline; }

/* ================= Prefooter CTA + reviewrij + 5-koloms footer ================= */
.in-prefooter { background: color-mix(in srgb, var(--in-navy) 92%, #fff); color: #fff; padding: 72px 0 62px; text-align: center; }
.in-prefooter h2 { color: #fff; font-size: clamp(26px, 3.6vw, 40px); line-height: 1.15; margin: 0 0 14px; letter-spacing: -.01em; }
.in-prefooter p { color: rgba(255, 255, 255, .74); font-size: 18px; max-width: 58ch; margin: 0 auto 28px; }
.in-prefooter__actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
.in-prefooter__meta { display: inline-flex; align-items: center; gap: 9px; margin-top: 26px; padding: 9px 18px; border-radius: 999px; background: rgba(255, 255, 255, .07); border: 1px solid rgba(255, 255, 255, .13); color: rgba(255, 255, 255, .8); font-size: 14px; }
.in-prefooter__check { color: var(--in-orange); font-weight: 700; }

.in-btn--brand { background: var(--in-orange); color: #fff; }
.in-btn--brand:hover { background: var(--in-orange-600); color: #fff; }

.in-trustrow { background: var(--in-navy); padding: 30px 0 4px; }
.in-trustrow .in-tp { justify-content: center; }

.in-footer__grid--5 { grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr; gap: 30px; }

@media (max-width: 1100px) { .in-footer__grid--5 { grid-template-columns: 1.4fr 1fr 1fr; } }
@media (max-width: 780px) {
	.in-footer__grid--5 { grid-template-columns: 1fr 1fr; }
	.in-prefooter { padding: 54px 0 46px; }
	.in-prefooter__actions .in-btn { width: 100%; }
}
@media (max-width: 520px) { .in-footer__grid--5 { grid-template-columns: 1fr; } }

/* ================= Mobiele correcties =================
   16px op invoervelden: onder die grens zoomt iOS Safari automatisch in
   zodra je een veld aantikt, midden in het formulier. */
.in-form input, .in-form select, .in-form textarea,
.in-wizard input, .in-wizard select, .in-wizard textarea,
.in-searchbar input, .in-hero__quick input, .in-cta__pc { font-size: 16px; }

/* Geen grijsblauwe flits bij elke tik; wel feedback via :active. */
a, button, summary, label, .in-btn { -webkit-tap-highlight-color: transparent; }
.in-btn:active { filter: brightness(.94); }

/* ================= Offerte-lander ================= */
.in-lander__hero { position: relative; padding: 46px 0 92px; background: var(--in-navy) center 40% / cover no-repeat; color: #fff; text-align: center; }
.in-lander__eyebrow { display: inline-block; background: rgba(255, 255, 255, .13); border: 1px solid rgba(255, 255, 255, .22); color: #fff; padding: 7px 15px; border-radius: 999px; font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 16px; }
.in-lander__hero h1 { color: #fff; font-size: clamp(27px, 5.6vw, 44px); line-height: 1.12; letter-spacing: -.02em; margin: 0 auto 14px; max-width: 20ch; }
.in-lander__lead { color: rgba(255, 255, 255, .84); font-size: clamp(16px, 2.1vw, 19px); line-height: 1.55; max-width: 54ch; margin: 0 auto 22px; }

.in-lander__chips { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; align-items: center; gap: 10px; }
.in-lander__chips li { display: inline-flex; align-items: center; gap: 10px; background: rgba(255, 255, 255, .1); border: 1px solid rgba(255, 255, 255, .16); color: rgba(255, 255, 255, .95); border-radius: 999px; padding: 9px 17px 9px 14px; font-size: 14.5px; text-align: left; }
.in-lander__chips li::before { content: ""; flex: none; width: 20px; height: 20px; border-radius: 999px; background: var(--in-orange); -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m5 13 4 4L19 7'/%3E%3C/svg%3E") center / 13px no-repeat, linear-gradient(#000, #000); -webkit-mask-composite: xor; mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m5 13 4 4L19 7'/%3E%3C/svg%3E") center / 13px no-repeat, linear-gradient(#000, #000); mask-composite: exclude; }

/* De kaart schuift over de hero. Geen z-index: dat zou de focus-overlay opsluiten. */
.inl-formpage .in-offerte { padding-top: 0; margin-top: -56px; position: relative; background: transparent; }
.inl-formpage .in-offerte__main { padding: 26px 22px 28px; }

.in-lander__cardhead { margin-bottom: 18px; }
.in-lander__cardhead h2 { font-size: 21px; line-height: 1.25; margin: 0 0 4px; color: var(--in-ink); }
.in-lander__cardhead p { margin: 0; color: var(--in-muted); font-size: 14.5px; }

.in-wizard__meta { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 8px; font-size: 13.5px; font-weight: 700; color: var(--in-muted); }
.in-wizard__pct { color: var(--in-orange); }

.in-lander__trust { list-style: none; padding: 0; margin: 16px 0 0; display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 18px; }
.in-lander__trust li { display: inline-flex; align-items: center; gap: 6px; color: var(--in-muted); font-size: 13px; }
.in-lander__trust li::before { content: "¹3"; color: var(--in-green); font-weight: 800; }

.inl-formpage .in-trustrow { padding-top: 54px; }
.in-wizard__meta, .in-lander__chips, .in-lander__trust { -webkit-user-select: none; user-select: none; }

@media (min-width: 860px) {
	.in-lander__hero { padding: 60px 0 108px; }
	.in-lander__chips { flex-direction: row; flex-wrap: wrap; justify-content: center; }
	.inl-formpage .in-offerte__main { padding: 34px; }
}

/* ================= Stappenflow met genummerde badges ================= */
.in-flow { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 28px; max-width: 1040px; margin: 40px auto 0; }
.in-flow__step { position: relative; background: #fff; border: 1px solid var(--in-line); border-radius: var(--in-radius); padding: 40px 24px 28px; text-align: center; transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease; }
.in-flow__step:hover { border-color: var(--in-orange); box-shadow: var(--in-shadow); transform: translateY(-3px); }
.in-flow__step:not(:last-child)::before { content: ""; position: absolute; top: -1px; left: 100%; width: 28px; height: 2px; background: var(--in-line); }
.in-flow__badge { position: absolute; top: -21px; left: 50%; transform: translateX(-50%); width: 42px; height: 42px; border-radius: 999px; background: var(--in-orange); color: #fff; font-weight: 800; font-size: 17px; line-height: 1; display: grid; place-items: center; }
.in-flow__ico { width: 54px; height: 54px; margin: 0 auto 16px; border-radius: 16px; background: var(--in-soft-orange); color: var(--in-orange); display: grid; place-items: center; transition: background .18s ease, color .18s ease; }
.in-flow__ico svg { width: 26px; height: 26px; }
.in-flow__step:hover .in-flow__ico { background: var(--in-orange); color: #fff; }
.in-flow__step h3 { font-size: 18px; line-height: 1.3; margin: 0 0 8px; color: var(--in-ink); }
.in-flow__step p { margin: 0; color: var(--in-muted); font-size: 15px; line-height: 1.55; }
.in-flow__cta { text-align: center; margin: 34px 0 0; }
.in-btn--brand { background: var(--in-orange); color: #fff; }
.in-btn--brand:hover { background: var(--in-orange-600); color: #fff; }

/* ================= Uitlegsectie met beeld ================= */
.in-split__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; max-width: 1120px; margin-inline: auto; }
.in-split__media { position: relative; }
.in-split__media img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: var(--in-radius-lg); display: block; box-shadow: var(--in-shadow); }
.in-split__stat { position: absolute; right: -20px; bottom: -22px; max-width: 240px; background: #fff; border: 1px solid var(--in-line); border-radius: var(--in-radius); padding: 16px 20px; box-shadow: var(--in-shadow); }
.in-split__stat b { display: block; font-size: 22px; line-height: 1.1; color: var(--in-orange); }
.in-split__stat span { display: block; margin-top: 5px; font-size: 13px; line-height: 1.45; color: var(--in-muted); }
.in-split__body .in-eyebrow { margin-bottom: 14px; }
.in-split__body h2 { font-size: clamp(26px, 3.4vw, 38px); line-height: 1.15; letter-spacing: -.02em; margin: 0 0 14px; color: var(--in-ink); }
.in-split__lead { color: var(--in-muted); font-size: 17px; line-height: 1.6; margin: 0 0 28px; }
.in-split__list { list-style: none; padding: 0; margin: 0 0 28px; display: grid; gap: 20px; }
.in-split__list li { display: flex; align-items: flex-start; gap: 14px; }
.in-split__ico { width: 40px; height: 40px; border-radius: 11px; background: var(--in-soft-orange); color: var(--in-orange); display: grid; place-items: center; flex: none; }
.in-split__ico svg { width: 20px; height: 20px; }
.in-split__txt b { display: block; color: var(--in-ink); font-size: 16px; line-height: 1.35; margin-bottom: 3px; }
.in-split__txt span { color: var(--in-muted); font-size: 15px; line-height: 1.55; }
.in-split__link { display: inline-flex; align-items: center; gap: 7px; font-weight: 700; color: var(--in-ink); text-decoration: none; border-bottom: 2px solid var(--in-orange); padding-bottom: 2px; }
.in-split__link:hover { color: var(--in-orange-600); }
.in-split__link svg { width: 16px; height: 16px; transition: transform .18s ease; }
.in-split__link:hover svg { transform: translateX(3px); }

/* ================= FAQ in twee kolommen ================= */
.in-faq--2col, .in-faq:has(.in-faq__item:nth-child(4)) { max-width: 1060px; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px 20px; align-items: start; }

@media (max-width: 900px) {
	.in-flow { grid-template-columns: 1fr; max-width: 460px; gap: 34px; }
	.in-flow__step:not(:last-child)::before { top: 100%; left: 50%; width: 2px; height: 34px; transform: translateX(-50%); }
	.in-split__grid { grid-template-columns: 1fr; gap: 44px; max-width: 560px; }
	.in-split__stat { right: 14px; bottom: -18px; }
}
@media (max-width: 860px) { .in-faq--2col, .in-faq:has(.in-faq__item:nth-child(4)) { grid-template-columns: 1fr; max-width: 820px; } }
@media (prefers-reduced-motion: reduce) {
	.in-flow__step, .in-flow__ico, .in-split__link svg { transition: none; }
	.in-flow__step:hover { transform: none; }
}

/* Stapkaarten met foto in plaats van een icoon (koperskant). */
.in-flow--foto .in-flow__step { padding: 0 0 24px; overflow: hidden; }
.in-flow__media { display: block; margin-bottom: 18px; }
.in-flow__media img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; display: block; transition: transform .4s ease; }
.in-flow--foto .in-flow__step:hover .in-flow__media img { transform: scale(1.05); }
.in-flow--foto .in-flow__step h3, .in-flow--foto .in-flow__step p { padding-inline: 22px; }
.in-flow--foto .in-flow__badge { top: 14px; left: 14px; transform: none; box-shadow: 0 4px 12px rgba(0,0,0,.28); }
@media (prefers-reduced-motion: reduce) { .in-flow__media img { transition: none; } .in-flow--foto .in-flow__step:hover .in-flow__media img { transform: none; } }
