/* ─── Reset & Base ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --clr-primary: #1a6fff;
  --clr-primary-dark: #0f52d9;
  --clr-text: #111318;
  --clr-text-light: #fff;
  --nav-height: 72px;
  --font: 'Plus Jakarta Sans', system-ui, sans-serif;
  --font-title: 'Outfit', system-ui, sans-serif;
}

html { font-family: var(--font); color: var(--clr-text); }

/* Sub-pages without a hero need top space for the fixed nav */
body.page-subpage { padding-top: var(--nav-height); background: #fff; }

/* Sub-pages with a light-colored hero: hero goes behind the nav (like homepage)
   but the transparent nav must use dark text instead of white. */
body.page-light-hero .product-hero { padding-top: calc(72px + var(--nav-height)); }
body.page-light-hero .site-header.transparent .nav-logo-img { filter: none; }
body.page-light-hero .site-header.transparent .nav-links a,
body.page-light-hero .site-header.transparent .nav-secondary a { color: var(--clr-text); }
body.page-light-hero .site-header.transparent .nav-links a:hover,
body.page-light-hero .site-header.transparent .nav-secondary a:hover { color: var(--clr-primary); }
body.page-light-hero .site-header.transparent .nav-secondary li + li::before { background: rgba(0,0,0,0.2); }
body.page-light-hero .site-header.transparent .nav-burger span { background: var(--clr-text); }

/* ─── Header / Nav ─── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  transition: background 0.3s ease, box-shadow 0.3s ease, backdrop-filter 0.3s ease;
}

/* Transparent on top of hero */
.site-header.transparent {
  background: transparent;
  backdrop-filter: none;
  box-shadow: none;
}

/* Solid when scrolled */
.site-header.scrolled {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(0,0,0,0.08);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  position: relative;
}

/* Logo */
.nav-logo {
  text-decoration: none;
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.nav-logo-img {
  height: 36px;
  width: auto;
  filter: brightness(0) invert(1);
  transition: filter 0.3s;
}
.site-header.scrolled .nav-logo-img { filter: none; }

/* Links */
.nav-links {
  list-style: none;
  display: flex;
  gap: 36px;
  margin-left: 48px;
}

.nav-links a {
  font-family: var(--font-title);
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 400;
  color: rgba(255,255,255,0.88);
  text-decoration: none;
  transition: color 0.2s;
  white-space: nowrap;
}
.nav-links a:hover { color: #fff; }

.site-header.scrolled .nav-links a { color: var(--clr-text); }
.site-header.scrolled .nav-links a:hover { color: var(--clr-primary); }

/* Secondary nav (right) */
.nav-secondary {
  list-style: none;
  display: flex;
  align-items: center;
  margin-left: auto;
}

.nav-secondary li {
  padding: 0 22px;
  position: relative;
}
.nav-secondary li + li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 18px;
  background: rgba(255,255,255,0.4);
}
.site-header.scrolled .nav-secondary li + li::before { background: rgba(0,0,0,0.2); }
.nav-secondary li:last-child { padding-right: 0; }

.nav-secondary a {
  font-family: var(--font-title);
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 400;
  color: rgba(255,255,255,0.88);
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s;
}
.nav-secondary a:hover { color: #fff; }
.site-header.scrolled .nav-secondary a { color: var(--clr-text); }
.site-header.scrolled .nav-secondary a:hover { color: var(--clr-primary); }

/* Burger (mobile) */
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.nav-burger span {
  display: block;
  width: 24px;
  height: 2px;
  border-radius: 2px;
  background: #fff;
  transition: background 0.3s;
}
.site-header.scrolled .nav-burger span { background: var(--clr-text); }

/* ─── Hero ─── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  background-image: url('assets/images/homepage-header.webp');
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  border-bottom-left-radius: 32px;
  border-bottom-right-radius: 32px;
  overflow: hidden;
}

/* Dark overlay for legibility */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.42) 0%,
    rgba(0, 0, 0, 0.18) 60%,
    rgba(0, 0, 0, 0.05) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: calc(var(--nav-height) + 48px) 24px 80px;
}

.hero-content h1 {
  font-family: var(--font-title);
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 20px;
  max-width: 50%;
}

.hero-content p {
  font-family: var(--font);
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.85);
  max-width: 50%;
  margin-bottom: 36px;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-title);
  font-size: 1rem;
  font-weight: 400;
  padding: 16px 36px;
  border-radius: 100px;
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: transform 0.15s, background 0.2s, border-color 0.2s;
}
.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: #4f6d87;
  color: #fff;
  box-shadow: 0 2px 10px rgba(79,109,135,0.35);
}
.btn-primary:hover { background: #3d5570; box-shadow: 0 4px 16px rgba(79,109,135,0.45); }

.btn-ghost {
  background: rgba(255,255,255,0.15);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.5);
  backdrop-filter: blur(6px);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.25);
  border-color: rgba(255,255,255,0.8);
}


/* ─── Trustoo Reviews ─── */
.reviews-section {
  background: #fff;
  padding: 72px 24px 44px;
}

.reviews-inner {
  max-width: 1400px;
  margin: 0 auto;
}

.reviews-title {
  font-family: var(--font-title);
  font-size: clamp(2rem, 3.4vw, 3rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  color: #1c1c1c;
  text-align: center;
  line-height: 1.1;
  margin-bottom: 36px;
}

/* Trustoo-widget afgestemd op Clyma-stijl.
   De widget gebruikt CSS Modules: echte klassen heten scss-widget__<naam>. */
.trustoo-review-widget,
.trustoo-review-widget * {
  font-family: var(--font) !important;
}

/* Reviewkaarten, carousel en "provided by trustoo" verbergen — alleen het scoreblok blijft */
.trustoo-review-widget .scss-widget__reviewCarousel,
.trustoo-review-widget .scss-widget__carousel,
.trustoo-review-widget .scss-widget__carouselNav,
.trustoo-review-widget .scss-widget__reviewBlock,
.trustoo-review-widget .scss-widget__next,
.trustoo-review-widget .scss-widget__prev,
.trustoo-review-widget .scss-widget__logoBlock {
  display: none !important;
}

/* De zichtbare kaart (headerContainer) → Clyma-kaartstijl */
.trustoo-review-widget .scss-widget__headerContainer {
  border: none !important;
  border-radius: 24px !important;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06) !important;
  background: #fff !important;
  padding: 26px 0 !important;
}
.trustoo-review-widget .scss-widget__headerContent {
  padding: 0 32px !important;
}

/* Logo-kaartjes (Trustoo/Google) → zonder kader, logo's plat */
.trustoo-review-widget .scss-widget__logoCard {
  border: none !important;
  box-shadow: none !important;
  background: transparent !important;
}

/* Blauw accent → Clyma slate-blue */
.trustoo-review-widget .scss-widget__bulletPoint,
.trustoo-review-widget .scss-widget__readMore,
.trustoo-review-widget .scss-widget__link,
.trustoo-review-widget .scss-widget__additionalSourcesText {
  color: #4f6d87 !important;
}

/* "Beoordeling schrijven"-knop → Clyma pill-knop */
.trustoo-review-widget .scss-widget__reviewButton {
  border-radius: 100px !important;
  border: 1.5px solid #4f6d87 !important;
  color: #4f6d87 !important;
  font-weight: 500 !important;
  padding: 12px 26px !important;
  box-shadow: none !important;
  transition: background 0.2s, color 0.2s !important;
}
.trustoo-review-widget .scss-widget__reviewButton:hover {
  background: #4f6d87 !important;
  color: #fff !important;
}

/* ─── Producten Sectie ─── */
.products-section {
  padding: 28px 48px 120px;
  background: #fff;
}

.products-inner {
  max-width: 1400px;
  margin: 0 auto;
}

.products-title {
  font-family: var(--font-title);
  font-size: 4rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  text-align: center;
  margin-bottom: 40px;
  color: var(--clr-text);
}

/* Product Card */
.product-card.product-card--green { background: #e1f3e7; }
.product-card.product-card--mint { background: #c3e4dd; }

/* Airco kaart — beeld loopt links uit het component */
.product-card--airco .product-card-image {
  padding-left: 0;
  justify-content: flex-end;
  overflow: hidden;
}
.product-card--airco .product-card-image img {
  width: auto;
  height: auto;
  max-width: none;
  max-height: none;
  min-width: 180%;
}
.product-card.product-card--reverse { flex-direction: row-reverse; }
.product-card--reverse .product-card-image { justify-content: center; padding-left: 0; padding-right: 64px; }
.product-card--reverse .product-card-image img { height: 85%; max-width: 85%; }
.product-card--reverse .product-card-content { padding: 72px 64px 72px 10%; }

.product-card {
  background: #f1ece1;
  border-radius: 32px;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  min-height: 713px;
  position: relative;
}

.product-card-image {
  flex: 0 0 35%;
  align-self: stretch;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-left: 64px;
}

.product-card-image img {
  width: auto;
  height: 70%;
  max-width: 70%;
  object-fit: contain;
  display: block;
}

.product-card-content {
  flex: 1;
  padding: 72px 80px 72px 64px;
  display: flex;
  flex-direction: column;
  gap: 0;
  justify-content: center;
}

.product-label {
  font-family: var(--font-title);
  font-size: 1.8rem;
  font-weight: 200;
  color: #555555;
  letter-spacing: 0;
  margin-bottom: 16px;
}

.product-name {
  font-family: var(--font-title);
  font-size: clamp(2rem, 3.2vw, 3.4rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: #1c1c1c;
  max-width: 100%;
  margin-bottom: 20px;
}

.product-sub {
  font-family: var(--font);
  font-size: 1.6rem;
  font-weight: 200;
  color: #555555;
  line-height: 1.65;
  max-width: 100%;
  margin-bottom: 36px;
}

.product-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.btn-product-primary {
  background: #4f6d87;
  color: #fff;
  font-family: var(--font-title);
  font-size: 1rem;
  font-weight: 400;
  padding: 16px 36px;
  border-radius: 100px;
  text-decoration: none;
  letter-spacing: 0.01em;
  box-shadow: 0 4px 20px rgba(79,109,135,0.45);
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}
.btn-product-primary:hover { background: #3d5570; transform: translateY(-2px); box-shadow: 0 8px 28px rgba(79,109,135,0.55); }

.btn-product-ghost {
  background: transparent;
  color: var(--clr-text);
  font-family: var(--font-title);
  font-size: 1rem;
  font-weight: 400;
  padding: 16px 36px;
  border-radius: 100px;
  border: 1.5px solid rgba(0,0,0,0.2);
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: background 0.2s, border-color 0.2s, transform 0.15s;
}
.btn-product-ghost:hover { border-color: rgba(0,0,0,0.5); transform: translateY(-2px); }

/* Stats */
.product-stats {
  display: flex;
  align-items: center;
  gap: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(0,0,0,0.1);
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.stat-label {
  font-family: var(--font);
  font-size: 1rem;
  color: #555555;
  font-weight: 200;
  letter-spacing: 0;
}

.stat-value {
  font-family: var(--font);
  font-size: 1.25rem;
  font-weight: 200;
  color: #555555;
}

.stat-divider {
  width: 1px;
  height: 44px;
  background: rgba(0,0,0,0.12);
  flex-shrink: 0;
}

/* ─── Installateur Sectie ─── */
.installer-section {
  position: relative;
  width: 100%;
  background: #fff;
}

.installer-image {
  width: 100%;
  aspect-ratio: 6870 / 2458;
  overflow: hidden;
}

.installer-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.installer-content {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  padding: 80px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.installer-title {
  font-family: var(--font-title);
  font-size: clamp(2rem, 3.4vw, 3.4rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.08;
  color: #fff;
  margin-bottom: 20px;
}

.installer-sub {
  font-family: var(--font);
  font-size: 1.6rem;
  font-weight: 200;
  color: #fff;
  line-height: 1.5;
  max-width: 520px;
}

.info-cards {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 760px;
}

.info-card {
  display: block;
  width: 100%;
  margin-top: 0;
  padding: 28px 36px;
  border-radius: 24px;
  background: rgba(20, 20, 20, 0.45);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.12);
  max-width: 760px;
  text-align: left;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.2s, border-color 0.2s;
}
.info-card:hover { background: rgba(20, 20, 20, 0.55); border-color: rgba(255,255,255,0.2); }

.info-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.info-card-title {
  font-family: var(--font-title);
  font-size: 1.2rem;
  font-weight: 300;
  letter-spacing: -0.01em;
  line-height: 1.25;
  color: #fff;
}

.info-card-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.35s ease, background 0.2s;
  position: relative;
}
.info-card-icon::before,
.info-card-icon::after {
  content: '';
  position: absolute;
  background: #fff;
  border-radius: 2px;
}
.info-card-icon::before { width: 14px; height: 1.5px; }
.info-card-icon::after { width: 1.5px; height: 14px; transition: opacity 0.25s ease; }
.info-card[aria-expanded="true"] .info-card-icon { transform: rotate(45deg); background: rgba(255,255,255,0.2); }

.info-card-body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s ease, margin-top 0.4s ease;
  overflow: hidden;
  margin-top: 0;
}
.info-card[aria-expanded="true"] .info-card-body {
  grid-template-rows: 1fr;
  margin-top: 20px;
}

.info-card-sub {
  display: block;
  min-height: 0;
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 300;
  color: rgba(255,255,255,0.85);
  line-height: 1.6;
}

/* ─── Mobile menu ─── */
.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 0;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 24px;
  border-top: 1px solid rgba(0,0,0,0.06);
}

.mobile-menu.open { display: flex; }

.mobile-links {
  list-style: none;
  display: flex;
  flex-direction: column;
}

.mobile-links li a {
  font-family: var(--font-title);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--clr-text);
  text-decoration: none;
  display: block;
  padding: 14px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: color 0.2s;
}
.mobile-links li:last-child a { border-bottom: none; }
.mobile-links li a:hover { color: #4f6d87; }

.mobile-cta {
  font-family: var(--font-title);
  font-size: 1rem;
  font-weight: 400;
  background: #4f6d87;
  color: #fff;
  text-decoration: none;
  padding: 14px 24px;
  border-radius: 100px;
  text-align: center;
  margin-top: 20px;
}

/* ─── Get to Know Clyma sectie ─── */
.getknow-section {
  background: #fff;
  padding: 100px 0 120px;
}

.getknow-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

.getknow-title {
  font-family: var(--font-title);
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  color: #1c1c1c;
  text-align: center;
  margin-bottom: 56px;
  line-height: 1.1;
}

.getknow-grid {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  -webkit-overflow-scrolling: touch;
  padding: 8px 24px;
  scroll-padding-left: 25vw;
}
.getknow-grid::-webkit-scrollbar { display: none; }

.getknow-spacer {
  flex: 0 0 25vw;
  width: 25vw;
  pointer-events: none;
}

.getknow-card {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  background: #1a1a1a;
  flex: 0 0 clamp(330px, 26vw, 460px);
  width: clamp(330px, 26vw, 460px);
  aspect-ratio: 372 / 680;
  isolation: isolate;
  scroll-snap-align: start;
  box-shadow: 0 10px 36px rgba(0,0,0,0.10);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s;
}
.getknow-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.getknow-footer { margin-top: 28px; }

.getknow-nav {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.getknow-arrow {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(0,0,0,0.06);
  border: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, opacity 0.2s;
  padding: 0;
}
.getknow-arrow:hover:not([disabled]) { background: rgba(0,0,0,0.12); }
.getknow-arrow[disabled] { opacity: 0.35; cursor: default; }

.getknow-arrow::before {
  content: '';
  display: block;
  width: 9px;
  height: 9px;
  border-right: 1.8px solid #1c1c1c;
  border-bottom: 1.8px solid #1c1c1c;
}
.getknow-arrow--prev::before { transform: rotate(135deg); margin-left: 3px; }
.getknow-arrow--next::before { transform: rotate(-45deg); margin-right: 3px; }

.getknow-card-trigger {
  appearance: none;
  border: 0;
  margin: 0;
  padding: 0;
  background: transparent;
  width: 100%;
  height: 100%;
  cursor: pointer;
  position: relative;
  display: block;
  text-align: left;
}

.getknow-card-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.getknow-card-trigger:hover .getknow-card-image { transform: scale(1.04); }

.getknow-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.25) 35%, rgba(0,0,0,0) 60%);
  pointer-events: none;
}

.getknow-card-front {
  position: absolute;
  top: 32px;
  left: 32px;
  right: 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: #fff;
}

.getknow-card-tag {
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 500;
  color: #fff;
  letter-spacing: 0;
  line-height: 1.2;
}

.getknow-card-name {
  font-family: var(--font-title);
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #fff;
}

.getknow-card-plus {
  position: absolute;
  right: 22px;
  bottom: 22px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.2s;
}
.getknow-card-plus::before,
.getknow-card-plus::after {
  content: '';
  position: absolute;
  background: #1c1c1c;
  border-radius: 1px;
}
.getknow-card-plus::before { width: 14px; height: 1.8px; }
.getknow-card-plus::after { width: 1.8px; height: 14px; }
.getknow-card-trigger:hover .getknow-card-plus { transform: scale(1.08); background: #fff; }

/* ─── Modal ─── */
.getknow-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 32px;
}
.getknow-modal.open { display: flex; }

.getknow-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20,20,20,0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  animation: getknowFade 0.3s ease;
}

