/* ------------------------------------------------------------------ *
 * Steenmetz v3 — designsysteem
 * Bron: goedgekeurd design "Steenmetz Elektrotechniek v3.dc.html" +
 * gelinkte subpagina's. Waarden 1-op-1 overgenomen (sectie 5, brief).
 * ------------------------------------------------------------------ */

@font-face {
	font-family: 'Be Vietnam Pro';
	font-style: normal;
	font-weight: 400;
	font-display: swap;
	src: url('../fonts/bevietnampro-400.woff2') format('woff2');
}
@font-face {
	font-family: 'Be Vietnam Pro';
	font-style: normal;
	font-weight: 500;
	font-display: swap;
	src: url('../fonts/bevietnampro-500.woff2') format('woff2');
}
@font-face {
	font-family: 'Be Vietnam Pro';
	font-style: normal;
	font-weight: 600;
	font-display: swap;
	src: url('../fonts/bevietnampro-600.woff2') format('woff2');
}
@font-face {
	font-family: 'Be Vietnam Pro';
	font-style: normal;
	font-weight: 700;
	font-display: swap;
	src: url('../fonts/bevietnampro-700.woff2') format('woff2');
}
/* Hanken Grotesk: variabele font — één bestand dekt de gewichten 500–800. */
@font-face {
	font-family: 'Hanken Grotesk';
	font-style: normal;
	font-weight: 500 800;
	font-display: swap;
	src: url('../fonts/hankengrotesk-var.woff2') format('woff2');
}

:root {
	/* Rood (primair accent) */
	--sw-red: #d61f26;
	--sw-red-dark: #a5141a;
	--sw-red-grad-light: #ff5a52;
	--sw-red-grad-dark: #7a0f14;
	--sw-red-light: #ff7a70;
	--sw-red-chip-bg: #fdecec;

	/* Neutraal */
	--sw-ink: #16161a;
	--sw-muted-1: #6a6a72;
	--sw-muted-2: #4a4a52;
	--sw-muted-3: #5a5a62;
	--sw-muted-4: #8a8a90;
	--sw-muted-5: #8a8c96;
	--sw-muted-6: #a3a5b0;
	--sw-muted-7: #c3c5cf;
	--sw-muted-8: #9a9ca6;
	--sw-muted-9: #5f6068;
	--sw-off-white: #f6f6f4;
	--sw-white: #ffffff;

	/* Donker (hero/projecten/contact/footer) */
	--sw-dark-1: #0d0d10;
	--sw-dark-2: #16161c;
	--sw-dark-3: #08080a;
	--sw-dark-4: #1a1a22;

	/* Lijnen */
	--sw-border-1: #eaeaee;
	--sw-border-2: #ececef;
	--sw-border-3: #e7e7ea;
	--sw-border-4: #26262e;
	--sw-border-5: #1e1e26;
	--sw-border-6: #cdd4e0;

	/* Typografie */
	--sw-font-heading: 'Hanken Grotesk', sans-serif;
	--sw-font-body: 'Be Vietnam Pro', sans-serif;

	/* Layout */
	--sw-container: 1220px;
	--sw-side-pad: clamp(20px, 5vw, 56px);
	--sw-section-pad: clamp(64px, 9vw, 116px);
	--sw-section-pad-tight: clamp(56px, 8vw, 104px);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
	margin: 0;
	background: var(--sw-white);
	font-family: var(--sw-font-body);
	color: var(--sw-ink);
	width: 100%;
	overflow-x: hidden;
	padding-bottom: 96px; /* ruimte voor sticky mobiele CTA-balk */
}
@media (min-width: 881px) {
	body { padding-bottom: 0; }
}

h1, h2, h3, h4, h5, h6 {
	font-family: var(--sw-font-heading);
	font-weight: 700;
	line-height: 1.1;
	margin: 0;
}

a { color: var(--sw-red); text-decoration: none; }
a:hover { color: var(--sw-red-dark); }

img { max-width: 100%; display: block; }

.sw-container {
	max-width: var(--sw-container);
	margin: 0 auto;
	padding: 0 var(--sw-side-pad);
}

@keyframes sw-spoedpulse {
	0%, 100% { opacity: 1; transform: scale(1); }
	50% { opacity: 0.35; transform: scale(0.7); }
}

.sw-hide-mob { }
.sw-mob-cta { display: none !important; }
@media (max-width: 880px) {
	.sw-hide-mob { display: none !important; }
	.sw-mob-cta { display: flex !important; }
	.sw-stack-mob { grid-template-columns: 1fr !important; }
}

/* ------------------------------------------------------------------ *
 * Knoppen
 * ------------------------------------------------------------------ */
