/*
Theme Name: KW Airconditioning
Theme URI: https://kw-airco.nl
Author: KW Airconditioning
Author URI: https://kw-airco.nl
Description: Custom WordPress Block Theme voor KW Airconditioning. Hoogwaardige klimaatoplossingen voor woningen en bedrijven. Vakkundig vertaald naar een native, beheerbaar FSE block theme.
Version: 1.0.0
Requires at least: 6.5
Tested up to: 7.1
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: kw-airco
*/

:root {
  --green: #082d24;
  --green-2: #0f4939;
  --green-3: #dce9e4;
  --gold: #80631b;
  --gold-2: #d1ad54;
  --ink: #111a17;
  --muted: #5c6863;
  --paper: #f5f6f3;
  --white: #fff;
  --line: #dfe4e1;
  --radius: 3px;
  --shadow: 0 16px 46px rgba(8, 45, 36, .12);
  --font-body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-serif: Georgia, "Times New Roman", serif;
}

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: 105px;
}
[id] {
  scroll-margin-top: 105px;
}
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font: 400 16px/1.6 var(--font-body);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
p, h1, h2, h3, h4, h5, h6, strong, a {
  overflow-wrap: break-word;
}

/* Block themes add a default gap between template parts. This theme owns its
   header, main and footer spacing, so a root gap would render white seams. */
.wp-site-blocks > * { margin-block: 0; }

a { color: inherit; text-decoration: none; transition: color .2s ease; }
img { display: block; max-width: 100%; height: auto; }
h1, h2, h3, h4, p { margin-top: 0; }
h1, h2, h3, h4 { line-height: 1.08; letter-spacing: -.035em; color: var(--ink); font-weight: 800; }
h1 { font-size: clamp(2.5rem, 5vw, 4.2rem); }
h2 { margin-bottom: 20px; font-size: clamp(2rem, 3.5vw, 3.55rem); }
h3 { font-size: 1.25rem; font-weight: 700; }

.container { width: min(1380px, calc(100% - 48px)); margin-inline: auto; }
.section { padding: 86px 0; }
.section-paper { background: var(--paper); }
.section-white { background: var(--white); }
.section-dark { background: var(--green); color: #fff; }

.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip-link {
  position: fixed;
  z-index: 9999;
  left: 16px;
  top: 10px;
  padding: 10px 18px;
  background: var(--white);
  color: var(--green);
  font-weight: 700;
  border: 2px solid var(--gold);
  border-radius: var(--radius);
  transform: translateY(-160%);
  transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); outline: none; }