.getknow-modal-dialog {
  position: relative;
  width: 100%;
  max-width: 980px;
  max-height: calc(100vh - 64px);
  background: #fff;
  border-radius: 28px;
  padding: 48px 56px 56px;
  overflow-y: auto;
  animation: getknowPop 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.getknow-modal-close {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 0;
  background: rgba(0,0,0,0.08);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  z-index: 2;
}
.getknow-modal-close:hover { background: rgba(0,0,0,0.16); }
.getknow-modal-close::before,
.getknow-modal-close::after {
  content: '';
  position: absolute;
  width: 14px;
  height: 1.8px;
  background: #1c1c1c;
  border-radius: 1px;
}
.getknow-modal-close::before { transform: rotate(45deg); }
.getknow-modal-close::after { transform: rotate(-45deg); }

.getknow-modal-head {
  padding: 8px 8px 32px;
}

.getknow-modal-tag {
  display: block;
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 500;
  color: #1c1c1c;
  margin-bottom: 14px;
}

.getknow-modal-title {
  font-family: var(--font-title);
  font-size: clamp(2rem, 3.6vw, 3rem);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.05;
  color: #1c1c1c;
  max-width: 90%;
}

.getknow-modal-body {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.getknow-modal-panel {
  background: #f5f5f7;
  border-radius: 22px;
  padding: 44px 52px;
}

.getknow-modal-panel h3 {
  font-family: var(--font-title);
  font-size: 1.45rem;
  font-weight: 600;
  color: #1c1c1c;
  letter-spacing: -0.01em;
  margin-bottom: 18px;
  line-height: 1.25;
}

.getknow-modal-panel h4 {
  font-family: var(--font-title);
  font-size: 1.18rem;
  font-weight: 600;
  color: #1c1c1c;
  letter-spacing: -0.01em;
  margin-top: 28px;
  margin-bottom: 14px;
  line-height: 1.3;
}

.getknow-modal-panel p {
  font-family: var(--font);
  font-size: 1.05rem;
  font-weight: 400;
  color: #444;
  line-height: 1.6;
  margin-bottom: 14px;
}
.getknow-modal-panel p:last-child { margin-bottom: 0; }
.getknow-modal-panel strong { color: #1c1c1c; font-weight: 600; }

.getknow-modal-panel img {
  display: block;
  width: 100%;
  max-width: 320px;
  height: auto;
  margin: 22px auto 0;
}

.getknow-modal-panel img.getknow-logo {
  max-width: 260px;
  margin: 28px auto 4px;
  mix-blend-mode: multiply;
}

@keyframes getknowFade {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes getknowPop {
  from { opacity: 0; transform: scale(0.96) translateY(12px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

body.modal-open { overflow: hidden; }

/* ─── Product Hero (subpage header) ─── */
.product-hero {
  background: linear-gradient(180deg, #f5eddc 0%, #ede4d3 50%, #e0d6c1 100%);
  padding: 72px 0 96px;
  overflow: hidden;
}
body.page-airco-hero .product-hero {
  background: linear-gradient(180deg, #e2efeb 0%, #c9e2dc 50%, #b3d3c9 100%);
}
body.page-airco-hero .product-hero-sub span { color: #2f5a4c; }

.product-hero-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: minmax(440px, 1fr) 1fr;
  gap: 72px;
  align-items: center;
}

.product-hero-content {
  display: flex;
  flex-direction: column;
}

.product-hero-reviews {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(8px);
  border-radius: 100px;
  padding: 10px 20px;
  font-family: var(--font-title);
  font-size: 0.95rem;
  color: #1c1c1c;
  text-decoration: none;
  margin-bottom: 36px;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}
.product-hero-reviews:hover {
  background: #fff;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}
.product-hero-rating strong { font-weight: 600; }
.product-hero-stars { color: #f5b800; letter-spacing: 2px; font-size: 0.9rem; }
.product-hero-review-count { color: #555; }

.product-hero-title {
  font-family: var(--font-title);
  font-size: clamp(2.4rem, 4.4vw, 4.2rem);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: #1c1c1c;
  margin-bottom: 20px;
  max-width: 540px;
}

.product-hero-sub {
  font-family: var(--font-title);
  font-size: 1.4rem;
  font-weight: 300;
  color: #1c1c1c;
  margin-bottom: 36px;
  line-height: 1.3;
}
.product-hero-sub strong { font-weight: 500; }
.product-hero-sub span { color: #4a5e4a; font-size: 1.05rem; }

.product-hero-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 0 0 40px;
  padding: 0;
}

.product-hero-features li {
  position: relative;
  padding-left: 36px;
  font-family: var(--font);
  font-size: 1.05rem;
  font-weight: 400;
  color: #1c1c1c;
  line-height: 1.45;
}
.product-hero-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 1px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #4f6d87;
}
.product-hero-features li::after {
  content: '';
  position: absolute;
  left: 6px;
  top: 8px;
  width: 10px;
  height: 5px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
}

.product-hero-form {
  background: rgba(255,255,255,0.55);
  -webkit-backdrop-filter: blur(20px) saturate(1.3);
  backdrop-filter: blur(20px) saturate(1.3);
  border: 1px solid rgba(255,255,255,0.55);
  border-radius: 22px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 540px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.7),
              0 18px 40px rgba(20,28,36,0.14);
}

.product-hero-form-row {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 10px;
}

.product-hero-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.product-hero-form label span {
  font-family: var(--font-title);
  font-size: 0.82rem;
  color: #444;
  font-weight: 500;
}

.product-hero-form input {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 12px;
  padding: 12px 16px;
  font-family: var(--font);
  font-size: 1rem;
  color: #1c1c1c;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
}
.product-hero-form input::placeholder { color: #aaa; }
.product-hero-form input:focus {
  border-color: #4f6d87;
  box-shadow: 0 0 0 3px rgba(79,109,135,0.15);
}

.product-hero-cta {
  margin-top: 6px;
  background: #4f6d87;
  color: #fff;
  font-family: var(--font-title);
  font-size: 1.05rem;
  font-weight: 500;
  padding: 16px 32px;
  border: 0;
  border-radius: 100px;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(79,109,135,0.35);
}
.product-hero-cta:hover {
  background: #3d5570;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(79,109,135,0.45);
}

.product-hero-cta-ghost {
  text-align: center;
  background: transparent;
  color: #1c1c1c;
  font-family: var(--font-title);
  font-size: 1rem;
  font-weight: 400;
  padding: 14px 28px;
  border-radius: 100px;
  border: 1.5px solid rgba(0,0,0,0.18);
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
}
.product-hero-cta-ghost:hover {
  border-color: rgba(0,0,0,0.45);
  background: rgba(255,255,255,0.45);
}

.product-hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 620px;
}

.product-hero-blob { display: none; }

.product-hero-visual img {
  position: relative;
  z-index: 1;
  width: auto;
  max-width: 100%;
  max-height: 640px;
  object-fit: contain;
  display: block;
}

/* ─── Probleem-herkenning (thuisbatterij) ─── */
.problem-section {
  background: #fff;
  padding: 56px 24px 96px;
}

.problem-inner {
  max-width: 1400px;
  margin: 0 auto;
}

.problem-head {
  max-width: 680px;
  margin: 0 auto 48px;
  text-align: center;
}

.problem-title {
  font-family: var(--font-title);
  font-size: clamp(2.2rem, 3.6vw, 3.2rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  color: #1c1c1c;
  line-height: 1.1;
  margin-bottom: 14px;
}

/* Kaarten — basis (mobiel: gestapeld, volledig zichtbaar) */
.problem-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.problem-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  -webkit-backdrop-filter: blur(20px) saturate(1.2);
  backdrop-filter: blur(20px) saturate(1.2);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6),
              0 18px 40px rgba(20, 28, 36, 0.10);
}
.problem-card-tab { display: none; }

.problem-card-body {
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.problem-card-text {
  font-family: var(--font);
  font-size: 1.02rem;
  font-weight: 400;
  color: rgba(139, 58, 31, 0.8);
  line-height: 1.6;
  margin-top: 16px;
  max-width: 440px;
}

/* Feature-variant: foto + tekst (warme toon ingebakken in de foto) */
.problem-card.problem-card--feature { background-color: rgba(231, 224, 208, 0.78); }
/* Kaartkleur gelijk aan de fotokleur — geen naad onder de banner */
.problem-card--feature:nth-child(1) { background-color: rgba(222, 211, 197, 0.78); }
.problem-card--feature:nth-child(2) { background-color: rgba(241, 231, 219, 0.78); }
/* Foto — vierkante banner bovenaan op tablet/mobiel, full-bleed achtergrond op desktop */
.problem-card--feature::before {
  content: "";
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.problem-card--feature:nth-child(1)::before {
  background-image: url('assets/images/card_1_thuisbatterij_m.webp');
}
.problem-card--feature:nth-child(2)::before { background-image: url('assets/images/card_2_thuisbatterij_m.webp'); }

/* Mobiel/tablet: card 1 compacter — foto als kleiner, gecentreerd blok
   i.p.v. schermbreed (kaart-beige loopt naadloos door rond de foto) */
@media (max-width: 1024px) {
  .problem-card--feature:nth-child(1)::before {
    width: 70%;
    margin: 28px auto 4px;
    aspect-ratio: 1400 / 750;   /* lagere banner — 10% beige boven de man */
  }
}
.problem-card--feature .problem-card-body {
  align-items: flex-start;
  text-align: left;
}
.problem-card-title {
  font-family: var(--font-title);
  font-size: clamp(1.9rem, 2.4vw, 2.5rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #28333d;
  line-height: 1.12;
  margin-bottom: 16px;
}
.problem-card--feature .problem-card-text {
  color: #2f3b45;
  max-width: 480px;
  margin: 0;
}
.problem-card--feature .problem-card-text + .problem-card-text {
  margin-top: 1em;
}

/* Card 1 — witte widget met bewegende grafieklijn */
.problem-card-widget {
  width: 100%;
  max-width: 360px;
  margin-top: 24px;
  background: #fff;
  border-radius: 18px;
  padding: 18px 20px;
  box-shadow: 0 12px 30px rgba(40, 51, 61, 0.14);
}
.problem-widget-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}
.problem-widget-label {
  font-family: var(--font-title);
  font-size: 0.92rem;
  font-weight: 500;
  color: #45525e;
}
.problem-widget-trend {
  font-family: var(--font-title);
  font-size: 0.85rem;
  font-weight: 600;
  color: #8b3a1f;
}
.problem-widget-graph {
  display: block;
  width: 100%;
  height: auto;
  margin-top: 12px;
}
.problem-widget-grid { stroke: #eceef0; stroke-width: 1; }
.problem-widget-line {
  fill: none;
  stroke: #8b3a1f;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
  animation: graphDraw 4.2s ease-in-out infinite;
}
.problem-widget-dot {
  fill: #8b3a1f;
  transform-box: fill-box;
  transform-origin: center;
  opacity: 0;
  animation: graphDot 4.2s ease-in-out infinite;
}
@keyframes graphDraw {
  0%   { stroke-dashoffset: 100; opacity: 1; }
  42%  { stroke-dashoffset: 0;   opacity: 1; }
  86%  { stroke-dashoffset: 0;   opacity: 1; }
  96%  { stroke-dashoffset: 0;   opacity: 0; }
  100% { stroke-dashoffset: 100; opacity: 0; }
}
@keyframes graphDot {
  0%, 40%   { opacity: 0; transform: scale(0); }
  47%       { opacity: 1; transform: scale(1.3); }
  54%, 86%  { opacity: 1; transform: scale(1); }
  96%, 100% { opacity: 0; transform: scale(0); }
}

/* ─── Card 3 — Teruglevering (tekst + vergelijking) ─── */
.problem-card--media { background-color: rgba(255, 250, 244, 0.82); }
.problem-card--media .problem-card-text {
  color: #2f3b45;
  max-width: 100%;
  margin: 0;
}
.problem-card--media .problem-card-text + .problem-card-text { margin-top: 1em; }

/* Vergelijking-widget — wat je teruglevert vs. wat je terugkoopt */
.problem-card-media {
  margin-top: 24px;
  background: #fff;
  border-radius: 18px;
  padding: 22px 24px 24px;
  box-shadow: 0 12px 30px rgba(40, 51, 61, 0.14);
}
.compare-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 20px;
}
.compare-head-label {
  font-family: var(--font-title);
  font-size: 0.92rem;
  font-weight: 500;
  color: #45525e;
}
.compare-head-tag {
  font-family: var(--font-title);
  font-size: 0.8rem;
  font-weight: 600;
  color: #8b3a1f;
  white-space: nowrap;
}
.compare-row + .compare-row { margin-top: 16px; }
.compare-row-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
}
.compare-label {
  font-family: var(--font);
  font-size: 0.9rem;
  font-weight: 500;
  color: #2f3b45;
}
.compare-value {
  font-family: var(--font-title);
  font-size: 0.82rem;
  font-weight: 500;
  color: #6b7681;
}
.compare-value--accent { color: #8b3a1f; font-weight: 600; }
.compare-track {
  height: 12px;
  border-radius: 99px;
  background: #eceef0;
  overflow: hidden;
}
.compare-fill {
  display: block;
  height: 100%;
  border-radius: 99px;
  transform-origin: left center;
  transform: scaleX(0);
  animation: compareGrow 4.2s ease-in-out infinite;
}
.compare-fill--low { width: 50%; background: #9fb0bd; }
.compare-fill--high { width: 100%; background: #8b3a1f; }
@keyframes compareGrow {
  0%   { transform: scaleX(0); opacity: 1; }
  34%  { transform: scaleX(1); opacity: 1; }
  86%  { transform: scaleX(1); opacity: 1; }
  94%  { transform: scaleX(1); opacity: 0; }
  95%  { transform: scaleX(0); opacity: 0; }
  100% { transform: scaleX(0); opacity: 1; }
}

/* Accordion — alleen op desktop */
@media (min-width: 1025px) {
  .problem-grid { flex-direction: row; }

  .problem-card {
    flex: 1 1 0;
    min-width: 0;
    min-height: 540px;
    cursor: pointer;
    transition: flex-grow 0.55s cubic-bezier(0.4, 0, 0.2, 1);
  }
  /* Kaart 1 standaard open */
  .problem-card:first-child { flex-grow: 5; }
  /* Bij hover op de rij klappen alle kaarten dicht ... */
  .problem-grid:hover .problem-card { flex-grow: 1; }
  /* ... behalve de gehoverde kaart */
  .problem-grid:hover .problem-card:hover { flex-grow: 5; }

  /* Verticale tab — zichtbaar als de kaart is ingeklapt */
  .problem-card-tab {
    display: flex;
    position: absolute;
    inset: 0;
    align-items: center;
    justify-content: center;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    font-family: var(--font-title);
    font-size: 1.35rem;
    font-weight: 500;
    letter-spacing: 0.01em;
    color: #28333d;
    white-space: nowrap;
    transition: opacity 0.3s ease;
  }

  /* Body — zichtbaar als de kaart is uitgeklapt */
  .problem-card-body {
    position: absolute;
    inset: 0;
    min-width: 540px;
    padding: 48px;
    align-items: center;
    justify-content: center;
    text-align: center;
    opacity: 0;
    transition: opacity 0.35s ease;
  }
  .problem-card-text { margin-left: auto; margin-right: auto; }

  /* Standaardstaat: eerste kaart open */
  .problem-card:first-child .problem-card-tab { opacity: 0; }
  .problem-card:first-child .problem-card-body { opacity: 1; transition-delay: 0.15s; }

  /* Rij gehoverd: alles dicht */
  .problem-grid:hover .problem-card-tab { opacity: 1; }
  .problem-grid:hover .problem-card-body { opacity: 0; transition-delay: 0s; }

  /* De gehoverde kaart: open */
  .problem-grid:hover .problem-card:hover .problem-card-tab { opacity: 0; }
  .problem-grid:hover .problem-card:hover .problem-card-body { opacity: 1; transition-delay: 0.18s; }

  /* Feature-foto vult de hele kaart als achtergrond (originele 16:9 foto) */
  .problem-card--feature::before {
    position: absolute;
    inset: 0;
    width: auto;
    aspect-ratio: auto;
    background-position: center;
    z-index: 0;
    opacity: 0;
    transition: opacity 0.35s ease;
  }
  .problem-card--feature:nth-child(1)::before { background-image: url('assets/images/card_1_thuisbatterij.webp'); }
  .problem-card--feature:nth-child(2)::before { background-image: url('assets/images/card_2_thuisbatterij.webp'); }
  /* Foto alleen zichtbaar als de kaart is uitgeklapt — niet in de smalle, ingeklapte staat */
  .problem-card--feature:first-child::before { opacity: 1; }
  .problem-grid:hover .problem-card--feature::before { opacity: 0; }
  .problem-grid:hover .problem-card--feature:hover::before { opacity: 1; }
  .problem-card-tab,
  .problem-card-body { z-index: 1; }

  /* Card 1 feature-variant: inhoud linksboven, widget onderaan */
  .problem-card--feature .problem-card-body {
    justify-content: flex-start;
    padding: 54px 58px;
  }
  .problem-card-widget { margin-top: auto; }

  /* Card 3 — tekst links, animatie rechts */
  .problem-card--media .problem-card-body {
    flex-direction: row;
    align-items: center;
    gap: 44px;
    padding: 54px 58px;
    text-align: left;
  }
  .problem-card--media .problem-card-copy { flex: 1 1 0; min-width: 0; }
  .problem-card--media .problem-card-media { flex: 0 0 42%; margin-top: 0; }
}

/* ─── Probleem-herkenning (airco) ─── */
/* Kaart-kleuren: van vol groen (zoals hero) naar lichter, naar lichtst */
body.page-airco-hero .problem-card--feature:nth-child(1) { background-color: rgba(179, 211, 201, 0.82); }
body.page-airco-hero .problem-card--feature:nth-child(2) { background-color: rgba(212, 233, 224, 0.82); }
body.page-airco-hero .problem-card--feature:nth-child(3) { background-color: rgba(236, 246, 242, 0.86); }

/* Geen achtergrond-foto via ::before — airco gebruikt decoratieve product-elementen */
body.page-airco-hero .problem-card--feature::before { display: none; }

/* Decoratief product-element (thermometer / filter) — verticale uitsnede */
.problem-card-art {
  display: block;
  pointer-events: none;
  -webkit-user-drag: none;
}

/* Mobiel/tablet: art als gecentreerd blok boven de body */
@media (max-width: 1024px) {
  .problem-card-art {
    width: auto;
    max-width: 60%;
    max-height: 280px;
    margin: 32px auto 0;
    object-fit: contain;
  }
}

/* Desktop accordion: art rechts in de kaart, fadet mee met accordion-staat */
@media (min-width: 1025px) {
  body.page-airco-hero .problem-card-art {
    position: absolute;
    right: 6%;
    top: 50%;
    transform: translateY(-50%);
    width: auto;
    height: 78%;
    object-fit: contain;
    z-index: 0;
    opacity: 0;
    transition: opacity 0.35s ease;
  }
  /* Standaard: eerste kaart open, art zichtbaar */
  body.page-airco-hero .problem-card:first-child .problem-card-art { opacity: 1; }
  /* Hover-gedrag matcht het accordion-patroon */
  body.page-airco-hero .problem-grid:hover .problem-card-art { opacity: 0; }
  body.page-airco-hero .problem-grid:hover .problem-card:hover .problem-card-art { opacity: 1; transition-delay: 0.18s; }

  /* Airco feature-kaarten: kop + tekst verticaal centreren (overschrijft de top-aligned thuisbatterij-default) */
  body.page-airco-hero .problem-card--feature .problem-card-body {
    justify-content: center;
  }

  /* Voor kaarten mét art: tekst links uitlijnen zodat hij niet over de art valt */
  body.page-airco-hero .problem-card--feature:has(.problem-card-art) .problem-card-body {
    align-items: flex-start;
    justify-content: center;
    text-align: left;
    padding-right: 36%;
  }
  body.page-airco-hero .problem-card--feature:has(.problem-card-art) .problem-card-text {
    margin-left: 0;
    margin-right: 0;
  }
}

/* Scroll-reveal — initiële staat via .js, getriggerd door IntersectionObserver in main.js */
.js .reveal-up { opacity: 0; }
.js .reveal-up.in-view {
  animation-name: revealUp;
  animation-duration: 0.7s;
  animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
  animation-fill-mode: both;
}
.js .problem-card.reveal-up:nth-child(2).in-view { animation-delay: 0.12s; }
.js .problem-card.reveal-up:nth-child(3).in-view { animation-delay: 0.24s; }

@keyframes revealUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  .problem-card { transition: none; }
  .problem-widget-line { animation: none; stroke-dashoffset: 0; opacity: 1; }
  .problem-widget-dot { animation: none; opacity: 1; transform: none; }
  .compare-fill { animation: none; transform: scaleX(1); opacity: 1; }
}

/* ─── Slimme batterij ─── */
.battery-section {
  background: #fff;
  padding: 56px 24px 100px;
}
.battery-inner {
  max-width: 1500px;
  margin: 0 auto;
}
.battery-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 28px;
}
.battery-title {
  font-family: var(--font-title);
  font-size: clamp(2.2rem, 3.6vw, 3.2rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: #1c1c1c;
}
.battery-card {
  max-width: 1500px;
  margin: 0 auto;
  border-radius: 28px;
  overflow: hidden;
  background: rgba(231, 228, 222, 0.78);
  -webkit-backdrop-filter: blur(20px) saturate(1.2);
  backdrop-filter: blur(20px) saturate(1.2);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6),
              0 18px 40px rgba(20, 28, 36, 0.10);
}
.battery-visual {
  position: relative;
  width: 100%;
  line-height: 0;
}
.battery-photo {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 2688 / 1520;
  object-fit: cover;
}

/* Status-chip op de foto */
.battery-status {
  position: absolute;
  left: 17%;
  top: 44%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 7px;
  width: 104px;
  padding: 12px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 16px 36px rgba(20, 28, 36, 0.24);
}
.battery-status-icon {
  width: 32px;
  height: 32px;
  border-radius: 9px;
  background: #c8b6ea;
  color: #56409a;
  display: flex;
  align-items: center;
  justify-content: center;
}
.battery-status-icon svg { width: 18px; height: 18px; }
.battery-status-pct {
  font-family: var(--font-title);
  font-size: 1.18rem;
  font-weight: 600;
  color: #1c1c1c;
  line-height: 1;
}
.battery-status-bar {
  width: 100%;
  height: 5px;
  border-radius: 99px;
  background: #ece9f4;
  overflow: hidden;
}
.battery-status-fill {
  display: block;
  width: 15%;
  height: 100%;
  border-radius: 99px;
  background: #7b5fc4;
}

/* Paneel met uitklapbare lijst — frosted-glass, kleur van card 2 op 80% */
.battery-panel {
  position: relative;
  z-index: 1;
  margin-top: clamp(-80px, calc(6px - 5vw), -20px);   /* overlapt de foto -> glas zichtbaar */
  border-radius: 24px 24px 0 0;
  background: rgba(244, 236, 227, 0.7);   /* #f4ece3 @ 70% */
  -webkit-backdrop-filter: blur(20px) saturate(1.2);
  backdrop-filter: blur(20px) saturate(1.2);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6),
              0 -14px 34px rgba(20, 28, 36, 0.13);
  padding: 30px 24px 32px;
}
.battery-list {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.battery-item {
  display: block;
  width: 100%;
  margin: 0;
  text-align: left;
  font-family: inherit;
  cursor: pointer;
  background: #f4f3ef;
  border: none;
  border-radius: 16px;
  padding: 14px 16px;
  transition: background 0.2s ease;
}
.battery-item:hover { background: #eeede8; }
.battery-item[aria-expanded="true"] { background: #efeee9; }
.battery-item-head {
  display: flex;
  align-items: center;
  gap: 14px;
}
.battery-icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.battery-icon svg { width: 22px; height: 22px; }
.battery-icon--amber  { background: #f4dd86; color: #927012; }
.battery-icon--coral  { background: #f1c8b3; color: #a55f33; }
.battery-icon--green  { background: #aed9a2; color: #3c6a36; }
.battery-icon--blue   { background: #a6c8e8; color: #38597a; }
.battery-icon--violet { background: #c8b6ea; color: #56409a; }
.battery-item-title {
  font-family: var(--font-title);
  font-size: 1.04rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: #28333d;
  line-height: 1.3;
}
.battery-item-body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s ease, margin-top 0.4s ease;
  overflow: hidden;
  margin-top: 0;
}
.battery-item[aria-expanded="true"] .battery-item-body {
  grid-template-rows: 1fr;
  margin-top: 12px;
}
.battery-item-text {
  display: block;
  min-height: 0;
  font-family: var(--font);
  font-size: 0.97rem;
  font-weight: 400;
  line-height: 1.6;
  color: #5b6670;
}

@media (min-width: 1280px) {
  .battery-card {
    position: relative;
    aspect-ratio: 1086 / 576;
    overflow: visible;
  }
  .battery-visual {
    position: absolute;
    inset: 0;
    border-radius: 28px;
    overflow: hidden;
  }
  .battery-photo {
    height: 100%;
    aspect-ratio: auto;
  }
  .battery-panel {
    position: absolute;
    top: 50%;
    right: 44px;
    transform: translateY(-50%);
    width: 40%;
    max-width: 480px;
    margin-top: 0;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    padding: 30px 30px 32px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6),
                0 34px 70px rgba(20, 28, 36, 0.3);
  }
}

/* ─── Airco-variant: voordelen-sectie ─── */
body.page-airco-hero .battery-card {
  background: rgba(201, 226, 220, 0.30);
}
body.page-airco-hero .battery-status-icon {
  background: #c9e2dc;
  color: #2f5a4c;
}
body.page-airco-hero .battery-status-bar { display: none; }

@media (max-width: 767px) {
  .battery-section { padding: 8px 16px 80px; }
  .battery-card { border-radius: 22px; }
  .battery-status {
    width: 86px;
    padding: 10px;
    gap: 6px;
    border-radius: 13px;
  }
  .battery-status-icon { width: 28px; height: 28px; border-radius: 8px; }
  .battery-status-icon svg { width: 16px; height: 16px; }
  .battery-status-pct { font-size: 1rem; }
  .battery-panel { padding: 26px 20px 28px; }
}

/* ─── Modellen + onderhoud (airco lineup) ─── */
.lineup-section {
  background: #fff;
  padding: 56px 24px 100px;
}
.lineup-inner {
  max-width: 1500px;
  margin: 0 auto;
}
.lineup-head {
  text-align: center;
  margin: 0 auto 48px;
  max-width: 760px;
}
.lineup-title {
  font-family: var(--font-title);
  font-size: clamp(2.2rem, 3.6vw, 3.2rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: #1c1c1c;
  margin: 0;
}
.lineup-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.lineup-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 14px 32px rgba(20, 28, 36, 0.07);
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s ease;
}
.lineup-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 44px rgba(20, 28, 36, 0.12);
}

.lineup-card-visual {
  position: relative;
  margin: 14px 14px 0;
  aspect-ratio: 1 / 1;
  border-radius: 18px;
  overflow: hidden;
  background: linear-gradient(180deg,
    rgba(226, 239, 235, 0.85) 0%,
    rgba(201, 226, 220, 0.85) 60%,
    rgba(179, 211, 201, 0.85) 100%);
  -webkit-backdrop-filter: blur(20px) saturate(1.2);
  backdrop-filter: blur(20px) saturate(1.2);
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.85),
    inset 0 -1px 0 rgba(120, 145, 130, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
}
.lineup-card-img { position: relative; z-index: 1; }
.lineup-card-badge { z-index: 5; }
.lineup-card-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: #a8c9bc;
  color: #1c1c1c;
  font-family: var(--font-title);
  font-size: 0.78rem;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 100px;
  letter-spacing: 0.01em;
  box-shadow: 0 2px 8px rgba(20, 28, 36, 0.10);
  z-index: 5;
}
.lineup-card-img {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
}
.lineup-card-img img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}

.lineup-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 22px 22px;
}
.lineup-card-title {
  font-family: var(--font-title);
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: #1c1c1c;
  margin: 0;
  line-height: 1.2;
}
.lineup-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.lineup-card-price {
  font-family: var(--font-title);
  font-size: 1.05rem;
  font-weight: 600;
  color: #1c1c1c;
  margin: 0;
  line-height: 1.2;
}
.lineup-card-price span {
  display: block;
  margin-top: 3px;
  font-family: var(--font);
  font-size: 0.78em;
  font-weight: 400;
  color: #8a949e;
}
.lineup-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #4f6d87;
  color: #fff;
  font-family: var(--font-title);
  font-size: 0.86rem;
  font-weight: 500;
  padding: 10px 18px;
  border-radius: 100px;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(79, 109, 135, 0.25);
  transition: background 0.2s, transform 0.15s ease, box-shadow 0.2s;
}
.lineup-card-cta:hover {
  background: #3d5570;
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(79, 109, 135, 0.4);
}
.lineup-card-cta svg { width: 13px; height: 13px; }

@media (max-width: 1023px) {
  .lineup-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }
}
@media (max-width: 560px) {
  .lineup-section { padding: 32px 16px 80px; }
  .lineup-head { margin-bottom: 32px; }
  .lineup-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .lineup-card-visual { padding: 28px; }
  .lineup-card-title { font-size: 1.15rem; margin-top: 18px; }
}

/* ─── Productpagina (detail) ─── */
.product-page {
  background: #fff;
}
.product-detail {
  background: #fff;
  padding: calc(var(--nav-height) + 36px) 24px 64px;
}
.product-detail-inner {
  max-width: 1500px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
}

.product-breadcrumb {
  font-family: var(--font-title);
  font-size: 0.9rem;
  color: #5b6670;
  margin-bottom: 18px;
}
.product-breadcrumb a {
  color: #5b6670;
  text-decoration: none;
  transition: color 0.2s;
}
.product-breadcrumb a:hover { color: #1c1c1c; }
.product-breadcrumb span[aria-hidden] { margin: 0 8px; opacity: 0.5; }

.product-gallery-main {
  background: #ecf4ef;
  border-radius: 28px;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  margin-bottom: 14px;
}
.product-gallery-main img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
/* Cover-state: lifestyle-foto vult het hele frame (geen padding, geen groen) */
.product-gallery-main.is-cover {
  background: #fff;
  padding: 0;
}
.product-gallery-main.is-cover img {
  object-fit: cover;
}

.product-gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 10px;
}
.product-thumb {
  background: #f3f6f4;
  border: 2px solid transparent;
  border-radius: 14px;
  padding: 6px;
  cursor: pointer;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s ease, transform 0.15s ease, background 0.2s;
}
.product-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.product-thumb:hover {
  transform: translateY(-2px);
  background: #ecf4ef;
}
.product-thumb.is-active {
  border-color: #4f6d87;
  background: #ecf4ef;
}

.product-info {
  padding-top: 24px;
  display: flex;
  flex-direction: column;
}
.product-info-eyebrow {
  font-family: var(--font-title);
  font-size: 0.92rem;
  font-weight: 500;
  color: #2f5a4c;
  margin: 0 0 6px;
  letter-spacing: 0.02em;
}
.product-info-title {
  font-family: var(--font-title);
  font-size: clamp(2.2rem, 3.8vw, 3.4rem);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: #1c1c1c;
  margin: 0 0 14px;
}
.product-info-price {
  font-family: var(--font-title);
  font-size: 1.2rem;
  font-weight: 300;
  color: #1c1c1c;
  margin: 0 0 28px;
}
.product-info-price strong { font-weight: 500; }
.product-info-price span {
  color: #2f5a4c;
  font-size: 0.95rem;
  display: inline-block;
  margin-left: 6px;
}

.product-info-desc p {
  font-family: var(--font);
  font-size: 1.02rem;
  line-height: 1.6;
  color: #2f3b45;
  margin: 0 0 22px;
}
.product-info-desc .product-info-related {
  font-size: 0.94rem;
  color: #4f6d87;
  margin-top: -8px;
}
.product-info-desc .product-info-related a {
  color: #4f6d87;
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 500;
}
.product-info-desc .product-info-related a:hover { color: #1c1c1c; }

.product-info-features {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.product-info-features li {
  position: relative;
  padding-left: 32px;
  font-family: var(--font);
  font-size: 0.98rem;
  color: #2f3b45;
  line-height: 1.45;
}
.product-info-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 2px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #c9e2dc;
}
.product-info-features li::after {
  content: '';
  position: absolute;
  left: 6px;
  top: 8px;
  width: 8px;
  height: 4px;
  border-left: 2px solid #2f5a4c;
  border-bottom: 2px solid #2f5a4c;
  transform: rotate(-45deg);
}

.product-info-options {
  margin-bottom: 28px;
}
.product-info-options-label {
  display: block;
  font-family: var(--font-title);
  font-size: 0.95rem;
  font-weight: 500;
  color: #1c1c1c;
  margin-bottom: 12px;
}
.product-info-options-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.product-option {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  border: 1.5px solid rgba(0,0,0,0.12);
  background: #fff;
  border-radius: 16px;
  padding: 14px 16px;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  transition: border-color 0.2s, background 0.2s;
}
.product-option:hover { border-color: rgba(79,109,135,0.5); }
.product-option.is-active {
  border-color: #4f6d87;
  background: #f4f8fb;
  box-shadow: 0 0 0 3px rgba(79,109,135,0.12);
}
.product-option-cap {
  font-family: var(--font-title);
  font-size: 1.1rem;
  font-weight: 600;
  color: #1c1c1c;
}
.product-option-room {
  font-family: var(--font);
  font-size: 0.85rem;
  color: #6b7681;
}
.product-option-price {
  font-family: var(--font-title);
  font-size: 0.95rem;
  font-weight: 500;
  color: #2f5a4c;
  margin-top: 4px;
}
.product-option-note {
  font-family: var(--font);
  font-size: 0.85rem;
  color: #6b7681;
  margin: 12px 2px 0;
  line-height: 1.5;
}

/* ─── ONDERHOUD: tariefcalculator ─── */
.rate-calc {
  margin: 28px 0;
  padding: 22px 24px 20px;
  background: #f7f8fa;
  border: 1px solid rgba(20,28,36,0.07);
  border-radius: 18px;
}

.rate-calc-label {
  font-family: var(--font-title);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #4f6d87;
  margin: 0 0 14px;
}

.rate-calc-intro {
  font-family: var(--font);
  font-size: 0.92rem;
  color: #5b6573;
  margin: 0 0 16px;
  line-height: 1.55;
}

/* Per-systeem rij (singlesplit / multisplit) */
.rate-calc-row {
  background: #fff;
  border: 1px solid rgba(20,28,36,0.08);
  border-radius: 14px;
  padding: 14px 18px;
  margin: 0 0 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.rate-calc-row.is-active {
  border-color: rgba(79,109,135,0.45);
  box-shadow: 0 0 0 3px rgba(79,109,135,0.08);
}

.rate-calc-row-head {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
  min-width: 180px;
}
.rate-calc-row-name {
  font-family: var(--font-title);
  font-size: 1rem;
  font-weight: 600;
  color: #1c1c1c;
}
.rate-calc-row-sub {
  font-size: 0.84rem;
  color: #6b7681;
  line-height: 1.4;
}

.rate-calc-row-control {
  display: flex;
  align-items: center;
  gap: 16px;
}

.rate-calc-row-price {
  font-family: var(--font-title);
  font-size: 1rem;
  font-weight: 600;
  color: #4f6d87;
  min-width: 70px;
  text-align: right;
  white-space: nowrap;
}
.rate-calc-row-price.is-zero { color: #b0b6c0; font-weight: 400; }

/* Stepper */
.rate-calc-stepper {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.rate-calc-stepper-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1.5px solid rgba(20,28,36,0.12);
  background: #fff;
  color: #4f6d87;
  font-family: var(--font-title);
  font-size: 1.15rem;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.15s;
}
.rate-calc-stepper-btn:hover:not(:disabled) {
  background: #4f6d87;
  border-color: #4f6d87;
  color: #fff;
}
.rate-calc-stepper-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}
.rate-calc-stepper-value {
  font-family: var(--font-title);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--clr-text);
  min-width: 28px;
  text-align: center;
}

/* Totaal */
.rate-calc-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 14px;
  padding: 18px 20px;
  background: #4f6d87;
  color: #fff;
  border-radius: 14px;
  position: relative;
}
.rate-calc-total-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.rate-calc-total-label {
  font-family: var(--font-title);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.85;
}
.rate-calc-total-meta {
  font-family: var(--font);
  font-size: 0.92rem;
  opacity: 0.9;
}
.rate-calc-total-value {
  font-family: var(--font-title);
  font-size: 1.9rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  white-space: nowrap;
}
.rate-calc-total.is-empty .rate-calc-total-value {
  font-size: 1.15rem;
  opacity: 0.7;
  font-weight: 500;
  font-style: italic;
}

.rate-calc-note {
  font-family: var(--font);
  font-size: 0.82rem;
  color: #6b7681;
  margin: 14px 0 0;
  padding-top: 12px;
  border-top: 1px solid rgba(20,28,36,0.06);
  line-height: 1.5;
}

@media (max-width: 480px) {
  .rate-calc { padding: 18px 18px 16px; }
  .rate-calc-row { padding: 12px 14px; gap: 12px; }
  .rate-calc-row-control { width: 100%; justify-content: space-between; }
  .rate-calc-row-price { min-width: 0; }
  .rate-calc-total { padding: 16px 18px; }
  .rate-calc-total-value { font-size: 1.55rem; }
}

/* ─── ONDERHOUD: tariefkaarten (volledig overzicht) ─── */
.tarief-section {
  margin: 56px 0 0;
}
.tarief-head {
  margin-bottom: 24px;
}
.tarief-title {
  font-family: var(--font-title);
  font-size: clamp(1.45rem, 2.4vw, 1.8rem);
  font-weight: 700;
  color: var(--clr-text);
  margin: 0 0 8px;
  letter-spacing: -0.005em;
}
.tarief-sub {
  font-family: var(--font);
  font-size: 1rem;
  color: #5b6573;
  margin: 0;
  line-height: 1.55;
}

.tarief-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 24px;
  margin-top: 8px;
}

.tarief-card {
  background: #fff;
  border: 1px solid rgba(20,28,36,0.08);
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.tarief-card-head {
  background: #4f6d87;
  color: #fff;
  padding: 16px 24px;
}
.tarief-card-title {
  font-family: var(--font-title);
  font-size: 1.15rem;
  font-weight: 700;
  margin: 0;
  letter-spacing: 0.005em;
}

.tarief-card-body {
  padding: 6px 24px 20px;
  display: flex;
  flex-direction: column;
}

.tarief-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(20,28,36,0.06);
  font-family: var(--font);
}
.tarief-row:last-of-type { border-bottom: 0; }

.tarief-row-label {
  font-size: 0.98rem;
  color: var(--clr-text);
}
.tarief-row-price {
  font-family: var(--font-title);
  font-size: 1rem;
  font-weight: 700;
  color: var(--clr-text);
  white-space: nowrap;
}

.tarief-note {
  font-family: var(--font);
  font-size: 0.92rem;
  color: #6b7681;
  font-style: italic;
  margin: 18px 0 4px;
  line-height: 1.55;
}

@media (max-width: 760px) {
  .tarief-grid { grid-template-columns: 1fr; }
}

.product-info-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}
.product-info-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #4f6d87;
  color: #fff;
  font-family: var(--font-title);
  font-size: 1.05rem;
  font-weight: 500;
  padding: 16px 32px;
  border-radius: 100px;
  text-decoration: none;
  border: none;
  box-shadow: 0 4px 20px rgba(79,109,135,0.35);
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}
.product-info-cta:hover {
  background: #3d5570;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(79,109,135,0.45);
}
.product-info-cta-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: #1c1c1c;
  font-family: var(--font-title);
  font-size: 1rem;
  font-weight: 400;
  padding: 14px 28px;
  border-radius: 100px;
  border: 1.5px solid rgba(0,0,0,0.18);
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
}
.product-info-cta-ghost:hover {
  border-color: rgba(0,0,0,0.45);
  background: rgba(255,255,255,0.45);
}

.product-info-meta {
  list-style: none;
  padding: 22px 0 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-top: 1px solid rgba(0,0,0,0.08);
}
.product-info-meta li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font);
  font-size: 0.94rem;
  color: #2f3b45;
}
.product-info-meta svg {
  width: 16px;
  height: 16px;
  color: #2f5a4c;
  flex-shrink: 0;
}

/* ─── Specs sectie ─── */
.specs-section {
  background: #fafafa;
  padding: 64px 24px 96px;
}
.specs-inner {
  max-width: 1500px;
  margin: 0 auto;
}
.specs-head {
  max-width: 720px;
  margin: 0 0 40px;
}
.specs-title {
  font-family: var(--font-title);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: #1c1c1c;
  margin: 0 0 12px;
}
.specs-intro {
  font-family: var(--font);
  font-size: 1.02rem;
  line-height: 1.55;
  color: #2f3b45;
  margin: 0;
}
.specs-intro a {
  color: #4f6d87;
  text-decoration: none;
  font-weight: 500;
}
.specs-intro a:hover { text-decoration: underline; }

.specs-table-wrapper {
  background: #fff;
  border-radius: 24px;
  overflow-x: auto;
  box-shadow: 0 6px 24px rgba(20, 28, 36, 0.06);
}
.specs-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--font);
  min-width: 760px;
}
.specs-table thead th {
  font-family: var(--font-title);
  font-size: 0.92rem;
  font-weight: 600;
  color: #1c1c1c;
  text-align: left;
  padding: 22px 24px;
  border-bottom: 1.5px solid rgba(0,0,0,0.08);
  background: #f4f8f6;
}
.specs-table .specs-spec-col {
  width: 30%;
  background: #ecf4ef;
}
.specs-table tbody th {
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 500;
  color: #2f3b45;
  text-align: left;
  padding: 16px 24px;
  background: #f8fbf9;
}
.specs-table tbody td {
  font-family: var(--font);
  font-size: 0.95rem;
  color: #2f3b45;
  padding: 16px 24px;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}
.specs-table tbody tr:last-child td,
.specs-table tbody tr:last-child th { border-bottom: 0; }

.specs-table tr.specs-group th {
  background: #ecf4ef;
  color: #2f5a4c;
  font-family: var(--font-title);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 14px 24px;
}

.specs-footnote {
  font-family: var(--font);
  font-size: 0.88rem;
  color: #6b7681;
  margin: 22px 0 0;
}

/* ─── Tablet ─── */
@media (max-width: 1023px) {
  .product-detail-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .product-gallery-thumbs {
    grid-template-columns: repeat(4, 1fr);
  }
  .product-info { padding-top: 0; }
}

/* ─── Mobile ─── */
@media (max-width: 600px) {
  .product-detail { padding: calc(var(--nav-height) + 16px) 16px 48px; }
  .product-gallery-main {
    border-radius: 22px;
    padding: 28px;
  }
  .product-gallery-thumbs { gap: 8px; }
  .product-info-options-grid { grid-template-columns: 1fr; }
  .product-info-cta { font-size: 1rem; padding: 14px 26px; }
  .specs-section { padding: 40px 16px 64px; }
  .specs-table-wrapper { border-radius: 18px; }
  .specs-table thead th,
  .specs-table tbody th,
  .specs-table tbody td { padding: 12px 14px; font-size: 0.88rem; }
}

/* ─── Back-up vergelijking ─── */
.backup-section {
  background: #fff;
  padding: 56px 24px 100px;
}
.backup-inner {
  max-width: 1500px;
  margin: 0 auto;
}
.backup-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 28px;
}
.backup-title {
  font-family: var(--font-title);
  font-size: clamp(2.2rem, 3.6vw, 3.2rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: #1c1c1c;
}
.backup-intro {
  margin-top: 12px;
  font-size: 1.02rem;
  line-height: 1.6;
  color: #5b6670;
}

.backup-card {
  --pos: 50%;
  position: relative;
  max-width: 1500px;
  margin: 0 auto;
  border-radius: 28px;
  overflow: hidden;
  background: rgba(231, 228, 222, 0.78);
  -webkit-backdrop-filter: blur(20px) saturate(1.2);
  backdrop-filter: blur(20px) saturate(1.2);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6),
              0 18px 40px rgba(20, 28, 36, 0.10);
}

.backup-compare {
  position: relative;
  width: 100%;
  aspect-ratio: 2688 / 1520;
  overflow: hidden;
  user-select: none;
  -webkit-user-select: none;
  touch-action: pan-y;
  cursor: ew-resize;
}

.backup-side {
  position: absolute;
  inset: 0;
}
.backup-side--with {
  clip-path: inset(0 0 0 var(--pos));
  will-change: clip-path;
}

.backup-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  -webkit-user-drag: none;
  user-select: none;
}

