/* =========================================================
   Prijsmatch.be — huisstijl-laag (laadt NA main.css)
   Groen primair + navy merk, lichte hero, ronde componenten.
   ========================================================= */

:root {
	/* Merkkleuren */
	--in-navy: #0d3b66;      /* logo / merk / koppen */
	--in-navy-700: #0a2f52;
	--in-blue: #16a34a;      /* "accent"-rol → groen (links, iconen, focus) */
	--in-blue-600: #128a3e;
	--in-blue-050: #e9f7ee;
	--in-green: #16a34a;
	--in-green-600: #128a3e;
	--in-teal: #16a34a;
	--in-teal-600: #128a3e;
	--in-orange: #16a34a;    /* neutraliseer oranje accenten → groen */
	--in-orange-600: #128a3e;
	--in-amber: #16a34a;

	/* Neutralen */
	--in-ink: #12263f;
	--in-body: #4b5666;
	--in-muted: #6b7684;
	--in-line: #e6ecf1;
	--in-bg: #ffffff;
	--in-bg-alt: #f4f9f6;
	--in-bg-soft: #eef7f1;

	/* Vorm */
	--in-radius: 18px;
	--in-radius-lg: 24px;
	--in-radius-sm: 12px;
	--in-shadow-sm: 0 2px 10px rgba(13, 59, 102, .06);
	--in-shadow: 0 14px 40px rgba(13, 59, 102, .10);
	--in-shadow-lg: 0 30px 70px rgba(13, 59, 102, .16);

	--in-gradient: linear-gradient(135deg, #16a34a 0%, #22c55e 100%);
	--in-gradient-dark: linear-gradient(140deg, #eef8f1 0%, #f3fbf6 55%, #ffffff 100%);

	--pm-charcoal: #1b2534;
	--pm-charcoal-2: #131b27;
	--pm-mint: #edf8f1;
}

body { color: var(--in-body); }

/* ---------- Knoppen: iets ronder, groen ---------- */
.in-btn { border-radius: 999px; font-weight: 800; }
.in-btn--lg { padding: 16px 30px; }
.in-btn--primary { background: var(--in-green); box-shadow: 0 10px 24px rgba(22, 163, 74, .28); }
.in-btn--primary:hover { background: var(--in-green-600); box-shadow: 0 14px 30px rgba(22, 163, 74, .36); }
.in-btn--outline { border-color: var(--in-line); color: var(--in-navy); }
.in-btn--outline:hover { border-color: var(--in-green); color: var(--in-green); }

/* =========================================================
   HEADER — Prijsmatch stijl (logo + nav + dropdowns + pill)
   ========================================================= */
.pm-header { border-bottom: 1px solid var(--in-line); box-shadow: 0 1px 0 rgba(13,59,102,.04); }
.pm-header.is-scrolled { box-shadow: var(--in-shadow-sm); }
/* Sticky header op ALLE schermen (95% mobiel). Overschrijft de static-regel uit main.css. */
.pm-header { position: sticky; top: 0; z-index: 60; }
.pm-header.is-hidden { transform: translateY(-100%); }
.admin-bar .pm-header { top: 32px; }
@media screen and (max-width: 782px) { .admin-bar .pm-header { top: 46px; } }

/* Trust-marquee als topbar (categoriepagina's + subpagina's). Kleiner font. */
.pm-topbar { display: none; background: var(--pm-mint); border-bottom: 1px solid var(--in-line); }
.pm-has-topbar .pm-topbar { display: block; }
.pm-topbar .pm-trustbar__track { padding: 8px 20px; gap: 30px; }
.pm-topbar .pm-trustbar__item { font-size: 12.5px; }
.pm-topbar .pm-trustbar__item svg { width: 15px; height: 15px; }
.pm-header__row { display: flex; align-items: center; gap: 22px; padding-block: 14px; }
.pm-header .in-logo__img { height: 40px; }
.pm-only-mobile { display: none; }

/* 3-delige balk: logo links · hoofdnav gecentreerd · service+CTA rechts (zoals prijsmatch.nl) */
.pm-nav--main { flex: 1; display: flex; align-items: center; justify-content: center; gap: 8px; }
.pm-nav--util { flex: 0 0 auto; display: flex; align-items: center; gap: 12px; }
.pm-nav__item { position: relative; }
.pm-nav__link--icon { gap: 8px; }
.pm-nav__ic { width: 19px; height: 19px; flex: none; }
.pm-nav__link {
	display: inline-flex; align-items: center; gap: 6px;
	background: none; border: 0; cursor: pointer;
	font-family: var(--in-font); font-weight: 700; font-size: 15.5px; color: var(--in-navy);
	padding: 10px 14px; border-radius: 10px; line-height: 1;
}
.pm-nav__link:hover { color: var(--in-green); background: var(--pm-mint); }
.pm-caret { width: 16px; height: 16px; transition: transform .2s ease; }
.pm-has-drop:hover .pm-caret { transform: rotate(180deg); }

.pm-drop {
	position: absolute; top: calc(100% + 10px); left: 50%; transform: translateX(-50%) translateY(8px);
	min-width: 230px; background: #fff; border: 1px solid var(--in-line);
	border-radius: 16px; box-shadow: var(--in-shadow-lg); padding: 8px;
	opacity: 0; visibility: hidden; transition: opacity .18s ease, transform .18s ease; z-index: 90;
}
.pm-has-drop:hover .pm-drop,
.pm-has-drop:focus-within .pm-drop { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.pm-drop::before { content: ""; position: absolute; left: 0; right: 0; top: -12px; height: 12px; } /* hover-brug */
.pm-drop a { display: block; padding: 11px 14px; border-radius: 10px; color: var(--in-navy); font-weight: 600; font-size: 15px; }
.pm-drop a:hover { background: var(--pm-mint); color: var(--in-green); }
.pm-drop--cats { min-width: 340px; left: 0; transform: translateX(0) translateY(8px); padding: 10px; }
.pm-has-drop:hover .pm-drop--cats,
.pm-has-drop:focus-within .pm-drop--cats { transform: translateX(0) translateY(0); }
.pm-drop__cat { display: flex; align-items: center; gap: 14px; }
.pm-drop__cat b { display: block; color: var(--in-navy); font-size: 15.5px; }
.pm-drop__cat small { display: block; color: var(--in-muted); font-size: 13px; font-weight: 500; }
.pm-drop__cat:hover b { color: var(--in-green); }
.pm-drop__ic { flex: none; width: 42px; height: 42px; border-radius: 12px; background: var(--pm-mint); color: var(--in-green); display: grid; place-items: center; }
.pm-drop__ic svg { width: 22px; height: 22px; }
.pm-header__cta { padding: 12px 22px; font-size: 15px; }

/* Service-dropdown lijnt rechts uit (staat aan de rechterkant) */
.pm-drop--right { left: auto; right: 0; transform: translateX(0) translateY(8px); }
.pm-has-drop:hover .pm-drop--right,
.pm-has-drop:focus-within .pm-drop--right { transform: translateX(0) translateY(0); }

/* Mobiele chat-knop + compacte CTA */
.pm-chat { place-items: center; width: 42px; height: 42px; border-radius: 50%; color: var(--in-navy); background: var(--pm-mint); flex: none; }
.pm-chat svg { width: 21px; height: 21px; }
.pm-chat:hover { color: var(--in-green); }
.pm-mobcta { padding: 10px 16px; font-size: 14px; flex: none; }

@media (max-width: 900px) {
	.pm-only-desktop { display: none !important; }
	.pm-only-mobile { display: inline-flex; }
	.pm-header__row { gap: 10px; }
	.in-burger { display: inline-flex; flex: none; }
	.pm-chat { display: grid; }
	.pm-header .in-logo { margin-right: auto; }
	.pm-header .in-logo__img { height: 34px; }
}

/* =========================================================
   HERO — licht (homepage + categoriepagina's)
   ========================================================= */
.in-hero {
	background: var(--in-gradient-dark);
	color: var(--in-ink);
	padding: 66px 0 74px;
}
.in-hero::before {
	background:
		radial-gradient(760px 380px at 88% -20%, rgba(34, 197, 94, .16), transparent 60%),
		radial-gradient(620px 420px at -10% 120%, rgba(22, 163, 74, .10), transparent 55%);
}
.in-hero h1 { color: var(--in-ink); }
.in-hero .in-lead { color: var(--in-body); }
.in-breadcrumb { color: var(--in-muted); }
.in-breadcrumb a { color: var(--in-navy); }
.in-breadcrumb a:hover { color: var(--in-green); }
.in-hero__usps li { color: var(--in-navy); font-weight: 600; display: inline-flex; align-items: center; gap: 9px; }
.in-hero__usps li::before {
	content: ""; flex: none; width: 22px; height: 22px; border-radius: 50%;
	background: var(--pm-mint) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%2316a34a' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center/13px no-repeat;
}
.in-hero__media { box-shadow: none; }
.in-hero__pricelink { color: var(--in-navy); }
.in-hero__pricelink:hover { color: var(--in-green); }

/* Eyebrow pill (licht groen) */
.in-eyebrow { color: var(--in-green-600); background: var(--pm-mint); }

/* Breadcrumb bovenaan de categorie-hero (buiten de grid) */
.in-breadcrumb--top { margin-bottom: 18px; }

/* ---- Categoriepagina hero op mobiel: compacte foto BOVENAAN, alles compact ---- */
@media (max-width: 940px) {
	.in-hero--service { padding: 14px 0 24px; }
	.in-hero--service .in-hero__grid { grid-template-columns: 1fr; gap: 16px; }
	.in-hero--service .in-hero__media {
		order: -1; width: 100%; max-width: none;
		aspect-ratio: 16 / 8; max-height: 188px; border-radius: 16px; margin: 0;
	}
	.in-hero--service .in-breadcrumb--top { margin-bottom: 12px; font-size: 13.5px; }
	.in-hero--service h1 { font-size: clamp(25px, 6.6vw, 33px); line-height: 1.12; margin-bottom: .4em; }
	.in-hero--service .in-lead { font-size: 15.5px; }
	.in-hero--service .in-hero__usps { gap: 8px 14px; margin-top: 16px; }
	.in-hero--service .in-hero__usps li { font-size: 14.5px; }
	.in-hero--service .pm-hero__cta { margin-top: 18px !important; }
	.in-hero--service .pm-hero__cta .in-btn { width: 100%; }
	.in-hero--service .pm-heroproof { margin-top: 16px !important; }
	/* Wizard direct onder de hero, compacter */
	.in-offerte.in-section { padding-top: 12px; }
	.in-offerte__main { padding: 20px 16px; }
	.in-offerte__main h1 { font-size: 21px; margin-bottom: 14px; }
	.in-offerte__note { padding: 13px 14px; margin-bottom: 18px; }
}

/* =========================================================
   HERO homepage — 2 koloms: content + illustratie
   ========================================================= */
.pm-hero__grid { display: grid; grid-template-columns: 1.08fr .92fr; gap: 40px; align-items: center; }
.pm-hero__content { min-width: 0; }
.pm-hero h1 { font-size: clamp(32px, 5vw, 52px); line-height: 1.08; max-width: 14ch; }
.pm-hero__illu { position: relative; }
.pm-hero__illu img { width: 100%; height: auto; display: block; }
@media (max-width: 940px) {
	.pm-hero__grid { grid-template-columns: 1fr; gap: 26px; }
	.pm-hero__illu { display: none; }
}

/* Categorie-kiezer kaart in de hero */
.pm-catcard {
	background: #fff; border: 1px solid var(--in-line); border-radius: var(--in-radius-lg);
	box-shadow: var(--in-shadow); padding: 14px; margin: 26px 0 20px; max-width: 460px;
}
.pm-catrow {
	display: flex; align-items: center; gap: 14px; padding: 15px 16px; border-radius: 14px;
	color: var(--in-navy); font-weight: 700; font-size: 16.5px; transition: background .15s, transform .12s;
}
.pm-catrow + .pm-catrow { margin-top: 4px; }
.pm-catrow:hover { background: var(--pm-mint); transform: translateX(2px); }
.pm-catrow__ic { flex: none; width: 44px; height: 44px; border-radius: 12px; background: var(--pm-mint); color: var(--in-green); display: grid; place-items: center; }
.pm-catrow__ic svg { width: 24px; height: 24px; }
.pm-catrow__txt { flex: 1; min-width: 0; }
.pm-catrow__arrow { color: var(--in-green); flex: none; }
.pm-catrow__arrow svg { width: 20px; height: 20px; }
.pm-badge-pop { display: inline-block; margin-left: 8px; font-size: 11px; font-weight: 800; letter-spacing: .06em; color: #fff; background: var(--in-green); padding: 3px 9px; border-radius: 999px; vertical-align: middle; }

/* Reviews-rij onder de kaart (avatars + sterren) */
.pm-heroproof { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.pm-avatars { display: inline-flex; }
.pm-avatars img { width: 40px; height: 40px; border-radius: 50%; border: 2px solid #fff; margin-left: -12px; object-fit: cover; box-shadow: 0 2px 6px rgba(13,59,102,.18); background: #eef2f6; }
.pm-avatars img:first-child { margin-left: 0; }
.pm-heroproof__txt { font-size: 14.5px; color: var(--in-body); }
.pm-heroproof__txt b { color: var(--in-navy); }
.pm-heroproof__stars { height: 17px; width: auto; display: inline-block; vertical-align: -3px; margin: 4px 6px 0 0; }

/* =========================================================
   TRUST-BALK (marquee)
   ========================================================= */
.pm-trustbar { background: #fff; border-top: 1px solid var(--in-line); border-bottom: 1px solid var(--in-line); overflow: hidden; }
.pm-trustbar__track { display: flex; gap: 46px; align-items: center; padding: 16px 20px; white-space: nowrap; animation: pm-marquee 64s linear infinite; width: max-content; }
.pm-trustbar:hover .pm-trustbar__track { animation-play-state: paused; }
.pm-trustbar__item { display: inline-flex; align-items: center; gap: 9px; color: var(--in-navy); font-weight: 700; font-size: 14.5px; }
.pm-trustbar__item svg { width: 18px; height: 18px; color: var(--in-green); flex: none; }
@keyframes pm-marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .pm-trustbar__track { animation: none; flex-wrap: wrap; white-space: normal; justify-content: center; } }

/* =========================================================
   CATEGORIE-KAARTEN ("Waar wil je offertes voor?")
   ========================================================= */
.pm-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.pm-card { display: flex; flex-direction: column; background: #fff; border: 1px solid var(--in-line); border-radius: var(--in-radius); overflow: hidden; transition: transform .15s, box-shadow .2s; }
.pm-card:hover { transform: translateY(-5px); box-shadow: var(--in-shadow); }
.pm-card__media { aspect-ratio: 16/10; overflow: hidden; }
.pm-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s; }
.pm-card:hover .pm-card__media img { transform: scale(1.05); }
.pm-card__body { padding: 22px 22px 24px; display: flex; flex-direction: column; gap: 9px; flex: 1; }
.pm-card__body h3 { font-size: 20px; margin: 0; color: var(--in-navy); }
.pm-card__body p { margin: 0; color: var(--in-muted); font-size: 15px; }
.pm-card__link { margin-top: auto; padding-top: 6px; font-weight: 800; color: var(--in-green); display: inline-flex; align-items: center; gap: 7px; }
.pm-card__link::after { content: "→"; transition: transform .15s; }
.pm-card:hover .pm-card__link::after { transform: translateX(4px); }
@media (max-width: 900px) { .pm-cards { grid-template-columns: 1fr; } }

/* =========================================================
   STAPPEN ("Zo werkt Prijsmatch") — groene sectie
   ========================================================= */
.pm-stepsec { background: var(--pm-mint); }
.pm-steps { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.pm-step { background: #fff; border: 1px solid var(--in-line); border-radius: var(--in-radius); padding: 26px 22px; position: relative; }
.pm-step__tag { display: inline-block; font-size: 11px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; color: var(--in-green-600); background: var(--pm-mint); padding: 5px 11px; border-radius: 999px; margin-bottom: 14px; }
.pm-step__num { position: absolute; top: 22px; right: 22px; font-family: var(--in-font-head); font-weight: 900; font-size: 30px; color: #e6f2ea; line-height: 1; }
.pm-step h3 { font-size: 17.5px; margin: 0 0 7px; color: var(--in-navy); }
.pm-step p { margin: 0; color: var(--in-muted); font-size: 14.5px; }
@media (max-width: 940px) { .pm-steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .pm-steps { grid-template-columns: 1fr; } }

/* =========================================================
   REVIEWS (6 kaarten met categorie-tag) + Trustpilot
   ========================================================= */
.pm-reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.pm-review { background: #fff; border: 1px solid var(--in-line); border-radius: var(--in-radius); padding: 24px; display: flex; flex-direction: column; gap: 12px; }
.pm-review__top { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.pm-review__who { display: flex; align-items: center; gap: 11px; }
.pm-review__ava { width: 40px; height: 40px; border-radius: 50%; background: var(--pm-mint); color: var(--in-green); display: grid; place-items: center; font-weight: 800; font-size: 16px; flex: none; }
.pm-review__name { font-weight: 800; color: var(--in-navy); font-size: 15px; line-height: 1.2; }
.pm-review__loc { color: var(--in-muted); font-size: 13px; }
.pm-review__stars { height: 20px; width: auto; display: block; }
.pm-review__text { color: var(--in-body); font-size: 15px; margin: 0; flex: 1; }
.pm-review__tag { align-self: flex-start; font-size: 12px; font-weight: 700; color: var(--in-green-600); background: var(--pm-mint); padding: 4px 11px; border-radius: 999px; }
@media (max-width: 940px) { .pm-reviews { grid-template-columns: 1fr; } }

.pm-tp-row { display: flex; justify-content: center; margin-top: 34px; }
.pm-tp-row .in-tp { background: #fff; border: 1px solid var(--in-line); border-radius: 999px; padding: 12px 22px; box-shadow: var(--in-shadow-sm); }

/* =========================================================
   BELOFTE-SECTIE ("Vergelijken doe je zo") — split + badge
   ========================================================= */
.pm-promise__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.pm-promise__media { position: relative; border-radius: var(--in-radius-lg); overflow: hidden; box-shadow: var(--in-shadow-lg); aspect-ratio: 5/4; }
.pm-promise__media img { width: 100%; height: 100%; object-fit: cover; }
.pm-promise__badge { position: absolute; left: 18px; bottom: 18px; background: #fff; border-radius: 16px; box-shadow: var(--in-shadow); padding: 14px 18px; display: flex; align-items: center; gap: 12px; }
.pm-promise__badge b { display: block; font-family: var(--in-font-head); font-weight: 900; font-size: 26px; color: var(--in-green); line-height: 1; }
.pm-promise__badge small { color: var(--in-muted); font-size: 12.5px; }
.pm-promise__badge .pm-badge-ic { width: 40px; height: 40px; border-radius: 11px; background: var(--pm-mint); color: var(--in-green); display: grid; place-items: center; }
.pm-promise h2 { color: var(--in-navy); }
.pm-promise__lead { color: var(--in-green-600); font-weight: 800; font-size: 18px; margin: 0 0 18px; }
.pm-promise__list { list-style: none; margin: 0 0 26px; padding: 0; display: grid; gap: 16px; }
.pm-promise__list li { display: flex; gap: 13px; align-items: flex-start; color: var(--in-body); font-size: 15.5px; }
.pm-promise__list li b { color: var(--in-navy); }
.pm-promise__list .pm-check { flex: none; width: 26px; height: 26px; border-radius: 50%; background: var(--pm-mint); color: var(--in-green); display: grid; place-items: center; margin-top: 1px; }
.pm-promise__list .pm-check svg { width: 15px; height: 15px; }
@media (max-width: 900px) { .pm-promise__grid { grid-template-columns: 1fr; gap: 28px; } }

/* =========================================================
   DONKERE CTA-band ("Klaar om te besparen?")
   ========================================================= */
.in-cta.in-cta--dark { background: var(--pm-charcoal); }
.in-cta.in-cta--dark h2 { color: #fff; }
.in-cta.in-cta--dark p { color: rgba(255,255,255,.72); }
.in-cta.in-cta--dark .in-btn--primary { background: var(--in-green); box-shadow: 0 12px 30px rgba(22,163,74,.35); }
.in-cta.in-cta--dark .in-btn--primary:hover { background: var(--in-green-600); }

/* =========================================================
   FOOTER — Prijsmatch (donker charcoal)
   ========================================================= */
.pm-footer { background: var(--pm-charcoal-2); color: #9fb0c2; }
.pm-footer__grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; padding: 56px 0 40px; }
.pm-footer h4 { color: #fff; font-size: 14px; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 16px; }
.pm-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 11px; }
.pm-footer a { color: #9fb0c2; }
.pm-footer a:hover { color: #fff; }
.pm-footer__logo { display: inline-block; margin-bottom: 16px; }
.pm-footer__logo img { height: 40px; width: auto; }
.pm-footer__brand p { color: #8194a6; max-width: 40ch; font-size: 14.5px; }
.pm-footer__social { display: flex; gap: 11px; margin-top: 16px; }
.pm-footer__social a { width: 38px; height: 38px; border-radius: 10px; background: rgba(255,255,255,.07); display: grid; place-items: center; font-size: 17px; color: #cdd8e3; }
.pm-footer__social a:hover { background: var(--in-green); color: #fff; }
.pm-footer__bar { border-top: 1px solid rgba(255,255,255,.09); color: #768899; }
.pm-footer__bar a { color: #768899; }
@media (max-width: 900px) { .pm-footer__grid { grid-template-columns: 1fr 1fr; gap: 30px; } }
@media (max-width: 520px) { .pm-footer__grid { grid-template-columns: 1fr; } }

/* =========================================================
   Categoriepagina wizard-opties (Prijsmatch look)
   ========================================================= */
.in-wizard .in-checkopt input,
.in-wizard input:focus, .in-wizard select:focus, .in-wizard textarea:focus { border-color: var(--in-green); }
.in-offerte__note { border-left-color: var(--in-green); }
.in-offerte__note-ic { color: var(--in-green); }
.in-wizard__bar span { background: var(--in-green); }

/* Subnav / gerelateerd: groene accenten */
.in-subnav-wrap { background: var(--pm-mint); }
.in-subnav__label { color: var(--in-green-600); }
.in-subnav__item svg { color: var(--in-green); }
.in-subnav__item:hover { border-color: var(--in-green); color: var(--in-green); }

/* FAQ plus-teken groen */
.in-faq__item summary::after { color: var(--in-green); }

/* Checklist tick groen */
.in-checklist li::before { background: var(--pm-mint); color: var(--in-green); }

/* Prijs-kaart hover-rand groen */
.in-price:hover { border-color: var(--in-green); }

/* Section headings navy */
.in-heading h2, .in-section h2 { color: var(--in-navy); }

/* 2-koloms FAQ (homepage + categorie) */
.pm-faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; max-width: 1000px; margin: 0 auto; align-items: start; }
@media (max-width: 820px) { .pm-faq-grid { grid-template-columns: 1fr; } }

/* Homepage-H1 groen accent (zoals prijsmatch.nl) */
.pm-hl { color: var(--in-green); }

/* Homepage-illustratie OOK op mobiel tonen (onder de hero-content) */
@media (max-width: 940px) {
	.pm-hero__grid { grid-template-columns: 1fr; gap: 18px; }
	.pm-hero__illu { display: block; max-width: 360px; margin: 6px auto 0; }
	.pm-hero h1 { font-size: clamp(30px, 8.5vw, 42px); }
}

/* =========================================================
   WIZARD — 1 vraag/stap met optiekaarten (zoals prijsmatch.nl)
   ========================================================= */
.in-wizard__head { display: flex; align-items: center; gap: 16px; margin-bottom: 24px; }
.in-wizard__head .in-wizard__bar { flex: 1; margin-bottom: 0; }
.in-wizard__count { font-weight: 800; color: var(--in-navy); font-size: 14.5px; white-space: nowrap; }
.in-wizard__step h2 { font-size: clamp(19px, 3vw, 24px); margin: 0 0 18px; color: var(--in-navy); }

.in-optcards { display: grid; gap: 10px; }
.in-optcard {
	position: relative; display: flex; align-items: center; gap: 12px;
	border: 1.5px solid var(--in-line); border-radius: 14px; padding: 16px 18px;
	cursor: pointer; font-weight: 600; font-size: 16px; color: var(--in-navy);
	transition: border-color .15s ease, background .15s ease, box-shadow .15s ease;
	-webkit-tap-highlight-color: transparent;
}
.in-optcard input { position: absolute; opacity: 0; width: 0; height: 0; }
.in-optcard__t { flex: 1; }
.in-optcard:hover { border-color: var(--in-green); background: var(--pm-mint); }
.in-optcard.is-selected { border-color: var(--in-green); background: var(--pm-mint); box-shadow: 0 0 0 1.5px var(--in-green) inset; }
.in-optcard__badge { font-size: 11px; font-weight: 800; letter-spacing: .05em; color: #fff; background: var(--in-green); padding: 4px 11px; border-radius: 999px; }

/* Sidebar-samenvatting "Jouw X vergelijking" + Waarom-lijst */
.in-offerte__summary { padding: 2px 4px 4px; }
.in-offerte__summary h3 { font-size: 18px; margin: 0 0 8px; color: var(--in-navy); }
.in-sumlist { list-style: none; margin: 0 0 16px; padding: 0; }
.in-sumlist li { display: flex; justify-content: space-between; gap: 12px; padding: 12px 2px; border-bottom: 1px solid var(--in-line); font-size: 14.5px; }
.in-sumlist li:last-child { border-bottom: 0; }
.in-sumlist__label { color: var(--in-muted); }
.in-sumlist__val { color: var(--in-navy); font-weight: 700; text-align: right; }
.in-sumlist__price .in-sumlist__val { color: var(--in-green); font-variant-numeric: tabular-nums; }
.in-offerte__why { border-top: 1px solid var(--in-line); padding: 16px 4px 2px; }
.in-offerte__why h4 { font-size: 15px; margin: 0 0 12px; color: var(--in-navy); text-transform: none; letter-spacing: 0; }
.in-whylist { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.in-whylist li { display: flex; align-items: center; gap: 10px; font-size: 14.5px; color: var(--in-body); }
.in-whylist li svg { width: 18px; height: 18px; color: var(--in-green); flex: none; }
.in-whylist strong { color: var(--in-navy); }

/* Mobiel: sidebar ONDER de wizard (zoals NL) */
@media (max-width: 860px) {
	.in-offerte__main { padding: 20px 16px; }
	.in-optcard { padding: 15px 16px; font-size: 15.5px; }
	.in-wizard__step h2 { font-size: 20px; }
}