/* Eyebrows */
.eyebrow {
  margin-bottom: 12px;
  color: var(--gold);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .22em;
  text-transform: uppercase;
  display: inline-block;
}
.eyebrow.light { color: #ead18e; }

/* Buttons & Links */
.button, .wp-block-button__link {
  min-height: 52px;
  padding: 14px 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 750;
  font-size: 0.95rem;
  line-height: 1.2;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease, border-color .2s ease;
}
.button:hover, .wp-block-button__link:hover { transform: translateY(-2px); }
.button:focus-visible, .wp-block-button__link:focus-visible, a:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}
.button-gold, .wp-block-button.is-style-gold .wp-block-button__link {
  background: linear-gradient(135deg, var(--gold), var(--gold-2)) !important;
  color: #fff !important;
  box-shadow: 0 8px 22px rgba(189,150,54,.25);
  border: none;
}
.button-gold:hover, .wp-block-button.is-style-gold .wp-block-button__link:hover {
  box-shadow: 0 10px 26px rgba(189,150,54,.35);
}
.button-green, .wp-block-button.is-style-green .wp-block-button__link {
  background: var(--green) !important;
  color: #fff !important;
  border: none;
}
.button-green:hover, .wp-block-button.is-style-green .wp-block-button__link:hover {
  background: var(--green-2) !important;
}
.button-outline, .wp-block-button.is-style-outline .wp-block-button__link {
  border: 1px solid rgba(255,255,255,.7) !important;
  color: #fff !important;
  background: rgba(3,22,17,.2) !important;
}
.button-outline:hover, .wp-block-button.is-style-outline .wp-block-button__link:hover {
  background: rgba(255,255,255,.12) !important;
}
.button-outline-dark {
  border: 1.5px solid var(--green) !important;
  color: var(--green) !important;
  background: transparent !important;
}
.button-outline-dark:hover {
  background: var(--green) !important;
  color: #fff !important;
}
.button-row { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }
.text-link {
  color: var(--green);
  font-weight: 750;
  text-decoration: underline;
  text-decoration-color: var(--gold);
  text-underline-offset: 6px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.text-link:hover { color: var(--gold); }

/* Utility Bar */
.utility { height: 38px; background: var(--green); color: #fff; font-size: .78rem; border-bottom: 1px solid rgba(255,255,255,.08); }
.utility-inner { height: 100%; display: flex; align-items: center; justify-content: space-between; }
.utility-points, .utility-links { display: flex; align-items: center; gap: 28px; }
.utility-points span::before { content: "✓"; margin-right: 7px; color: var(--gold-2); font-weight: 800; }
.utility a:hover { color: var(--gold-2); }
.utility .phone { font-size: .9rem; font-weight: 800; letter-spacing: .02em; }

/* Site Header */
.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  background: rgba(255,255,255,.98);
  border-bottom: 1px solid rgba(8,45,36,.09);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: background .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.site-header.scrolled {
  background: rgba(255, 255, 255, 0.90);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border-bottom-color: rgba(8, 45, 36, 0.08);
  box-shadow: 0 10px 30px -10px rgba(3, 27, 20, 0.08);
}
.nav-wrap {
  min-height: 84px;
  display: flex;
  align-items: center;
  gap: 24px;
  transition: min-height .3s cubic-bezier(0.16, 1, 0.3, 1);
}
.site-header.scrolled .nav-wrap {
  min-height: 68px;
}
.brand { width: 188px; flex: 0 0 auto; display: block; }
.brand img {
  width: 100%;
  height: 58px;
  object-fit: contain;
  object-position: left center;
  transition: height .3s cubic-bezier(0.16, 1, 0.3, 1);
}
.site-header.scrolled .brand img {
  height: 46px;
}
.nav { margin-left: auto; display: flex; align-items: center; gap: clamp(14px, 1.6vw, 26px); font-size: .88rem; font-weight: 650; }
.nav a {
  padding: 29px 0;
  border-bottom: 2px solid transparent;
  color: var(--ink);
  white-space: nowrap;
  transition: padding .3s cubic-bezier(0.16, 1, 0.3, 1), color .2s ease;
}
.site-header.scrolled .nav a {
  padding: 21px 0;
}
.nav a:hover, .nav a.active { color: var(--green-2); border-bottom-color: var(--gold); }
.nav-cta { min-height: 48px; padding: 12px 20px; white-space: nowrap; flex-shrink: 0; }
.menu-button {
  display: none;
  margin-left: auto;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 0;
  background: var(--green);
  border-radius: var(--radius);
  cursor: pointer;
}
.menu-button span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: #fff;
  transition: transform .2s ease, opacity .2s ease;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: calc(100vh - 105px);
  max-height: 820px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--green);
  color: #fff;
}
.hero-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero-media picture,
.hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 72% 20%;
  transform: translateX(100px) scale(1.06);
}
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(90deg, rgba(3,27,20,0.98) 0%, rgba(3,27,20,0.94) 30%, rgba(3,27,20,0.72) 48%, rgba(3,27,20,0.12) 68%, transparent 100%), linear-gradient(0deg, rgba(3,27,20,0.85) 0%, transparent 35%);
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold) 0 39%, transparent 39%);
}
.hero-content {
  position: relative;
  z-index: 1;
  padding-top: 24px;
  padding-bottom: 24px;
}
.hero-content-inner {
  max-width: 520px;
}
.hero-content > p,
.hero-content-inner > p {
  max-width: 510px;
  margin-bottom: 22px;
  color: rgba(255,255,255,.90);
  font-size: 1.05rem;
  line-height: 1.55;
}
.hero h1 {
  max-width: 520px;
  margin-bottom: 14px;
  color: #fff;
  font-size: clamp(2.1rem, 2.8vw, 3.2rem);
  line-height: 1.14;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.hero h1 span {
  display: block;
  color: var(--gold-2);
}
.hero-trust {
  margin-top: 22px;
  padding-top: 16px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 18px;
  border-top: 1px solid rgba(255,255,255,.18);
}
.hero-trust-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  min-width: 0;
}
.hero-trust-check {
  flex-shrink: 0;
  color: var(--gold-2);
  margin-top: 3px;
  display: inline-flex;
}
.hero-trust-item div { min-width: 0; }
.hero-trust strong { display: block; margin-bottom: 2px; font-size: .86rem; color: #fff; font-weight: 700; line-height: 1.25; }
.hero-trust span { display: block; color: rgba(255,255,255,.76); font-size: .74rem; line-height: 1.35; }

/* Page Hero (for subpages) */
.page-hero {
  padding: 60px 0 50px;
  background: var(--green);
  color: #fff;
  border-bottom: 4px solid var(--gold);
}
.page-hero h1 { color: #fff; margin-bottom: 14px; font-size: clamp(2.4rem, 4.5vw, 3.8rem); }
.page-hero p { max-width: 720px; color: rgba(255,255,255,.85); font-size: 1.12rem; line-height: 1.6; margin-bottom: 0; }

/* Residential landing page */
.residential-hero {
  position: relative;
  min-height: 640px;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
  background: var(--green);
}
.residential-hero-media,
.residential-hero-media::after {
  position: absolute;
  inset: 0;
}
.residential-hero-media { overflow: hidden; }
.residential-hero-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}
.residential-hero-media::after {
  content: "";
  background: linear-gradient(90deg, rgba(3, 27, 20, .94) 0%, rgba(3, 27, 20, .74) 37%, rgba(3, 27, 20, .18) 72%, rgba(3, 27, 20, .1) 100%), linear-gradient(0deg, rgba(3, 27, 20, .76) 0%, transparent 55%);
}
.residential-hero-content {
  position: relative;
  z-index: 1;
  padding-top: 120px;
  padding-bottom: 46px;
}
.residential-hero h1 {
  max-width: 720px;
  margin-bottom: 18px;
  color: #fff;
  font-size: clamp(3.2rem, 5.8vw, 6.15rem);
}
.residential-hero h1 span { color: var(--gold-2); }
.residential-hero-content > p {
  max-width: 620px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, .9);
  font-size: 1.12rem;
  line-height: 1.7;
}
.residential-hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  margin: 66px 0 0;
  padding: 20px 0 0;
  border-top: 1px solid rgba(255, 255, 255, .32);
  list-style: none;
}
.residential-hero-points li {
  color: rgba(255, 255, 255, .88);
  font-size: .88rem;
  font-weight: 700;
}
.residential-hero-points li::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin: 0 9px 1px 0;
  border-radius: 50%;
  background: var(--gold);
}
.residential-heading { max-width: 760px; }
.residential-solution-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 42px;
}
.residential-solution-card {
  position: relative;
  display: flex;
  min-height: 435px;
  overflow: hidden;
  align-items: flex-end;
  background: var(--green);
  color: #fff;
}
.residential-solution-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.residential-solution-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(3, 27, 20, .94) 4%, rgba(3, 27, 20, .22) 68%);
}
.residential-solution-card:hover img { transform: scale(1.045); }
.residential-solution-body {
  position: relative;
  z-index: 1;
  padding: 26px;
}
.residential-solution-body > span {
  display: block;
  margin-bottom: 9px;
  color: var(--gold-2);
  font-size: .71rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.residential-solution-body h3 {
  margin-bottom: 10px;
  color: #fff;
  font-size: 1.35rem;
}
.residential-solution-body p {
  margin: 0;
  color: rgba(255, 255, 255, .84);
  font-size: .9rem;
  line-height: 1.6;
}
.residential-story {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  min-height: 590px;
  background: var(--paper);
}
.residential-story-media { min-height: 100%; }
.residential-story-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.residential-story-copy {
  align-self: center;
  padding: clamp(42px, 6vw, 92px);
}
.residential-story-copy h2 { margin-bottom: 18px; }
.residential-story-copy > p {
  max-width: 600px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}
.residential-benefits {
  display: grid;
  gap: 0;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}
.residential-benefits li {
  display: grid;
  grid-template-columns: minmax(150px, .8fr) 1.2fr;
  gap: 22px;
  padding: 17px 0;
  border-top: 1px solid var(--line);
}
.residential-benefits li:last-child { border-bottom: 1px solid var(--line); }
.residential-benefits strong {
  color: var(--green);
  font-size: .98rem;
}
.residential-benefits span {
  color: var(--muted);
  font-size: .94rem;
  line-height: 1.6;
}
.residential-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 44px;
  border-top: 1px solid var(--line);
}
.residential-steps .project-card {
  min-height: 0;
  padding: 28px 24px 0 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
.residential-steps .project-card + .project-card { padding-left: 24px; border-left: 1px solid var(--line); }
.residential-steps .project-card > span {
  display: block;
  margin-bottom: 34px;
  color: var(--gold);
  font-size: 1.55rem;
  font-weight: 800;
}
.residential-steps .project-card h3 { margin-bottom: 10px; color: var(--green); }
.residential-steps .project-card p { color: var(--muted); font-size: .93rem; line-height: 1.65; }
.residential-steps .project-card strong { color: var(--green); font-size: .83rem; }

/* Business landing page */
.business-hero {
  position: relative;
  min-height: 650px;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--green);
  color: #fff;
}
.business-hero-media, .business-hero-media::after { position: absolute; inset: 0; }
.business-hero-media { overflow: hidden; }
.business-hero-media img { width: 100%; height: 100%; display: block; object-fit: cover; object-position: center 56%; }
.business-hero-media::after { content: ""; background: linear-gradient(90deg, rgba(3,27,20,.95) 0%, rgba(3,27,20,.75) 38%, rgba(3,27,20,.2) 72%); }
.business-hero-content { position: relative; z-index: 1; padding-top: 125px; padding-bottom: 46px; }
.business-hero h1 { max-width: 780px; margin-bottom: 18px; color: #fff; font-size: clamp(3.2rem, 5.8vw, 6.2rem); }
.business-hero h1 span { color: var(--gold-2); }
.business-hero-content > p { max-width: 650px; margin-bottom: 30px; color: rgba(255,255,255,.9); font-size: 1.12rem; line-height: 1.7; }
.business-hero-points { display: flex; flex-wrap: wrap; gap: 10px 24px; margin: 64px 0 0; padding: 20px 0 0; border-top: 1px solid rgba(255,255,255,.32); list-style: none; }
.business-hero-points li { color: rgba(255,255,255,.88); font-size: .88rem; font-weight: 700; }
.business-hero-points li::before { content: ""; display: inline-block; width: 7px; height: 7px; margin: 0 9px 1px 0; border-radius: 50%; background: var(--gold); }
.business-sector-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 42px; }
.business-sector-card { position: relative; display: flex; min-height: 440px; overflow: hidden; align-items: flex-end; background: var(--green); color: #fff; }
.business-sector-card > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.business-sector-kantoor > img { object-position: 50% 38%; }
.business-sector-retail > img { object-position: 50% 20%; }
.business-sector-horeca > img { object-position: 70% 38%; }
.business-sector-techniek > img { object-position: 26% 53%; }
.business-sector-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(3,27,20,.95) 3%, rgba(3,27,20,.18) 70%); }
.business-sector-card:hover > img { transform: scale(1.045); }
.business-sector-card > div { position: relative; z-index: 1; padding: 26px; }
.business-sector-card span { display: block; margin-bottom: 9px; color: var(--gold-2); font-size: .71rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.business-sector-card h3 { margin-bottom: 10px; color: #fff; font-size: 1.3rem; }
.business-sector-card p { margin: 0; color: rgba(255,255,255,.84); font-size: .9rem; line-height: 1.6; }
.business-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin-top: 44px; border-top: 1px solid var(--line); }
.business-steps .project-card { min-height: 0; padding: 28px 24px 0 0; border: 0; border-radius: 0; background: transparent; box-shadow: none; }
.business-steps .project-card + .project-card { padding-left: 24px; border-left: 1px solid var(--line); }
.business-steps .project-card > span { display: block; margin-bottom: 34px; color: var(--gold); font-size: 1.55rem; font-weight: 800; }
.business-steps .project-card h3 { margin-bottom: 10px; color: var(--green); }
.business-steps .project-card p { color: var(--muted); font-size: .93rem; line-height: 1.65; }
.business-steps .project-card strong { color: var(--green); font-size: .83rem; }
.business-story { display: grid; grid-template-columns: minmax(0,.95fr) minmax(0,1.05fr); min-height: 590px; background: var(--paper); }
.business-story-media img { width: 100%; height: 100%; display: block; object-fit: cover; }
.business-story-copy { align-self: center; padding: clamp(42px,6vw,92px); }
.business-story-copy h2 { margin-bottom: 18px; }
.business-story-copy > p { max-width: 600px; color: var(--muted); font-size: 1.05rem; line-height: 1.7; }
.business-assurances { display: grid; gap: 0; margin: 28px 0 30px; padding: 0; list-style: none; }
.business-assurances li { display: grid; grid-template-columns: minmax(160px,.85fr) 1.2fr; gap: 22px; padding: 16px 0; border-top: 1px solid var(--line); }
.business-assurances li:last-child { border-bottom: 1px solid var(--line); }
.business-assurances strong { color: var(--green); font-size: .96rem; }
.business-assurances span { color: var(--muted); font-size: .93rem; line-height: 1.55; }

/* Services landing page */
.services-hero { position: relative; min-height: 640px; display: grid; align-items: end; overflow: hidden; background: var(--green); color: #fff; }
.services-hero-media, .services-hero-media::after { position: absolute; inset: 0; }
.services-hero-media { overflow: hidden; }
.services-hero-media img { width: 100%; height: 100%; display: block; object-fit: cover; object-position: center 50%; }
.services-hero-media::after { content: ""; background: linear-gradient(90deg, rgba(3,27,20,.94) 0%, rgba(3,27,20,.72) 40%, rgba(3,27,20,.15) 75%); }
.services-hero-content { position: relative; z-index: 1; padding-top: 120px; padding-bottom: 46px; }
.services-hero h1 { max-width: 780px; margin-bottom: 18px; color: #fff; font-size: clamp(3.2rem,5.8vw,6.15rem); }
.services-hero h1 span { color: var(--gold-2); }
.services-hero-content > p { max-width: 640px; margin-bottom: 30px; color: rgba(255,255,255,.9); font-size: 1.12rem; line-height: 1.7; }
.services-hero-points { display: flex; flex-wrap: wrap; gap: 10px 24px; margin: 64px 0 0; padding: 20px 0 0; border-top: 1px solid rgba(255,255,255,.32); list-style: none; }
.services-hero-points li { color: rgba(255,255,255,.88); font-size: .88rem; font-weight: 700; }
.services-hero-points li::before { content: ""; display: inline-block; width: 7px; height: 7px; margin: 0 9px 1px 0; border-radius: 50%; background: var(--gold); }
.services-heading { max-width: 760px; }
.services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 44px; }
.service-feature { display: grid; grid-template-columns: minmax(180px,.76fr) 1.24fr; min-height: 390px; overflow: hidden; background: #fff; border: 1px solid var(--line); }
.service-feature-media { position: relative; overflow: hidden; background: var(--green); }
.service-feature-media img { width: 100%; height: 100%; display: block; object-fit: cover; transition: transform .5s ease; }
.service-feature:hover .service-feature-media img { transform: scale(1.045); }
.service-feature-copy { display: flex; flex-direction: column; padding: 34px; }
.service-feature-copy > span { margin-bottom: 10px; color: var(--gold); font-size: .71rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.service-feature-copy h3 { margin-bottom: 12px; color: var(--green); font-size: 1.55rem; }
.service-feature-copy > p { color: var(--muted); font-size: .94rem; line-height: 1.62; }
.service-feature-copy ul { display: grid; gap: 8px; margin: 18px 0 24px; padding: 17px 0; border-block: 1px solid var(--line); list-style: none; }
.service-feature-copy li { color: var(--ink); font-size: .86rem; line-height: 1.4; }
.service-feature-copy li::before { content: "✓"; margin-right: 8px; color: var(--gold); font-weight: 800; }
.service-feature-copy .text-link { margin-top: auto; }
.service-feature-dark { background: var(--green); border-color: var(--green); }
.service-feature-dark .service-feature-copy h3 { color: #fff; }
.service-feature-dark .service-feature-copy > p, .service-feature-dark .service-feature-copy li { color: rgba(255,255,255,.8); }
.service-feature-dark .service-feature-copy ul { border-color: rgba(255,255,255,.2); }
.service-feature-dark .service-feature-copy .text-link { color: var(--gold-2); }

/* Maintenance landing page */
.maintenance-hero { position: relative; min-height: 630px; display: grid; align-items: end; overflow: hidden; background: var(--green); color: #fff; }
.maintenance-hero-media, .maintenance-hero-media::after { position: absolute; inset: 0; }
.maintenance-hero-media img { width: 100%; height: 100%; display: block; object-fit: cover; object-position: 70% center; }
.maintenance-hero-media::after { content: ""; background: linear-gradient(90deg, rgba(3,27,20,.95), rgba(3,27,20,.72) 42%, rgba(3,27,20,.14) 76%); }
.maintenance-hero-content { position: relative; z-index: 1; padding-top: 115px; padding-bottom: 46px; }
.maintenance-hero h1 { max-width: 760px; margin-bottom: 18px; color: #fff; font-size: clamp(3.2rem,5.8vw,6.15rem); }
.maintenance-hero h1 span { color: var(--gold-2); }
.maintenance-hero-content > p { max-width: 630px; margin-bottom: 30px; color: rgba(255,255,255,.9); font-size: 1.12rem; line-height: 1.7; }
.maintenance-hero-points { display: flex; flex-wrap: wrap; gap: 10px 24px; margin: 64px 0 0; padding: 20px 0 0; border-top: 1px solid rgba(255,255,255,.32); list-style: none; }
.maintenance-hero-points li { color: rgba(255,255,255,.88); font-size: .88rem; font-weight: 700; }
.maintenance-hero-points li::before { content: ""; display: inline-block; width: 7px; height: 7px; margin: 0 9px 1px 0; border-radius: 50%; background: var(--gold); }
.maintenance-intro-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(46px,8vw,130px); align-items: center; }
.maintenance-intro-grid h2 { margin-bottom: 18px; }
.maintenance-intro-grid p { max-width: 600px; color: var(--muted); font-size: 1.06rem; line-height: 1.7; }
.maintenance-checks { display: grid; gap: 0; margin: 0; padding: 0; list-style: none; counter-reset: maintenance; }
.maintenance-checks li { display: grid; grid-template-columns: 54px minmax(130px,.75fr) 1.25fr; gap: 16px; align-items: baseline; padding: 20px 0; border-top: 1px solid var(--line); }
.maintenance-checks li:last-child { border-bottom: 1px solid var(--line); }
.maintenance-checks li::before { counter-increment: maintenance; content: "0" counter(maintenance); color: var(--gold); font-weight: 800; }
.maintenance-checks strong { color: var(--green); }
.maintenance-checks span { color: var(--muted); font-size: .93rem; line-height: 1.55; }
.maintenance-plan-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; align-items: stretch; }
.maintenance-plan { display: flex; flex-direction: column; padding: 36px; border: 1px solid var(--line); background: var(--paper); }
.maintenance-plan-featured { border: 2px solid var(--gold); background: var(--green); color: #fff; box-shadow: 0 14px 28px rgba(8,45,36,.1); }
.plan-label { color: var(--gold); font-size: .76rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.plan-intro { min-height: 54px; margin: 16px 0 22px; color: var(--muted); line-height: 1.55; }
.maintenance-plan-featured .plan-intro { color: rgba(255,255,255,.78); }
.plan-price { padding: 20px 0; margin: 0; border-block: 1px solid var(--line); color: var(--muted); }
.plan-price strong { color: var(--green); font-size: 2.35rem; }
.maintenance-plan-featured .plan-price { border-color: rgba(255,255,255,.22); color: rgba(255,255,255,.72); }
.maintenance-plan-featured .plan-price strong { color: #fff; }
.maintenance-plan ul { display: grid; gap: 12px; margin: 24px 0 30px; padding: 0; list-style: none; }
.maintenance-plan li { color: var(--ink); font-size: .9rem; line-height: 1.45; }
.maintenance-plan li::before { content: "✓"; margin-right: 8px; color: var(--gold); font-weight: 800; }
.maintenance-plan-featured li { color: rgba(255,255,255,.88); }
.maintenance-plan .button { margin-top: auto; text-align: center; justify-content: center; }
.maintenance-terms { margin: 24px auto 0; max-width: 780px; color: var(--muted); font-size: .84rem; text-align: center; }
.maintenance-terms a { color: var(--green); font-weight: 700; text-decoration: underline; }

/* Audience Portal Cards */
.audiences { background: var(--paper); }
.audience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: stretch;
}
.audience-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  box-shadow: 0 8px 28px rgba(3,27,20,.06);
  border: 1px solid var(--line);
  overflow: hidden;
  border-radius: 14px;
  transition: transform .35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow .35s cubic-bezier(0.16, 1, 0.3, 1), border-color .35s ease;
}
.audience-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 46px -10px rgba(3,27,20,.14), 0 4px 12px rgba(0,0,0,.04);
  border-color: rgba(199,162,72,.5);
}
.audience-media {
  position: relative;
  width: 100%;
  height: 270px;
  overflow: hidden;
  background: #082d24;
}
.audience-media-accent {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold) 0%, rgba(199,162,72,0.15) 100%);
  z-index: 2;
}
.audience-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform .55s cubic-bezier(0.16, 1, 0.3, 1);
  display: block;
}
.audience-card:hover .audience-media img {
  transform: scale(1.045);
}
.audience-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(3, 32, 23, 0.88);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  z-index: 2;
  box-shadow: 0 4px 14px rgba(0, 0, 0, .22);
}
.audience-badge .badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold-2);
  display: inline-block;
}
.audience-body {
  padding: 38px 36px 40px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.audience-body .eyebrow {
  margin-bottom: 10px;
}
.audience-title {
  font-size: clamp(1.45rem, 1.8vw, 1.85rem);
  font-family: var(--font-serif);
  line-height: 1.28;
  margin-bottom: 14px;
  color: var(--ink);
}
.audience-desc {
  font-size: .96rem;
  line-height: 1.6;
  color: var(--muted);
  margin-bottom: 24px;
}
.audience-features {
  list-style: none;
  padding: 0;
  margin: 0 0 32px 0;
  display: flex;
  flex-direction: column;
  gap: 13px;
  flex: 1;
}
.audience-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: .92rem;
  line-height: 1.45;
  font-weight: 550;
  color: var(--ink);
}
.audience-features .check-dot {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(199, 162, 72, 0.14);
  color: var(--gold);
  margin-top: 1px;
}
.audience-action {
  margin-top: auto;
  padding-top: 6px;
}
.audience-action .button {
  width: 100%;
  text-align: center;
  justify-content: center;
  font-size: .96rem;
  padding: 14px 22px;
}
.check-list { margin: 28px 0 0; padding: 0; display: grid; gap: 10px; list-style: none; }
.check-list li { display: flex; align-items: center; font-size: 0.92rem; font-weight: 550; }
.check-list li::before {
  content: "✓";
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  margin-right: 12px;
  display: inline-grid;
  place-items: center;
  border: 1px solid #aeb9b4;
  border-radius: 50%;
  color: var(--green);
  font-size: .75rem;
  font-weight: 900;
}