/* Paneel-wrapper — overlay op desktop, stack op kleinere viewports */
.backup-panels {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
}

/* Glas-paneeltjes — clippen direct mee met de slider zodat tekst niet
   in de andere afbeelding hangt, maar het backdrop-filter blijft werken */
.backup-panel {
  position: absolute;
  bottom: 7%;
  width: 36%;
  padding: 22px 24px 24px;
  border-radius: 20px;
  background: rgba(244, 236, 227, 0.78);
  -webkit-backdrop-filter: blur(20px) saturate(1.2);
  backdrop-filter: blur(20px) saturate(1.2);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6),
              0 18px 40px rgba(20, 28, 36, 0.18);
  color: #1c1c1c;
  pointer-events: auto;
}
.backup-panel--without {
  left: 5%;
  clip-path: inset(0 max(0%, calc(100% - (var(--pos) - 5%) * 100 / 36)) 0 0);
}
.backup-panel--with {
  right: 5%;
  clip-path: inset(0 0 0 max(0%, calc((var(--pos) - 59%) * 100 / 36)));
}

.backup-panel-tag {
  display: inline-block;
  font-family: var(--font-title);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: -0.005em;
  padding: 4px 10px;
  border-radius: 99px;
  background: rgba(46, 74, 96, 0.12);
  color: #2e4a60;
  margin-bottom: 12px;
}
.backup-panel--without .backup-panel-tag {
  background: rgba(139, 58, 31, 0.14);
  color: #8b3a1f;
}
.backup-panel-lead {
  font-family: var(--font-title);
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.25;
  color: #28333d;
  margin-bottom: 12px;
}
.backup-panel-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 7px;
  font-family: var(--font);
  font-size: 0.95rem;
  line-height: 1.4;
  color: #2f3b45;
}
.backup-panel-list li {
  position: relative;
  padding-left: 22px;
}
.backup-panel-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.18;
}
.backup-panel-list--on li::before {
  background: #3c6a36;
  opacity: 1;
  box-shadow: inset 0 0 0 3px #c8e1bf;
}
.backup-panel-list--off li::before {
  background: #8b3a1f;
  opacity: 1;
  box-shadow: inset 0 0 0 3px #f1c8b3;
}