.sw-btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-family: var(--sw-font-body);
	font-weight: 600;
	font-size: 15px;
	padding: 13px 26px;
	border-radius: 999px;
	border: none;
	cursor: pointer;
	white-space: nowrap;
	text-decoration: none;
	transition: background 0.15s, color 0.15s, box-shadow 0.15s;
}
.sw-btn-primary {
	color: var(--sw-white);
	background: linear-gradient(90deg, var(--sw-red-grad-light) 0%, var(--sw-red-grad-dark) 100%);
}
.sw-btn-primary:hover { background: var(--sw-red-dark); color: var(--sw-white); }
.sw-btn-outline-light {
	color: var(--sw-white);
	background: rgba(255, 255, 255, 0.12);
	border: 1px solid rgba(255, 255, 255, 0.35);
}
.sw-btn-outline-light:hover { background: rgba(255, 255, 255, 0.24); color: var(--sw-white); }
.sw-btn-white {
	color: var(--sw-red);
	background: var(--sw-white);
}
.sw-btn-white:hover { background: #eef0f6; color: var(--sw-red-dark); }

/* ------------------------------------------------------------------ *
 * Header
 * ------------------------------------------------------------------ */
.sw-header {
	position: sticky;
	top: 0;
	z-index: 60;
	background: rgba(255, 255, 255, 0.92);
	backdrop-filter: saturate(180%) blur(10px);
	border-bottom: 1px solid var(--sw-border-1);
}
.sw-header-row {
	max-width: var(--sw-container);
	margin: 0 auto;
	padding: 13px var(--sw-side-pad);
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
}
.sw-logo { display: flex; align-items: center; height: 54px; }
.sw-logo img { height: 100%; width: auto; }
.sw-nav { display: flex; align-items: center; gap: 24px; }
.sw-nav a { color: var(--sw-ink); font-weight: 500; font-size: 15px; white-space: nowrap; }
.sw-nav a:hover { color: var(--sw-red); }
.sw-nav a.is-active { color: var(--sw-red); font-weight: 600; }
.sw-nav-actions { display: flex; align-items: center; gap: 14px; }
.sw-nav-tel { color: var(--sw-ink); font-weight: 600; font-size: 15px; display: inline-flex; align-items: center; gap: 8px; }
.sw-nav-tel:hover { color: var(--sw-red); }

.sw-dd { position: relative; }
.sw-dd-toggle { display: inline-flex; align-items: center; gap: 5px; cursor: pointer; }
.sw-dd-panel {
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translateX(-50%);
	padding-top: 14px;
	display: none;
	z-index: 70;
}
.sw-dd:hover .sw-dd-panel,
.sw-dd:focus-within .sw-dd-panel { display: block; }
.sw-dd-inner {
	background: var(--sw-white);
	border: 1px solid var(--sw-border-2);
	border-radius: 14px;
	box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
	padding: 8px;
	width: 246px;
	display: flex;
	flex-direction: column;
}
.sw-dd-inner a {
	color: var(--sw-ink);
	font-weight: 500;
	font-size: 14.5px;
	padding: 11px 14px;
	border-radius: 9px;
	white-space: nowrap;
}
.sw-dd-inner a:hover { background: var(--sw-off-white); color: var(--sw-red); }
.sw-dd-inner a.is-active { color: var(--sw-red); font-weight: 600; background: var(--sw-red-chip-bg); }

.sw-mobile-toggle { display: none; }
@media (max-width: 880px) {
	.sw-mobile-toggle { display: inline-flex; }
}

/* ------------------------------------------------------------------ *
 * Hero
 * ------------------------------------------------------------------ */
.sw-hero {
	position: relative;
	background: var(--sw-dark-1);
	overflow: hidden;
}
.sw-hero-media { position: absolute; inset: 0; }
.sw-hero-media img { width: 100%; height: 100%; object-fit: cover; }
.sw-hero-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(105deg, rgba(13, 13, 16, 0.92) 0%, rgba(13, 13, 16, 0.7) 46%, rgba(13, 16, 42, 0.32) 100%);
}
.sw-hero-overlay--lean {
	background: linear-gradient(105deg, rgba(13, 13, 16, 0.92) 0%, rgba(13, 13, 16, 0.72) 52%, rgba(13, 13, 16, 0.5) 100%);
}
.sw-hero-content {
	position: relative;
	max-width: var(--sw-container);
	margin: 0 auto;
	padding: clamp(64px, 10vw, 120px) var(--sw-side-pad);
}
.sw-hero-inner { max-width: 720px; }
.sw-hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	background: rgba(214, 31, 38, 0.16);
	border: 1px solid rgba(214, 31, 38, 0.5);
	border-radius: 999px;
	padding: 7px 15px 7px 13px;
	margin-bottom: 26px;
	color: var(--sw-red-light);
	font-weight: 600;
	font-size: 13.5px;
	letter-spacing: 0.02em;
}
.sw-hero-badge-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--sw-red-light);
	animation: sw-spoedpulse 1.6s ease-in-out infinite;
}
.sw-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: var(--sw-red);
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	font-size: 13px;
	margin-bottom: 14px;
}
.sw-eyebrow::before {
	content: '';
	display: inline-block;
	flex: none;
	width: 26px;
	height: 3px;
	border-radius: 2px;
	background: currentColor;
}
.sw-eyebrow--light { color: var(--sw-red-light); }
.sw-hero h1 {
	color: var(--sw-white);
	font-size: clamp(34px, 6vw, 60px);
	line-height: 1.04;
	letter-spacing: -0.02em;
	margin-bottom: 20px;
}
.sw-hero--lean h1 { font-size: clamp(30px, 5vw, 54px); }
.sw-hero p {
	color: var(--sw-muted-7);
	font-size: clamp(16px, 2vw, 19px);
	line-height: 1.6;
	margin-bottom: 28px;
}
.sw-hero-checks { display: flex; flex-direction: column; gap: 10px; margin-bottom: 32px; }
.sw-hero-checks span { color: var(--sw-muted-6); font-size: 15px; display: flex; align-items: center; gap: 10px; }
.sw-hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.sw-curve { display: block; width: 100%; }

/* ------------------------------------------------------------------ *
 * Vertrouwensbalk
 * ------------------------------------------------------------------ */