/* Service Strip */
.service-strip { padding: 34px 0; border-block: 1px solid var(--line); background: #fff; }
.service-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.service-item, .service-grid article {
  min-height: 76px;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  border-right: 1px solid var(--line);
  text-decoration: none;
  color: inherit;
  transition: transform .2s ease;
}
.service-item:first-child, .service-grid article:first-child { padding-left: 0; }
.service-item:last-child, .service-grid article:last-child { border-right: 0; }
.service-item:hover { transform: translateY(-2px); }
.service-item:hover h3 { color: var(--gold); }
.service-item h3, .service-grid h3 { margin: 0 0 4px; font-size: 1.05rem; transition: color .2s ease; }
.service-item p, .service-grid p { margin: 0; color: var(--muted); font-size: .84rem; }
.service-icon {
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
  display: grid;
  place-items: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--green);
  font-size: 1.45rem;
  font-weight: 800;
  background: #fdfaf4;
}

/* Projects Section */
.projects { background: #fff; }
.section-heading { max-width: 680px; }
.section-heading p { color: var(--muted); font-size: 1.05rem; line-height: 1.6; }
.split-heading { max-width: none; margin-bottom: 34px; display: flex; align-items: end; justify-content: space-between; gap: 30px; }
.split-heading h2 { margin-bottom: 0; }

.home-projects-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.home-project-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 4px 14px rgba(8,45,36,.04);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.home-project-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold);
  box-shadow: 0 12px 26px rgba(8,45,36,.1);
}
.home-project-media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #0d221c;
}
.home-project-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}
.home-project-card:hover .home-project-media img {
  transform: scale(1.05);
}
.home-project-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(8,45,36,.9);
  color: #fff;
  font-size: .72rem;
  font-weight: 750;
  padding: 4px 10px;
  border-radius: 4px;
  backdrop-filter: blur(4px);
  letter-spacing: .02em;
}
.home-project-body {
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.home-project-body h3 {
  font-size: 1.15rem;
  margin: 0 0 8px;
  color: var(--green);
  line-height: 1.35;
}
.home-project-body p {
  color: var(--muted);
  font-size: .88rem;
  line-height: 1.5;
  margin: 0 0 16px;
  flex: 1;
}
.home-project-link {
  font-size: .84rem;
  font-weight: 800;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.home-projects-cta {
  margin-top: 36px;
  padding: 28px 36px;
  background: linear-gradient(135deg, #0d4334, var(--green));
  border-radius: var(--radius);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}
.home-projects-cta blockquote {
  margin: 0;
  font: 500 1.15rem/1.55 var(--font-serif);
  color: #fff;
  max-width: 680px;
}
.home-projects-cta span {
  display: block;
  margin-top: 6px;
  color: var(--gold-2);
  font-size: .82rem;
  font-weight: 750;
  text-transform: uppercase;
  letter-spacing: .06em;
}

/* Products Section */
.products { background: var(--paper); }
.centered { max-width: 760px; margin: 0 auto 42px; text-align: center; }
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: stretch; }
.product-card {
  position: relative;
  padding: 38px 32px 34px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  transition: transform .35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow .35s cubic-bezier(0.16, 1, 0.3, 1), border-color .35s ease;
}
.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 42px -10px rgba(3,27,20,.12), 0 4px 12px rgba(0,0,0,.03);
}
.product-card.featured {
  border: 2px solid var(--gold);
  box-shadow: 0 10px 30px -6px rgba(199, 162, 72, 0.18), 0 4px 14px rgba(0,0,0,.04);
}
.product-card.featured:hover {
  box-shadow: 0 24px 48px -10px rgba(199, 162, 72, 0.25), 0 6px 16px rgba(0,0,0,.05);
}
.recommended {
  position: absolute;
  top: 0;
  right: 20px;
  padding: 6px 14px;
  background: linear-gradient(135deg, var(--gold) 0%, #8c6d1f 100%);
  color: #fff;
  font-size: .70rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  box-shadow: 0 4px 12px rgba(140, 109, 31, 0.3);
}
.product-thumb {
  height: 165px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  background: #ffffff;
  padding: 8px 12px;
  overflow: hidden;
}
.product-thumb img {
  max-width: 100%;
  max-height: 135px;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: transform .45s cubic-bezier(0.16, 1, 0.3, 1);
}
.product-card:hover .product-thumb img {
  transform: scale(1.06);
}
.product-brand-header {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 44px;
  margin-bottom: 10px;
}
.product-brand-mark {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-brand-title strong {
  display: block;
  font-size: 1.04rem;
  font-weight: 850;
  letter-spacing: -0.01em;
  color: var(--ink);
  line-height: 1.15;
}
.product-brand-title span {
  display: block;
  font-size: 0.72rem;
  color: var(--muted);
  font-weight: 600;
  letter-spacing: 0.02em;
}
.product-specs-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 12px;
}
.spec-pill {
  display: inline-flex;
  align-items: center;
  padding: 3px 9px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  background: #f0f4f2;
  color: var(--green);
  border: 1px solid rgba(8, 45, 36, 0.08);
}
.spec-pill.gold {
  background: rgba(199, 162, 72, 0.15);
  color: #8c6d1f;
  border-color: rgba(199, 162, 72, 0.35);
}
.product-brand { min-height: 48px; color: var(--green); font: 800 2.2rem/1 var(--font-body); letter-spacing: -.05em; display: flex; align-items: baseline; }
.product-brand.compact { font-size: 1.34rem; line-height: .92; letter-spacing: -.03em; }
.product-brand.compact span { color: #e21c2a; font-size: .7em; letter-spacing: .08em; }
.product-model {
  display: inline-block;
  font-size: 0.76rem;
  font-weight: 750;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 2px 0 8px;
}
.product-tagline {
  margin: 6px 0 20px;
  color: var(--muted);
  font-size: .95rem;
  line-height: 1.55;
  min-height: 48px;
}
.product-features {
  margin: 0 0 28px;
  padding: 20px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  list-style: none;
  display: grid;
  gap: 12px;
}
.product-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .92rem;
  color: var(--ink);
  line-height: 1.45;
}
.product-features li svg {
  flex: 0 0 18px;
  margin-top: 2px;
  color: var(--green);
}
.product-card .from { margin: 28px 0 0; color: var(--muted); font-size: .82rem; text-transform: uppercase; letter-spacing: .08em; }
.product-card .price { margin-bottom: 0; color: var(--green); font-size: 2.55rem; font-weight: 850; letter-spacing: -.05em; line-height: 1; margin-top: 4px; }
.product-card > p:not(.price):not(.from) { color: var(--muted); font-size: 0.88rem; }
.product-card ul { margin: 28px 0; padding: 22px 0 22px 20px; border-block: 1px solid var(--line); list-style: disc; }
.product-card ul li { margin-bottom: 6px; font-size: 0.9rem; color: var(--ink); }
.product-card a { color: var(--green); font-weight: 800; margin-top: auto; display: inline-flex; align-items: center; gap: 6px; }
.product-card a:hover { color: var(--gold); }
.price-note { margin: 28px 0 0; color: var(--muted); text-align: center; font-size: .85rem; }

/* Team Section */
.team-section { display: grid; grid-template-columns: 1fr 1fr; background: #fff; }
.team-image { min-height: 630px; background: #e0e5e3; }
.team-image img { width: 100%; height: 100%; object-fit: cover; }
.team-copy { padding: clamp(60px, 7vw, 120px); background: linear-gradient(135deg, #fff, #f5f6f3); display: flex; flex-direction: column; justify-content: center; }
.team-copy p { max-width: 690px; color: var(--muted); font-size: 1.07rem; line-height: 1.7; }
.team-values { margin: 32px 0; display: flex; flex-wrap: wrap; gap: 10px; }
.team-values span { padding: 8px 14px; border: 1px solid #c9d1ce; background: #fff; color: var(--green); font-size: .82rem; font-weight: 750; border-radius: var(--radius); }

/* FAQ Section */
.faq { background: #fff; }
.faq-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 90px; }
.faq-list details { border-top: 1px solid var(--line); }
.faq-list details:last-child { border-bottom: 1px solid var(--line); }
.faq-list summary { padding: 24px 44px 24px 0; position: relative; cursor: pointer; color: var(--green); font-size: 1.15rem; font-weight: 800; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; position: absolute; right: 4px; top: 20px; color: var(--gold); font-size: 1.6rem; font-weight: 400; }
.faq-list details[open] summary::after { content: "−"; }
.faq-list details p { padding: 0 55px 22px 0; color: var(--muted); line-height: 1.65; margin-bottom: 0; }

/* Contact CTA Strip */
.contact-cta { padding: 74px 0; background: var(--green); color: #fff; }
.contact-inner { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 60px; }
.contact-inner h2 { margin-bottom: 12px; color: #fff; }
.contact-inner p { max-width: 710px; margin-bottom: 0; color: rgba(255,255,255,.76); font-size: 1.05rem; }
.contact-actions { display: flex; flex-direction: column; align-items: center; gap: 14px; }
.contact-actions > a:last-child { color: rgba(255,255,255,.88); font-weight: 700; font-size: 0.95rem; }
.contact-actions > a:last-child:hover { color: var(--gold-2); }

/* Footer */
.footer { padding: 64px 0 24px; background: #f2f3f0; border-top: 1px solid var(--line); }
.footer-grid { display: grid; grid-template-columns: 1.55fr 1fr 1fr 1.2fr; gap: 55px; }
.footer-brand img { width: 220px; height: 72px; object-fit: contain; object-position: left center; }
.footer-brand p { max-width: 330px; color: var(--muted); font-size: 0.9rem; line-height: 1.6; margin-top: 14px; }
.footer h3 { margin-bottom: 18px; font-size: 1rem; color: var(--green); font-weight: 800; }
.footer-grid > div:not(.footer-brand) { display: flex; flex-direction: column; gap: 10px; }
.footer-grid a, .footer-grid span { color: var(--muted); font-size: .9rem; }
.footer-grid a:hover { color: var(--green); }
.footer-bottom { margin-top: 55px; padding-top: 22px; display: flex; justify-content: space-between; gap: 20px; border-top: 1px solid #d6dcda; color: var(--muted); font-size: .78rem; }
.footer-bottom div { display: flex; gap: 22px; }

/* Contact Page Layout & Fluent Forms */
.contact-layout { display: grid; grid-template-columns: 1.1fr .9fr; gap: 60px; margin: 40px 0 80px; }
.contact-card { background: var(--paper); padding: 40px; border: 1px solid var(--line); border-radius: var(--radius); }
.contact-card h3 { color: var(--green); margin-bottom: 14px; }
.contact-meta { display: grid; gap: 16px; margin: 24px 0; }
.contact-meta-item { display: flex; gap: 14px; align-items: flex-start; }
.contact-meta-icon { width: 40px; height: 40px; flex: 0 0 40px; border: 1px solid var(--gold); border-radius: 50%; display: grid; place-items: center; color: var(--green); font-weight: bold; background: #fff; }

/* Fluent Forms Stijl Aanpassingen in KW Huisstijl */
.fluentform, .ff-form { font-family: var(--font-body) !important; }
.fluentform .ff-el-form-control {
  border-radius: var(--radius) !important;
  border: 1px solid var(--line) !important;
  padding: 12px 16px !important;
  font-size: 15px !important;
  transition: border-color .2s ease, box-shadow .2s ease !important;
}
.fluentform .ff-el-form-control:focus {
  border-color: var(--gold) !important;
  box-shadow: 0 0 0 3px rgba(189,150,54,.15) !important;
  outline: none !important;
}
.fluentform .ff-btn-submit {
  background: linear-gradient(135deg, var(--gold), var(--gold-2)) !important;
  color: #fff !important;
  border: none !important;
  border-radius: var(--radius) !important;
  padding: 14px 28px !important;
  font-weight: 750 !important;
  cursor: pointer !important;
  transition: transform .2s ease, box-shadow .2s ease !important;
}
.fluentform .ff-btn-submit:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 22px rgba(189,150,54,.25) !important;
}
.fluentform .ff-message-success {
  background: var(--green-3) !important;
  color: var(--green) !important;
  border-left: 4px solid var(--green) !important;
  border-radius: var(--radius) !important;
  padding: 16px 20px !important;
}

/* Project Showcase Interactive Filter */
.project-filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 32px 0 36px;
  justify-content: center;
}
.project-filter-btn {
  background: #ffffff;
  border: 1.5px solid var(--line);
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 700;
  padding: 9px 20px;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: inherit;
}
.project-filter-btn:hover {
  border-color: var(--gold);
  color: var(--green);
  transform: translateY(-1px);
}
.project-filter-btn.active {
  background: var(--green);
  color: #ffffff;
  border-color: var(--green);
  box-shadow: 0 4px 14px rgba(8, 45, 36, 0.2);
}

/* Project Showcase Grid & Lightbox Cards */
.project-showcase-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 28px;
  margin-top: 36px;
}
.project-showcase-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(8,45,36,.04);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  outline: none;
}
.project-showcase-card:hover,
.project-showcase-card:focus-visible {
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow: 0 12px 28px rgba(8,45,36,.1);
}
.project-showcase-card:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}
.project-showcase-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: #0d221c;
  display: block;
}
.project-showcase-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s cubic-bezier(.16,1,.3,1);
}
.project-showcase-card:hover .project-showcase-media img,
.project-showcase-card:focus-visible .project-showcase-media img {
  transform: scale(1.05);
}
.project-zoom-badge {
  position: absolute;
  bottom: 12px;
  right: 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: rgba(8, 45, 36, 0.88);
  border: 1px solid rgba(200, 164, 90, 0.35);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #fff;
  border-radius: 999px;
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .03em;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .25s ease, transform .25s ease;
  pointer-events: none;
}
.project-zoom-badge svg {
  stroke: var(--gold);
}
.project-showcase-card:hover .project-zoom-badge,
.project-showcase-card:focus-visible .project-zoom-badge {
  opacity: 1;
  transform: translateY(0);
}
@media (hover: none) {
  .project-zoom-badge {
    opacity: .92;
    transform: none;
  }
}
.project-showcase-body {
  padding: 24px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.project-badge {
  color: var(--gold);
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.project-showcase-body h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
  color: var(--ink);
}
.project-showcase-body p {
  color: var(--muted);
  font-size: .88rem;
  line-height: 1.6;
  margin: 0;
}

/* Lightbox Modal */
body.kw-lightbox-active {
  overflow: hidden !important;
}
.kw-lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000000;
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: hidden;
  opacity: 0;
  transition: opacity .25s ease, visibility .25s ease;
}
.kw-lightbox.is-open {
  visibility: visible;
  opacity: 1;
}
.kw-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 18, 14, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  cursor: zoom-out;
}
.kw-lightbox-container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1100px;
  max-height: 94vh;
  margin: 0 auto;
  padding: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}
.kw-lightbox-content {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-height: calc(94vh - 32px);
  background: #081a16;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.6);
  transform: scale(0.96);
  transition: transform .25s cubic-bezier(.16, 1, .3, 1);
}
.kw-lightbox.is-open .kw-lightbox-content {
  transform: scale(1);
}
.kw-lightbox-media {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: min(68vh, 640px);
  background: #040c0a;
  overflow: hidden;
}
.kw-lightbox-img {
  max-height: 100%;
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  opacity: 0;
  transition: opacity .25s ease;
}
.kw-lightbox-img.is-loaded {
  opacity: 1;
}
.kw-lightbox-loader {
  position: absolute;
  width: 36px;
  height: 36px;
  border: 3px solid rgba(200, 164, 90, 0.2);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: kwSpin .7s linear infinite;
  display: none;
}
.kw-lightbox.is-loading .kw-lightbox-loader {
  display: block;
}
@keyframes kwSpin {
  to { transform: rotate(360deg); }
}
.kw-lightbox-info {
  padding: 18px 24px;
  background: #0a1f1a;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  gap: 6px;
  box-sizing: border-box;
}
.kw-lightbox-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.kw-lightbox-badge {
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
}
.kw-lightbox-counter {
  font-size: .74rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.65);
  background: rgba(255, 255, 255, 0.08);
  padding: 2px 10px;
  border-radius: 999px;
}
.kw-lightbox-title {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
}
.kw-lightbox-desc {
  margin: 0;
  font-size: .86rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.72);
}
.kw-lightbox-btn {
  position: absolute;
  background: rgba(8, 45, 36, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
  z-index: 10;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.kw-lightbox-btn:hover,
.kw-lightbox-btn:focus-visible {
  background: var(--gold);
  border-color: var(--gold);
  color: #082d24;
  outline: none;
}
.kw-lightbox-close {
  top: -6px;
  right: -6px;
  width: 44px;
  height: 44px;
}
.kw-lightbox-close:hover {
  transform: scale(1.08);
}
.kw-lightbox-prev {
  left: -22px;
  top: 42%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
}
.kw-lightbox-next {
  right: -22px;
  top: 42%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
}
.kw-lightbox-prev:hover {
  transform: translateY(-50%) scale(1.08);
}
.kw-lightbox-next:hover {
  transform: translateY(-50%) scale(1.08);
}
@media (max-width: 900px) {
  .kw-lightbox-container {
    padding: 12px 10px;
  }
  .kw-lightbox-content {
    max-height: calc(100vh - 24px);
  }
  .kw-lightbox-media {
    height: min(52vh, 400px);
  }
  .kw-lightbox-close {
    top: 14px;
    right: 14px;
    width: 44px;
    height: 44px;
    background: rgba(8, 45, 36, 0.88);
    border: 1px solid rgba(255, 255, 255, 0.25);
    z-index: 20;
  }
  .kw-lightbox-prev {
    left: 8px;
    width: 44px;
    height: 44px;
    background: rgba(8, 45, 36, 0.88);
  }
  .kw-lightbox-next {
    right: 8px;
    width: 44px;
    height: 44px;
    background: rgba(8, 45, 36, 0.88);
  }
  .kw-lightbox-info {
    padding: 12px 16px;
  }
  .kw-lightbox-title {
    font-size: 1.05rem;
  }
  .kw-lightbox-desc {
    font-size: .82rem;
    line-height: 1.45;
  }
}



/* WooCommerce Stijl in KW Huisstijl */
.woocommerce .woocommerce-breadcrumb { color: var(--muted); font-size: 0.85rem; margin-bottom: 24px; }
.woocommerce .woocommerce-breadcrumb a { color: var(--green); }
.woocommerce ul.products li.product {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: var(--radius);
  padding: 24px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.woocommerce ul.products li.product:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow: var(--shadow);
}
.woocommerce ul.products li.product .woocommerce-loop-product__title {
  color: var(--ink);
  font-size: 1.2rem;
  font-weight: 700;
  margin: 14px 0 8px;
}
.woocommerce ul.products li.product .price {
  color: var(--green) !important;
  font-size: 1.3rem !important;
  font-weight: 800 !important;
}
.woocommerce ul.products li.product .button,
.woocommerce #respond input#submit,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit.alt,
.woocommerce a.button.alt,
.woocommerce button.button.alt,
.woocommerce input.button.alt {
  background: linear-gradient(135deg, var(--gold), var(--gold-2)) !important;
  color: #fff !important;
  border-radius: var(--radius) !important;
  font-weight: 750 !important;
  padding: 12px 24px !important;
  border: none !important;
  transition: transform .2s ease, box-shadow .2s ease !important;
}
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce #respond input#submit.alt:hover,
.woocommerce a.button.alt:hover,
.woocommerce button.button.alt:hover,
.woocommerce input.button.alt:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 22px rgba(189,150,54,.25) !important;
}
.woocommerce-message, .woocommerce-info {
  border-top-color: var(--gold) !important;
  border-radius: var(--radius) !important;
  background: var(--paper) !important;
  color: var(--ink) !important;
}
.woocommerce-message::before, .woocommerce-info::before {
  color: var(--gold) !important;
}
.woocommerce-checkout #customer_details,
.woocommerce-cart .cart_totals {
  background: var(--paper);
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.woocommerce table.shop_table {
  border: 1px solid var(--line) !important;
  border-radius: var(--radius) !important;
}
.woocommerce table.shop_table th {
  background: var(--paper);
  color: var(--green);
  font-weight: 700;
}

/* Reviews Section */
.reviews-section { background: var(--paper); }
.reviews-badge {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.google-badge-card {
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: #ffffff;
  padding: 10px 18px;
  border-radius: 12px;
  border: 1.5px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 6px 20px rgba(3, 27, 20, 0.06);
  min-width: 220px;
}
.google-badge-top {
  display: flex;
  align-items: center;
  gap: 8px;
}
.google-badge-brand {
  font-size: 0.84rem;
  font-weight: 700;
  color: #3c4043;
  letter-spacing: -0.01em;
}
.google-badge-verified {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  font-size: 0.68rem;
  font-weight: 700;
  color: #1a73e8;
  background: #e8f0fe;
  padding: 2px 7px;
  border-radius: 999px;
  margin-left: auto;
}
.google-badge-main {
  display: flex;
  align-items: center;
  gap: 8px;
}
.google-badge-score {
  font-size: 1.15rem;
  font-weight: 850;
  color: var(--ink);
  line-height: 1;
}
.google-badge-stars {
  display: inline-flex;
  gap: 2px;
  align-items: center;
}
.google-badge-count {
  font-size: 0.76rem;
  color: var(--muted);
  font-weight: 550;
  margin-left: auto;
}
.review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  margin-top: 24px;
}
.review-filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0 12px;
}
.review-filter-btn {
  background: #ffffff;
  border: 1.5px solid var(--line);
  color: var(--ink);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: inherit;
}
.review-filter-btn:hover {
  border-color: var(--gold);
  color: var(--green);
  transform: translateY(-1px);
}
.review-filter-btn.active {
  background: var(--green);
  color: #ffffff;
  border-color: var(--green);
  box-shadow: 0 4px 14px rgba(8, 45, 36, 0.15);
}
.review-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: 0 4px 16px rgba(8,45,36,.04);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.review-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow: var(--shadow);
}
.review-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}
.review-stars { color: var(--gold); letter-spacing: 2px; font-size: .95rem; font-weight: 700; }
.review-source {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: .74rem;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .05em;
}
.review-text {
  margin: 0 0 20px 0;
  color: var(--ink);
  font-size: .92rem;
  line-height: 1.6;
  font-style: italic;
  flex-grow: 1;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}