/* Slider — verticale lijn + handvat */
.backup-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--pos);
  width: 2px;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 0 0 1px rgba(20, 28, 36, 0.15),
              0 6px 24px rgba(20, 28, 36, 0.25);
  pointer-events: none;
  z-index: 3;
}
.backup-handle {
  position: absolute;
  top: 50%;
  left: var(--pos);
  transform: translate(-50%, -50%);
  width: 56px;
  height: 56px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: #fff;
  color: #2e4a60;
  cursor: ew-resize;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(20, 28, 36, 0.18),
              0 2px 4px rgba(20, 28, 36, 0.10);
  z-index: 4;
  transition: transform 0.15s ease, box-shadow 0.2s ease;
}
.backup-handle:hover {
  box-shadow: 0 8px 22px rgba(20, 28, 36, 0.24),
              0 2px 4px rgba(20, 28, 36, 0.12);
}
.backup-handle:active,
.backup-dragging .backup-handle {
  transform: translate(-50%, -50%) scale(0.96);
}
.backup-handle:focus-visible {
  outline: 3px solid #2e4a60;
  outline-offset: 3px;
}
.backup-handle-icon svg { width: 22px; height: 22px; }

.backup-dragging,
.backup-dragging * { cursor: ew-resize !important; }

/* Onder ~900px: paneeltjes vallen onder de foto, twee kolommen */
@media (max-width: 899px) {
  .backup-panels {
    position: static;
    inset: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    padding: 18px;
    pointer-events: auto;
  }
  .backup-panel {
    position: static;
    width: auto;
    padding: 18px 18px 20px;
    border-radius: 18px;
    clip-path: none;
  }
  .backup-panel--without,
  .backup-panel--with { left: auto; right: auto; bottom: auto; clip-path: none; }
  .backup-panel-list { font-size: 0.92rem; gap: 6px; }
  .backup-handle { width: 48px; height: 48px; }
}

/* Onder ~560px: paneeltjes gestapeld onder elkaar */
@media (max-width: 559px) {
  .backup-section { padding: 40px 16px 80px; }
  .backup-card { border-radius: 22px; }
  .backup-panels {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 14px;
  }
  .backup-panel {
    padding: 16px 16px 18px;
    border-radius: 16px;
  }
  .backup-panel-lead { font-size: 1rem; }
  .backup-panel-list { font-size: 0.9rem; }
  .backup-handle { width: 42px; height: 42px; }
  .backup-handle-icon svg { width: 18px; height: 18px; }
}

@media (prefers-reduced-motion: reduce) {
  .backup-handle { transition: none; }
}

/* ─── Batterijcheck CTA ─── */
.check-section {
  background: #fff;
  padding: 24px 24px 100px;
}
.check-card {
  position: relative;
  max-width: 1500px;
  margin: 0 auto;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(20, 28, 36, 0.10);
}
.check-card picture { display: contents; }
.check-photo {
  display: block;
  width: 100%;
  height: auto;
  pointer-events: none;
  -webkit-user-drag: none;
}
.check-panel {
  position: absolute;
  top: 50%;
  left: 5%;
  transform: translateY(-50%);
  width: 40%;
  max-width: 520px;
  padding: 32px 32px 34px;
  border-radius: 24px;
  background: rgba(244, 236, 227, 0.78);
  -webkit-backdrop-filter: blur(20px) saturate(1.2);
  backdrop-filter: blur(20px) saturate(1.2);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6),
              0 18px 40px rgba(20, 28, 36, 0.18);
}
.check-title {
  font-family: var(--font-title);
  font-size: clamp(1.6rem, 2.4vw, 2.1rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: #1c1c1c;
  margin-bottom: 14px;
}
.check-text {
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.55;
  color: #2f3b45;
  margin-bottom: 22px;
}
.check-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #4f6d87;
  color: #fff;
  font-family: var(--font-title);
  font-size: 1rem;
  font-weight: 500;
  padding: 14px 26px;
  border-radius: 100px;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(79, 109, 135, 0.35);
  transition: background 0.2s, transform 0.15s ease, box-shadow 0.2s;
}
.check-cta:hover {
  background: #3d5570;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(79, 109, 135, 0.45);
}
.check-cta svg { width: 18px; height: 18px; }

/* Tablet */
@media (max-width: 1024px) {
  .check-panel {
    width: 46%;
    padding: 24px 22px 26px;
    border-radius: 20px;
  }
  .check-title { font-size: clamp(1.25rem, 2.6vw, 1.6rem); margin-bottom: 10px; }
  .check-text { font-size: 0.92rem; margin-bottom: 16px; }
  .check-cta { padding: 12px 22px; font-size: 0.95rem; }
}