.sw-trust {
	background: var(--sw-white);
	border-bottom: 1px solid var(--sw-border-1);
}
.sw-trust-grid {
	max-width: var(--sw-container);
	margin: 0 auto;
	padding: 0 var(--sw-side-pad);
	display: grid;
	grid-template-columns: repeat(4, 1fr);
}
.sw-trust-item {
	padding: 30px 26px;
	border-left: 1px solid var(--sw-border-1);
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.sw-trust-item:first-child { border-left: none; padding-left: 0; }
.sw-trust-item strong { font-family: var(--sw-font-heading); font-weight: 700; font-size: 16px; color: var(--sw-ink); }
.sw-trust-item span { color: var(--sw-muted-1); font-size: 14px; line-height: 1.5; }
@media (max-width: 880px) {
	.sw-trust-grid { grid-template-columns: 1fr; }
	.sw-trust-item { border-left: none; border-top: 1px solid var(--sw-border-1); padding-left: 0; }
	.sw-trust-item:first-child { border-top: none; }
}

/* ------------------------------------------------------------------ *
 * Generieke sectiekop
 * ------------------------------------------------------------------ */
.sw-section { padding: var(--sw-section-pad) 0; }
.sw-section--tight { padding: var(--sw-section-pad-tight) 0; }
.sw-section--dark { background: var(--sw-dark-1); }
.sw-section--offwhite { background: var(--sw-off-white); }
.sw-section-head {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	gap: 32px;
	margin-bottom: 44px;
}
.sw-section-head h2 {
	font-size: clamp(26px, 4vw, 40px);
	color: var(--sw-ink);
	max-width: 560px;
}
.sw-section-head--dark h2 { color: var(--sw-white); }
.sw-section-head p { color: var(--sw-muted-1); font-size: 16px; line-height: 1.6; max-width: 380px; margin: 0; }
.sw-section-head--dark p { color: var(--sw-muted-6); }
@media (max-width: 880px) {
	.sw-section-head { flex-direction: column; align-items: flex-start; }
}
.sw-section-head--center { flex-direction: column; align-items: center; text-align: center; }
.sw-section-head--center h2 { max-width: 640px; }

/* ------------------------------------------------------------------ *
 * Diensten-grid (homepage)
 * ------------------------------------------------------------------ */
.sw-diensten-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 18px;
}
.sw-dienst-card {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	min-height: 340px;
	border-radius: 18px;
	overflow: hidden;
	background: var(--sw-dark-2);
	text-decoration: none;
	transition: transform 0.15s, box-shadow 0.15s;
}
.sw-dienst-card:hover { transform: translateY(-3px); box-shadow: 0 14px 30px rgba(16, 16, 20, 0.10); }
.sw-dienst-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.sw-dienst-card-scrim {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(13, 13, 16, 0.1) 30%, rgba(13, 13, 16, 0.88) 100%);
}
.sw-dienst-card-body { position: relative; padding: 22px; color: var(--sw-white); }
.sw-dienst-card-body h3 { font-size: 1.15rem; margin-bottom: 8px; }
.sw-dienst-card-body p { color: var(--sw-muted-7); font-size: 14px; line-height: 1.5; margin: 0 0 12px; }
.sw-dienst-card-link { color: var(--sw-white); font-weight: 700; font-size: 14px; display: inline-flex; align-items: center; gap: 7px; }
@media (max-width: 880px) {
	.sw-diensten-grid { grid-template-columns: 1fr; }
}

/* ------------------------------------------------------------------ *
 * Over-ons blok (homepage)
 * ------------------------------------------------------------------ */
.sw-over-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: clamp(32px, 5vw, 72px);
	align-items: center;
}
.sw-over-media { aspect-ratio: 4 / 3; border-radius: 16px; overflow: hidden; }
.sw-over-media img { width: 100%; height: 100%; object-fit: cover; }
.sw-over-text p { color: var(--sw-muted-2); font-size: 16px; line-height: 1.7; margin: 0 0 16px; }
.sw-over-stats { display: flex; gap: clamp(24px, 4vw, 48px); margin-top: 28px; }
.sw-over-stat strong { display: block; font-family: var(--sw-font-heading); font-size: 34px; color: var(--sw-ink); }
.sw-over-stat span { color: var(--sw-muted-1); font-size: 14px; }
@media (max-width: 880px) {
	.sw-over-grid { grid-template-columns: 1fr; }
}

/* ------------------------------------------------------------------ *
 * Waarom Steenmetz
 * ------------------------------------------------------------------ */
.sw-waarom-grid {
	display: grid;
	grid-template-columns: 1.35fr 1fr;
	gap: clamp(32px, 5vw, 64px);
}
.sw-waarom-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.sw-waarom-item { display: flex; align-items: flex-start; gap: 13px; }
.sw-waarom-ico {
	flex: none;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	background: var(--sw-red-chip-bg);
	color: var(--sw-red);
	display: inline-flex;
	align-items: center;
	justify-content: center;
}
.sw-waarom-item span { font-weight: 500; font-size: 15px; color: var(--sw-ink); }
.sw-waarom-panel {
	background: var(--sw-dark-1);
	border-radius: 18px;
	padding: clamp(28px, 3vw, 38px);
	color: var(--sw-white);
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 14px;
}
.sw-waarom-panel h3 { font-size: 1.4rem; }
.sw-waarom-panel p { color: var(--sw-muted-6); font-size: 15px; line-height: 1.6; margin: 0; }
.sw-waarom-panel .sw-btn { margin-top: 8px; }
@media (max-width: 880px) {
	.sw-waarom-grid, .sw-waarom-list { grid-template-columns: 1fr; }
}

/* ------------------------------------------------------------------ *
 * Projecten / cases
 * ------------------------------------------------------------------ */