.review-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-2), var(--green));
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: .9rem;
  flex-shrink: 0;
}
.review-author strong { display: block; font-size: .88rem; color: var(--green); }
.review-author small { color: var(--muted); font-size: .76rem; }
.reviews-footer {
  margin-top: 36px;
  text-align: center;
}

/* Team & About Page */
.story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.22fr);
  gap: 56px;
  align-items: center;
}
.story-media {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.story-img {
  width: 100%;
  height: 100%;
  max-height: 520px;
  object-fit: cover;
  display: block;
}
.story-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: rgba(8,45,36,.95);
  color: #fff;
  padding: 16px 22px;
  border-radius: var(--radius);
  border-left: 3px solid var(--gold);
  backdrop-filter: blur(8px);
}
.story-badge strong { display: block; font-size: 1.8rem; color: var(--gold-2); font-weight: 850; line-height: 1; }
.story-badge span { font-size: .8rem; text-transform: uppercase; letter-spacing: .08em; opacity: .85; }
.story-copy h2 { margin-bottom: 20px; font-size: clamp(1.8rem, 2.5vw, 2.6rem); }
.values-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 32px;
}
.value-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.value-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--green-3);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.value-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--green);
}
.value-item strong { display: block; color: var(--green); font-size: 1rem; margin-bottom: 3px; }
.value-item p { margin: 0; color: var(--muted); font-size: .9rem; line-height: 1.5; }