/* Tablet/mobiel — paneel zit onderin over de full-bleed achtergrond */
@media (max-width: 900px) {
  .check-section { padding: 8px 16px 80px; }
  .check-card {
    aspect-ratio: 4 / 5;
    border-radius: 22px;
  }
  .check-photo {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
  .check-panel {
    top: auto;
    bottom: 18px;
    left: 18px;
    right: 18px;
    transform: none;
    width: auto;
    max-width: none;
    margin: 0;
    padding: 22px 22px 24px;
    border-radius: 18px;
  }
  .check-title { font-size: 1.5rem; }
  .check-title-break { display: none; }
  .check-text { font-size: 0.95rem; }
}

/* ─── Contact Sectie ─── */
.contact-section {
  background: #fff;
  padding: 40px 0 120px;
}

.contact-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.contact-block {
  background: #f5f5f7;
  border-radius: 28px;
  padding: 56px 56px 52px;
  display: flex;
  flex-direction: column;
  min-height: 360px;
}

.contact-block--advice {
  background: #c3e0c0;
}

.contact-block-tag {
  font-family: var(--font-title);
  font-size: 0.95rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: #666;
  margin-bottom: 18px;
}

.contact-block--advice .contact-block-tag {
  color: #2c5430;
}

.contact-block-title {
  font-family: var(--font-title);
  font-size: clamp(1.8rem, 2.6vw, 2.4rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: #1c1c1c;
  margin-bottom: 16px;
  max-width: 90%;
}

.contact-block--advice .contact-block-title {
  color: #1c1c1c;
}

.contact-block-sub {
  font-family: var(--font);
  font-size: 1.1rem;
  font-weight: 300;
  color: #555;
  line-height: 1.55;
  margin-bottom: 36px;
  max-width: 90%;
}

.contact-block--advice .contact-block-sub {
  color: #3a5a3a;
}

.contact-cta {
  align-self: flex-start;
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: #4f6d87;
  color: #fff;
  font-family: var(--font-title);
  font-size: 1.05rem;
  font-weight: 500;
  padding: 18px 32px;
  border-radius: 100px;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  box-shadow: 0 4px 20px rgba(79,109,135,0.45);
}
.contact-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(79,109,135,0.55);
  background: #3d5570;
}

.contact-cta-arrow {
  display: inline-block;
  font-size: 1.15rem;
  transition: transform 0.2s;
}
.contact-cta:hover .contact-cta-arrow { transform: translateX(4px); }

.contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-top: auto;
}

.contact-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.contact-item-label {
  font-family: var(--font-title);
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: #5d5d5d;
  text-transform: uppercase;
}

.contact-item-value {
  font-family: var(--font-title);
  font-size: clamp(1.4rem, 2vw, 1.8rem);
  font-weight: 500;
  letter-spacing: -0.01em;
  color: #1c1c1c;
  text-decoration: none;
  transition: color 0.2s;
}
.contact-item-value:hover { color: var(--clr-primary); }

/* ─── Footer ─── */
.site-footer {
  background: #4f6d87;
  color: rgba(255,255,255,0.82);
  padding: 88px 0 36px;
}

.site-footer-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 48px;
}

.site-footer-top {
  display: grid;
  grid-template-columns: 1.3fr 2fr;
  gap: 72px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.site-footer-brand {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.site-footer-logo {
  display: inline-flex;
  align-items: center;
}

.site-footer-logo img {
  height: 36px;
  width: auto;
  filter: brightness(0) invert(1);
}

.site-footer-tagline {
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.6;
  color: rgba(255,255,255,0.92);
  max-width: 360px;
}

.site-footer-social {
  list-style: none;
  display: flex;
  gap: 12px;
  margin-top: 4px;
}

.site-footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.78);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, transform 0.15s;
}
.site-footer-social a:hover {
  background: rgba(255,255,255,0.16);
  color: #fff;
  transform: translateY(-2px);
}

.site-footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.site-footer-heading {
  font-family: var(--font-title);
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: 0;
  color: #fff;
  margin-bottom: 22px;
}

