/* =========================================================
   TS Marketing — huisstijl v2 (donker · violet · bold)
   Design system + componenten. Mobile-first.
   ========================================================= */

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

:root {
	/* ===== Kleuren ===== */
	--bg: #ffffff;
	--bg-soft: #f4f3fa;
	--dark: #0a0a12;
	--dark-2: #0f0e1a;
	--card-dark: #15131f;
	--card-dark-2: #1b1930;

	--ink: #0c0b16;
	--text: #4a4860;
	--muted: #7d7b93;
	--line: #e8e6f1;

	--text-dark: #b7b4cc;
	--muted-dark: #837f9c;
	--line-dark: rgba(255, 255, 255, .09);

	--violet: #8b5cf6;
	--violet-600: #7c3aed;
	--indigo: #6366f1;
	--violet-050: #f2edff;

	--grad: linear-gradient(135deg, #6366f1 0%, #8b5cf6 52%, #a855f7 100%);
	--grad-bright: linear-gradient(135deg, #7c73ff 0%, #a855f7 100%);

	--radius: 18px;
	--radius-lg: 26px;
	--radius-sm: 12px;
	--radius-pill: 999px;

	--shadow-sm: 0 2px 10px rgba(16, 8, 40, .06);
	--shadow: 0 24px 60px -24px rgba(24, 12, 60, .30);
	--shadow-lg: 0 40px 90px -30px rgba(24, 12, 60, .45);
	--glow: 0 14px 40px -10px rgba(124, 92, 255, .55);

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

	/* aliassen (oude namen die templates nog kunnen gebruiken) */
	--in-navy: var(--ink);
	--in-blue: var(--violet);
	--in-blue-600: var(--violet-600);
	--in-blue-050: var(--violet-050);
	--in-green: var(--violet);
	--in-green-600: var(--violet-600);
	--in-ink: var(--ink);
	--in-body: var(--text);
	--in-muted: var(--muted);
	--in-line: var(--line);
	--in-bg: var(--bg);
	--in-bg-alt: var(--bg-soft);
	--in-bg-soft: var(--bg-soft);
	--in-orange: var(--violet);
	--in-orange-600: var(--violet-600);
	--in-amber: #f5b301;
	--in-radius: var(--radius);
	--in-radius-lg: var(--radius-lg);
	--in-radius-sm: var(--radius-sm);
	--in-shadow-sm: var(--shadow-sm);
	--in-shadow: var(--shadow);
	--in-shadow-lg: var(--shadow-lg);
	--in-gradient: var(--grad);
	--in-gradient-dark: linear-gradient(160deg, #0c0b16 0%, #14122a 60%, #1a1440 100%);
	--in-maxw: var(--maxw);
	--in-font: var(--font);
	--in-font-head: var(--font-head);
}

/* ---------- Base ---------- */
body {
	font-family: var(--font);
	color: var(--text);
	background: var(--bg);
	line-height: 1.65;
	-webkit-font-smoothing: antialiased;
	font-size: 17px;
}
h1, h2, h3, h4 {
	color: var(--ink);
	font-family: var(--font-head);
	line-height: 1.08;
	font-weight: 800;
	letter-spacing: -.03em;
	margin: 0 0 .5em;
}
a { color: var(--violet-600); text-decoration: none; }
a:hover { color: var(--violet); }
img { max-width: 100%; height: auto; display: block; }
html, body { overflow-x: clip; max-width: 100%; }
header.wp-block-template-part { display: contents; }
.wp-site-blocks, main.wp-block-group, .wp-block-post-content, .in-hero, .in-section, .in-cta { overflow-x: clip; }
.wp-site-blocks > main, .wp-site-blocks > .wp-block-group { margin-block-start: 0 !important; }

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

/* gradient tekst-accent */
.grad-text { background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent; }

/* ---------- Sections ---------- */
.in-section { padding: 92px 0; }
.in-section--alt { background: var(--bg-soft); }
.in-section--soft { background: var(--bg-soft); }
.in-section--dark { background: var(--dark); color: var(--text-dark); position: relative; }
.in-section--dark h1, .in-section--dark h2, .in-section--dark h3, .in-section--dark h4 { color: #fff; }
.in-section--dark .in-lead { color: var(--text-dark); }

/* ---------- Section heading ---------- */
.in-heading { max-width: 720px; margin: 0 0 46px; }
.in-heading--center { margin-inline: auto; text-align: center; }
.in-eyebrow {
	display: inline-flex; align-items: center; gap: 8px;
	font-size: 12.5px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase;
	color: var(--violet-600); margin-bottom: 16px;
}
.in-eyebrow::before { content: ""; width: 22px; height: 2px; background: currentColor; border-radius: 2px; }
.in-section--dark .in-eyebrow { color: var(--violet); }
.in-heading h2 { font-size: clamp(30px, 4.4vw, 46px); }
.in-lead { font-size: 18px; color: var(--muted); margin: 0; line-height: 1.6; }

/* ---------- Buttons ---------- */
.in-btn {
	display: inline-flex; align-items: center; justify-content: center; gap: 9px;
	font-weight: 700; font-size: 15.5px; line-height: 1; padding: 15px 24px;
	border-radius: var(--radius-pill); border: 1.5px solid transparent; cursor: pointer;
	transition: transform .14s ease, box-shadow .22s ease, background .2s ease, border-color .2s ease;
	white-space: nowrap;
}
.in-btn:active { transform: translateY(1px); }
.in-btn--primary { background-image: var(--grad); color: #fff; box-shadow: var(--glow); }
.in-btn--primary:hover { color: #fff; transform: translateY(-2px); box-shadow: 0 20px 50px -12px rgba(124, 92, 255, .7); }
.in-btn--blue, .in-btn--green { background-image: var(--grad); color: #fff; box-shadow: var(--glow); }
.in-btn--blue:hover, .in-btn--green:hover { color: #fff; transform: translateY(-2px); }
.in-btn--ghost { background: rgba(255, 255, 255, .06); color: #fff; border-color: rgba(255, 255, 255, .22); }
.in-btn--ghost:hover { background: rgba(255, 255, 255, .14); color: #fff; }
.in-btn--outline { background: #fff; color: var(--ink); border-color: var(--line); }
.in-btn--outline:hover { border-color: var(--violet); color: var(--violet-600); }
.in-btn--lg { padding: 17px 30px; font-size: 16.5px; }
.in-btn--block { width: 100%; }

/* ---------- Topbar ---------- */
.in-topbar { background: var(--dark); color: var(--muted-dark); font-size: 13px; border-bottom: 1px solid var(--line-dark); }
.in-topbar .in-container { display: flex; flex-wrap: wrap; gap: 8px 30px; justify-content: center; padding-block: 9px; }
.in-topbar span { display: inline-flex; align-items: center; gap: 7px; }
.in-topbar .in-check { color: var(--violet); font-weight: 800; }

/* ---------- Header ---------- */
.in-header { position: sticky; top: 0; z-index: 60; background: rgba(255, 255, 255, .82); backdrop-filter: saturate(140%) blur(14px); border-bottom: 1px solid var(--line); transition: transform .3s ease; }
.in-header.is-hidden { transform: translateY(-100%); }
.admin-bar .in-header { top: 32px; }
@media screen and (max-width: 782px) { .admin-bar .in-header { top: 46px; } }
@media (max-width: 980px) { .in-header { position: static; } .in-header.is-hidden { transform: none; } }
.in-header__row { display: flex; align-items: center; gap: 18px; padding-block: 15px; justify-content: space-between; }
.in-logo { display: inline-flex; align-items: center; gap: 11px; font-weight: 800; font-size: 20px; color: var(--ink); letter-spacing: -.03em; }
.in-logo:hover { color: var(--ink); }
.in-logo__mark { width: 36px; height: 36px; border-radius: 11px; background-image: var(--grad); display: grid; place-items: center; color: #fff; box-shadow: var(--glow); }
.in-logo__mark svg { width: 20px; height: 20px; }
.in-logo b { background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.in-header__nav { display: flex; align-items: center; gap: 20px; margin-left: auto; }
.in-header__nav a { color: var(--ink); font-weight: 600; font-size: 15px; }
.in-header__nav a:hover { color: var(--violet-600); }
.in-header__nav .in-btn { padding: 12px 20px; font-size: 14.5px; }

/* ---------- 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(--ink); 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: 1900; }
.in-drawer[hidden] { display: none; }
.in-drawer__overlay { position: absolute; inset: 0; background: rgba(8, 6, 20, .55); 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(8, 6, 20, .3); 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; padding-bottom: 14px; border-bottom: 1px solid var(--line); margin-bottom: 14px; }
.in-drawer__close { background: none; border: 0; font-size: 34px; line-height: 1; color: var(--ink); cursor: pointer; padding: 0 6px; }
.in-drawer__nav { display: flex; flex-direction: column; }
.in-drawer__nav a { padding: 14px 4px; border-bottom: 1px solid var(--line); color: var(--ink); font-weight: 700; font-size: 16px; }
.in-drawer__nav a:hover { color: var(--violet-600); }
.in-drawer__nav a:last-child { border-bottom: 0; }

/* ---------- Taalschakelaar met vlaggen ---------- */
.in-flag { width: 22px; height: 15px; border-radius: 3px; box-shadow: 0 0 0 1px rgba(12, 11, 22, .14); flex: none; display: block; }
.in-langdd { position: relative; }
.in-langdd__btn { display: inline-flex; align-items: center; gap: 8px; padding: 8px 12px; border: 1.5px solid var(--line); background: #fff; border-radius: var(--radius-pill); cursor: pointer; font: inherit; font-weight: 800; font-size: 13px; color: var(--ink); line-height: 1; transition: border-color .15s, box-shadow .15s; }
.in-langdd__btn:hover { border-color: var(--violet); box-shadow: var(--shadow-sm); }
.in-langdd__btn .in-flag { width: 20px; height: 14px; }
.in-langdd__chev { width: 14px; height: 14px; color: var(--muted); transition: transform .2s ease; }
.in-langdd.is-open .in-langdd__chev { transform: rotate(180deg); }
.in-langdd__menu { position: absolute; top: calc(100% + 8px); right: 0; min-width: 190px; background: #fff; border: 1px solid var(--line); border-radius: 14px; box-shadow: var(--shadow); padding: 6px; display: none; z-index: 200; }
.in-langdd.is-open .in-langdd__menu { display: block; }
.in-langdd__item { display: flex; align-items: center; gap: 11px; padding: 10px 11px; border-radius: 9px; font-size: 14.5px; font-weight: 600; color: var(--ink); }
.in-langdd__item:hover { background: var(--bg-soft); color: var(--violet-600); }
.in-langdd__item.is-active { color: var(--violet-600); font-weight: 800; }
.in-drawer__langsw { margin: 18px 0 4px; }
.in-langsw--inline { display: flex; gap: 3px; padding: 3px; background: var(--bg-soft); border: 1px solid var(--line); border-radius: var(--radius-pill); width: 100%; }
.in-langsw__opt { flex: 1; display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 9px 6px; border-radius: var(--radius-pill); font-size: 13px; font-weight: 800; color: var(--muted); }
.in-langsw__opt .in-flag { width: 20px; height: 13px; }
.in-langsw__opt.is-active { background: #fff; color: var(--ink); box-shadow: var(--shadow-sm); }

/* ---------- Hero ---------- */
.in-hero { position: relative; background: var(--bg); overflow: hidden; padding: 84px 0 92px; }
.in-hero::before {
	content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
	background:
		radial-gradient(720px 380px at 78% -8%, rgba(139, 92, 246, .20), transparent 60%),
		radial-gradient(620px 420px at 0% 8%, rgba(99, 102, 241, .14), transparent 55%);
}
.in-hero::after {
	content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none; opacity: .5;
	background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px);
	background-size: 46px 46px;
	-webkit-mask-image: radial-gradient(circle at 50% 30%, #000, transparent 72%);
	mask-image: radial-gradient(circle at 50% 30%, #000, transparent 72%);
}
.in-hero > .in-container { position: relative; z-index: 1; }
.in-hero__grid { display: grid; grid-template-columns: 1.02fr .98fr; gap: 52px; align-items: center; }
.in-hero__content { min-width: 0; }
.in-hero h1 { color: var(--ink); font-size: clamp(38px, 5.6vw, 62px); line-height: 1.02; max-width: 15ch; }
.in-hero .in-lead { color: var(--text); font-size: clamp(17px, 1.6vw, 20px); max-width: 52ch; margin-top: 18px; }
.in-hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.in-hero__media { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.in-hero__media img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 920px) {
	.in-hero__grid { grid-template-columns: 1fr; gap: 34px; }
	.in-hero h1 { max-width: 18ch; }
}

/* Service-hero (binnenpagina's) — donker */
.in-hero--service { background: var(--in-gradient-dark); color: #fff; padding: 68px 0 74px; }
.in-hero--service::after { display: none; }
.in-hero--service::before { background: radial-gradient(680px 340px at 82% -20%, rgba(139, 92, 246, .32), transparent 60%), radial-gradient(560px 380px at 0% 10%, rgba(99, 102, 241, .22), transparent 55%); }
.in-hero--service h1 { color: #fff; font-size: clamp(32px, 4.8vw, 52px); }
.in-hero--service .in-lead { color: var(--text-dark); max-width: 60ch; }

/* Hero eyebrow-badge */
.in-hero__badge { display: inline-flex; align-items: center; gap: 9px; padding: 7px 14px 7px 8px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-pill); font-size: 13px; font-weight: 700; color: var(--ink); box-shadow: var(--shadow-sm); margin-bottom: 22px; }
.in-hero__badge b { background-image: var(--grad); color: #fff; padding: 3px 9px; border-radius: var(--radius-pill); font-size: 11.5px; letter-spacing: .04em; text-transform: uppercase; }

/* ---------- Dashboard-mockup (hero) ---------- */
.tsm-mock { background: linear-gradient(165deg, #14122a 0%, #0d0c1c 70%); border: 1px solid rgba(255, 255, 255, .1); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); padding: 20px; color: #fff; position: relative; }
.tsm-mock__bar { display: flex; align-items: center; gap: 9px; font-size: 13.5px; font-weight: 700; color: #fff; margin-bottom: 16px; }
.tsm-mock__live { margin-left: auto; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--violet); background: rgba(139, 92, 246, .16); padding: 4px 9px; border-radius: var(--radius-pill); }
.tsm-mock__dot { width: 9px; height: 9px; border-radius: 50%; background: #22c55e; box-shadow: 0 0 0 0 rgba(34, 197, 94, .5); animation: tsm-pulse 1.8s infinite; }
@keyframes tsm-pulse { 70% { box-shadow: 0 0 0 7px rgba(34, 197, 94, 0); } 100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); } }
.tsm-mock__stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 14px; }
.tsm-mock__stat { background: rgba(255, 255, 255, .05); border: 1px solid rgba(255, 255, 255, .08); border-radius: 14px; padding: 13px; }
.tsm-mock__stat b { display: block; font-size: 22px; font-weight: 800; color: #fff; letter-spacing: -.02em; }
.tsm-mock__stat span { font-size: 11.5px; color: var(--muted-dark); }
.tsm-mock__chart { display: flex; align-items: flex-end; gap: 8px; height: 88px; padding: 12px; background: rgba(255, 255, 255, .04); border: 1px solid rgba(255, 255, 255, .07); border-radius: 14px; margin-bottom: 14px; }
.tsm-mock__chart i { flex: 1; border-radius: 5px 5px 3px 3px; background: linear-gradient(180deg, var(--violet), rgba(99, 102, 241, .35)); opacity: .9; }
.tsm-mock__list { display: grid; gap: 8px; }
.tsm-mock__row { display: flex; align-items: center; gap: 11px; background: rgba(255, 255, 255, .05); border: 1px solid rgba(255, 255, 255, .07); border-radius: 12px; padding: 10px 12px; }
.tsm-mock__av { width: 30px; height: 30px; border-radius: 50%; background-image: var(--grad); flex: none; display: grid; place-items: center; color: #fff; font-weight: 800; font-size: 12px; }
.tsm-mock__who { min-width: 0; }
.tsm-mock__who b { display: block; font-size: 13.5px; color: #fff; font-weight: 700; }
.tsm-mock__who span { font-size: 11.5px; color: var(--muted-dark); }
.tsm-mock__tag { margin-left: auto; font-size: 11px; font-weight: 700; color: #22c55e; background: rgba(34, 197, 94, .14); padding: 4px 10px; border-radius: var(--radius-pill); }
.tsm-mock__note { position: absolute; top: 14px; right: 16px; font-size: 11px; color: var(--muted-dark); }

/* ---------- Trust-bar (logos) ---------- */
.tsm-trust { text-align: center; }
.tsm-trust__label { font-size: 12px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; color: var(--muted-dark); margin-bottom: 26px; }
.tsm-trust__row { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 22px 46px; }
.tsm-trust__item { font-family: var(--font-head); font-weight: 800; font-size: 20px; letter-spacing: -.02em; color: rgba(255, 255, 255, .55); opacity: .85; }

/* ---------- Stat-band ---------- */
.tsm-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.tsm-stat b { display: block; font-family: var(--font-head); font-size: clamp(28px, 3.4vw, 42px); font-weight: 800; letter-spacing: -.03em; line-height: 1; background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.tsm-stat span { display: block; margin-top: 8px; font-size: 14.5px; color: var(--muted); }
.in-section--dark .tsm-stat span { color: var(--muted-dark); }

/* Hero-stats hergebruik (klein) */
.in-hero__stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 48px; }
.in-stat { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 18px; box-shadow: var(--shadow-sm); }
.in-stat b { display: block; font-family: var(--font-head); color: var(--ink); font-size: 24px; font-weight: 800; letter-spacing: -.02em; }
.in-stat span { color: var(--muted); font-size: 13.5px; }

/* ---------- Vergelijking (oude manier vs onze manier) ---------- */
.tsm-compare { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.tsm-comp { border-radius: var(--radius-lg); padding: 30px; border: 1px solid var(--line); background: #fff; }
.tsm-comp--bad { background: var(--bg-soft); }
.tsm-comp--good { background: var(--dark); border-color: transparent; color: var(--text-dark); box-shadow: var(--shadow-lg); }
.tsm-comp__tag { display: inline-block; font-size: 12px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; padding: 6px 12px; border-radius: var(--radius-pill); margin-bottom: 18px; }
.tsm-comp--bad .tsm-comp__tag { background: #fff; color: var(--muted); border: 1px solid var(--line); }
.tsm-comp--good .tsm-comp__tag { background-image: var(--grad); color: #fff; }
.tsm-comp h3 { font-size: 21px; margin-bottom: 20px; }
.tsm-comp--good h3 { color: #fff; }
.tsm-comp ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 14px; }
.tsm-comp li { display: flex; align-items: flex-start; gap: 12px; font-size: 15.5px; }
.tsm-comp--bad li { color: var(--text); }
.tsm-comp--good li { color: var(--text-dark); }
.tsm-comp__ic { flex: none; width: 22px; height: 22px; border-radius: 50%; display: grid; place-items: center; font-size: 13px; font-weight: 900; margin-top: 1px; }
.tsm-comp--bad .tsm-comp__ic { background: #e7e5ee; color: #9a97ad; }
.tsm-comp--good .tsm-comp__ic { background-image: var(--grad); color: #fff; }

/* ---------- Proces-flow ---------- */
.tsm-flow { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; position: relative; }
.tsm-flow::before { content: ""; position: absolute; top: 34px; left: 8%; right: 8%; height: 2px; background: linear-gradient(90deg, transparent, rgba(139, 92, 246, .5), transparent); }
.tsm-flow__step { position: relative; text-align: center; }
.tsm-flow__ic { width: 68px; height: 68px; margin: 0 auto 16px; border-radius: 20px; background: var(--card-dark); border: 1px solid var(--line-dark); display: grid; place-items: center; color: #fff; position: relative; z-index: 1; }
.tsm-flow__step--last .tsm-flow__ic { background-image: var(--grad); border-color: transparent; box-shadow: var(--glow); }
.tsm-flow__ic svg { width: 26px; height: 26px; }
.tsm-flow__step h4 { color: #fff; font-size: 16px; margin: 0 0 4px; }
.tsm-flow__step p { color: var(--muted-dark); font-size: 13px; margin: 0; }
@media (max-width: 860px) { .tsm-flow { grid-template-columns: repeat(2, 1fr); gap: 24px; } .tsm-flow::before { display: none; } }
@media (max-width: 460px) { .tsm-flow { grid-template-columns: 1fr; } }

/* ---------- Grids + cards ---------- */
.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(--line); border-radius: var(--radius-lg); padding: 30px; transition: box-shadow .22s ease, transform .16s ease, border-color .2s ease; display: block; }
.in-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); border-color: rgba(139, 92, 246, .4); }
.in-section--dark .in-card { background: var(--card-dark); border-color: var(--line-dark); }
.in-section--dark .in-card:hover { border-color: rgba(139, 92, 246, .5); }
.in-card__icon, .in-cardicon { display: inline-grid; place-items: center; width: 54px; height: 54px; border-radius: 15px; background: var(--violet-050); color: var(--violet-600); margin-bottom: 18px; transition: background .2s, color .2s; }
.in-card__icon svg, .in-cardicon svg { width: 27px; height: 27px; }
a.in-card:hover .in-cardicon, a.in-card:hover .in-card__icon { background-image: var(--grad); color: #fff; }
.in-section--dark .in-cardicon, .in-section--dark .in-card__icon { background: rgba(139, 92, 246, .16); color: #c4b5fd; }
.in-card__title { font-size: 19px; margin: 0 0 8px; }
.in-card__text { margin: 0; color: var(--muted); font-size: 15.5px; }
.in-section--dark .in-card__title { color: #fff; }
.in-section--dark .in-card__text { color: var(--text-dark); }
.in-tile__link { display: inline-flex; align-items: center; gap: 6px; font-weight: 700; color: var(--violet-600); }
.in-tile__link::after { content: "→"; transition: transform .15s; }
.in-card:hover .in-tile__link::after { transform: translateX(4px); }

/* ---------- Steps ---------- */
.in-steps { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.in-steps--3 { grid-template-columns: repeat(3, 1fr); }
.in-step { position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 28px 24px; }
.in-section--dark .in-step { background: var(--card-dark); border-color: var(--line-dark); }
.in-step__num { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 50%; background-image: var(--grad); color: #fff; font-weight: 800; font-size: 18px; margin-bottom: 16px; box-shadow: var(--glow); }
.in-step h3 { font-size: 17px; margin: 0 0 6px; }
.in-step p { margin: 0; color: var(--muted); font-size: 15px; }
.in-section--dark .in-step h3 { color: #fff; }
.in-section--dark .in-step p { color: var(--text-dark); }

/* ---------- Checklist ---------- */
.in-checklist { list-style: none; padding: 0; margin: 0; display: grid; gap: 13px; max-width: 820px; }
.in-checklist li { display: flex; align-items: flex-start; gap: 13px; color: var(--text); font-size: 16px; line-height: 1.5; }
.in-checklist li::before { content: "✓"; flex: none; width: 24px; height: 24px; border-radius: 50%; background: var(--violet-050); color: var(--violet-600); font-weight: 900; display: grid; place-items: center; font-size: 12px; margin-top: 1px; }
.in-section--dark .in-checklist li { color: var(--text-dark); }

/* ---------- FAQ ---------- */
.in-faq { max-width: 820px; margin: 0 auto; display: grid; gap: 12px; }
.in-faq__item { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.in-faq__item summary { cursor: pointer; list-style: none; padding: 18px 22px; font-weight: 700; color: var(--ink); 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(--violet-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(--muted); }
.in-faq__a p { margin: 0; }

/* ---------- Reviews ---------- */
.tsm-reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.tsm-review { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 26px; box-shadow: var(--shadow-sm); }
.tsm-review__stars { color: #f5b301; font-size: 17px; letter-spacing: 2px; margin-bottom: 14px; }
.tsm-review__text { color: var(--text); font-size: 15.5px; margin: 0 0 18px; }
.tsm-review__who { display: flex; align-items: center; gap: 11px; }
.tsm-review__av { width: 40px; height: 40px; border-radius: 50%; background-image: var(--grad); display: grid; place-items: center; color: #fff; font-weight: 800; }
.tsm-review__who b { display: block; font-size: 14.5px; color: var(--ink); }
.tsm-review__who span { font-size: 13px; color: var(--muted); }

/* ---------- CTA band ---------- */
.in-cta { position: relative; background: var(--dark); color: #fff; padding: 84px 0; text-align: center; overflow: hidden; }
.in-cta::before { content: ""; position: absolute; inset: 0; background: radial-gradient(700px 300px at 50% 0%, rgba(139, 92, 246, .35), transparent 60%); pointer-events: none; }
.in-cta > .in-container { position: relative; z-index: 1; }
.in-cta h2 { color: #fff; font-size: clamp(30px, 4.4vw, 48px); }
.in-cta p { color: var(--text-dark); font-size: 18px; max-width: 54ch; margin: 0 auto 26px; }

/* ---------- Guarantee split ---------- */
.tsm-split2 { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; align-items: stretch; }
.tsm-guarantee { background: var(--dark); color: var(--text-dark); border-radius: var(--radius-lg); padding: 38px; box-shadow: var(--shadow-lg); }
.tsm-guarantee .tsm-comp__tag { background-image: var(--grad); color: #fff; }
.tsm-guarantee h3 { color: #fff; font-size: 26px; margin: 0 0 12px; }
.tsm-cta-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 38px; box-shadow: var(--shadow); }
.tsm-cta-card h3 { font-size: 24px; margin: 0 0 10px; }

/* ---------- Breadcrumb / prose ---------- */
.in-breadcrumb { color: var(--text-dark); font-size: 14px; margin-bottom: 18px; }
.in-breadcrumb a { color: #fff; }
.in-breadcrumb a:hover { text-decoration: underline; }
.in-prose { max-width: 760px; }
.in-prose h2 { font-size: 28px; margin-top: 1.5em; }
.in-prose h3 { font-size: 21px; margin-top: 1.3em; }
.in-prose p, .in-prose ul, .in-prose ol { margin: 0 0 1.1em; }
.in-prose ul, .in-prose ol { padding-left: 1.3em; }

/* ---------- Diensten/over: tekst | foto ---------- */
.tsm-svc { display: grid; grid-template-columns: 1.1fr .9fr; gap: 48px; align-items: center; }
.tsm-svc__text { grid-column: 1; grid-row: 1; }
.tsm-svc__media { grid-column: 2; grid-row: 1; }
.tsm-svc--rev .tsm-svc__text { grid-column: 2; }
.tsm-svc--rev .tsm-svc__media { grid-column: 1; }
.tsm-media { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 4 / 3; }
.tsm-media img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 900px) {
	.tsm-media { aspect-ratio: 16 / 9; }
	.tsm-svc { grid-template-columns: 1fr; gap: 28px; }
	.tsm-svc__text, .tsm-svc__media, .tsm-svc--rev .tsm-svc__text, .tsm-svc--rev .tsm-svc__media { grid-column: 1; }
	.tsm-svc__text { grid-row: 2; } .tsm-svc__media { grid-row: 1; }
}

/* ---------- Forms ---------- */
.in-form { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 32px; box-shadow: var(--shadow); }
.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(--ink); font-size: 14.5px; margin-bottom: 7px; }
.in-form input, .in-form select, .in-form textarea { border: 1.5px solid var(--line); border-radius: var(--radius-sm); padding: 13px 15px; font-size: 15.5px; font-family: inherit; color: var(--ink); background: #fff; transition: border-color .2s, box-shadow .2s; }
.in-form input:focus, .in-form select:focus, .in-form textarea:focus { outline: none; border-color: var(--violet); box-shadow: 0 0 0 4px rgba(139, 92, 246, .14); }
.in-form__note { text-align: center; color: var(--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(--radius-sm); padding: 16px 20px; margin-bottom: 20px; font-size: 15.5px; }
.in-alert--success { background: rgba(139, 92, 246, .1); color: var(--violet-600); border: 1px solid rgba(139, 92, 246, .3); }
.in-alert--error { background: #fdecec; color: #c0392b; border: 1px solid #f5c6c6; }
.in-split { display: grid; grid-template-columns: 1.1fr .9fr; gap: 46px; align-items: start; }
.in-split__aside h3 { font-size: 22px; }

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

/* ---------- Footer ---------- */
.in-footer { background: var(--dark); color: var(--text-dark); padding: 72px 0 0; font-size: 15px; border-top: 1px solid var(--line-dark); }
.in-footer a { color: var(--text-dark); }
.in-footer a:hover { color: #fff; }
.in-footer__grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 50px; }
.in-footer h4 { color: #fff; font-size: 13px; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 18px; }
.in-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 11px; }
.in-footer__brand .in-logo { color: #fff; margin-bottom: 16px; }
.in-footer__brand p { color: var(--muted-dark); max-width: 34ch; }
.in-footer__social { display: flex; gap: 12px; margin-top: 18px; }
.in-footer__social a { width: 40px; height: 40px; border-radius: 11px; background: rgba(255, 255, 255, .06); display: grid; place-items: center; font-size: 13px; font-weight: 800; text-transform: uppercase; }
.in-footer__social a:hover { background-image: var(--grad); color: #fff; }
.in-footer__bar { border-top: 1px solid var(--line-dark); padding: 22px 0; display: flex; flex-wrap: wrap; gap: 8px 22px; justify-content: space-between; color: var(--muted-dark); font-size: 13.5px; }

/* ---------- Utilities ---------- */
.in-center { text-align: center; }
.in-mt { margin-top: 28px; }
.in-narrow { max-width: 820px; margin-inline: auto; }
.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(--line); }
.in-ptable th { background: var(--bg-soft); font-weight: 700; color: var(--ink); }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
	.in-grid--3, .in-grid--4, .in-steps, .tsm-reviews, .in-posts { grid-template-columns: repeat(2, 1fr); }
	.tsm-stats { 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: 32px; }
}
@media (max-width: 720px) {
	.tsm-compare, .tsm-split2 { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
	body { font-size: 16px; }
	.in-section { padding: 60px 0; }
	.in-topbar { display: block; }
	.in-topbar .in-container { gap: 4px 18px; padding-block: 8px; font-size: 12px; }
	.in-topbar.is-slider .in-container { position: relative; display: block; height: 32px; padding-block: 0; }
	.in-topbar.is-slider span { position: absolute; inset: 0; justify-content: center; opacity: 0; transition: opacity .45s ease; }
	.in-topbar.is-slider span.is-active { opacity: 1; }
	.in-header__nav { gap: 8px; }
	.in-header__nav .in-langdd { display: none; }
	.in-hide-mobile { display: none !important; }
	.in-burger { display: inline-flex; }
	.in-hero { padding: 52px 0 60px; }
	.in-grid--2, .in-grid--3, .in-grid--4, .in-steps, .in-steps--3, .tsm-reviews, .in-posts { grid-template-columns: 1fr; }
	.tsm-stats, .in-hero__stats { grid-template-columns: 1fr 1fr; gap: 12px; }
	.in-form { padding: 24px; }
	.in-form__row { grid-template-columns: 1fr; gap: 0; }
	.in-footer__grid { grid-template-columns: 1fr 1fr; gap: 28px; }
	.in-cta { padding: 60px 0; }
}
@media (max-width: 400px) {
	.tsm-stats, .in-hero__stats, .in-footer__grid { grid-template-columns: 1fr; }
	.tsm-mock__stats { grid-template-columns: 1fr; }
}