.team-grid-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  margin-top: 48px;
}
.team-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(8,45,36,.04);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
  display: flex;
  flex-direction: column;
}
.team-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow: var(--shadow);
}
.team-card-photo {
  height: 240px;
  background: var(--paper);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.team-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.team-card-body {
  padding: 24px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.team-card-role {
  color: var(--gold);
  font-size: .74rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .15em;
  margin-bottom: 6px;
}
.team-card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}
.team-card p {
  color: var(--muted);
  font-size: .88rem;
  line-height: 1.6;
  margin-bottom: 0;
}

/* Careers Box */
.careers-box {
  background: linear-gradient(135deg, var(--green), var(--green-2));
  color: #fff;
  border-radius: var(--radius);
  padding: clamp(36px, 5vw, 64px);
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: center;
}
.careers-content h2 { color: #fff; margin-bottom: 16px; }
.careers-content p { color: rgba(255,255,255,.82); font-size: 1.05rem; line-height: 1.65; max-width: 620px; }
.careers-perks {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.careers-perks li { color: #fff; font-size: .95rem; font-weight: 600; }
.careers-card {
  background: #fff;
  color: var(--ink);
  padding: 32px;
  border-radius: var(--radius);
  box-shadow: 0 16px 40px rgba(0,0,0,.2);
  text-align: center;
}
.careers-card h3 { color: var(--green); margin-bottom: 10px; font-size: 1.3rem; }
.careers-card p { color: var(--muted); font-size: .9rem; margin-bottom: 22px; }
.careers-card .button { width: 100%; }
.careers-phone {
  display: inline-block;
  margin-top: 14px;
  color: var(--green);
  font-weight: 750;
  font-size: .88rem;
}
.careers-phone:hover { color: var(--gold); }

/* Responsive Media Queries */
@media (max-width: 1160px) {
  .utility-points span:nth-child(3), .nav-cta { display: none; }
  .nav { gap: 16px; }
  .nav a:nth-child(6) { display: none; }
  .audience-media { height: 250px; }
  .project-grid { grid-template-columns: 1fr 1fr; }
  .residential-solution-grid { grid-template-columns: 1fr 1fr; }
  .business-sector-grid { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .maintenance-plan-grid { grid-template-columns: 1fr; max-width: 680px; margin: 0 auto; }
  .home-projects-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-layout { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  .utility-points { display: none; }
  .utility-inner { justify-content: flex-end; }
  .utility-links a:not(.phone) { display: none; }
  .nav-wrap { min-height: 74px; position: relative; }
  .brand { width: 168px; }
  .menu-button { display: block; }
  .nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    padding: 10px 24px 24px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 18px 30px rgba(0,0,0,.08);
  }
  .nav.open { display: flex; }
  .nav a, .nav a:nth-child(6) { display: block; padding: 13px 0; border-bottom: 1px solid var(--line); color: var(--ink); }
  .hero { min-height: 760px; }
  .hero-media img { object-position: 56% center; transform: none; }
  .hero-media::after {
    background-image: linear-gradient(90deg, rgba(3,27,20,.93), rgba(3,27,20,.4)), linear-gradient(0deg, rgba(3,27,20,.88) 0, transparent 55%);
  }
  .hero-content { padding-top: 70px; }
  .hero-trust { grid-template-columns: 1fr 1fr; margin-top: 22px; }
  .audience-grid { grid-template-columns: 1fr; }
  .service-grid { grid-template-columns: 1fr 1fr; gap: 24px 0; }
  .service-grid article:nth-child(2), .service-grid a:nth-child(2) { border-right: 0; }
  .product-grid { grid-template-columns: 1fr; }
  .review-grid { grid-template-columns: 1fr 1fr; }
  .reviews-badge { align-items: flex-start; }
  .story-grid { grid-template-columns: 1fr; gap: 36px; }
  .careers-box { grid-template-columns: 1fr; gap: 32px; }
  .team-section { grid-template-columns: 1fr; }
  .team-image { min-height: 470px; }
  .residential-story { grid-template-columns: 1fr; }
  .residential-story-media { min-height: 460px; }
  .business-story { grid-template-columns: 1fr; }
  .faq-layout { grid-template-columns: 1fr; gap: 45px; }
  .contact-inner { grid-template-columns: 1fr; }
  .contact-actions { align-items: flex-start; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .container { width: min(100% - 30px, 1380px); }
  .section { padding: 64px 0; }
  .utility { height: 34px; }
  .nav-wrap { min-height: 68px; }
  .brand { width: 144px; }
  .brand img { height: 48px; }
  .hero { min-height: 720px; }
  .hero-content { padding-top: 54px; padding-bottom: 26px; }
  .hero h1 { font-size: clamp(2rem, 8.5vw, 2.6rem); line-height: 1.15; }
  .hero-content > p, .hero-content-inner > p { font-size: 1rem; }
  .button, .wp-block-button__link { width: 100%; }
  .button-row { flex-direction: column; }
  .hero-trust { gap: 12px 10px; margin-top: 18px; }
  .hero-trust strong { font-size: .84rem; }
  .audience-card { min-height: auto; }
  .audience-media { height: 210px; }
  .audience-body { padding: 28px 20px 32px; }
  .audience-title { font-size: 1.35rem; }
  .service-grid { grid-template-columns: 1fr; }
  .service-grid article, .service-item { padding: 0; border-right: 0; }
  .split-heading { align-items: flex-start; flex-direction: column; }
  .project-grid { grid-template-columns: 1fr; }
  .residential-hero { min-height: 690px; }
  .residential-hero-media img { object-position: 61% center; }
  .residential-hero-media::after { background: linear-gradient(0deg, rgba(3, 27, 20, .9) 0%, rgba(3, 27, 20, .35) 100%); }
  .residential-hero-content { padding-top: 95px; padding-bottom: 30px; }
  .residential-hero h1 { font-size: clamp(2.75rem, 12vw, 4rem); }
  .residential-hero-content > p { font-size: 1rem; }
  .residential-hero-points { display: grid; gap: 10px; margin-top: 36px; padding-top: 16px; }
  .residential-solution-grid { grid-template-columns: 1fr; gap: 14px; margin-top: 30px; }
  .residential-solution-card { min-height: 360px; }
  .residential-solution-body { padding: 22px; }
  .residential-story-media { min-height: 340px; }
  .residential-story-copy { padding: 54px 24px; }
  .residential-benefits li { grid-template-columns: 1fr; gap: 5px; padding: 15px 0; }
  .residential-steps { grid-template-columns: 1fr; margin-top: 30px; }
  .residential-steps .project-card,
  .residential-steps .project-card + .project-card { padding: 22px 0; border-left: 0; border-bottom: 1px solid var(--line); }
  .residential-steps .project-card > span { margin-bottom: 12px; }
  .business-hero { min-height: 690px; }
  .business-hero-media img { object-position: 57% center; }
  .business-hero-media::after { background: linear-gradient(0deg, rgba(3,27,20,.92) 0%, rgba(3,27,20,.38) 100%); }
  .business-hero-content { padding-top: 95px; padding-bottom: 30px; }
  .business-hero h1 { font-size: clamp(2.75rem, 12vw, 4rem); }
  .business-hero-content > p { font-size: 1rem; }
  .business-hero-points { display: grid; gap: 10px; margin-top: 36px; padding-top: 16px; }
  .business-sector-grid { grid-template-columns: 1fr; gap: 14px; margin-top: 30px; }
  .business-sector-card { min-height: 360px; }
  .business-sector-card > div { padding: 22px; }
  .business-story-media { min-height: 340px; }
  .business-story-copy { padding: 54px 24px; }
  .business-assurances li { grid-template-columns: 1fr; gap: 5px; padding: 15px 0; }
  .business-steps { grid-template-columns: 1fr; margin-top: 30px; }
  .business-steps .project-card,
  .business-steps .project-card + .project-card { padding: 22px 0; border-left: 0; border-bottom: 1px solid var(--line); }
  .business-steps .project-card > span { margin-bottom: 12px; }
  .services-hero { min-height: 690px; }
  .services-hero-media img { object-position: 62% center; }
  .services-hero-media::after { background: linear-gradient(0deg, rgba(3,27,20,.92) 0%, rgba(3,27,20,.4) 100%); }
  .services-hero-content { padding-top: 95px; padding-bottom: 30px; }
  .services-hero h1 { font-size: clamp(2.75rem,12vw,4rem); }
  .services-hero-content > p { font-size: 1rem; }
  .services-hero-points { display: grid; gap: 10px; margin-top: 36px; padding-top: 16px; }
  .services-grid { grid-template-columns: 1fr; gap: 16px; margin-top: 30px; }
  .service-feature { grid-template-columns: 1fr; }
  .service-feature-media { min-height: 250px; }
  .service-feature-copy { padding: 28px 24px; }
  .maintenance-hero { min-height: 690px; }
  .maintenance-hero-media img { object-position: 64% center; }
  .maintenance-hero-media::after { background: linear-gradient(0deg, rgba(3,27,20,.92), rgba(3,27,20,.38)); }
  .maintenance-hero-content { padding-top: 95px; padding-bottom: 30px; }
  .maintenance-hero h1 { font-size: clamp(2.75rem,12vw,4rem); }
  .maintenance-hero-content > p { font-size: 1rem; }
  .maintenance-hero-points { display: grid; gap: 10px; margin-top: 36px; padding-top: 16px; }
  .maintenance-intro-grid { grid-template-columns: 1fr; gap: 32px; }
  .maintenance-checks li { grid-template-columns: 38px 1fr; gap: 6px 12px; }
  .maintenance-checks span { grid-column: 2; }
  .maintenance-plan { padding: 30px 24px; }
  .home-projects-grid { grid-template-columns: 1fr; }
  .project-filter-bar {
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding: 6px 4px 14px;
    margin: 20px -15px 24px;
    padding-left: 15px;
    padding-right: 15px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .project-filter-bar::-webkit-scrollbar { display: none; }
  .project-filter-btn {
    white-space: nowrap;
    flex-shrink: 0;
    font-size: 0.82rem;
    padding: 8px 16px;
  }
  .project-showcase-grid { grid-template-columns: 1fr; }
  .review-grid { grid-template-columns: 1fr; }
  .team-grid-cards { grid-template-columns: 1fr; }
  .project-card, .quote-card { min-height: 270px; }
  .product-card { padding: 32px 24px; }
  .team-image { min-height: 360px; }
  .team-copy { padding: 56px 24px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
  .footer-bottom div { flex-direction: column; gap: 8px; }
}

/* Google reCAPTCHA Badge & Cookie Consent positioning */
.grecaptcha-badge {
  visibility: hidden !important;
}
.cmplz-manage-consent-container {
  bottom: 12px !important;
  left: 12px !important;
  top: auto !important;
  z-index: 90 !important;
}
@media (max-width: 768px) {
  .cmplz-manage-consent-container,
  .cky-btn-revisit-wrapper {
    bottom: 74px !important;
  }
}

/* Producten & Keuzehulp Page */
.anchor-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}
.anchor-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  color: #fff;
  font-size: 0.88rem;
  font-weight: 600;
  transition: all 0.2s ease;
}
.anchor-pill:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
  transform: translateY(-1px);
}
.brand-comparison-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.brand-feature-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 40px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.brand-feature-card:hover {
  border-color: var(--gold);
  box-shadow: 0 10px 30px rgba(8, 45, 36, 0.08);
}
.brand-feature-card.highlighted {
  border: 2px solid var(--gold);
}
.brand-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}
.brand-card-logo {
  font-size: 1.6rem;
  font-weight: 850;
  color: var(--green);
  line-height: 1;
  letter-spacing: -0.03em;
}
.brand-card-logo span {
  display: block;
  font-size: 0.6em;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--gold);
  margin-top: 3px;
}
.brand-card-badge {
  padding: 5px 12px;
  background: var(--green-3);
  color: var(--green);
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 750;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.brand-feature-list {
  list-style: none;
  padding: 0;
  margin: 20px 0 28px;
  display: grid;
  gap: 12px;
}
.brand-feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.94rem;
  line-height: 1.45;
  color: var(--ink);
}
.brand-feature-list li svg {
  flex: 0 0 18px;
  margin-top: 3px;
  color: var(--gold);
}
.brand-models-box {
  background: var(--paper);
  padding: 16px 20px;
  border-radius: var(--radius);
  margin-bottom: 28px;
  font-size: 0.88rem;
}
.brand-models-box strong {
  display: block;
  margin-bottom: 6px;
  color: var(--green);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* System Types Showcase */
.system-types-list {
  display: grid;
  gap: 36px;
}
.system-type-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.25fr);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}
.system-type-card.reverse {
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
}
.system-type-card.reverse .system-type-media {
  order: 2;
}
.system-type-card.reverse .system-type-body {
  order: 1;
}
.system-type-media {
  position: relative;
  min-height: 320px;
  background: #f0f2f0;
}
.system-type-media.kanaal-dual-media {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
  background: #cbd5e1;
}
.kanaal-media-pane {
  position: relative;
  height: 100%;
  min-height: 280px;
  overflow: hidden;
}
.kanaal-media-pane img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.kanaal-pane-tag {
  position: absolute;
  bottom: 12px;
  left: 8px;
  right: 8px;
  background: rgba(14, 38, 30, 0.88);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 600;
  line-height: 1.35;
  padding: 6px 8px;
  border-radius: 6px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  pointer-events: none;
}
@media (max-width: 640px) {
  .kanaal-pane-tag {
    font-size: 0.64rem;
    padding: 4px 6px;
    bottom: 8px;
    left: 4px;
    right: 4px;
  }
}
.system-type-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.system-type-body {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.system-type-badge {
  display: inline-block;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 8px;
}
.system-type-body h3 {
  font-size: clamp(1.4rem, 2.2vw, 1.85rem);
  margin-bottom: 14px;
  color: var(--green);
}
.system-type-body p {
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.6;
  margin-bottom: 18px;
}
.system-type-specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  padding: 18px 0;
  margin: 0 0 24px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  list-style: none;
}
.system-type-specs li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--ink);
  line-height: 1.35;
}
.system-type-specs li svg {
  flex: 0 0 16px;
  margin-top: 2px;
  color: var(--gold);
}