.site-footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.site-footer-col a {
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 300;
  color: rgba(255,255,255,0.92);
  text-decoration: none;
  transition: color 0.2s;
}
.site-footer-col a:hover { color: #fff; }

.site-footer-address {
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 300;
  color: rgba(255,255,255,0.92);
  line-height: 1.5;
}

.site-footer-bottom {
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.site-footer-legal-info {
  font-family: var(--font);
  font-size: 0.88rem;
  font-weight: 300;
  color: rgba(255,255,255,0.92);
}

.site-footer-legal-links {
  list-style: none;
  display: flex;
  gap: 28px;
}

.site-footer-legal-links a {
  font-family: var(--font);
  font-size: 0.88rem;
  font-weight: 300;
  color: rgba(255,255,255,0.92);
  text-decoration: none;
  transition: color 0.2s;
}
.site-footer-legal-links a:hover { color: #fff; }

/* ─── Tablet (768px – 1024px) ─── */
@media (max-width: 1024px) {
  .nav-links { gap: 20px; }
  .nav-links a { font-size: 0.95rem; }
  .nav-secondary { gap: 18px; }
  .nav-secondary a { font-size: 0.95rem; }

  .hero-content h1 { max-width: 70%; }
  .hero-content p { max-width: 70%; }

  .products-section { padding: 80px 32px; }

  .product-card { min-height: 520px; }

  .product-card-content {
    padding: 48px 40px 48px 40px;
  }

  .product-card--reverse .product-card-content {
    padding: 48px 40px 48px 6%;
  }

  .product-label { font-size: 1.2rem; }
  .product-name { font-size: clamp(1.8rem, 2.8vw, 2.6rem); }
  .product-sub { font-size: 1.2rem; }

  .product-stats { gap: 20px; }
  .stat-value { font-size: 1rem; }

  /* Airco kaart op tablet: volledige foto tonen, gecentreerd en kleiner */
  .product-card--airco .product-card-image {
    justify-content: center;
    padding-left: 0;
  }
  .product-card--airco .product-card-image img {
    min-width: 0;
    width: auto;
    max-width: 70%;
    height: auto;
    max-height: 320px;
  }

  /* Installateur — foto vult de hele sectie, tekst overlay */
  .installer-section {
    position: relative;
    overflow: hidden;
  }
  .installer-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    aspect-ratio: auto;
    margin: 0;
    border-radius: 0;
  }
  .installer-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 22% center;
  }
  .installer-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0,0,0,0) 0%, rgba(0,0,0,0) 30%, rgba(0,0,0,0.55) 55%, rgba(0,0,0,0.7) 100%);
  }

  .installer-content {
    position: relative;
    z-index: 1;
    width: 50%;
    height: auto;
    background: none;
    margin-left: auto;
    padding: 70px 24px 70px 0;
  }
  .installer-title { color: #fff; font-size: clamp(1.5rem, 2.4vw, 2rem); margin-bottom: 12px; }
  .installer-sub { color: rgba(255,255,255,0.85); font-size: 1rem; max-width: 100%; }

  .info-card {
    padding: 16px 20px;
    margin-top: 0;
    background: rgba(0,0,0,0.35);
    border-color: rgba(255,255,255,0.15);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }
  .info-card:hover {
    background: rgba(0,0,0,0.5);
    border-color: rgba(255,255,255,0.3);
  }
  .info-card-header { gap: 14px; }
  .info-card-title { color: #fff; font-size: 0.95rem; font-weight: 400; line-height: 1.3; }
  .info-card-sub { color: rgba(255,255,255,0.85); font-size: 0.88rem; line-height: 1.55; }
  .info-card-icon { background: rgba(255,255,255,0.15); width: 28px; height: 28px; }
  .info-card-icon::before { background: #fff; width: 10px; height: 1.5px; }
  .info-card-icon::after { background: #fff; width: 1.5px; height: 10px; }
  .info-card[aria-expanded="true"] .info-card-icon { background: rgba(255,255,255,0.25); }
  .info-cards { gap: 8px; margin-top: 24px; }

  /* Get to know */
  .getknow-section { padding: 80px 0 90px; }
  .getknow-inner { padding: 0 24px; }
  .getknow-title { font-size: clamp(2rem, 3.6vw, 2.8rem); margin-bottom: 40px; }
  .getknow-grid {
    gap: 16px;
    padding-left: 24px;
    padding-right: 24px;
    scroll-padding-left: 24px;
  }
  .getknow-spacer {
    flex: 0 0 clamp(300px, 40vw, 400px);
    width: clamp(300px, 40vw, 400px);
  }
  .getknow-card {
    flex: 0 0 clamp(280px, 36vw, 380px);
    width: clamp(280px, 36vw, 380px);
    aspect-ratio: 372 / 680;
    border-radius: 24px;
  }
  .getknow-card-front { top: 24px; left: 24px; right: 24px; }
  .getknow-card-tag { font-size: 0.9rem; }
  .getknow-card-name { font-size: 1.4rem; }
  .getknow-card-plus { width: 38px; height: 38px; right: 18px; bottom: 18px; }
  .getknow-modal-dialog { padding: 40px 36px 44px; max-width: 760px; }
  .getknow-modal-panel { padding: 36px 36px; }

  /* Product hero */
  .product-hero { padding: 56px 0 72px; }
  .product-hero-inner { padding: 0 32px; gap: 40px; grid-template-columns: 1.2fr 1fr; }
  .product-hero-title { font-size: clamp(2rem, 3.6vw, 3rem); }
  .product-hero-sub { font-size: 1.2rem; margin-bottom: 28px; }
  .product-hero-features { margin-bottom: 32px; }
  .product-hero-visual { min-height: 480px; }
  .product-hero-visual img { max-height: 500px; }

  /* Contact */
  .contact-section { padding: 32px 0 90px; }
  .contact-block { padding: 44px 40px; min-height: 320px; }

  /* Probleem-herkenning — gestapeld, kaarten op leesbare breedte */
  .problem-section { padding: 48px 24px 80px; }
  .problem-grid { max-width: 560px; margin-left: auto; margin-right: auto; }
  /* Kaart 1 — minder hoge banner (minder kopruimte boven de man) */
  .problem-card--feature:nth-child(1)::before { aspect-ratio: 1255 / 1601; }

  /* Footer */
  .site-footer { padding: 72px 0 32px; }
  .site-footer-inner { padding: 0 32px; }
  .site-footer-top { grid-template-columns: 1fr; gap: 48px; padding-bottom: 48px; }
  .site-footer-cols { grid-template-columns: repeat(3, 1fr); gap: 24px; }
}

/* ─── Mobile (< 768px) ─── */
@media (max-width: 767px) {
  :root { --nav-height: 64px; }

  .nav-links, .nav-secondary { display: none; }
  .nav-burger { display: flex; }
  .nav-logo-img { height: 28px; }

  /* Hero */
  .hero { background-position: 68% top; }
  .hero-content {
    padding: calc(var(--nav-height) + 32px) 20px 60px;
  }
  .hero-content h1 {
    max-width: 100%;
    font-size: clamp(1.9rem, 8vw, 2.8rem);
    margin-bottom: 16px;
  }
  .hero-content p {
    max-width: 100%;
    font-size: 1rem;
    margin-bottom: 28px;
  }
  .hero-actions { flex-direction: column; gap: 12px; }
  .btn { width: 100%; justify-content: center; padding: 15px 24px; }

  /* Products */
  .products-section { padding: 60px 20px; }
  .products-title { font-size: 1.6rem; margin-bottom: 28px; }

  .product-card,
  .product-card.product-card--reverse {
    flex-direction: column;
    min-height: auto;
    border-radius: 20px;
  }

  .product-card-image {
    flex: none;
    width: 100%;
    height: 280px;
    padding: 32px 32px 0;
    overflow: hidden;
    justify-content: center;
  }

  .product-card--reverse .product-card-image {
    padding-right: 0;
  }

  .product-card-image img,
  .product-card--reverse .product-card-image img {
    height: 100%;
    max-height: 240px;
    max-width: 100%;
    width: auto;
    transform: none;
    object-position: center;
  }

  /* Airco kaart op mobiel: volledige foto tonen, kleiner en gecentreerd */
  .product-card--airco .product-card-image {
    justify-content: center;
    padding: 32px 32px 0;
  }
  .product-card--airco .product-card-image img {
    min-width: 0;
    width: auto;
    max-width: 75%;
    height: auto;
    max-height: 200px;
  }

  .product-card-content,
  .product-card--reverse .product-card-content {
    padding: 32px 28px 40px;
  }

  .product-label { font-size: 1rem; margin-bottom: 10px; }
  .product-name { font-size: clamp(1.6rem, 6vw, 2.2rem); margin-bottom: 12px; }
  .product-sub { font-size: 1rem; margin-bottom: 24px; }

  .product-actions {
    flex-direction: column;
    gap: 10px;
    margin-bottom: 28px;
  }
  .btn-product-primary,
  .btn-product-ghost {
    width: 100%;
    text-align: center;
    justify-content: center;
    padding: 14px 20px;
  }

  .product-stats { gap: 16px; flex-wrap: wrap; padding-top: 24px; }
  .stat-divider { height: 32px; }
  .stat-value { font-size: 0.9rem; }

  /* Installateur */
  .installer-content {
    position: static;
    width: 100%;
    height: auto;
    padding: 40px 24px;
    background: #1a1a1a;
  }
  /* Installateur mobiel — tekst aan de rechterkant van de foto */
  .installer-image img {
    object-position: 18% center;
  }
  .installer-content {
    width: 58%;
    padding: 48px 14px 48px 0;
  }
  .installer-title {
    font-size: 1.3rem;
    line-height: 1.2;
    margin-bottom: 10px;
  }
  .installer-sub {
    font-size: 0.88rem;
    line-height: 1.5;
    margin-bottom: 0;
  }
  .info-cards {
    margin-top: 20px;
    gap: 8px;
  }
  .info-card {
    padding: 12px 16px;
    border-radius: 14px;
  }
  .info-card-header { gap: 10px; }
  .info-card-title {
    font-size: 0.85rem;
    font-weight: 400;
    line-height: 1.3;
  }
  .info-card-icon {
    width: 26px;
    height: 26px;
  }
  .info-card-icon::before { width: 9px; height: 1.5px; }
  .info-card-icon::after { width: 1.5px; height: 9px; }
  .info-card-sub {
    font-size: 0.8rem;
    line-height: 1.5;
  }
  .info-card[aria-expanded="true"] .info-card-body { margin-top: 12px; }

  /* Get to know */
  .getknow-section { padding: 60px 0 70px; }
  .getknow-inner { padding: 0 16px; }
  .getknow-title {
    font-size: clamp(1.8rem, 7vw, 2.4rem);
    margin-bottom: 28px;
  }
  .getknow-grid {
    gap: 12px;
    padding-left: 16px;
    padding-right: 16px;
    scroll-padding-left: 16px;
  }
  .getknow-spacer {
    flex: 0 0 50vw;
    width: 50vw;
  }
  .getknow-card {
    flex: 0 0 78vw;
    width: 78vw;
    max-width: 320px;
    aspect-ratio: 372 / 680;
    border-radius: 20px;
  }
  .getknow-card-front { top: 22px; left: 22px; right: 22px; }
  .getknow-card-name { font-size: 1.25rem; }
  .getknow-footer { margin-top: 18px; }
  .getknow-arrow { width: 42px; height: 42px; }
  .getknow-card-front { top: 22px; left: 22px; right: 22px; gap: 6px; }
  .getknow-card-tag { font-size: 0.85rem; }
  .getknow-card-name { font-size: 1.25rem; }
  .getknow-card-plus { width: 32px; height: 32px; right: 14px; bottom: 14px; }
  .getknow-card-plus::before { width: 11px; }
  .getknow-card-plus::after { height: 11px; }

  .getknow-modal { padding: 0; }
  .getknow-modal-dialog {
    border-radius: 0;
    max-height: 100vh;
    height: 100%;
    padding: 32px 22px 36px;
  }
  .getknow-modal-head { padding: 8px 0 24px; }
  .getknow-modal-title { font-size: clamp(1.6rem, 6vw, 2.2rem); max-width: 100%; }
  .getknow-modal-panel { padding: 28px 22px; border-radius: 18px; }
  .getknow-modal-panel h3 { font-size: 1.2rem; margin-bottom: 14px; }
  .getknow-modal-panel p { font-size: 1rem; }
  .getknow-modal-close { top: 14px; right: 14px; width: 34px; height: 34px; }

  /* Product hero */
  .product-hero { padding: 36px 0 56px; }
  .product-hero-inner { padding: 0 20px; grid-template-columns: 1fr; gap: 32px; }
  .product-hero-visual { min-height: 380px; order: 2; }
  .product-hero-visual img { max-height: 400px; }
  .product-hero-title { font-size: clamp(1.9rem, 7vw, 2.6rem); max-width: 100%; }
  .product-hero-sub { font-size: 1.1rem; margin-bottom: 24px; }
  .product-hero-features li { font-size: 1rem; padding-left: 32px; }
  .product-hero-features li::before { width: 20px; height: 20px; }
  .product-hero-features li::after { left: 5px; top: 7px; }
  .product-hero-form { padding: 18px; max-width: 100%; }
  .product-hero-form-row { grid-template-columns: 1fr 1fr; }
  .product-hero-form-row label:first-child { grid-column: 1 / -1; }
  .product-hero-cta { padding: 15px 26px; font-size: 1rem; }
  .product-hero-blob { width: 90%; }
  .product-hero-reviews { font-size: 0.85rem; padding: 8px 16px; gap: 8px; margin-bottom: 24px; }

  /* Probleem-herkenning */
  .problem-section { padding: 40px 20px 72px; }
  .problem-head { margin-bottom: 28px; }
  .problem-card { border-radius: 20px; }
  .problem-card-body { padding: 32px 24px; }
  .problem-card-title { font-size: 1.6rem; }
  .problem-card-text { font-size: 1rem; }
  .problem-card-widget { max-width: 100%; }

  /* Contact */
  .contact-section { padding: 20px 0 70px; }
  .contact-inner { padding: 0 20px; }
  .contact-grid { grid-template-columns: 1fr; gap: 16px; }
  .contact-block { padding: 36px 28px; min-height: 0; border-radius: 22px; }
  .contact-block-title { font-size: 1.6rem; max-width: 100%; }
  .contact-block-sub { font-size: 1rem; margin-bottom: 28px; max-width: 100%; }
  .contact-cta { padding: 15px 26px; font-size: 1rem; width: 100%; justify-content: center; }
  .contact-item-value { font-size: 1.25rem; }

  /* Footer */
  .site-footer { padding: 60px 0 28px; }
  .site-footer-inner { padding: 0 20px; }
  .site-footer-top { gap: 36px; padding-bottom: 36px; }
  .site-footer-cols { grid-template-columns: 1fr; gap: 32px; }
  .site-footer-heading { margin-bottom: 16px; }
  .site-footer-bottom { flex-direction: column; align-items: flex-start; gap: 14px; padding-top: 24px; }
  .site-footer-legal-links { flex-wrap: wrap; gap: 16px 20px; }
  .site-footer-tagline { max-width: 100%; }
}

/* ─── Tab-navigatie binnen .specs-section (Specs / Standaard montage) ─── */
.info-tabs {
  display: flex;
  gap: 4px;
  border-bottom: 1.5px solid rgba(0, 0, 0, 0.08);
  margin: 0 0 40px;
  flex-wrap: wrap;
}
.info-tab {
  background: transparent;
  border: 0;
  font-family: var(--font-title);
  font-size: 1.05rem;
  font-weight: 500;
  color: #6b7681;
  padding: 16px 22px;
  cursor: pointer;
  position: relative;
  letter-spacing: -0.01em;
  transition: color 0.15s ease;
}
.info-tab::after {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: -1.5px;
  height: 3px;
  background: transparent;
  border-radius: 3px 3px 0 0;
  transition: background 0.2s ease;
}
.info-tab:hover { color: #1c1c1c; }
.info-tab.is-active {
  color: #1c1c1c;
  font-weight: 600;
}
.info-tab.is-active::after { background: #4f6d87; }
.info-tab:focus-visible {
  outline: 2px solid #4f6d87;
  outline-offset: 4px;
  border-radius: 6px;
}

.info-panel { display: none; }
.info-panel.is-active { display: block; }

/* ─── Standaard montage tabblad — Clyma design (frosted-glass cards à la battery-section) ─── */
.montage-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 36px;
}
.montage-title {
  font-family: var(--font-title);
  font-size: clamp(1.9rem, 3.2vw, 2.6rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: #1c1c1c;
  margin: 0 0 14px;
}
.montage-sub {
  font-family: var(--font);
  font-size: 1.02rem;
  line-height: 1.55;
  color: #2f3b45;
  margin: 0;
}

.montage-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.montage-card {
  border-radius: 28px;
  padding: 36px 30px 34px;
  -webkit-backdrop-filter: blur(20px) saturate(1.2);
  backdrop-filter: blur(20px) saturate(1.2);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6),
              0 18px 40px rgba(20, 28, 36, 0.10);
}
.montage-card--included {
  background: #ecf4ef; /* zelfde zachtgroen als specs-tabel (.specs-spec-col / specs-group) */
}
.montage-card--excluded {
  background: rgba(166, 200, 232, 0.40); /* zachte versie van primair #4f6d87 — matcht battery-icon--blue */
}

.montage-card-title {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-title);
  font-size: 1.28rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: #1c1c1c;
  margin: 0 0 22px;
  line-height: 1.2;
}
.montage-card-icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.montage-card-icon svg { width: 22px; height: 22px; }
.montage-card-icon--green { background: #aed9a2; color: #3c6a36; }
.montage-card-icon--blue  { background: #a6c8e8; color: #38597a; }

.montage-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.montage-list li {
  display: block;
  background: rgba(255, 255, 255, 0.55);
  border-radius: 14px;
  padding: 14px 18px;
  font-family: var(--font);
  font-size: 0.98rem;
  line-height: 1.5;
  color: #28333d;
}
.montage-card--excluded .montage-list li {
  background: rgba(255, 255, 255, 0.55);
  color: #38597a;
}

.montage-footnote {
  text-align: center;
  font-family: var(--font);
  font-style: italic;
  font-size: 0.94rem;
  color: #6b7681;
  max-width: 640px;
  margin: 36px auto 0;
}

@media (min-width: 900px) {
  .montage-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
}

/* Mobile aanpassingen tab UI + montage */
@media (max-width: 600px) {
  .info-tab { font-size: 0.98rem; padding: 14px 16px; }
  .info-tab::after { left: 12px; right: 12px; }
  .montage-card { padding: 28px 22px 26px; border-radius: 24px; }
  .montage-card-title { font-size: 1.15rem; gap: 12px; margin-bottom: 18px; }
  .montage-card-icon { width: 38px; height: 38px; border-radius: 11px; }
  .montage-card-icon svg { width: 20px; height: 20px; }
  .montage-list li { font-size: 0.94rem; padding: 12px 14px; border-radius: 12px; }
}

/* ─── Lijsten binnen getknow-modal panels ─── */
.getknow-modal-panel ul {
  margin: 0 0 1em;
  padding-left: 1.4em;
  list-style: disc;
  font-family: var(--font);
  font-size: inherit;
  line-height: 1.55;
  color: inherit;
}
.getknow-modal-panel ul li {
  margin: 0 0 0.5em;
}
.getknow-modal-panel ul li:last-child { margin-bottom: 0; }

/* ──────────────────────────────────────────────
   INFO PAGES (contact, over-ons, privacy, av, cookies, etc.)
   ────────────────────────────────────────────── */

.info-section { padding: 80px 0 100px; background: #fff; }
.info-inner   { max-width: 880px; margin: 0 auto; padding: 0 24px; }

.info-breadcrumb {
  font-family: var(--font);
  font-size: 0.88rem;
  color: #6b7280;
  margin: 0 0 18px;
}
.info-breadcrumb a { color: #4f6d87; text-decoration: none; }
.info-breadcrumb a:hover { text-decoration: underline; }

.info-head { margin: 0 0 40px; max-width: 720px; }

.info-eyebrow {
  font-family: var(--font-title);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #4f6d87;
  margin: 0 0 12px;
}

.info-title {
  font-family: var(--font-title);
  font-size: clamp(2rem, 3.6vw, 2.85rem);
  font-weight: 700;
  letter-spacing: -0.012em;
  color: var(--clr-text);
  margin: 0 0 14px;
  line-height: 1.12;
}

.info-sub {
  font-family: var(--font);
  font-size: 1.1rem;
  color: #5b6573;
  margin: 0;
  line-height: 1.6;
}

.info-body {
  font-family: var(--font);
  font-size: 1rem;
  color: #2c333d;
  line-height: 1.75;
}
.info-body h2 {
  font-family: var(--font-title);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--clr-text);
  margin: 40px 0 14px;
  letter-spacing: -0.005em;
}
.info-body h3 {
  font-family: var(--font-title);
  font-size: 1.18rem;
  font-weight: 600;
  color: var(--clr-text);
  margin: 32px 0 10px;
}
.info-body p   { margin: 0 0 16px; color: #2c333d; }
.info-body a   { color: #4f6d87; text-decoration: underline; text-underline-offset: 3px; }
.info-body a:hover { color: #3d5570; }
.info-body ul, .info-body ol {
  margin: 0 0 20px;
  padding-left: 22px;
}
.info-body li { margin: 0 0 8px; }
.info-body strong { color: var(--clr-text); font-weight: 600; }

/* Contact-layout met contactblokken + formulier */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 48px;
  margin-top: 20px;
}
.contact-info {
  background: #f7f8fa;
  border-radius: 18px;
  padding: 28px 30px;
  align-self: start;
}
.contact-info h3 {
  font-family: var(--font-title);
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #4f6d87;
  margin: 0 0 10px;
}
.contact-info h3:not(:first-child) { margin-top: 22px; }
.contact-info p { margin: 0 0 4px; color: var(--clr-text); line-height: 1.5; }
.contact-info a { color: #4f6d87; text-decoration: none; font-weight: 500; }
.contact-info a:hover { text-decoration: underline; }

.contact-form {
  display: grid;
  gap: 14px;
  background: #fff;
  border: 1px solid rgba(20,28,36,0.08);
  border-radius: 18px;
  padding: 30px 32px;
}
.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.contact-form label > span {
  font-family: var(--font-title);
  font-size: 0.86rem;
  font-weight: 500;
  color: #4b5562;
}
.contact-form input,
.contact-form textarea,
.contact-form select {
  font-family: var(--font);
  font-size: 1rem;
  padding: 12px 16px;
  background: #fff;
  border: 1px solid rgba(20,28,36,0.12);
  border-radius: 12px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  color: var(--clr-text);
  width: 100%;
  resize: vertical;
}
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: #4f6d87;
  box-shadow: 0 0 0 3px rgba(79,109,135,0.15);
}
.contact-form button {
  font-family: var(--font-title);
  font-size: 1rem;
  font-weight: 500;
  background: #4f6d87;
  color: #fff;
  padding: 14px 28px;
  border-radius: 100px;
  border: 0;
  cursor: pointer;
  margin-top: 8px;
  box-shadow: 0 4px 16px rgba(79,109,135,0.28);
  transition: background 0.2s, transform 0.15s;
}
.contact-form button:hover { background: #3d5570; transform: translateY(-2px); }

/* Kennisbank-stijl card-grid (gebruikt op kennisbank / offerte / etc.) */
.kb-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin: 20px 0 32px;
}
.kb-card {
  display: block;
  background: #f7f8fa;
  border: 1px solid rgba(20,28,36,0.06);
  border-radius: 16px;
  padding: 24px 26px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}
.kb-card:hover {
  background: #fff;
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(20,28,36,0.08);
}
.kb-card-tag {
  font-family: var(--font-title);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #4f6d87;
  margin: 0 0 6px;
}
.kb-card-title {
  font-family: var(--font-title);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--clr-text);
  margin: 0 0 8px;
  letter-spacing: -0.005em;
}
.kb-card-text {
  font-family: var(--font);
  font-size: 0.94rem;
  color: #5b6573;
  margin: 0;
  line-height: 1.55;
}

/* Coming-soon pagina's */
.soon-section {
  padding: 80px 0 100px;
  background: #fff;
  min-height: calc(100vh - 200px);
  display: flex;
  align-items: center;
}
.soon-inner {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}
.soon-eyebrow {
  font-family: var(--font-title);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #4f6d87;
  background: rgba(195,224,192,0.5);
  display: inline-block;
  padding: 6px 16px;
  border-radius: 100px;
  margin: 0 0 22px;
}
.soon-title {
  font-family: var(--font-title);
  font-size: clamp(2rem, 3.6vw, 2.85rem);
  font-weight: 700;
  letter-spacing: -0.012em;
  color: var(--clr-text);
  margin: 0 0 18px;
  line-height: 1.15;
}
.soon-text {
  font-family: var(--font);
  font-size: 1.08rem;
  color: #5b6573;
  margin: 0 0 32px;
  line-height: 1.6;
}
.soon-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.soon-cta {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-title);
  background: #4f6d87;
  color: #fff;
  padding: 14px 28px;
  border-radius: 100px;
  text-decoration: none;
  font-weight: 500;
  box-shadow: 0 4px 16px rgba(79,109,135,0.28);
  transition: background 0.2s, transform 0.15s;
}
.soon-cta:hover { background: #3d5570; transform: translateY(-2px); }
.soon-cta--ghost {
  background: transparent;
  color: #4f6d87;
  border: 1.5px solid rgba(79,109,135,0.25);
  box-shadow: none;
}
.soon-cta--ghost:hover {
  background: rgba(79,109,135,0.06);
  border-color: rgba(79,109,135,0.5);
}

/* Responsive */
@media (max-width: 760px) {
  .info-section { padding: 60px 0 80px; }
  .contact-grid { grid-template-columns: 1fr; gap: 28px; }
  .contact-form { padding: 24px 22px; }
  .kb-cards { gap: 14px; }
}

/* ──────────────────────────────────────────────
   FAQ SECTION
   ────────────────────────────────────────────── */

.faq-section {
  padding: 120px 0 100px;
  background: #fff;
}

.faq-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}

.faq-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 48px;
}

.faq-eyebrow {
  font-family: var(--font-title);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #4f6d87;
  margin: 0 0 14px;
}

.faq-title {
  font-family: var(--font-title);
  font-size: clamp(1.85rem, 3.4vw, 2.7rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--clr-text);
  margin: 0 0 16px;
  line-height: 1.15;
}

.faq-sub {
  font-family: var(--font);
  font-size: 1.08rem;
  color: #5b6573;
  margin: 0;
  line-height: 1.55;
}

/* Filter chips */
.faq-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin: 0 0 40px;
}

.faq-filter {
  font-family: var(--font-title);
  font-size: 0.94rem;
  font-weight: 500;
  color: #4b5562;
  background: #f7f8fa;
  border: 1.5px solid transparent;
  border-radius: 100px;
  padding: 10px 20px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.15s;
}
.faq-filter:hover {
  background: #fff;
  border-color: rgba(79,109,135,0.25);
  color: #4f6d87;
}
.faq-filter.is-active {
  background: #4f6d87;
  border-color: #4f6d87;
  color: #fff;
  box-shadow: 0 6px 18px rgba(79,109,135,0.25);
}

/* Lijst met vragen */
.faq-list {
  border-top: 1px solid rgba(20,28,36,0.08);
}

.faq-item {
  border-bottom: 1px solid rgba(20,28,36,0.08);
  transition: opacity 0.25s, transform 0.25s, max-height 0.3s;
}
.faq-item[hidden] { display: none !important; }

/* Reset default <summary> styling */
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 4px;
  cursor: pointer;
  list-style: none;
  font-family: var(--font-title);
  font-size: clamp(1.05rem, 1.6vw, 1.18rem);
  font-weight: 600;
  color: var(--clr-text);
  line-height: 1.4;
  transition: color 0.15s;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q::marker                 { content: ''; display: none; }
.faq-q:hover                   { color: #4f6d87; }
.faq-q:focus-visible {
  outline: 2px solid rgba(79,109,135,0.4);
  outline-offset: 4px;
  border-radius: 6px;
}

.faq-toggle {
  position: relative;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #f7f8fa;
  flex-shrink: 0;
  transition: background 0.2s, transform 0.25s;
}
.faq-toggle::before,
.faq-toggle::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 12px;
  height: 1.8px;
  background: #4f6d87;
  border-radius: 2px;
  transform: translate(-50%, -50%);
  transition: transform 0.25s;
}
.faq-toggle::after { transform: translate(-50%, -50%) rotate(90deg); }

.faq-item[open] .faq-toggle { background: #4f6d87; }
.faq-item[open] .faq-toggle::before,
.faq-item[open] .faq-toggle::after { background: #fff; }
.faq-item[open] .faq-toggle::after { transform: translate(-50%, -50%) rotate(0deg); }

.faq-item[open] .faq-q { color: #4f6d87; }

.faq-a {
  padding: 0 56px 26px 4px;
  animation: faq-fade 0.3s ease both;
}

.faq-a p {
  font-family: var(--font);
  font-size: 1rem;
  color: #4b5562;
  line-height: 1.65;
  margin: 0 0 12px;
}
.faq-a p:last-child { margin-bottom: 0; }
.faq-a p strong     { color: var(--clr-text); font-weight: 600; }
.faq-a a            { color: #4f6d87; text-decoration: underline; text-underline-offset: 3px; }
.faq-a a:hover      { color: #3d5570; }

@keyframes faq-fade {
  from { opacity: 0; transform: translateY(-4px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Footer-CTA onder de FAQ */
.faq-footer {
  margin-top: 56px;
  padding: 36px 40px;
  background: linear-gradient(135deg, #f7f8fa 0%, #eef2f6 100%);
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.faq-footer-text {
  font-family: var(--font-title);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--clr-text);
  margin: 0;
}

.faq-footer-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.faq-footer-cta {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-title);
  font-size: 0.98rem;
  font-weight: 500;
  background: #4f6d87;
  color: #fff;
  padding: 13px 26px;
  border-radius: 100px;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(79,109,135,0.28);
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}
.faq-footer-cta:hover {
  background: #3d5570;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(79,109,135,0.4);
}

.faq-footer-cta--ghost {
  background: transparent;
  color: #4f6d87;
  border: 1.5px solid rgba(79,109,135,0.25);
  box-shadow: none;
}
.faq-footer-cta--ghost:hover {
  background: rgba(79,109,135,0.06);
  border-color: rgba(79,109,135,0.5);
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 760px) {
  .faq-section { padding: 80px 0 70px; }
  .faq-head { margin-bottom: 36px; }
  .faq-filters { gap: 8px; margin-bottom: 32px; }
  .faq-filter { padding: 9px 16px; font-size: 0.88rem; }
  .faq-q { padding: 18px 2px; gap: 16px; }
  .faq-a { padding: 0 38px 22px 2px; }
  .faq-toggle { width: 28px; height: 28px; }
  .faq-footer {
    padding: 28px 24px;
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }
  .faq-footer-actions { justify-content: center; }
}

/* ──────────────────────────────────────────────
   AIRCOCHECK / TOOL WIZARD
   ────────────────────────────────────────────── */

.page-tool { background: #f7f8fa; }

.tool-main { padding-top: calc(var(--nav-height) + 32px); padding-bottom: 80px; }

.tool-section { width: 100%; }

.tool-inner {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 24px;
}

.tool-head {
  text-align: center;
  margin-bottom: 40px;
}

.tool-eyebrow {
  font-family: var(--font-title);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #4f6d87;
  margin: 0 0 12px;
}

.tool-title {
  font-family: var(--font-title);
  font-size: clamp(1.85rem, 3vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--clr-text);
  margin: 0 0 14px;
  line-height: 1.15;
}
.tool-title-break { display: inline; }
@media (min-width: 760px) { .tool-title-break { display: block; } }

.tool-sub {
  font-family: var(--font);
  font-size: 1.05rem;
  color: #4b5562;
  margin: 0 auto;
  max-width: 620px;
  line-height: 1.55;
}

/* Progress indicator */
.tool-progress {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
}
.tool-progress[hidden] { display: none; }
.tool-wizard[hidden] { display: none; }

.tool-progress li {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 14px 6px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid rgba(20,28,36,0.06);
  font-family: var(--font-title);
  color: #98a2b0;
  transition: background 0.25s, color 0.25s, border-color 0.25s, transform 0.25s;
  position: relative;
}

.tool-progress li.is-current {
  background: #4f6d87;
  color: #fff;
  border-color: #4f6d87;
  box-shadow: 0 8px 22px rgba(79,109,135,0.25);
}

.tool-progress li.is-done {
  background: #eaf1ec;
  color: #4f6d87;
  border-color: #c3e0c0;
}

.tool-progress-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(0,0,0,0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  font-weight: 600;
}
.tool-progress li.is-current .tool-progress-num { background: rgba(255,255,255,0.2); }
.tool-progress li.is-done .tool-progress-num {
  background: #c3e0c0;
  color: #2d4838;
}
.tool-progress li.is-done .tool-progress-num::before {
  content: '✓';
  font-size: 0.9rem;
  font-weight: 700;
}
.tool-progress li.is-done .tool-progress-num { font-size: 0; }

.tool-progress-label {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

/* Wizard panel */
.tool-wizard {
  background: #fff;
  border-radius: 24px;
  border: 1px solid rgba(20,28,36,0.06);
  padding: 40px 44px;
  box-shadow: 0 24px 60px rgba(20,28,36,0.06);
}

.tool-step { display: none; animation: tool-fade 0.35s ease both; }
.tool-step.is-active { display: block; }

@keyframes tool-fade {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.tool-step-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-title);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #4f6d87;
  background: rgba(79,109,135,0.08);
  border-radius: 100px;
  padding: 6px 14px;
  margin: 0 0 14px;
}
.tool-step-eyebrow--check {
  background: rgba(195,224,192,0.5);
  color: #2d4838;
}
.tool-step-eyebrow--check svg { width: 14px; height: 14px; }

.tool-step-title {
  font-family: var(--font-title);
  font-size: clamp(1.5rem, 2.6vw, 2.05rem);
  font-weight: 700;
  letter-spacing: -0.008em;
  color: var(--clr-text);
  margin: 0 0 10px;
  line-height: 1.18;
}
.tool-step-title strong { font-weight: 700; }

.tool-step-help {
  font-family: var(--font);
  font-size: 1rem;
  color: #5b6573;
  margin: 0 0 28px;
  line-height: 1.55;
  max-width: 580px;
}

.tool-error {
  font-family: var(--font);
  font-size: 0.92rem;
  color: #b1361e;
  margin: 14px 0 0;
  padding: 10px 14px;
  background: #fbe9e4;
  border-radius: 10px;
}

/* Rooms grid */
.tool-rooms {
  display: grid;
  gap: 12px;
}

.tool-room {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 22px;
  background: #f7f8fa;
  border-radius: 16px;
  border: 1.5px solid transparent;
  transition: background 0.2s, border-color 0.2s;
}
.tool-room.is-selected {
  background: #fff;
  border-color: #4f6d87;
}

.tool-room-name {
  font-family: var(--font-title);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--clr-text);
}

/* Quantity stepper */
.tool-stepper {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.tool-stepper button {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid rgba(20,28,36,0.12);
  background: #fff;
  color: #4f6d87;
  font-family: var(--font-title);
  font-size: 1.2rem;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s, background 0.2s, color 0.2s, transform 0.15s;
}
.tool-stepper button:hover:not(:disabled) {
  border-color: #4f6d87;
  background: #4f6d87;
  color: #fff;
}
.tool-stepper button:active { transform: scale(0.95); }
.tool-stepper button:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.tool-stepper-value {
  font-family: var(--font-title);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--clr-text);
  min-width: 28px;
  text-align: center;
}

/* Sizes step */
.tool-sizes {
  display: grid;
  gap: 16px;
}

.tool-size {
  padding: 22px 22px;
  background: #f7f8fa;
  border-radius: 16px;
  border: 1.5px solid transparent;
  transition: border-color 0.2s, background 0.2s;
}
.tool-size:focus-within { border-color: #4f6d87; background: #fff; }

.tool-size-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}

.tool-size-label {
  font-family: var(--font-title);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--clr-text);
}

.tool-size-kw {
  font-family: var(--font);
  font-size: 0.9rem;
  color: #4f6d87;
  background: #eaf1ec;
  padding: 6px 12px;
  border-radius: 100px;
  font-weight: 500;
}

.tool-size-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.tool-size-field {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 1px solid rgba(20,28,36,0.1);
  border-radius: 12px;
  padding: 8px 14px;
}

.tool-size-field-label {
  font-family: var(--font);
  font-size: 0.9rem;
  color: #5b6573;
  flex: 1;
}

.tool-size-field input {
  width: 64px;
  border: 0;
  background: transparent;
  font-family: var(--font-title);
  font-size: 1rem;
  font-weight: 500;
  color: var(--clr-text);
  text-align: right;
  outline: none;
}

.tool-size-field-unit {
  font-family: var(--font);
  font-size: 0.9rem;
  color: #98a2b0;
  min-width: 28px;
}

/* Stepper-variant van een tool-size-field (batterijcheck stap 1/2) */
.tool-size-field--stepper { justify-content: space-between; }
.tool-size-field--stepper .tool-stepper { margin-left: auto; }

/* Phase-keuze segmented control (batterijcheck stap 4) */
.phase-choice {
  display: inline-flex;
  background: #fff;
  border: 1px solid rgba(20,28,36,0.1);
  border-radius: 100px;
  padding: 4px;
  gap: 2px;
}
.phase-btn {
  font-family: var(--font-title);
  font-size: 0.88rem;
  font-weight: 500;
  color: #5b6573;
  background: transparent;
  border: 0;
  border-radius: 100px;
  padding: 8px 16px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}
.phase-btn:hover { color: var(--clr-text); }
.phase-btn.is-active {
  background: #4f6d87;
  color: #fff;
}
.phase-btn:focus-visible {
  outline: 2px solid rgba(79,109,135,0.4);
  outline-offset: 2px;
}
.tool-extra--phase { flex-wrap: wrap; row-gap: 12px; }
.tool-extra--phase .tool-extra-controls { width: 100%; }

@media (min-width: 640px) {
  .tool-extra--phase .tool-extra-controls { width: auto; }
}

/* Models grid */
.tool-models {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}

.tool-model {
  background: #f7f8fa;
  border-radius: 18px;
  border: 1.5px solid transparent;
  padding: 22px 22px 18px;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, transform 0.15s, box-shadow 0.2s;
  text-align: left;
  font-family: var(--font);
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
}
.tool-model:hover { background: #fff; box-shadow: 0 12px 32px rgba(20,28,36,0.08); transform: translateY(-2px); }
.tool-model.is-selected {
  background: #fff;
  border-color: #4f6d87;
  box-shadow: 0 12px 32px rgba(79,109,135,0.18);
}

.tool-model-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: #c3e0c0;
  color: #2d4838;
  font-family: var(--font-title);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 5px 10px;
  border-radius: 100px;
}

.tool-model-img {
  width: 100%;
  aspect-ratio: 2 / 1;
  background: #fff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.tool-model-img img {
  width: 92%;
  height: auto;
  object-fit: contain;
}

.tool-model-name {
  font-family: var(--font-title);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--clr-text);
  margin: 0;
}

.tool-model-desc {
  font-size: 0.92rem;
  color: #5b6573;
  margin: -8px 0 0;
  line-height: 1.5;
}

.tool-model-price {
  font-family: var(--font-title);
  margin-top: auto;
  display: flex;
  align-items: baseline;
  gap: 6px;
  color: var(--clr-text);
}
.tool-model-price strong { font-size: 1.25rem; font-weight: 700; }
.tool-model-price span { font-size: 0.82rem; color: #6b7280; font-weight: 400; }

.tool-model-savings {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #eaf1ec;
  color: #2d4838;
  border-radius: 10px;
  padding: 10px 12px;
  margin: -4px 0 0;
  font-family: var(--font);
  font-size: 0.88rem;
  line-height: 1.35;
}
.tool-model-savings svg { width: 16px; height: 16px; flex-shrink: 0; color: #4f6d87; }
.tool-model-savings strong { font-family: var(--font-title); font-weight: 600; color: #1c1c1c; }

.tool-model-cta {
  font-family: var(--font-title);
  font-size: 0.85rem;
  color: #4f6d87;
  text-decoration: none;
  border-top: 1px solid rgba(20,28,36,0.08);
  padding-top: 10px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.tool-model-cta:hover { color: #3d5570; }

/* Extras */
.tool-extras { display: grid; gap: 10px; }

.tool-extra {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 16px 20px;
  background: #f7f8fa;
  border-radius: 14px;
  border: 1.5px solid transparent;
  transition: background 0.2s, border-color 0.2s;
}
.tool-extra.is-selected { background: #fff; border-color: #4f6d87; }

.tool-extra.is-disabled { opacity: 0.55; }

.tool-extra-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

.tool-extra-label {
  font-family: var(--font);
  font-size: 0.98rem;
  color: var(--clr-text);
  line-height: 1.4;
}

.tool-extra-hint {
  font-family: var(--font);
  font-size: 0.82rem;
  color: #6b7280;
  line-height: 1.4;
}
.tool-extra-hint--muted { color: #98a2b0; font-style: italic; }

.tool-extra-price {
  font-family: var(--font-title);
  font-size: 0.95rem;
  color: #4f6d87;
  white-space: nowrap;
  font-weight: 500;
}
.tool-extra-price--muted { color: #98a2b0; font-style: italic; font-weight: 400; }

.tool-extra-controls {
  display: flex;
  align-items: center;
  gap: 14px;
}

/* Checkbox styled */
.tool-checkbox {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  position: relative;
  width: 22px;
  height: 22px;
}
.tool-checkbox input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
  width: 100%;
  height: 100%;
  margin: 0;
}
.tool-checkbox-box {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  border: 1.5px solid rgba(20,28,36,0.2);
  background: #fff;
  transition: background 0.15s, border-color 0.15s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tool-checkbox input:checked + .tool-checkbox-box {
  background: #4f6d87;
  border-color: #4f6d87;
}
.tool-checkbox-box::after {
  content: '';
  width: 6px;
  height: 11px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(45deg) translate(-1px, -1px);
  opacity: 0;
  transition: opacity 0.15s;
}
.tool-checkbox input:checked + .tool-checkbox-box::after { opacity: 1; }

.tool-extra-text {
  flex: 1;
  background: #fff;
  border: 1px solid rgba(20,28,36,0.1);
  border-radius: 10px;
  padding: 8px 14px;
  font-family: var(--font);
  font-size: 0.95rem;
  color: var(--clr-text);
  outline: none;
  max-width: 220px;
}
.tool-extra-text:focus { border-color: #4f6d87; }

/* Recap-card op stap 5 (toont gekozen model en aantal binnenunits) */
.tool-recap {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #f7f8fa;
  border: 1px solid rgba(20,28,36,0.06);
  border-radius: 16px;
  padding: 14px 18px;
  margin: 0 0 28px;
}

.tool-recap-img {
  width: 64px;
  height: 64px;
  border-radius: 12px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
  border: 1px solid rgba(20,28,36,0.05);
}
.tool-recap-img img { width: 90%; height: auto; object-fit: contain; }

.tool-recap-body {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
}
.tool-recap-label {
  font-family: var(--font-title);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #6b7280;
  margin: 0;
}
.tool-recap-model {
  font-family: var(--font-title);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--clr-text);
  margin: 0;
}
.tool-recap-meta {
  font-family: var(--font);
  font-size: 0.88rem;
  color: #5b6573;
  margin: 0;
}
.tool-recap-total {
  font-family: var(--font-title);
  font-size: 1.2rem;
  font-weight: 700;
  color: #4f6d87;
  white-space: nowrap;
}

/* Fieldsets in stap 5 */
.tool-fieldset {
  margin-bottom: 22px;
  padding-bottom: 22px;
  border-bottom: 1px dashed rgba(20,28,36,0.1);
}
.tool-fieldset:last-of-type {
  border-bottom: 0;
  margin-bottom: 14px;
  padding-bottom: 4px;
}
.tool-fieldset-title {
  font-family: var(--font-title);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #4f6d87;
  margin: 0 0 12px;
}

/* Contact fields */
.tool-fields {
  display: grid;
  gap: 14px;
}

.tool-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.tool-field > span {
  font-family: var(--font-title);
  font-size: 0.86rem;
  font-weight: 500;
  color: #4b5562;
}
.tool-field input,
.tool-field textarea {
  font-family: var(--font);
  font-size: 1rem;
  padding: 12px 16px;
  background: #fff;
  border: 1px solid rgba(20,28,36,0.12);
  border-radius: 12px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  color: var(--clr-text);
  width: 100%;
  resize: vertical;
}
.tool-field input::placeholder,
.tool-field textarea::placeholder { color: #b0b6c0; }
.tool-field input:focus,
.tool-field textarea:focus {
  border-color: #4f6d87;
  box-shadow: 0 0 0 3px rgba(79,109,135,0.15);
}
.tool-field input:invalid:not(:placeholder-shown) {
  border-color: #b1361e;
}

.tool-field-row {
  display: grid;
  grid-template-columns: 1.3fr 1fr 0.7fr;
  gap: 12px;
}
.tool-field-row--2 { grid-template-columns: 1fr 1fr; }

.tool-checkbox--privacy {
  width: auto;
  height: auto;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font);
  font-size: 0.95rem;
  color: #5b6573;
  margin-top: 6px;
}
.tool-checkbox--privacy input {
  position: static;
  opacity: 1;
  width: 18px;
  height: 18px;
  accent-color: #4f6d87;
  cursor: pointer;
}
.tool-checkbox--privacy a { color: #4f6d87; text-decoration: underline; }

/* ─── RESULTAATPAGINA (STAP 6) ─── */

.tool-result {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* Hero-kaart: foto + naam + USP's + topspecs */
.tool-result-hero {
  display: grid;
  grid-template-columns: 1.05fr 1.4fr;
  gap: 0;
  border-radius: 22px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(20,28,36,0.08);
  box-shadow: 0 20px 44px rgba(20,28,36,0.06);
  position: relative;
}

.tool-result-img {
  position: relative;
  background: linear-gradient(135deg, #eef2f6 0%, #dde6ee 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 24px;
  overflow: hidden;
}
.tool-result-img::before {
  content: '';
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.5) 0%, transparent 70%);
  top: -40px; right: -60px;
}
.tool-result-img img {
  position: relative;
  z-index: 1;
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 14px 28px rgba(20,28,36,0.15));
}
.tool-result-brand {
  position: absolute;
  top: 18px;
  left: 18px;
  font-family: var(--font-title);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #4f6d87;
  background: rgba(255,255,255,0.85);
  border: 1px solid rgba(79,109,135,0.15);
  padding: 5px 12px;
  border-radius: 100px;
  backdrop-filter: blur(8px);
  z-index: 2;
}

.tool-result-body {
  padding: 32px 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.tool-result-model-name {
  font-family: var(--font-title);
  font-size: clamp(1.45rem, 2.3vw, 1.85rem);
  font-weight: 700;
  color: var(--clr-text);
  margin: 0;
  letter-spacing: -0.005em;
}
.tool-result-tagline {
  font-family: var(--font);
  font-size: 1rem;
  color: #4b5562;
  margin: -10px 0 0;
  line-height: 1.5;
}

.tool-result-section-label {
  font-family: var(--font-title);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #6b7280;
  margin: 0;
}

.tool-result-usps {
  list-style: none;
  padding: 0;
  margin: 6px 0 0;
  display: grid;
  gap: 9px;
}
.tool-result-usps li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-family: var(--font);
  font-size: 0.95rem;
  color: #2c333d;
  line-height: 1.45;
}
.tool-result-usps li svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: #2d4838;
  background: #c3e0c0;
  border-radius: 50%;
  padding: 3px;
  margin-top: 1px;
}

.tool-result-specs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 4px;
}
.tool-spec-box {
  background: #f7f8fa;
  border: 1px solid rgba(20,28,36,0.06);
  border-radius: 12px;
  padding: 12px 10px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.tool-spec-label {
  font-family: var(--font-title);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #6b7280;
}
.tool-spec-value {
  font-family: var(--font-title);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--clr-text);
  line-height: 1.1;
}
.tool-spec-hint {
  font-family: var(--font);
  font-size: 0.7rem;
  color: #98a2b0;
  margin-top: 1px;
}

/* Breakdown-blok onder de hero */
.tool-result-block {
  background: #fff;
  border: 1px solid rgba(20,28,36,0.08);
  border-radius: 18px;
  padding: 22px 26px;
}
.tool-result-block-title {
  font-family: var(--font-title);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #4f6d87;
  margin: 0 0 14px;
}

.tool-result-line {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(20,28,36,0.06);
}
.tool-result-line:last-child { border-bottom: 0; padding-bottom: 2px; }
.tool-result-line:first-child { padding-top: 2px; }

.tool-result-line-label {
  font-family: var(--font);
  font-size: 0.98rem;
  color: var(--clr-text);
  line-height: 1.4;
  flex: 1;
}
.tool-result-line-label small {
  display: block;
  color: #6b7280;
  font-size: 0.84rem;
  margin-top: 3px;
  font-family: var(--font);
}
.tool-result-line-value {
  font-family: var(--font-title);
  font-size: 1rem;
  font-weight: 600;
  color: var(--clr-text);
  white-space: nowrap;
  text-align: right;
}

.tool-result-line-empty {
  font-family: var(--font);
  font-size: 0.95rem;
  color: #98a2b0;
  font-style: italic;
  padding: 6px 0 0;
}

/* Totaalbalk */
.tool-result-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: #4f6d87;
  color: #fff;
  padding: 22px 26px;
  border-radius: 18px;
  position: relative;
}
.tool-result-total::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(255,255,255,0.06) 0%, transparent 60%);
  pointer-events: none;
}
.tool-result-total-label {
  font-family: var(--font-title);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  margin: 0;
  display: flex;
  flex-direction: column;
}
.tool-result-total-label small {
  font-family: var(--font);
  font-size: 0.78rem;
  opacity: 0.75;
  font-weight: 400;
  letter-spacing: 0;
  margin-top: 2px;
}
.tool-result-total-value {
  font-family: var(--font-title);
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

/* Besparingsblok */
.tool-result-savings {
  background: linear-gradient(135deg, #eaf1ec 0%, #c3e0c0 100%);
  border-radius: 18px;
  padding: 26px 28px;
  border: 1px solid rgba(195,224,192,0.6);
}
.tool-result-savings-head {
  display: flex;
  align-items: center;
  gap: 18px;
}
.tool-result-savings-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #fff;
  color: #2d4838;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(45,72,56,0.15);
}
.tool-result-savings-icon svg { width: 24px; height: 24px; }
.tool-result-savings-label {
  font-family: var(--font-title);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #2d4838;
  margin: 0 0 4px;
}
.tool-result-savings-value {
  font-family: var(--font-title);
  font-size: 1.85rem;
  font-weight: 700;
  color: #1c1c1c;
  margin: 0;
  display: flex;
  align-items: baseline;
  gap: 6px;
  line-height: 1;
}
.tool-result-savings-value span {
  font-size: 0.95rem;
  font-weight: 500;
  color: #4b5562;
}
.tool-result-savings-note {
  font-family: var(--font);
  font-size: 0.82rem;
  color: #2d4838;
  opacity: 0.85;
  margin: 14px 0 0;
  line-height: 1.5;
  padding-top: 14px;
  border-top: 1px solid rgba(45,72,56,0.12);
}

/* Uitsplitsing besparing per component (batterijcheck stap 6) */
.tool-result-savings-list {
  list-style: none;
  margin: 14px 0 0;
  padding: 14px 0 0;
  border-top: 1px solid rgba(45,72,56,0.12);
  display: grid;
  gap: 8px;
}
.tool-result-savings-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  font-family: var(--font);
  font-size: 0.92rem;
  color: #2d4838;
}
.tool-result-savings-list li strong {
  font-family: var(--font-title);
  font-weight: 700;
  color: #1c1c1c;
  white-space: nowrap;
}

/* ─── Warmtefonds financierings-kaart ─── */
.fin-card {
  --fin-bg:     #1c2851;
  --fin-orange: #f09040;
  --fin-green:  #a8d9a7;
  position: relative;
  background: var(--fin-bg);
  border-radius: 24px;
  padding: 36px 40px;
  color: #fff;
  margin: 22px 0 0;
  overflow: hidden;
}
.fin-card::before {
  /* Subtiele oranje gradient-glow in de hoek voor extra polish */
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(240,144,64,0.22) 0%, transparent 70%);
  pointer-events: none;
}

.fin-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 26px;
  position: relative;
}
.fin-head-text {
  flex: 1;
  min-width: 0;
}
.fin-eyebrow {
  font-family: var(--font-title);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fin-orange);
  margin: 0 0 8px;
}
.fin-title {
  font-family: var(--font-title);
  font-size: clamp(1.4rem, 2.2vw, 1.8rem);
  font-weight: 700;
  margin: 0 0 10px;
  letter-spacing: -0.012em;
  line-height: 1.2;
  color: #fff;
}
.fin-title #fin-headline { color: var(--fin-green); white-space: nowrap; }

.fin-bonus {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(168,217,167,0.12);
  border: 1px solid rgba(168,217,167,0.3);
  border-radius: 12px;
  padding: 10px 16px;
  margin: -8px 0 22px;
  font-family: var(--font);
  font-size: 0.92rem;
  color: rgba(255,255,255,0.92);
  line-height: 1.45;
}
.fin-bonus-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--fin-green);
  color: #1c2851;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
}
.fin-bonus strong { color: var(--fin-green); font-weight: 700; }
.fin-sub {
  font-family: var(--font);
  font-size: 0.96rem;
  color: rgba(255,255,255,0.78);
  margin: 0;
  line-height: 1.5;
  max-width: 540px;
}
.fin-logo {
  flex-shrink: 0;
  background: #fff;
  border-radius: 10px;
  padding: 8px 12px;
  display: flex;
  align-items: center;
}
.fin-logo img { height: 26px; width: auto; display: block; }

.fin-inputs {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 16px;
  margin-bottom: 14px;
}
.fin-input-group label {
  display: block;
  font-family: var(--font-title);
  font-size: 0.86rem;
  font-weight: 500;
  color: rgba(255,255,255,0.92);
  margin-bottom: 6px;
}
.fin-input-wrap {
  position: relative;
}
.fin-input-prefix {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-title);
  font-size: 1.1rem;
  font-weight: 500;
  color: #6b7681;
  pointer-events: none;
}
.fin-input {
  width: 100%;
  background: #fff;
  border: 2px solid transparent;
  border-radius: 14px;
  padding: 14px 18px 14px 38px;
  font-family: var(--font-title);
  font-size: 1.1rem;
  font-weight: 600;
  color: #1c1c1c;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.fin-select {
  width: 100%;
  background: #fff url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%231c2851' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>") no-repeat right 18px center;
  background-size: 14px;
  border: 2px solid transparent;
  border-radius: 14px;
  padding: 14px 44px 14px 18px;
  font-family: var(--font-title);
  font-size: 1.1rem;
  font-weight: 600;
  color: #1c1c1c;
  outline: none;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.fin-input:focus,
.fin-select:focus {
  border-color: var(--fin-orange);
  box-shadow: 0 0 0 4px rgba(240,144,64,0.25);
}

.fin-checkbox {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  margin: 6px 0 26px;
  font-family: var(--font);
  font-size: 0.96rem;
  color: rgba(255,255,255,0.92);
  user-select: none;
}
.fin-checkbox input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 22px;
  height: 22px;
  border: 1.5px solid rgba(255,255,255,0.4);
  border-radius: 6px;
  background: transparent;
  cursor: pointer;
  position: relative;
  transition: background 0.15s, border-color 0.15s;
  flex-shrink: 0;
}
.fin-checkbox input[type="checkbox"]:checked {
  background: var(--fin-orange);
  border-color: var(--fin-orange);
}
.fin-checkbox input[type="checkbox"]:checked::after {
  content: '';
  position: absolute;
  left: 6px; top: 2px;
  width: 6px; height: 11px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(45deg);
}
.fin-info {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px; height: 20px;
  background: var(--fin-orange);
  color: #fff;
  border-radius: 50%;
  font-family: var(--font-title);
  font-size: 0.78rem;
  font-weight: 700;
  cursor: help;
  font-style: italic;
  position: relative;
}
.fin-info:hover::after {
  content: 'Bij een verzamelinkomen ≤ €60.000 leent u 0% rente via de energiebespaarlening van het Nationaal Warmtefonds.';
  position: absolute;
  bottom: calc(100% + 8px);
  right: -8px;
  width: 260px;
  background: #fff;
  color: #1c2851;
  font-family: var(--font);
  font-size: 0.82rem;
  font-weight: 400;
  font-style: normal;
  line-height: 1.4;
  padding: 10px 14px;
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
  z-index: 5;
}

.fin-results {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.12);
  margin-bottom: 24px;
}
.fin-result {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.fin-result-label {
  font-family: var(--font);
  font-size: 0.92rem;
  color: rgba(255,255,255,0.7);
}
.fin-result-value {
  font-family: var(--font-title);
  font-size: clamp(1.5rem, 2.4vw, 2.05rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.05;
  color: #fff;
  transition: color 0.2s;
}
.fin-result--primary .fin-result-value {
  color: var(--fin-green);
}

.fin-cta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: var(--fin-orange);
  color: var(--fin-bg);
  font-family: var(--font-title);
  font-size: 1rem;
  font-weight: 700;
  padding: 16px 28px 16px 32px;
  border-radius: 100px;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(240,144,64,0.4);
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  border: 0;
  cursor: pointer;
}
.fin-cta:hover {
  background: #e07c2c;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(240,144,64,0.55);
}
.fin-cta-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px; height: 30px;
  background: #fff7ee;
  border-radius: 50%;
  flex-shrink: 0;
}
.fin-cta-arrow svg { width: 14px; height: 14px; color: var(--fin-bg); }

.fin-disclaimer {
  font-family: var(--font);
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  margin: 18px 0 0;
  line-height: 1.5;
}

@media (max-width: 760px) {
  .fin-card     { padding: 26px 22px; }
  .fin-head     { flex-direction: column; gap: 14px; }
  .fin-logo     { align-self: flex-start; }
  .fin-inputs   { grid-template-columns: 1fr; }
  .fin-results  { grid-template-columns: 1fr 1fr; gap: 18px; }
  .fin-result-value { font-size: 1.5rem; }
  .fin-info:hover::after { right: auto; left: -8px; width: 220px; }
}

/* Voetnoot onder offerte */
.tool-result-footnote {
  font-family: var(--font);
  font-size: 0.84rem;
  color: #6b7280;
  text-align: center;
  margin: 8px 4px 0;
  line-height: 1.5;
}

/* Empty state als geen model */
.tool-offer-empty {
  font-style: italic;
  color: #98a2b0;
  font-size: 0.92rem;
  padding: 28px;
  text-align: center;
}

/* Nav buttons */
.tool-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(20,28,36,0.08);
  flex-wrap: wrap;
}

.tool-nav-btn {
  font-family: var(--font-title);
  font-size: 1rem;
  font-weight: 500;
  padding: 13px 24px;
  border-radius: 100px;
  border: 0;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, transform 0.15s, box-shadow 0.2s, opacity 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  line-height: 1.2;
}
.tool-nav-btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.tool-nav-btn[hidden] { display: none; }

.tool-nav-btn--prev {
  background: #e5e9ee;
  color: #4f6d87;
  margin-right: auto;
}
.tool-nav-btn--prev:hover:not(:disabled) { background: #d8dee5; }
.tool-nav-btn--prev:disabled { opacity: 0.4; cursor: not-allowed; }

.tool-nav-btn--next,
.tool-nav-btn--submit {
  background: #4f6d87;
  color: #fff;
  box-shadow: 0 4px 18px rgba(79,109,135,0.32);
}
.tool-nav-btn--next:hover,
.tool-nav-btn--submit:hover {
  background: #3d5570;
  transform: translateY(-2px);
  box-shadow: 0 8px 26px rgba(79,109,135,0.45);
}

.tool-nav-btn--cancel {
  background: transparent;
  color: #5b6573;
  border: 1.5px solid rgba(20,28,36,0.15);
}
.tool-nav-btn--cancel:hover {
  border-color: rgba(20,28,36,0.35);
}

/* Bedankt-pagina */
.tool-thanks { padding: 24px 0 40px; }
.tool-thanks-card {
  background: #fff;
  border-radius: 24px;
  border: 1px solid rgba(20,28,36,0.06);
  padding: 56px 44px;
  text-align: center;
  box-shadow: 0 24px 60px rgba(20,28,36,0.06);
}
.tool-thanks-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #c3e0c0;
  color: #2d4838;
  margin-bottom: 18px;
}
.tool-thanks-icon svg { width: 28px; height: 28px; }
.tool-thanks-eyebrow {
  font-family: var(--font-title);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #4f6d87;
  margin: 0 0 10px;
}
.tool-thanks-title {
  font-family: var(--font-title);
  font-size: clamp(1.6rem, 2.6vw, 2.1rem);
  font-weight: 700;
  margin: 0 0 14px;
  color: var(--clr-text);
  letter-spacing: -0.008em;
}
.tool-thanks-text {
  font-family: var(--font);
  font-size: 1.05rem;
  color: #5b6573;
  margin: 0 auto 28px;
  max-width: 520px;
  line-height: 1.55;
}
.tool-thanks-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}
.tool-thanks-cta {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-title);
  background: #4f6d87;
  color: #fff;
  padding: 14px 32px;
  border-radius: 100px;
  text-decoration: none;
  font-weight: 500;
  box-shadow: 0 4px 18px rgba(79,109,135,0.32);
  transition: background 0.2s, transform 0.15s;
}
.tool-thanks-cta:hover { background: #3d5570; transform: translateY(-2px); }
.tool-thanks-cta--ghost {
  background: transparent;
  color: #4f6d87;
  border: 1.5px solid rgba(79,109,135,0.3);
  box-shadow: none;
}
.tool-thanks-cta--ghost:hover {
  background: rgba(79,109,135,0.06);
  border-color: rgba(79,109,135,0.5);
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 860px) {
  .tool-result-hero { grid-template-columns: 1fr; }
  .tool-result-img { padding: 24px; }
  .tool-result-img img { max-height: 200px; }
  .tool-result-specs { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px) {
  .tool-wizard { padding: 28px 22px; border-radius: 18px; }
  .tool-progress {
    grid-template-columns: repeat(6, 1fr);
    gap: 4px;
  }
  .tool-progress li { padding: 10px 2px; }
  .tool-progress-num { width: 22px; height: 22px; font-size: 0.78rem; }
  .tool-progress-label { display: none; }
  .tool-progress li.is-current .tool-progress-label { display: block; font-size: 0.7rem; }
  .tool-size-fields { grid-template-columns: 1fr; }
  .tool-field-row { grid-template-columns: 1fr 1fr; }
  .tool-field-row--2 { grid-template-columns: 1fr; }
  .tool-field-row .tool-field:nth-child(3) { grid-column: 1 / -1; }
  .tool-nav { justify-content: space-between; }
  .tool-nav-btn { padding: 12px 22px; font-size: 0.95rem; }
  .tool-thanks-card { padding: 40px 24px; }
  .tool-extra { flex-wrap: wrap; }
  .tool-recap { flex-wrap: wrap; }
  .tool-recap-total { width: 100%; text-align: right; padding-top: 6px; border-top: 1px dashed rgba(20,28,36,0.1); }
  .tool-result-body { padding: 26px 22px; }
  .tool-result-block { padding: 20px 22px; }
  .tool-result-total { padding: 18px 22px; flex-direction: column; align-items: flex-start; gap: 8px; }
  .tool-result-total-value { font-size: 1.7rem; }
  .tool-result-savings { padding: 22px 22px; }
}

@media (max-width: 460px) {
  .tool-inner { padding: 0 14px; }
  .tool-wizard { padding: 22px 16px; }
  .tool-models { grid-template-columns: 1fr; }
  .tool-room, .tool-extra { padding: 14px 16px; }
  .tool-offer { padding: 20px 18px; }
}