.sw-projecten-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.sw-project-card {
	position: relative;
	display: block;
	border-radius: 16px;
	overflow: hidden;
	text-decoration: none;
	transition: transform 0.15s, box-shadow 0.15s;
}
.sw-project-card:hover { transform: translateY(-3px); box-shadow: 0 18px 38px rgba(0, 0, 0, 0.3); }
.sw-project-media { display: block; aspect-ratio: 4 / 3; background: var(--sw-dark-2); }
.sw-project-media img { width: 100%; height: 100%; object-fit: cover; }
.sw-project-badge {
	position: absolute;
	top: 14px;
	left: 14px;
	background: rgba(255, 255, 255, 0.16);
	color: var(--sw-white);
	font-size: 11px;
	letter-spacing: 0.05em;
	padding: 5px 11px;
	border-radius: 999px;
}
.sw-project-body { position: absolute; left: 0; right: 0; bottom: 0; padding: 20px; background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,.75) 100%); }
.sw-project-body h3 { color: var(--sw-white); font-size: 1.1rem; margin-bottom: 6px; }
.sw-project-body p { color: var(--sw-muted-7); font-size: 13.5px; line-height: 1.5; margin: 0; }
@media (max-width: 880px) {
	.sw-projecten-grid { grid-template-columns: 1fr; }
}

/* ------------------------------------------------------------------ *
 * Werkwijze
 * ------------------------------------------------------------------ */
.sw-werkwijze { position: relative; }
.sw-werkwijze-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.sw-werkwijze-step { position: relative; text-align: left; }
/* Verbindingslijn: hangt aan elke stap (behalve de laatste) en loopt van
 * het midden van DEZE stip naar het midden van de volgende — werkt correct
 * ongeacht containerbreedte, in plaats van een vaste 12,5%-schatting die
 * niet uitkwam met de links uitgelijnde stippen. */
.sw-werkwijze-step:not(:last-child)::after {
	content: '';
	position: absolute;
	top: 27px;
	left: 27px;
	width: calc(100% + 22px);
	height: 2px;
	background: var(--sw-border-6);
	z-index: 0;
}
.sw-werkwijze-dot {
	position: relative;
	z-index: 1;
	width: 54px;
	height: 54px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: var(--sw-font-heading);
	font-weight: 700;
	margin-bottom: 18px;
	border: 2px solid var(--sw-border-6);
	color: var(--sw-muted-1);
	background: var(--sw-white);
}
.sw-werkwijze-step--active .sw-werkwijze-dot {
	border: none;
	background: linear-gradient(135deg, var(--sw-red-grad-light), var(--sw-red-grad-dark));
	color: var(--sw-white);
	box-shadow: 0 8px 20px rgba(214, 31, 38, 0.28);
}
.sw-werkwijze-card { position: relative; z-index: 1; background: var(--sw-white); border-radius: 14px; padding: 20px; box-shadow: 0 6px 18px rgba(0, 0, 0, 0.04); }
.sw-werkwijze-step--active .sw-werkwijze-card {
	background: var(--sw-dark-1);
	color: var(--sw-white);
	box-shadow: 0 14px 30px rgba(16, 16, 20, 0.14);
}
.sw-werkwijze-card h3 { font-size: 1rem; margin-bottom: 8px; }
.sw-werkwijze-card p { font-size: 14px; line-height: 1.55; color: var(--sw-muted-1); margin: 0; }
.sw-werkwijze-step--active .sw-werkwijze-card p { color: var(--sw-muted-6); }
.sw-werkwijze--center .sw-werkwijze-step { text-align: center; }
.sw-werkwijze--center .sw-werkwijze-dot { margin: 0 auto 18px; }
.sw-werkwijze--center .sw-werkwijze-step:not(:last-child)::after { left: 50%; background: #dcdcd8; }
@media (max-width: 880px) {
	.sw-werkwijze-grid { grid-template-columns: 1fr; gap: 16px; }
	.sw-werkwijze-step::after { display: none !important; }
}

/* ------------------------------------------------------------------ *
 * CTA-band
 * ------------------------------------------------------------------ */
.sw-cta-band { background: linear-gradient(120deg, var(--sw-red) 0%, var(--sw-red-grad-dark) 100%); }
.sw-cta-band-inner {
	max-width: var(--sw-container);
	margin: 0 auto;
	padding: clamp(40px, 6vw, 60px) var(--sw-side-pad);
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	flex-wrap: wrap;
}
.sw-cta-band h2 { color: var(--sw-white); font-size: clamp(24px, 3vw, 32px); margin-bottom: 8px; }
.sw-cta-band p { color: #ffd9d6; margin: 0; font-size: 15px; }
.sw-cta-band-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ------------------------------------------------------------------ *
 * Reviews
 * ------------------------------------------------------------------ */
.sw-reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 32px; }
.sw-review-card { background: var(--sw-white); border: 1px solid var(--sw-border-3); border-radius: 16px; padding: clamp(22px, 3vw, 30px); }
.sw-review-stars { color: var(--sw-ink); font-size: 16px; letter-spacing: 2px; margin-bottom: 12px; }
.sw-review-stars--red { color: var(--sw-red); }
.sw-review-card p { color: var(--sw-ink); font-size: 1.0625rem; line-height: 1.7; margin: 0 0 14px; }
.sw-review-card footer { color: var(--sw-muted-4); font-size: 12px; }
.sw-review-disclaimer { text-align: left; color: #a0a0a6; font-size: 13px; margin-top: 16px; }
.sw-google-badge {
	display: flex;
	align-items: center;
	gap: 14px;
	background: var(--sw-white);
	border: 1px solid var(--sw-border-3);
	border-radius: 14px;
	padding: 15px 20px;
	flex: none;
}
.sw-google-badge strong { display: block; font-family: var(--sw-font-heading); font-weight: 700; font-size: 18px; color: var(--sw-ink); line-height: 1; }
.sw-google-badge .sw-google-stars { display: flex; gap: 2px; margin-top: 5px; }
.sw-google-badge span.sw-google-sub { display: block; color: var(--sw-muted-4); font-size: 12.5px; margin-top: 4px; }
@media (max-width: 880px) {
	.sw-reviews-grid { grid-template-columns: 1fr; }
}

/* ------------------------------------------------------------------ *
 * FAQ-accordeon
 * ------------------------------------------------------------------ */
.sw-faq { max-width: 820px; margin: 0 auto; }
.sw-faq-item { border-bottom: 1px solid var(--sw-border-1); }
.sw-faq-q {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 22px 0;
	background: none;
	border: none;
	cursor: pointer;
	text-align: left;
	font-family: var(--sw-font-heading);
	font-weight: 600;
	font-size: 17px;
	color: var(--sw-ink);
}
.sw-faq-sign {
	flex: none;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	background: #f0f0f3;
	color: var(--sw-ink);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
	transition: background 0.15s, color 0.15s;
}
.sw-faq-item[open] .sw-faq-sign { background: var(--sw-red); color: var(--sw-white); }
.sw-faq-a { color: var(--sw-muted-3); font-size: 15px; line-height: 1.7; margin: 0 0 22px; }

/* ------------------------------------------------------------------ *
 * Contact-sectie + formulier
 * ------------------------------------------------------------------ */
.sw-contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 64px); align-items: start; }
.sw-contact-intro h2 { color: var(--sw-white); font-size: clamp(26px, 4vw, 38px); margin-bottom: 14px; }
.sw-contact-intro p { color: var(--sw-muted-6); font-size: 16px; line-height: 1.6; margin: 0 0 24px; }
.sw-contact-row {
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 18px 0;
	border-top: 1px solid var(--sw-border-4);
}
.sw-contact-row:first-of-type { border-top: none; }
.sw-contact-ico { flex: none; width: 44px; height: 44px; border-radius: 12px; display: flex; align-items: center; justify-content: center; }
.sw-contact-ico--accent { background: var(--sw-red); }
.sw-contact-ico--dark { background: var(--sw-dark-4); }
.sw-contact-row span:not(.sw-contact-ico) { display: block; color: var(--sw-muted-5); font-size: 13px; }
.sw-contact-row strong { display: block; color: var(--sw-white); font-size: 16px; font-weight: 600; }