/* Keuzehulp Scenarios Grid */
.keuzehulp-scenarios-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}
.scenario-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.scenario-card:hover {
  transform: translateY(-2px);
  border-color: var(--gold);
}
.scenario-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--green-3);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.scenario-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--green);
}
.scenario-card h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
  color: var(--green);
}
.scenario-card p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.5;
  margin-bottom: 18px;
}
.scenario-match {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px dashed var(--line);
  font-size: 0.88rem;
}
.scenario-match span {
  display: block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 750;
  color: var(--gold);
  margin-bottom: 2px;
}
.scenario-match strong {
  color: var(--ink);
  font-weight: 750;
}

/* Keuzehulp Comparison Table */
.keuzehulp-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}
.keuzehulp-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 0.92rem;
  min-width: 720px;
}
.keuzehulp-table th {
  background: var(--green);
  color: #fff;
  padding: 16px 20px;
  font-weight: 750;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-bottom: 2px solid var(--gold);
}
.keuzehulp-table td {
  padding: 16px 20px;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  vertical-align: middle;
}
.keuzehulp-table tr:nth-child(even) td {
  background: var(--paper);
}
.keuzehulp-table tr:hover td {
  background: #f0f5f2;
}
.keuzehulp-table .tag {
  display: inline-block;
  padding: 4px 8px;
  background: var(--green-3);
  color: var(--green);
  border-radius: 4px;
  font-size: 0.78rem;
  font-weight: 750;
}

/* Systeemopbouw Section */
.systeemopbouw-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 36px;
}
.systeemopbouw-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px 30px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.systeemopbouw-card:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
}
.systeemopbouw-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}
.systeemopbouw-card h3 {
  font-size: 1.35rem;
  color: var(--green);
  margin-bottom: 14px;
}
.systeemopbouw-card p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 20px;
}
.systeemopbouw-note {
  margin-top: auto;
  padding: 16px 18px;
  background: var(--paper);
  border-radius: var(--radius);
  font-size: 0.88rem;
  color: var(--ink);
  line-height: 1.5;
  border-left: 3px solid var(--gold);
}

/* Vermogen & Dimensionering */
.vermogen-box {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 44px;
  margin-top: 48px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}
.vermogen-box h3 {
  font-size: 1.35rem;
  color: var(--green);
  margin-bottom: 12px;
}
.vermogen-box p {
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.6;
  max-width: 860px;
}
.vermogen-factors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 28px;
}
.vermogen-factor-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: var(--paper);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  font-size: 0.92rem;
  font-weight: 650;
  color: var(--ink);
}
.vermogen-factor-item svg {
  color: var(--gold);
  flex: 0 0 18px;
}

/* KW Installatie Verschil Grid (4 kolommen) */
.installatie-verschil-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 36px;
}
.installatie-verschil-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
}
.installatie-verschil-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--green-3);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.installatie-verschil-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--green);
}
.installatie-verschil-card h3 {
  font-size: 1.15rem;
  color: var(--green);
  margin-bottom: 10px;
}
.installatie-verschil-card p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.55;
  margin: 0;
}

@media (max-width: 900px) {
  .brand-comparison-grid { grid-template-columns: 1fr; gap: 24px; }
  .system-type-card,
  .system-type-card.reverse { grid-template-columns: 1fr; }
  .system-type-card.reverse .system-type-media { order: 1; }
  .system-type-card.reverse .system-type-body { order: 2; }
  .system-type-media { min-height: 240px; }
  .system-type-body { padding: 28px 20px; }
  .system-type-specs { grid-template-columns: 1fr; gap: 10px; }
  .keuzehulp-scenarios-grid { grid-template-columns: 1fr; gap: 18px; }
  .brand-feature-card { padding: 28px 20px; }
  .systeemopbouw-grid { grid-template-columns: 1fr; gap: 20px; }
  .installatie-verschil-grid { grid-template-columns: 1fr; gap: 16px; }
  .vermogen-box { padding: 28px 20px; }
  .vermogen-factors-grid { grid-template-columns: 1fr; gap: 12px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; animation: none !important; }
}

/* Mobiele Sticky Conversiebalk */
.mobile-sticky-bar {
  display: none;
}

@media (max-width: 768px) {
  .mobile-sticky-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    display: flex;
    gap: 10px;
    padding: 10px 14px;
    padding-bottom: max(10px, env(safe-area-inset-bottom, 10px));
    background: rgba(14, 38, 30, 0.94);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid rgba(212, 175, 55, 0.35);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.28);
  }

  body {
    padding-bottom: 68px;
  }

  .mobile-sticky-btn {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 11px 12px;
    border-radius: 8px;
    font-size: 0.88rem;
    font-weight: 750;
    text-decoration: none;
    line-height: 1;
    transition: transform 0.15s ease, opacity 0.15s ease;
  }

  .mobile-sticky-btn:active {
    transform: scale(0.98);
  }

  .mobile-sticky-call {
    background: rgba(255, 255, 255, 0.14);
    color: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.22);
  }

  .mobile-sticky-quote {
    background: linear-gradient(135deg, var(--gold) 0%, #b8860b 100%);
    color: #0b1e17 !important;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 2px 10px rgba(212, 175, 55, 0.35);
  }
}

/* Breadcrumbs Bar */
.breadcrumbs-wrap {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  padding: 10px 0;
  font-size: 0.85rem;
}
.kw-breadcrumbs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--muted);
}
.kw-breadcrumbs a {
  color: var(--green);
  text-decoration: none;
  font-weight: 500;
  transition: color var(--transition);
}
.kw-breadcrumbs a:hover {
  color: var(--gold);
  text-decoration: underline;
}
.kw-breadcrumbs .breadcrumb_last {
  color: var(--muted);
  font-weight: 400;
}

/* Kennisbank / Blog Cards */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 28px;
  margin-top: 24px;
}
.blog-card {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.blog-card-media {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--paper);
}
.blog-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.blog-card:hover .blog-card-media img {
  transform: scale(1.03);
}
.blog-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 10px;
}
.blog-card-title,
.blog-card .wp-block-post-title {
  font-size: 1.15rem !important;
  line-height: 1.35 !important;
  font-weight: 750 !important;
  color: var(--green) !important;
  margin-bottom: 12px !important;
  hyphens: manual;
  word-break: normal;
}
.blog-card-title a,
.blog-card .wp-block-post-title a {
  color: inherit !important;
  text-decoration: none;
}
.blog-card-title a:hover,
.blog-card .wp-block-post-title a:hover {
  color: var(--gold) !important;
}
.blog-card-excerpt {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}
.blog-card-link {
  font-size: 0.9rem;
  font-weight: 750;
  color: var(--green);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
}
.blog-card-link:hover {
  color: var(--gold);
}

/* Brand Comparison Table & Insights */
.brand-comparison-table-wrap {
  overflow-x: auto;
  margin: 36px 0 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: var(--shadow-sm);
}
.brand-comparison-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 0.92rem;
  min-width: 680px;
}
.brand-comparison-table th {
  background: var(--paper);
  color: var(--green);
  padding: 16px 18px;
  font-weight: 750;
  border-bottom: 2px solid var(--line);
  white-space: nowrap;
}
.brand-comparison-table td {
  padding: 14px 18px;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  vertical-align: middle;
}
.brand-comparison-table tr:last-child td {
  border-bottom: none;
}
.brand-comparison-table tr:hover td {
  background: rgba(8, 45, 36, 0.02);
}
.brand-table-highlight {
  background: rgba(212, 175, 55, 0.06) !important;
  font-weight: 600;
}
.brand-badge-pill {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 750;
  padding: 3px 8px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.brand-badge-gold {
  background: #fff6e0;
  color: #946c00;
  border: 1px solid rgba(212, 175, 55, 0.35);
}
.brand-badge-green {
  background: #e8f4f0;
  color: var(--green-2);
  border: 1px solid rgba(8, 45, 36, 0.2);
}
.brand-badge-gray {
  background: #f1f3f4;
  color: #5f6368;
}

.brand-insights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 20px;
  margin-top: 32px;
}
.brand-insight-card {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}
.brand-insight-card h4 {
  font-size: 1.15rem;
  color: var(--green);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand-insight-card p {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.6;
  margin-bottom: 12px;
}
.brand-pros-cons {
  font-size: 0.88rem;
  line-height: 1.55;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}
.brand-pros-cons strong {
  display: block;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}
.brand-pro {
  color: #1b6c3d;
  margin-bottom: 8px;
}
.brand-con {
  color: #a33b20;
}

/* Editorial & Knowledge Base Enhancements */
.article-intro-card {
  background: rgba(8, 45, 36, 0.03);
  border: 1px solid rgba(8, 45, 36, 0.1);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
  padding: 22px 26px;
  margin: 28px 0 36px;
}
.article-intro-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--green);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 750;
  padding: 3px 10px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}
.article-intro-card p {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.65;
  color: var(--ink);
}
.article-intro-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid rgba(8, 45, 36, 0.08);
  font-size: 0.84rem;
  color: var(--muted);
}
.article-intro-meta span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.article-toc {
  background: #fbfaf8;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 28px;
  margin: 36px 0;
}
.article-toc-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--green);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.article-toc ol {
  margin: 0;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.92rem;
}
.article-toc a {
  color: var(--green-2);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.15s ease;
}
.article-toc a:hover {
  color: var(--gold-2);
  text-decoration: underline;
}

.brand-deepdive-card {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  margin: 40px 0;
  box-shadow: 0 4px 20px rgba(8, 45, 36, 0.04);
}
.brand-deepdive-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}
.brand-deepdive-header h3 {
  margin: 0;
  font-size: 1.45rem;
  color: var(--green);
}
.brand-quick-specs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
  background: #f9fbfb;
  border: 1px solid rgba(8, 45, 36, 0.07);
  border-radius: 6px;
  padding: 16px;
  margin: 18px 0 22px;
  font-size: 0.86rem;
}
.brand-quick-spec-item strong {
  display: block;
  font-size: 0.76rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 2px;
}
.brand-quick-spec-item span {
  font-weight: 700;
  color: var(--green);
}

.brand-verdict-box {
  background: #f4f8f6;
  border-left: 4px solid var(--green);
  border-radius: 0 6px 6px 0;
  padding: 18px 22px;
  margin: 22px 0 0;
}
.brand-verdict-box strong {
  display: block;
  font-size: 0.95rem;
  color: var(--green);
  margin-bottom: 4px;
}
.brand-verdict-box p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--ink);
}

.article-multi-quote-box {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.08) 0%, rgba(8, 45, 36, 0.03) 100%);
  border: 2px solid rgba(212, 175, 55, 0.4);
  border-radius: var(--radius);
  padding: 30px;
  margin: 44px 0;
}
.article-multi-quote-box h3 {
  margin-top: 0;
  margin-bottom: 12px;
  color: var(--green);
  font-size: 1.35rem;
}

.article-disclaimer-box {
  background: #f8f9fa;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  padding: 20px 24px;
  margin-top: 48px;
  font-size: 0.85rem;
  line-height: 1.6;
  color: #64748b;
}
.article-disclaimer-box strong {
  display: block;
  color: var(--ink);
  margin-bottom: 6px;
  font-size: 0.9rem;
}

/* ==========================================================================
   Interactive Airco Keuzehulp & Vermogenscalculator
   ========================================================================== */
.kw-calc-wrapper {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 36px rgba(8, 45, 36, 0.06);
  padding: 36px;
  margin: 40px 0 24px;
}
.kw-calc-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 36px;
}
.kw-calc-header h3 {
  font-size: clamp(1.4rem, 2.2vw, 1.85rem);
  color: var(--green);
  margin-bottom: 10px;
}
.kw-calc-header p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.55;
  margin: 0;
}
.kw-calc-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
  gap: 36px;
  align-items: start;
}
@media (max-width: 900px) {
  .kw-calc-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .kw-calc-wrapper {
    padding: 24px 18px;
  }
}

.calc-step {
  margin-bottom: 30px;
}
.calc-step:last-child {
  margin-bottom: 0;
}
.calc-step-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--green);
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.calc-step-number {
  width: 26px;
  height: 26px;
  background: var(--gold);
  color: #ffffff;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  font-weight: 850;
}
.calc-pill-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 10px;
}
.calc-choice-btn {
  background: #fbfaf8;
  border: 1.5px solid var(--line);
  border-radius: 8px;
  padding: 12px 14px;
  text-align: left;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: inherit;
  display: flex;
  flex-direction: column;
  gap: 3px;
  color: var(--ink);
}
.calc-choice-btn:hover {
  border-color: var(--gold);
  background: #ffffff;
  transform: translateY(-1px);
}
.calc-choice-btn.active {
  background: #fffdf7;
  border-color: var(--gold);
  box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.25);
}
.calc-choice-btn strong {
  font-size: 0.9rem;
  color: var(--green);
  display: flex;
  align-items: center;
  gap: 6px;
}
.calc-choice-btn small {
  font-size: 0.76rem;
  color: var(--muted);
  line-height: 1.3;
}

/* Slider */
.calc-slider-wrap {
  background: #fbfaf8;
  border: 1.5px solid var(--line);
  border-radius: 8px;
  padding: 18px 20px;
}
.calc-slider-top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 12px;
}
.calc-slider-val {
  font-size: 1.5rem;
  font-weight: 850;
  color: var(--green);
}
.calc-slider-val span {
  font-size: 0.9rem;
  color: var(--muted);
  font-weight: 500;
}
.calc-range-input {
  width: 100%;
  accent-color: var(--gold);
  cursor: pointer;
  height: 6px;
  border-radius: 3px;
}
.calc-slider-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.74rem;
  color: var(--muted);
  margin-top: 6px;
}