.sw-contact-card {
	background: linear-gradient(150deg, var(--sw-red) 0%, var(--sw-red-grad-dark) 100%);
	border-radius: 22px;
	padding: clamp(26px, 3vw, 38px);
}
.sw-contact-card h3 { color: var(--sw-white); font-size: 1.5rem; margin-bottom: 18px; }
/* GF's eigen inputstijl (3px radius, grijsblauwe rand) wint anders van
 * onze stijl — hier bewust met !important overschreven. */
.sw-gform-wrap input[type="text"],
.sw-gform-wrap input[type="tel"],
.sw-gform-wrap input[type="email"],
.sw-gform-wrap input[type="number"],
.sw-gform-wrap textarea,
.sw-gform-wrap select {
	width: 100% !important;
	background: var(--sw-white) !important;
	border: none !important;
	border-radius: 10px !important;
	padding: 13px 16px !important;
	font-family: var(--sw-font-body) !important;
	font-size: 15px !important;
	color: var(--sw-ink) !important;
	box-shadow: none !important;
}
.sw-gform-wrap input:focus,
.sw-gform-wrap textarea:focus,
.sw-gform-wrap select:focus {
	outline: none !important;
	box-shadow: 0 0 0 3px rgba(255, 220, 218, 0.6) !important;
}
.sw-gform-smallprint {
	color: rgba(255, 255, 255, 0.75) !important;
	font-size: 13px;
	margin-top: 14px;
	margin-bottom: 0;
}
.sw-gform-wrap .gform_button {
	width: 100%;
	background: rgba(255, 255, 255, 0.16);
	color: var(--sw-white);
	border: 1px solid rgba(255, 255, 255, 0.35);
	border-radius: 999px;
	padding: 14px 22px;
	font-weight: 600;
	font-size: 15px;
	cursor: pointer;
}
.sw-gform-wrap .gform_button:hover { background: rgba(255, 255, 255, 0.28); }
.sw-gform-wrap .gform_fields { display: grid; gap: 14px; list-style: none; margin: 0; padding: 0; }
.sw-gform-wrap label { color: rgba(255, 255, 255, 0.85); font-size: 13px; font-weight: 600; margin-bottom: 6px; display: block; }
.sw-gform-fallback {
	border: 1.5px dashed rgba(255, 255, 255, 0.5);
	border-radius: 10px;
	padding: 22px;
	text-align: center;
}
.sw-gform-fallback p { color: var(--sw-white); margin: 0 0 16px; }

/* ------------------------------------------------------------------ *
 * Footer
 * ------------------------------------------------------------------ */