/* Result Panel */
.calc-result-panel {
  background: linear-gradient(180deg, #f7faf8 0%, #ffffff 100%);
  border: 2px solid var(--gold);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 90px;
}
.calc-result-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--green);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 750;
  padding: 3px 10px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}
.calc-result-kw-box {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}
.calc-kw-number {
  font-size: clamp(2.2rem, 3.2vw, 2.8rem);
  font-weight: 900;
  color: var(--green);
  line-height: 1;
}
.calc-kw-detail {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.35;
}
.calc-recommendation-card {
  background: #ffffff;
  border: 1px solid rgba(8, 45, 36, 0.1);
  border-radius: 8px;
  padding: 18px;
  margin-bottom: 18px;
}
.calc-rec-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 10px;
}
@media (max-width: 480px) {
  .calc-rec-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
  .calc-rec-price {
    text-align: left;
  }
}
.calc-rec-brand {
  font-size: 1.15rem;
  font-weight: 850;
  color: var(--green);
}
.calc-rec-price {
  font-size: 1.25rem;
  font-weight: 900;
  color: #946c00;
  text-align: right;
  line-height: 1.1;
}
.calc-rec-price small {
  display: block;
  font-size: 0.72rem;
  color: var(--muted);
  font-weight: 500;
}
.calc-rec-desc {
  font-size: 0.88rem;
  line-height: 1.5;
  color: var(--ink);
  margin: 0;
}
.calc-alt-card {
  font-size: 0.82rem;
  background: #fbfaf8;
  border: 1px dashed var(--line);
  border-radius: 6px;
  padding: 12px 14px;
  color: var(--muted);
  margin-bottom: 20px;
  line-height: 1.45;
}
.calc-alt-card strong {
  color: var(--green);
}
.calc-includes-list {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 7px;
  font-size: 0.82rem;
  color: var(--ink);
}
.calc-includes-list li {
  display: flex;
  align-items: center;
  gap: 8px;
}
.calc-includes-list svg {
  color: #1b6c3d;
  flex-shrink: 0;
}
.calc-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 15px 20px;
  background: var(--gold);
  color: #ffffff !important;
  font-size: 0.95rem;
  font-weight: 800;
  border-radius: 6px;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(212, 175, 55, 0.35);
  transition: all 0.2s ease;
  border: none;
  cursor: pointer;
}
.calc-cta-btn:hover {
  background: var(--gold-2);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(212, 175, 55, 0.45);
}

/* Standaard Montage Inclusief Box */
.standaard-montage-box {
  background: #f4f8f6;
  border: 1.5px solid rgba(8, 45, 36, 0.15);
  border-radius: var(--radius);
  padding: 28px 32px;
  margin: 36px 0;
}
.standaard-montage-box h4 {
  margin-top: 0;
  margin-bottom: 12px;
  color: var(--green);
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  gap: 8px;
}
.standaard-montage-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  margin-top: 20px;
}
.montage-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  line-height: 1.5;
  color: var(--ink);
}
.montage-item svg {
  color: #1b6c3d;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ==========================================================================
   Refreshed Keuzehulp & Producten Beslisroute (V2.0)
   ========================================================================== */

/* Hero Situation Cards */
.hero-situation-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 36px;
}
.hero-situation-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  padding: 24px 28px;
  color: #ffffff;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 20px;
  transition: all 0.25s ease;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.hero-situation-card:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--gold);
  transform: translateY(-2px);
  color: #ffffff;
}
.hero-situation-icon {
  width: 54px;
  height: 54px;
  border-radius: 12px;
  background: rgba(212, 175, 55, 0.18);
  border: 1px solid rgba(212, 175, 55, 0.35);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hero-situation-content h3 {
  color: #ffffff;
  font-size: 1.25rem;
  margin: 0 0 6px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero-situation-content p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
  margin: 0;
  line-height: 1.45;
}
.hero-situation-arrow {
  margin-left: auto;
  color: var(--gold);
  font-size: 1.2rem;
  transition: transform 0.2s ease;
}
.hero-situation-card:hover .hero-situation-arrow {
  transform: translateX(4px);
}

/* Quick situation tags in Hero */
.hero-situation-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
  align-items: center;
}
.hero-pills-label {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-right: 4px;
}
.hero-pill-link {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 30px;
  color: #ffffff;
  padding: 6px 14px;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
}
.hero-pill-link:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #082d24;
}

/* Compact Unit Type Cards Grid */
.unit-types-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  margin-top: 36px;
}
.unit-card-compact {
  background: #ffffff;
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(8, 45, 36, 0.04);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.unit-card-compact:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(8, 45, 36, 0.08);
  border-color: rgba(212, 175, 55, 0.5);
}
.unit-card-media {
  position: relative;
  height: 200px;
  background: #f0f2f0;
  overflow: hidden;
}
.unit-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.unit-card-compact:hover .unit-card-media img {
  transform: scale(1.04);
}
.unit-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.unit-card-badge {
  display: inline-block;
  align-self: flex-start;
  background: var(--paper);
  color: var(--green);
  font-size: 0.76rem;
  font-weight: 750;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 10px;
}
.unit-card-badge.gold {
  background: rgba(212, 175, 55, 0.15);
  color: #9c731e;
}
.unit-card-title {
  margin: 0 0 6px 0;
  font-size: 1.25rem;
  color: var(--green);
}
.unit-card-tagline {
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.unit-card-desc {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
  margin-bottom: 20px;
  flex-grow: 1;
}
.unit-card-footer {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

/* Split Systems Grid */
.split-systems-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 36px;
}
.split-system-card {
  background: #ffffff;
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.25s ease;
}
.split-system-card.featured {
  border: 2px solid var(--gold);
  box-shadow: 0 8px 24px rgba(212, 175, 55, 0.12);
}
.split-system-card.business {
  background: linear-gradient(180deg, #ffffff 0%, #fafcfb 100%);
  border: 1.5px solid #082d24;
}
.split-system-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(8, 45, 36, 0.05);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.split-system-card.featured .split-system-icon {
  background: rgba(212, 175, 55, 0.15);
  color: var(--gold);
}
.split-system-card.business .split-system-icon {
  background: rgba(8, 45, 36, 0.1);
  color: var(--green);
}
.split-system-badge {
  font-size: 0.78rem;
  font-weight: 750;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gold);
  margin-bottom: 8px;
}
.split-system-card h3 {
  font-size: 1.35rem;
  color: var(--green);
  margin: 0 0 12px 0;
}
.split-system-card p {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.6;
  margin-bottom: 18px;
  flex-grow: 1;
}

/* Practical Ruimte Keuzehulp Table */
.ruimte-advies-box {
  background: #ffffff;
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(8, 45, 36, 0.04);
  margin-top: 32px;
}
.ruimte-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}
.ruimte-table th {
  background: var(--paper);
  padding: 16px 20px;
  font-size: 0.85rem;
  font-weight: 750;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-bottom: 1px solid var(--line);
}
.ruimte-table td {
  padding: 16px 20px;
  font-size: 0.92rem;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  vertical-align: middle;
}
.ruimte-table tr:last-child td {
  border-bottom: none;
}
.ruimte-table tr:hover td {
  background: rgba(8, 45, 36, 0.02);
}
.ruimte-name {
  font-weight: 750;
  color: var(--green);
  display: flex;
  align-items: center;
  gap: 10px;
}
.ruimte-badge {
  display: inline-block;
  padding: 3px 8px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 700;
  background: var(--paper);
  color: var(--muted);
}
.ruimte-advies-cta {
  background: linear-gradient(135deg, rgba(8, 45, 36, 0.04) 0%, rgba(212, 175, 55, 0.08) 100%);
  border-top: 1.5px solid var(--line);
  padding: 28px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

/* Configurator Promo Card */
.configurator-promo-box {
  background: linear-gradient(135deg, #082d24 0%, #0d4235 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 36px 40px;
  color: #ffffff;
  margin-top: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  box-shadow: 0 8px 30px rgba(8, 45, 36, 0.15);
  flex-wrap: wrap;
}
.configurator-promo-left {
  max-width: 620px;
}
.configurator-promo-left h3 {
  color: #ffffff;
  font-size: 1.5rem;
  margin: 0 0 10px 0;
}
.configurator-promo-steps {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin: 14px 0 12px;
  color: var(--gold);
  font-size: 0.92rem;
  font-weight: 700;
}
.configurator-promo-step-arrow {
  color: rgba(255, 255, 255, 0.4);
}

/* Flagship Installation Section */
.installatie-flagship-wrap {
  margin-top: 36px;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.3fr);
  gap: 40px;
  align-items: center;
}
.installatie-flagship-media {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(8, 45, 36, 0.1);
  border: 1px solid var(--line);
}
.installatie-flagship-media img {
  width: 100%;
  height: 100%;
  max-height: 480px;
  object-fit: cover;
  display: block;
}
.installatie-flagship-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: rgba(8, 45, 36, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  padding: 14px 18px;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 12px;
}
.installatie-flagship-list {
  display: grid;
  gap: 20px;
}
.installatie-usp-card {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 20px 22px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  box-shadow: 0 2px 10px rgba(8, 45, 36, 0.03);
  transition: all 0.2s ease;
}
.installatie-usp-card:hover {
  border-color: var(--gold);
  transform: translateX(4px);
}
.installatie-usp-icon {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: rgba(212, 175, 55, 0.12);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.installatie-usp-content h4 {
  margin: 0 0 4px 0;
  font-size: 1.05rem;
  color: var(--green);
}
.installatie-usp-content p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.5;
}

@media (max-width: 900px) {
  .hero-situation-grid {
    grid-template-columns: 1fr;
  }
  .installatie-flagship-wrap {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .ruimte-table th, .ruimte-table td {
    padding: 12px 14px;
    font-size: 0.84rem;
  }
  .configurator-promo-box {
    padding: 28px 24px;
  }
}

/* ==========================================================================
   Micro-interactions & Luxury Details
   ========================================================================== */

/* Button arrow micro-slide on hover */
.button span[aria-hidden="true"],
.button-gold span[aria-hidden="true"],
.button-green span[aria-hidden="true"],
.button-outline span[aria-hidden="true"],
.button-outline-dark span[aria-hidden="true"] {
  display: inline-block;
  transition: transform .25s cubic-bezier(0.16, 1, 0.3, 1);
}
.button:hover span[aria-hidden="true"],
.button-gold:hover span[aria-hidden="true"],
.button-green:hover span[aria-hidden="true"],
.button-outline:hover span[aria-hidden="true"],
.button-outline-dark:hover span[aria-hidden="true"] {
  transform: translateX(4px);
}

/* Project card refined hover lift & image zoom */
.project-card {
  transition: transform .35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow .35s cubic-bezier(0.16, 1, 0.3, 1), border-color .35s ease;
}
.project-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 40px -10px rgba(3, 27, 20, 0.12), 0 4px 12px rgba(0, 0, 0, 0.04);
}
.project-card-media {
  overflow: hidden;
}
.project-card-media img {
  transition: transform .55s cubic-bezier(0.16, 1, 0.3, 1);
}
.project-card:hover .project-card-media img {
  transform: scale(1.045);
}

/* Scroll Reveal animations */
@media (prefers-reduced-motion: no-preference) {
  .reveal-item {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .65s cubic-bezier(0.16, 1, 0.3, 1), transform .65s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
  }
  .reveal-item.is-revealed {
    opacity: 1;
    transform: translateY(0);
  }
}