.sw-footer { background: var(--sw-dark-3); padding: clamp(48px, 6vw, 72px) 0 32px; }
.sw-footer-grid {
	max-width: var(--sw-container);
	margin: 0 auto;
	padding: 0 var(--sw-side-pad);
	display: grid;
	grid-template-columns: 1.6fr 1fr 1fr 1fr;
	gap: 32px;
	padding-bottom: 40px;
	border-bottom: 1px solid var(--sw-border-5);
}
.sw-footer-logo { height: 46px; filter: invert(1) grayscale(1) brightness(2); margin-bottom: 16px; }
.sw-footer-tagline { color: var(--sw-muted-6); font-size: 14px; line-height: 1.6; max-width: 280px; }
.sw-footer-grid h4 { color: var(--sw-white); font-size: 14px; margin-bottom: 16px; }
.sw-footer-grid ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.sw-footer-grid li { color: var(--sw-muted-6); font-size: 14px; line-height: 1.5; }
.sw-footer-grid a { color: var(--sw-muted-6); font-size: 14px; }
.sw-footer-grid a:hover, .sw-footer-grid a.is-active { color: var(--sw-white); }
.sw-footer-grid .sw-footer-muted { color: var(--sw-muted-9); }
.sw-footer-bottom {
	max-width: var(--sw-container);
	margin: 0 auto;
	padding: 24px var(--sw-side-pad) 0;
	display: flex;
	justify-content: space-between;
	gap: 16px;
	flex-wrap: wrap;
	color: var(--sw-muted-9);
	font-size: 13px;
}
.sw-footer-bottom a { color: var(--sw-muted-9); }
.sw-footer-bottom a:hover { color: var(--sw-white); }
@media (max-width: 880px) {
	.sw-footer-grid { grid-template-columns: 1fr; gap: 28px; }
}

/* ------------------------------------------------------------------ *
 * Sticky mobiele CTA-balk
 * ------------------------------------------------------------------ */
.sw-mob-cta {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 80;
	background: rgba(13, 13, 16, 0.96);
	backdrop-filter: blur(8px);
	padding: 10px 14px;
	gap: 10px;
}
.sw-mob-cta .sw-btn { flex: 1; justify-content: center; }

/* ------------------------------------------------------------------ *
 * SEO-paginasjabloon — gedeeld door single-diensten, page-plaats en
 * de eenvoudige diensten-overzichtspagina (geen 1-op-1 designbron;
 * herbouwd op basis van het bestaande, goedgekeurde patroon — zie
 * opleverrapport).
 * ------------------------------------------------------------------ */
.sw-seo-hero {
	position: relative;
	background: var(--sw-dark-1);
	overflow: hidden;
	padding: clamp(44px, 6vw, 88px) 0;
}
.sw-seo-hero-inner { position: relative; max-width: 720px; }
.sw-seo-hero--center { text-align: center; max-width: 720px; margin: 0 auto; }
.sw-seo-breadcrumb { font-family: var(--sw-font-body); font-size: 12px; color: var(--sw-muted-6); margin-bottom: 14px; }
.sw-seo-breadcrumb a { color: var(--sw-muted-6); }
.sw-seo-breadcrumb a:hover { color: var(--sw-white); }
.sw-seo-hero h1 { color: var(--sw-white); font-size: clamp(30px, 5vw, 48px); margin: 8px 0; }
.sw-seo-hero p { color: rgba(255, 255, 255, 0.82); font-size: clamp(17px, 1.2vw, 19.2px); line-height: 1.6; margin: 14px 0 0; }
.sw-seo-hero-actions { display: flex; gap: 12px; margin-top: 26px; flex-wrap: wrap; }
.sw-seo-hero--center .sw-seo-hero-actions { justify-content: center; }

.sw-usp-strip { background: var(--sw-white); border-bottom: 1px solid var(--sw-border-1); padding: 22px 0; }
.sw-usp-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.sw-usp-item { display: flex; align-items: flex-start; gap: 12px; }
.sw-usp-item strong { display: block; font-family: var(--sw-font-heading); font-weight: 700; font-size: 15px; color: var(--sw-ink); }
.sw-usp-item span { color: var(--sw-muted-1); font-size: 13px; }

.sw-regio-chips { display: flex; flex-wrap: wrap; gap: 10px; }
.sw-regio-chip {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	border: 1px solid var(--sw-border-3);
	border-radius: 999px;
	padding: 9px 15px;
	font-size: 14px;
	color: var(--sw-ink);
	font-weight: 500;
}
.sw-regio-chip svg { color: var(--sw-red); flex: none; }
.sw-regio-chip:hover { border-color: var(--sw-red); color: var(--sw-red); }

.sw-seo-spoed-badge {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: var(--sw-dark-1);
	color: var(--sw-white);
	border-radius: 10px;
	padding: 14px 18px;
	font-size: 14px;
	margin-top: 20px;
}
.sw-seo-spoed-badge svg { color: var(--sw-red); flex: none; }

.sw-service-tile-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(260px, 100%), 1fr)); gap: 14px; }
.sw-service-tile {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	background: var(--sw-white);
	border: 1px solid var(--sw-border-3);
	border-radius: 10px;
	padding: 16px 18px;
}
.sw-service-tile span:first-child { font-family: var(--sw-font-heading); font-weight: 700; font-size: 14px; color: var(--sw-ink); line-height: 1.25; }
.sw-service-tile svg { color: var(--sw-red); flex: none; }
.sw-service-tile:hover { border-color: var(--sw-red); }

.sw-verwant-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr)); gap: 16px; }
.sw-verwant-card { display: flex; flex-direction: column; background: var(--sw-white); border: 1px solid var(--sw-border-3); border-radius: 14px; overflow: hidden; }
.sw-verwant-media { display: block; aspect-ratio: 16/9; background: var(--sw-dark-2); }
.sw-verwant-media img { width: 100%; height: 100%; object-fit: cover; }
.sw-verwant-body { display: block; padding: 20px; }
.sw-verwant-body strong { display: block; font-family: var(--sw-font-heading); font-weight: 700; font-size: 1.1rem; color: var(--sw-ink); line-height: 1.2; }
.sw-verwant-body span { display: block; color: var(--sw-muted-2); font-size: 14px; line-height: 1.5; margin: 8px 0 12px; }
.sw-verwant-link { color: var(--sw-red) !important; font-weight: 700; font-size: 14px; }

.sw-dienst-checklists { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 4vw, 56px); }
.sw-dc-heading { font-size: clamp(1.4rem, 1.1rem + 1.4vw, 2rem); margin-bottom: 18px; }
.sw-dc-list { display: flex; flex-direction: column; gap: 16px; }
.sw-dc-row { display: flex; gap: 12px; align-items: flex-start; }
.sw-dc-ico {
	flex: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 26px;
	height: 26px;
	border: 2px solid var(--sw-ink);
	border-radius: 999px;
	color: var(--sw-ink);
	margin-top: 2px;
}
.sw-dc-ico--filled { border: none; background: var(--sw-ink); color: var(--sw-white); }
.sw-dc-row span:last-child { color: var(--sw-muted-2); font-size: 16px; line-height: 1.6; }
@media (max-width: 880px) {
	.sw-dienst-checklists, .sw-usp-grid { grid-template-columns: 1fr; }
}

.sw-seo-steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(220px, 100%), 1fr)); gap: 14px; }
.sw-seo-step { background: var(--sw-white); border: 1px solid var(--sw-border-3); border-radius: 12px; padding: 22px; }
.sw-seo-step-num { font-family: var(--sw-font-heading); font-weight: 800; font-size: 1.9rem; color: var(--sw-red); line-height: 1; }
.sw-seo-step h3 { font-size: 1.05rem; text-transform: uppercase; letter-spacing: 0.02em; margin: 10px 0 6px; color: var(--sw-ink); }
.sw-seo-step p { color: var(--sw-muted-2); font-size: 14px; line-height: 1.55; margin: 0; }

.sw-seo-cta { background: var(--sw-dark-1); padding: clamp(44px, 6vw, 80px) 0; }
.sw-seo-cta-inner { text-align: center; }
.sw-seo-cta-inner h2 { color: var(--sw-white); font-size: clamp(24px, 3vw, 34px); }
.sw-seo-cta-inner p { color: rgba(255, 255, 255, 0.8); max-width: 600px; margin: 12px auto 0; }
.sw-seo-cta-inner .sw-cta-band-actions { justify-content: center; margin-top: 24px; }

.sw-seo-2col { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(24px, 4vw, 48px); align-items: start; }
.sw-seo-media { border-radius: 14px; overflow: hidden; aspect-ratio: 4/3; }
.sw-seo-media img { width: 100%; height: 100%; object-fit: cover; }
.sw-seo-eyebrow-chip { display: inline-block; color: var(--sw-red); font-family: var(--sw-font-body); font-weight: 700; font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 8px; }
@media (max-width: 880px) {
	.sw-seo-2col { grid-template-columns: 1fr; }
}

.sw-prose { max-width: 720px; margin: 0 auto; color: var(--sw-muted-2); font-size: 16px; line-height: 1.75; }
.sw-prose h2, .sw-prose h3 { color: var(--sw-ink); margin-top: 1.4em; margin-bottom: 0.5em; }
.sw-prose p { margin: 0 0 1em; }
.sw-prose ul, .sw-prose ol { padding-left: 1.2em; }

/* ------------------------------------------------------------------ *
 * Mobiel uitklapmenu (onder de sticky header, alleen <880px zichtbaar)
 * ------------------------------------------------------------------ */
.sw-mobile-nav {
	display: none;
	flex-direction: column;
	gap: 2px;
	padding: 10px var(--sw-side-pad) 16px;
	border-top: 1px solid var(--sw-border-1);
	background: var(--sw-white);
}
.sw-mobile-nav[hidden] { display: none; }
.sw-mobile-nav:not([hidden]) { display: flex; }
.sw-mobile-nav a { color: var(--sw-ink); font-weight: 500; font-size: 15px; padding: 10px 0; }
.sw-mobile-nav a:hover { color: var(--sw-red); }
@media (min-width: 881px) {
	.sw-mobile-nav { display: none !important; }
}

/* ------------------------------------------------------------------ *
 * Contact-pagina: lichte contactrijen + filter-chips (projectenlijst)
 * ------------------------------------------------------------------ */
.sw-contact-row--light {
	display: flex;
	align-items: center;
	gap: 15px;
	background: var(--sw-off-white);
	border-radius: 12px;
	padding: 15px 18px;
	margin-bottom: 12px;
}
.sw-contact-row--light .sw-contact-ico { width: 42px; height: 42px; border-radius: 10px; }
.sw-contact-row--light strong { color: var(--sw-ink); font-size: 16px; font-weight: 600; }
.sw-contact-checkbox { display: flex; align-items: flex-start; gap: 10px; margin-top: 2px; }
.sw-contact-checkbox input { width: 18px; height: 18px; margin-top: 2px; flex: none; }
.sw-contact-checkbox span { font-size: 13px; color: rgba(255, 255, 255, 0.9); line-height: 1.5; }

.sw-filter-chips { display: flex; justify-content: center; flex-wrap: wrap; gap: 10px; margin-bottom: 44px; }
.sw-filter-chip {
	font-weight: 600;
	font-size: 15px;
	padding: 11px 22px;
	border-radius: 999px;
	border: 1px solid var(--sw-border-6);
	background: var(--sw-white);
	color: var(--sw-ink);
	cursor: pointer;
}
.sw-filter-chip.is-active { background: var(--sw-ink); color: var(--sw-white); border-color: var(--sw-ink); }

.sw-banner-photo { position: relative; border-radius: 22px; overflow: hidden; min-height: 400px; display: flex; align-items: center; }
.sw-banner-photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.sw-banner-scrim { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(13,13,16,.15) 0%, rgba(13,13,16,.55) 55%, rgba(13,13,16,.85) 100%); }
.sw-banner-panel {
	position: relative;
	margin-left: auto;
	width: min(480px, 90%);
	background: rgba(13, 13, 16, .55);
	backdrop-filter: blur(6px);
	border: 1px solid rgba(255, 255, 255, .12);
	border-radius: 18px;
	padding: clamp(26px, 3vw, 38px);
	margin-right: clamp(16px, 3vw, 40px);
}
.sw-banner-panel h2 { color: var(--sw-white); font-size: clamp(26px, 4vw, 36px); margin-bottom: 14px; }
.sw-banner-panel p { color: var(--sw-muted-7); font-size: 16px; line-height: 1.6; margin: 0 0 26px; }

.sw-values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.sw-value-card { background: var(--sw-dark-2); border: 1px solid #24242c; border-radius: 16px; padding: 30px; }
.sw-value-ico { width: 46px; height: 46px; border-radius: 11px; background: var(--sw-red); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.sw-value-card h3 { color: var(--sw-white); font-size: 18px; margin-bottom: 8px; }
.sw-value-card p { color: var(--sw-muted-8); font-size: 14.5px; line-height: 1.55; margin: 0; }
@media (max-width: 880px) {
	.sw-values-grid { grid-template-columns: 1fr; }
}

.sw-gallery-thumbs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 16px; }
.sw-gallery-thumb { position: relative; border-radius: 12px; overflow: hidden; aspect-ratio: 4/3; }
.sw-gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }

.sw-project-checklist { display: flex; flex-direction: column; gap: 13px; margin-bottom: 34px; }
.sw-project-checklist-row { display: flex; align-items: flex-start; gap: 12px; }
.sw-project-checklist-row span:first-child {
	flex: none; width: 22px; height: 22px; border-radius: 50%; background: var(--sw-red-chip-bg);
	display: flex; align-items: center; justify-content: center; margin-top: 2px; color: var(--sw-red);
}
.sw-project-checklist-row span:last-child { color: #2a2a30; font-size: 16px; line-height: 1.5; }

/* ------------------------------------------------------------------ *
 * Fixes n.a.v. 1-op-1 vergelijking met het design
 * ------------------------------------------------------------------ */

/* Ronde onderrand onder donkere hero's (ontbrak volledig). */
.sw-curve {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 56px;
	line-height: 0;
	pointer-events: none;
}
.sw-curve svg { width: 100%; height: 100%; display: block; }
.sw-hero, .sw-seo-hero { padding-bottom: 56px; }

/* Vertrouwensbalk: ontbrekende scheidingslijn boven de sectie. */
.sw-trust { border-top: 1px solid var(--sw-border-1); }

/* Contactrijen: waarde als blok renderen zodat icoon en tekst netjes
 * verticaal centreren (voorheen inline <a> met block <strong> erin). */
.sw-contact-row a,
.sw-contact-row--light a {
	display: block;
	text-decoration: none;
}

/* FAQ-accordeon: +/- wisselt nu echt met de open-status. */
.sw-faq-sign { font-size: 0; }
.sw-faq-sign::before { content: '+'; font-size: 18px; }
.sw-faq-item[open] .sw-faq-sign::before { content: '\2212'; }

/* Gravity Forms in de rode gradient-kaart: labels/beschrijvingen/links
 * leesbaar maken en het GF-eigen (blauwe) knopthema overschrijven. */
.sw-gform-wrap .gfield_description,
.sw-gform-wrap .gfield_consent_description,
.sw-gform-wrap .instruction,
.sw-gform-wrap .validation_message,
.sw-gform-wrap .gform_fileupload_rules,
.sw-gform-wrap .ginput_container_fileupload + .gfield_description {
	color: rgba(255, 255, 255, 0.75) !important;
}
.sw-gform-wrap .gfield_consent_label,
.sw-gform-wrap .gfield_consent_label * {
	color: rgba(255, 255, 255, 0.9) !important;
	font-size: 13px !important;
}
.sw-gform-wrap a {
	color: #ffffff !important;
	text-decoration: underline !important;
}
.sw-gform-wrap input[type="file"] { color: rgba(255, 255, 255, 0.85); }
.sw-gform-wrap .gform_button,
.sw-gform-wrap input[type="submit"],
.sw-gform-wrap button[type="submit"] {
	width: 100% !important;
	background: rgba(255, 255, 255, 0.16) !important;
	background-image: none !important;
	color: #ffffff !important;
	border: 1px solid rgba(255, 255, 255, 0.35) !important;
	border-radius: 999px !important;
	padding: 14px 22px !important;
	font-weight: 600 !important;
	font-size: 15px !important;
	box-shadow: none !important;
}
.sw-gform-wrap .gform_button:hover,
.sw-gform-wrap input[type="submit"]:hover,
.sw-gform-wrap button[type="submit"]:hover {
	background: rgba(255, 255, 255, 0.28) !important;
}

/* GF-labels en verplicht-indicator wonnen het nog van onze kleur
 * (.gfield_label.gform-field-label heeft hogere specificiteit). */
.sw-gform-wrap label,
.sw-gform-wrap .gfield_label,
.sw-gform-wrap .gform-field-label__text {
	color: rgba(255, 255, 255, 0.92) !important;
}
.sw-gform-wrap .gfield_required,
.sw-gform-wrap .gfield_required_text {
	color: rgba(255, 255, 255, 0.6) !important;
}
