/* ============================================================
   HitLit — de hitte- en lichtweringsspecialist · Utrecht
   Layout 1:1 overgenomen van donkerzon.nl (nav, spacing,
   secties, dropdowns, footer). Branding: dutch-orange palette,
   Fraunces (koppen) + Sora (tekst).
   ============================================================ */

/* ── VARIABELEN ────────────────────────────────────────────── */
:root {
  /* Base */
  --white: #ffffff;
  --off-white: #f9f7f4;
  --bg-grey: #f6f7f7;          /* donkerzon sectie-grijs */
  --light-gray: #f0ede8;
  --border: #e5e0d8;
  --border-grey: #c6c6c6;      /* donkerzon lijntjes */
  --text: #1c1c1a;
  --text-muted: #7a7570;
  --footer-bg: #1c1c1a;        /* donker vlak (donkerzon #17272f) */

  /* Accent: dutch-orange */
  --accent: #d6500a;
  --accent-rgb: 214, 80, 10;
  --accent-light: #fdf0e8;
  --accent-hover: #b84008;
  --accent-on-dark: color-mix(in srgb, var(--accent) 65%, white);

  /* Easing — exponentiële ease-out i.p.v. de browser-default */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);

  /* Herbruikbaar vinkje (accent-cirkel + witte check) */
  --vinkje: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18 18'%3E%3Ccircle cx='9' cy='9' r='9' fill='%23d6500a'/%3E%3Cpath d='M5 9.5l2.5 2.5L13 6.5' stroke='white' stroke-width='2' fill='none'/%3E%3C/svg%3E");
}

/* ── BASE ──────────────────────────────────────────────────── */
* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

/* Zichtbare focusring voor toetsenbordgebruikers — direct, nooit geanimeerd */
:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }

body {
  font-family: 'Sora', sans-serif;
  font-size: 15px;
  line-height: 1.7;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

h2 { font-size: 30px; }
h3 { font-size: 19px; }

img { max-width: 100%; }
a { color: inherit; }

/* Container zoals donkerzon .maxWidth */
.maxWidth {
  max-width: 1280px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

.bgGrey { background-color: var(--bg-grey); }

p.subtitle {
  color: var(--accent);
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}

/* USP-lijstjes met vinkje (overal hetzelfde patroon) */
.uspList { display: flex; flex-direction: column; gap: 10px; margin: 30px 0; }
.uspList span {
  display: grid; grid-template-columns: 20px 1fr;
  align-items: center; gap: 8px;
  font-size: 13.5px; line-height: 1.4;
}
.uspList span::before {
  content: ""; width: 18px; height: 18px;
  background: var(--vinkje) no-repeat center / contain;
}

/* ── KNOPPEN (donkerzon .buttonSolid) ──────────────────────── */
.buttonSolid {
  display: inline-block;
  background-color: var(--accent);
  border: 1px solid transparent;
  border-radius: 50px;
  padding: 9px 20px;
  font-weight: 500;
  font-size: 14.5px;
  font-family: inherit;
  color: var(--white);
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.2s, box-shadow 0.2s;
  white-space: nowrap;
}
.buttonSolid:hover { opacity: 0.8; box-shadow: 0 0 0 3px rgba(0,0,0,0.2); }
.buttonSolid.bgDark { background-color: var(--footer-bg) !important; color: var(--white) !important; }
.buttonSolid.bgOrange { background-color: var(--accent) !important; color: var(--white) !important; }
.buttonSolid.buttonWhite { background-color: var(--white); color: var(--text); }
.buttonSolid.buttonOutline { background: transparent; border-color: var(--border-grey); color: var(--text); }
.arrowItem::after { content: " \2192"; font-family: 'Sora', sans-serif; }

/* ── SCROLL ANIMATE ────────────────────────────────────────── */
[data-animate] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s var(--ease-out), transform 0.65s var(--ease-out);
}
[data-animate="slide-left"] { transform: translateX(-20px); }
[data-animate="fade"] { transform: none; }
[data-animate].is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  [data-animate] { transition: none; }
}

/* ══════════════════════════════════════════════════════════
   NAV — donkerzon: topbar + sticky witte balk + hover-dropdowns
   ══════════════════════════════════════════════════════════ */
nav {
  background-color: var(--white);
  position: sticky; top: 0;
  box-shadow: 0 3px 30px rgba(0,0,0,0.06);
  z-index: 100;
}

/* Demo bar — rood, beweegt mee met de sticky nav */
.demoBar { background: #b91c1c; padding: 7px 20px; text-align: center; }
.demoBar p {
  color: #ffffff; font-size: 12px; font-weight: 600;
  letter-spacing: 0.02em; margin: 0; line-height: 1.4;
}
.demoBar a { color: #ffffff; text-decoration: underline; text-underline-offset: 3px; white-space: nowrap; }
.demoBar a:hover { color: #fecaca; }

/* Demo popup (eerste bezoek) */
.demoModalOverlay {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(0,0,0,0.55);
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
}
.demoModal {
  background: var(--white); border-radius: 16px;
  max-width: 420px; padding: 32px 36px; text-align: center;
  box-shadow: 0 20px 60px rgba(0,0,0,0.35);
}
.demoModal h2 { font-size: 22px; margin-bottom: 10px; }
.demoModal p { font-size: 14px; color: var(--text-muted); line-height: 1.7; margin-bottom: 22px; }
.demoModal .demoModalTag {
  display: inline-block; background: #b91c1c; color: #fff;
  font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  border-radius: 20px; padding: 4px 14px; margin-bottom: 14px;
}

/* Topbar */
nav .topBar { background-color: var(--footer-bg); padding: 10px; }
nav .topBar .topBarInner { display: flex; align-items: center; }
nav .topBar .topBarLeft { flex: 1; }
nav .topBar .topBarcenter { flex: 1; display: flex; justify-content: center; align-items: center; gap: 0 8px; }
nav .topBar .topBarcenter a { text-decoration: underline; }
nav .topBar .topBarstars { display: flex; gap: 2px; color: var(--accent-on-dark); font-size: 12px; letter-spacing: 1px; }
nav .topBar .topBarRight { flex: 1; display: flex; justify-content: flex-end; gap: 0 12px; align-items: center; }
nav .topBar span, nav .topBar a { color: var(--white); font-size: 11.5px; white-space: nowrap; }
nav .topBar .semiBold { font-weight: 600; }

@media (max-width: 768px) {
  nav .topBar .topBarLeft, nav .topBar .topBarRight { display: none; }
}

/* Menubalk */
nav .menuInner {
  display: grid;
  grid-template-columns: 10% 1fr 28%;
  align-items: center;
  padding: 5px 20px;
  gap: 0 25px;
  min-height: 77px;
}
nav .logo a {
  font-family: 'Fraunces', serif;
  font-weight: 800; font-size: 26px; letter-spacing: -0.03em;
  color: var(--text); text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px;
}
nav .logo a::before {
  content: ""; display: inline-block; width: 11px; height: 11px;
  background: var(--accent); border-radius: 2px;
}
/* Zodra er een echt logo (img) in de nav of footer staat, vervalt
   het oranje vierkantje vanzelf */
nav .logo img { height: 42px; width: auto; display: block; }
nav .logo a:has(img)::before { display: none; }

nav .menuItems { display: flex; justify-content: center; gap: 0 6px; align-items: center; }
nav .menuItems > a, nav .menuItems .withSubmenu > a {
  padding: 7px 5px;
  font-weight: 500; font-size: 14.5px;
  text-decoration: none; color: var(--text);
  transition: color 0.2s;
}
nav .menuItems a:hover { color: var(--accent); }
nav .menuItems a.active { color: var(--accent); }

/* Dropdown (hover, met overlay) */
nav .withSubmenu { position: relative; }
nav .withSubmenu > a.submenuitem::after {
  content: ""; display: inline-block;
  width: 7px; height: 7px; margin-left: 6px; margin-bottom: 2px;
  border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg); transition: transform 0.2s;
}
nav .withSubmenu .submenu {
  opacity: 0; visibility: hidden;
  position: absolute; left: -30%; top: 35px;
  background: var(--white);
  padding: 40px 15px 15px;
  border-radius: 0 0 20px 20px;
  width: max-content; min-width: 210px;
  display: flex; flex-direction: column; gap: 10px;
  transform: translateY(-6px);
  /* visibility pas ná de fade-out uitzetten, anders knipt het menu weg */
  transition: opacity 0.25s var(--ease-out), transform 0.25s var(--ease-out), visibility 0s linear 0.25s;
  z-index: 1001;
}
nav .withSubmenu.open .submenu {
  opacity: 1; visibility: visible; transform: translateY(0);
  transition: opacity 0.25s var(--ease-out), transform 0.25s var(--ease-out);
}
/* onzichtbare brug tussen menu-item en paneel, zodat de muis
   het item niet "verlaat" onderweg naar het submenu */
nav .withSubmenu::after {
  content: ""; position: absolute; left: -30%; right: -30%;
  top: 100%; height: 22px;
  display: none;
}
nav .withSubmenu.open::after { display: block; }
nav .withSubmenu .submenu a {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none; font-size: 14px; font-weight: 500;
  padding: 4px 10px; border-radius: 8px;
}
nav .withSubmenu .submenu a:hover { color: var(--accent); background: var(--bg-grey); }
nav .withSubmenu .submenu a.active { color: var(--accent); background: var(--accent-light); }
nav .withSubmenu .submenu a img {
  width: 50px; height: 50px; object-fit: contain; border-radius: 6px;
}

/* Overlay achter open dropdown (JS maakt .menu-overlay aan) */
.menu-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.35);
  opacity: 0; visibility: hidden;
  transition: opacity 0.3s var(--ease-out);
  z-index: 99;
}
.menu-overlay.active { opacity: 1; visibility: visible; }

/* CTA-knoppen rechts */
nav .menuItemsEnd { display: flex; gap: 0 8px; justify-content: flex-end; align-items: center; }

/* Mobiel menu */
nav .mobileMenuTrigger { display: none; }
nav .menuItemsMobile { display: none; }

@media (max-width: 1080px) {
  nav .menuInner { display: flex; justify-content: space-between; }
  nav .menuItems, nav .menuItemsEnd { display: none; }
  nav .mobileMenuTrigger {
    display: block; background: none; border: none;
    font-size: 26px; line-height: 1; cursor: pointer; color: var(--text);
    padding: 4px 8px;
  }
  nav .menuItemsMobile {
    display: none;
    position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    background: var(--white); z-index: 1002;
    padding: 20px; overflow-y: auto;
  }
  nav .menuItemsMobile.open { display: block; }
  nav .menuItemsMobile .mobileMenuClose {
    background: none; border: none; font-size: 26px; cursor: pointer;
    position: absolute; top: 18px; right: 20px; color: var(--text);
  }
  nav .menuItemsMobile .itemsMobile { display: flex; flex-direction: column; margin-top: 50px; }
  nav .menuItemsMobile .itemsMobile > a {
    padding: 14px 4px; font-size: 17px; font-weight: 500;
    text-decoration: none; border-bottom: 1px solid var(--border);
  }
  nav .menuItemsMobile .itemsMobile > a.active { color: var(--accent); font-weight: 600; }
  nav .submenuMobile a.active { color: var(--accent); font-weight: 600; }
  nav .menuItemsMobile .itemsMobile > a.dropdown::after {
    content: ""; float: right; margin-top: 8px;
    width: 8px; height: 8px;
    border-right: 2px solid var(--text); border-bottom: 2px solid var(--text);
    transform: rotate(-45deg);
  }
  nav .submenuMobile { display: none; flex-direction: column; background: var(--bg-grey); border-radius: 0 0 12px 12px; }
  nav .submenuMobile.open { display: flex; }
  nav .submenuMobile a {
    display: flex; align-items: center; gap: 12px;
    padding: 11px 16px; font-size: 15px; text-decoration: none;
    border-bottom: 1px solid var(--border);
  }
  nav .submenuMobile a img { width: 42px; height: 42px; object-fit: contain; }
  nav .menuItemsMobile .mobileCtas { display: flex; flex-direction: column; gap: 10px; margin-top: 24px; }
  nav .menuItemsMobile .mobileCtas .buttonSolid { text-align: center; }
}

/* ── BREADCRUMB (subpagina's, donkere balk onder nav) ──────── */
.breadcrumbBar { background: var(--footer-bg); padding: 14px 0; }
.breadcrumbBar p { color: rgba(255,255,255,0.85); font-size: 13.5px; margin: 0; }
.breadcrumbBar a { color: var(--white); font-weight: 600; text-decoration: none; }
.breadcrumbBar a:hover { text-decoration: underline; }

/* ══════════════════════════════════════════════════════════
   HERO — foto full-bleed, witte kaart links, blur-badge rechts
   ══════════════════════════════════════════════════════════ */
section.headerContainer {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  height: calc(100vh - 180px);
  min-height: 520px;
}
section.headerContainer.halfBanner { height: 65vh; min-height: 420px; }
section.headerContainer .headerInner {
  display: grid; height: 100%;
  align-items: center; position: relative;
}
section.headerContainer .headerText {
  background-color: var(--white);
  border-radius: 20px;
  padding: 30px 40px;
  max-width: 580px;
}
section.headerContainer .headerText h1 { font-size: 24px; }
section.headerContainer .headerText > p { font-weight: 350; margin-top: 16px; font-size: 14px; }
section.headerContainer .headerText ul {
  margin: 20px 0 30px; padding: 0; list-style: none;
  display: flex; flex-direction: column; gap: 8px;
}
section.headerContainer .headerText ul li {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; font-weight: 400;
}
section.headerContainer .headerText ul li::before {
  content: ""; display: inline-block; flex-shrink: 0;
  width: 18px; height: 18px;
  background: var(--vinkje) no-repeat center / contain;
}
section.headerContainer .ctaHeader {
  display: flex; flex-wrap: wrap; justify-content: flex-start; align-items: center; gap: 12px 16px;
}
section.headerContainer .ctaHeader .ctaHeaderline {
  width: 1px; height: 40px; background-color: var(--border-grey); align-self: center;
}
section.headerContainer .ctaHeader a.textLink {
  font-size: 13.5px; font-weight: 600; color: var(--text);
  text-decoration: underline; text-underline-offset: 3px;
}
section.headerContainer .ctaHeader a.textLink:hover { color: var(--accent); }

/* Blur-badge (rechtsonder in hero) */
.uspBlurContainer {
  max-width: fit-content;
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  background: rgba(255,255,255,0.25);
  border-radius: 35px;
  padding: 6px 20px 6px 13px;
  position: absolute; bottom: 30px; right: 0;
}
.uspBlurContainer .uspBlur { display: flex; align-items: center; gap: 8px; }
.uspBlurContainer .uspBlur p { color: var(--white); font-size: 13px; margin: 0; text-shadow: 0 1px 6px rgba(0,0,0,0.4); }
.uspBlurContainer .uspBlur p strong { font-weight: 600; }

@media (max-width: 767px) {
  section.headerContainer { height: auto; padding: 30px 0 70px; }
  section.headerContainer .headerText { padding: 24px; margin-top: 10px; margin-bottom: 55px; }
  section.headerContainer .ctaHeader { flex-wrap: wrap; gap: 10px; }
  section.headerContainer .ctaHeader .ctaHeaderline { display: none; }
  .uspBlurContainer { right: 12px; bottom: 12px; }
}

/* ── USP-STRIP onder hero ──────────────────────────────────── */
.upsUnderBannerContainer { background: var(--white); border-bottom: 1px solid var(--border); }
.upsUnderBannerInner { padding-top: 22px; padding-bottom: 22px; }
.upsUnderBannerBox { display: flex; align-items: center; gap: 30px; }
.upsUnderBannerBox .usps { flex: 1; display: flex; align-items: center; gap: 20px; }
.upsUnderBannerBox .usps .uspsImgbox {
  width: 46px; height: 46px; flex-shrink: 0;
  background: var(--accent-light); border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
}
.upsUnderBannerBox .usps .uspsImgbox svg { width: 22px; height: 22px; }
.upsUnderBannerBox .usps h2 { font-family: 'Sora', sans-serif; font-size: 16px; font-weight: 600; letter-spacing: 0; }
.upsUnderBannerBox .usps p { font-size: 12.5px; color: var(--text-muted); margin: 2px 0 0; line-height: 1.5; }
.upsUnderBannerBox .uspsLineV { width: 1px; height: 60px; background: #e0e0e0; flex-shrink: 0; }

@media (max-width: 860px) {
  .upsUnderBannerBox { flex-direction: column; align-items: flex-start; gap: 18px; }
  .upsUnderBannerBox .uspsLineV { display: none; }
}

/* ══════════════════════════════════════════════════════════
   QUALITY-SECTIES — tekst + afbeelding (donkerzon quality*)
   ══════════════════════════════════════════════════════════ */
section.qualityContainer { margin-top: 50px; margin-bottom: 50px; }
section.qualityRightContainer { padding: 50px 0; }
.qualityInner {
  display: grid;
  grid-template-columns: minmax(0,1fr) minmax(0,1fr);
  gap: 80px;
  align-items: center;
}
.qualityInner .imageContainer {
  display: flex; justify-content: center;
  aspect-ratio: 1 / 1; min-height: 420px; max-height: 450px;
  position: relative; width: 100%;
}
.qualityInner .imageContainer img {
  width: 100%; height: 100%; object-fit: cover;
  display: block; border-radius: 24px;
}
.qualityInner .imageContainer .uspBlurContainer { left: -20px; right: auto; background: rgba(28,28,26,0.45); }
.qualityHeader h2 { max-width: 85%; }
.qualityHeader .welcomeContent { font-weight: 300; line-height: 1.9em; width: 90%; margin-top: 14px; }

@media (max-width: 860px) {
  .qualityInner { grid-template-columns: 1fr; gap: 30px; }
  .qualityInner .imageContainer { min-height: 280px; aspect-ratio: 4/3; order: -1; }
  .qualityHeader h2, .qualityHeader .welcomeContent { max-width: 100%; width: 100%; }
}

/* ── OPLOSSINGEN — grijze panel met probleem-rijen ─────────── */
section.oplossingenSection { padding: 0 20px; margin: 20px 0; }
.oplossingenContainer {
  max-width: 1280px; margin: 0 auto;
  background: var(--bg-grey); border-radius: 24px;
  padding: 50px;
  display: flex; gap: 50px; align-items: center;
}
.oplossingenInnerleft { display: flex; flex-direction: column; width: 50%; }
.oplossingenInnerleft h2 { width: 90%; font-size: 30px; margin: 4px 0 14px; }
.oplossingenInnerleft p.content { line-height: 28px; margin: 0; font-weight: 300; }
.oplossingenInnerleft a.buttonSolid { width: fit-content; margin-top: 25px; }
.oplossingenInnerright { display: flex; flex-direction: column; gap: 12px; flex: 1; }
.oplossingItem { background: var(--white); border-radius: 8px; overflow: hidden; }
.oplossingTrigger {
  width: 100%; background: none; border: none; cursor: pointer;
  padding: 16px 20px 16px 30px;
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
  font-family: inherit; font-size: 15px; font-weight: 600; color: var(--text);
  text-align: left; transition: color 0.3s var(--ease-out);
}
.oplossingTrigger::after {
  content: "\203A"; font-size: 20px; line-height: 1; color: var(--accent);
  flex-shrink: 0; transition: transform 0.3s var(--ease-out);
}
.oplossingTrigger:hover { color: var(--accent); }
.oplossingItem.open .oplossingTrigger { color: var(--accent); }
.oplossingItem.open .oplossingTrigger::after { transform: rotate(90deg); }
.oplossingPanel { max-height: 0; overflow: hidden; transition: max-height 0.35s var(--ease-out); }
.oplossingPanelInner { padding: 0 30px 18px; }
.oplossingPanelInner p { margin: 0 0 12px; font-size: 14px; font-weight: 300; line-height: 1.7; color: var(--text-muted); }
.oplossingPanelInner a {
  font-size: 13.5px; font-weight: 600; color: var(--accent);
  text-decoration: underline; text-underline-offset: 3px;
}

@media (max-width: 860px) {
  .oplossingenContainer { flex-direction: column; padding: 30px 20px; }
  .oplossingenInnerleft { width: 100%; }
  .oplossingenInnerright { width: 100%; }
}

/* ── LEGAL-PAGINA'S (privacy policy & algemene voorwaarden) ── */
.legalSection { padding: 50px 20px 70px; }
.legalSection .legalInner { max-width: 760px; }
.legalSection h1 { font-size: 34px; margin: 4px 0 18px; }
.legalSection h2 { font-size: 19px; margin: 26px 0 8px; }
.legalSection p { font-weight: 300; margin: 0 0 10px; }
.legalSection a { color: var(--accent); }

/* ── SOLUTIONS — productcategorie-kaarten + advieskaart ────── */
section.solutionsContainer { padding: 45px 20px; }
.solutionsHeader p { margin-bottom: 8px; }
.solutionsCategories {
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  gap: 25px; margin-top: 25px;
}
.solutionCategory {
  display: flex; flex-direction: column; flex-grow: 1; position: relative;
  background: var(--bg-grey); border-radius: 15px; padding: 30px;
}
.solutionCategory .solutionimg {
  height: 170px; display: flex; align-items: center; justify-content: center;
  background: var(--white); border-radius: 10px; overflow: hidden;
}
.solutionCategory .solutionimg img { object-fit: cover; width: 100%; height: 100%; }
.solutionCategory h3 { margin-top: 15px; font-weight: 600; }
.solutionCategory p.catText { font-size: 13.5px; color: var(--text-muted); margin: 6px 0 0; }
.solutionCategory .uspList { margin: 14px 0 18px; }
.solutionCategory a.catLink {
  font-size: 14px; font-weight: 600; color: var(--accent);
  text-decoration: none; margin-top: auto;
}
.solutionCategory a.catLink:hover { color: var(--accent-hover); }

/* Donkere advieskaart in het grid */
.adviseContainer {
  background: var(--footer-bg); border-radius: 15px; padding: 35px 30px;
  display: flex; flex-direction: column; justify-content: center; gap: 14px;
}
.adviseContainer h3 { color: var(--white); font-size: 22px; }
.adviseContainer p { color: rgba(255,255,255,0.7); font-size: 13.5px; line-height: 1.7; }
.adviseContainer .personalAdvice span {
  height: auto; border-radius: 19px; background-color: var(--white);
  box-shadow: 0 0 6px rgba(0,0,0,0.16); padding: 5px 15px;
  color: var(--text); font-size: 10px; font-weight: 500;
  display: inline-flex; align-items: center; width: fit-content;
}
.adviseContainer .personalAdvice span::before {
  content: ""; background-color: #67bc03; padding: 3px;
  border-radius: 100%; display: inline-block; margin-right: 6px;
}
.adviseContainer a.buttonSolid { width: fit-content; }

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

/* ── PRODUCTMODELLEN (productdetailpagina's, donkerzon populairitem) ── */
section.populairitemContainer { margin-top: 40px; margin-bottom: 20px; }
.populairitemHeader { margin-bottom: 30px; }
.populairitemCategories {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0 30px;
}
.populairitemCategory { display: flex; flex-direction: column; margin-bottom: 20px; }
.populairitemImage {
  position: relative; background: var(--bg-grey); border-radius: 15px;
  display: flex; align-items: center; justify-content: center;
  height: 220px; overflow: hidden; margin-bottom: 16px;
}
.populairitemImage img { object-fit: contain; width: 60%; height: auto; max-height: 180px; }
.populairitemImage .productLeftCta {
  position: absolute; top: 15px; right: 15px;
  background: var(--accent); color: var(--white);
  padding: 5px 10px; border-radius: 5px;
  font-weight: 500; font-size: 12.5px; z-index: 1;
}
.populairitemCategory h3 { font-family: 'Sora', sans-serif; font-size: 17px; font-weight: 700; letter-spacing: 0; margin-bottom: 10px; }
.populairitemCategory .uspList { margin: 0 0 23px; }
.populairitemLine { border-top: 1px solid var(--border-grey); }
.populairitemTel {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px; cursor: pointer;
}
.populairitemTel p { font-weight: 600; font-size: 14px; margin: 0; }
.populairitemTel .specChevron {
  width: 8px; height: 8px; flex-shrink: 0; margin-right: 4px;
  border-right: 2px solid var(--text); border-bottom: 2px solid var(--text);
  transform: rotate(45deg); transition: transform 0.4s var(--ease-out)-in-out;
}
.populairitemSpecs.open .populairitemTel .specChevron { transform: rotate(225deg); }
.populairitemClickcontent {
  max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease-out);
  padding: 0 10px;
}
.populairitemSpecs.open .populairitemClickcontent { max-height: 600px; padding-bottom: 14px; }
.populairitemClickcontent > p { font-size: 13px; color: #555; line-height: 1.6; margin: 4px 0 12px; }
.populairitemSpec {
  display: grid; grid-template-columns: 45% 1fr; gap: 8px;
  padding: 3px 0;
}
.populairitemSpec p { font-size: 13.5px; margin: 0; line-height: 1.4; }
.populairitemSpec .specType { font-weight: 600; }
.populairitemSpecs { margin-bottom: 18px; }
.populairitemCategory .buttonSolid { width: fit-content; }

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

/* ── PROJECTEN ─────────────────────────────────────────────── */
section.projectsContainer { padding: 50px 20px 60px; }
.projectsGrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; margin-top: 25px; }
.projectCard {
  background: var(--white); border-radius: 15px; overflow: hidden;
  display: flex; flex-direction: column;
  transition: box-shadow 0.3s var(--ease-out);
}
.projectCard:hover { box-shadow: 0 10px 35px rgba(0,0,0,0.1); }
.projectCard .projectImg { height: 210px; overflow: hidden; }
.projectCard .projectImg img { width: 100%; height: 100%; object-fit: cover; display: block; }
.projectCard .projectBody { padding: 18px 20px 22px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.projectCard .projectTag {
  background: var(--accent); color: var(--white);
  font-size: 10.5px; font-weight: 600; letter-spacing: 0.03em;
  border-radius: 20px; padding: 3px 12px; width: fit-content;
  margin-top: -32px; position: relative; z-index: 1;
}
.projectCard h3 { font-family: 'Sora', sans-serif; font-size: 15.5px; font-weight: 600; line-height: 1.45; letter-spacing: 0; }
.projectCard a.catLink { font-size: 13.5px; font-weight: 600; color: var(--accent); text-decoration: none; margin-top: auto; }
.projectsCta { text-align: center; margin-top: 32px; }

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

/* ── WERKWIJZE — donker, verticale tijdlijn met stappen ────── */
section.werkwijzeSection { background: var(--footer-bg); padding: 60px 20px 70px; }
.werkwijzeInner { display: flex; flex-direction: column; align-items: center; text-align: center; }
.werkwijzeInner p.subtitle { color: var(--accent-on-dark); }
.werkwijzeInner h2 { color: var(--white); }
.werkwijzeInner .content { margin-top: 10px; color: rgba(255,255,255,0.65); font-size: 14px; max-width: 480px; }
.werkwijzeBox {
  margin-top: 30px; padding: 30px 0 40px;
  display: flex; flex-direction: column; gap: 25px;
  width: 100%; max-width: 640px; position: relative;
}
/* verticale lijn + bol */
.werkwijzeBox::before {
  content: ""; position: absolute; top: 0; bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 3px; background: var(--accent);
}
.werkwijzeBox::after {
  content: ""; position: absolute; top: -8px; left: 50%;
  transform: translateX(-50%);
  width: 20px; height: 20px; background: var(--accent); border-radius: 50%;
}
.werkwijzeStap {
  background: var(--white); border-radius: 12px;
  padding: 18px 26px; position: relative; z-index: 1;
  text-align: left; cursor: pointer;
}
.werkwijzeStap .stapHeader {
  display: flex; align-items: center; gap: 16px;
  font-weight: 600; font-size: 15px;
}
.werkwijzeStap .stapIcon {
  width: 38px; height: 38px; flex-shrink: 0;
  background: var(--accent-light); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--accent); font-size: 17px; font-weight: 700;
}
.werkwijzeStap .stapIcon svg { width: 18px; height: 18px; }
.werkwijzeStap .stapArrow { margin-left: auto; }
.werkwijzeStap .stapArrow::after {
  content: ""; display: block; width: 8px; height: 8px;
  border-right: 2px solid var(--text); border-bottom: 2px solid var(--text);
  transform: rotate(45deg); margin: 0 auto 4px; transition: transform 0.3s;
}
.werkwijzeStap.open .stapArrow::after { transform: rotate(225deg); margin-top: 8px; }
.werkwijzeStap p {
  max-height: 0; opacity: 0; margin: 0; overflow: hidden;
  transition: max-height 0.4s var(--ease-out), opacity 0.4s var(--ease-out), margin-top 0.4s var(--ease-out);
  color: #666; line-height: 1.6; font-size: 13.5px;
}
.werkwijzeStap.open p { max-height: 200px; opacity: 1; margin-top: 12px; }

/* ── REVIEWS ───────────────────────────────────────────────── */
section.reviewsSection { background: var(--white); padding: 60px 20px; scroll-margin-top: 140px; }
.reviewsHeader { display: flex; align-items: center; justify-content: center; gap: 20px; flex-wrap: wrap; }
.reviewsHeader .reviewsScore {
  font-family: 'Fraunces', serif; font-size: 44px; font-weight: 800; line-height: 1;
}
.reviewsHeader .reviewsScoreInfo { display: flex; flex-direction: column; gap: 2px; }
.reviewsHeader .reviewsStars { color: var(--accent); letter-spacing: 2px; font-size: 15px; }
.reviewsHeader .reviewsLabel { font-weight: 600; font-size: 16px; }
.reviewsBox {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 30px; margin-top: 30px;
}
.reviewsSingle {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 15px; min-height: 220px; padding: 20px;
  display: flex; flex-direction: column; gap: 10px;
  transition: box-shadow 0.3s var(--ease-out);
}
.reviewsSingle:hover { box-shadow: 0 10px 35px rgba(0,0,0,0.08); }
.reviewsSingleinfo { display: flex; align-items: center; gap: 15px; }
.reviewsSingleinfo .reviewAvatar {
  width: 42px; height: 42px; border-radius: 50%; flex-shrink: 0;
  background: var(--accent-light); color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 16px;
}
.reviewsSingleinfo .reviewName { font-weight: 600; font-size: 14px; line-height: 1.3; }
.reviewsSingleinfo .reviewDate { font-size: 11.5px; color: var(--text-muted); }
.reviewsSingle .reviewStars { color: var(--accent); font-size: 13px; letter-spacing: 2px; }
.reviewsSingle p.reviewText { font-size: 13px; color: #555; line-height: 1.65; margin: 0; }

@media (max-width: 1000px) { .reviewsBox { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px) { .reviewsBox { grid-template-columns: 1fr; } }

/* ── FAQ — 2 kolommen accordion ────────────────────────────── */
section.faqSectionContainer { padding-top: 20px; }
.faqSectionInner { display: grid; grid-template-columns: 1fr; gap: 20px; margin: 45px 0 70px; }
.faqSectionInner .content h3 { font-size: 27px; font-weight: 600; line-height: 1.3em; max-width: 80%; }
.faqAccordionContainer { display: grid; grid-template-columns: 1fr 1fr; gap: 0 60px; }
.faqColumn { display: flex; flex-direction: column; }
.faqAccordionItem { border-top: 1px solid var(--border-grey); }
.faqColumn .faqAccordionItem:last-child { border-bottom: 1px solid var(--border-grey); }
.faqAccordionItem button.question {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  gap: 14px; padding: 16px 4px;
  background: none; border: none; cursor: pointer; text-align: left;
  font-family: inherit; font-size: 14px; font-weight: 600; color: var(--text);
  transition: color 0.2s;
}
.faqAccordionItem button.question:hover { color: var(--accent); }
.faqAccordionItem button.question::after {
  content: ""; flex-shrink: 0; width: 8px; height: 8px;
  border-right: 2px solid currentColor; border-bottom: 2px solid currentColor;
  transform: rotate(45deg); transition: transform 0.3s;
}
.faqAccordionItem.open button.question::after { transform: rotate(225deg); }
.faqAccordionItem .answer {
  max-height: 0; overflow: hidden; transition: max-height 0.3s var(--ease-out);
  color: #555; font-size: 13px; max-width: 90%;
}
.faqAccordionItem.open .answer { max-height: 300px; padding-bottom: 16px; }

@media (max-width: 767px) {
  .faqAccordionContainer { grid-template-columns: 1fr; gap: 0; }
  .faqSectionInner .content h3 { max-width: 100%; }
}

/* ── ADVIES-BANNER — donker, foto + tekst + usp's ──────────── */
section.adviceSection { background: var(--footer-bg); padding: 60px 20px; }
.adviceInner {
  border-radius: 15px;
  display: grid; grid-template-columns: 22% 1fr 24%;
  gap: 50px; align-items: center;
}
.adviceImage { position: relative; }
.adviceImage img { width: 100%; border-radius: 12px; display: block; }
.adviceImage .personalAdvice span {
  border-radius: 19px; background-color: var(--white);
  box-shadow: 0 0 6px rgba(0,0,0,0.16); padding: 5px 15px;
  color: var(--text); font-size: 10px; font-weight: 500;
  display: inline-flex; align-items: center;
  position: absolute; bottom: 14px; left: 14px;
}
.adviceImage .personalAdvice span::before {
  content: ""; background-color: #67bc03; padding: 3px;
  border-radius: 100%; display: inline-block; margin-right: 6px;
}
.adviceContent h2 { color: var(--white); max-width: 80%; }
.adviceContent p { color: rgba(255,255,255,0.7); font-size: 14px; margin: 12px 0 6px; max-width: 90%; }
.adviceContent a.buttonSolid { display: inline-block; margin-top: 6px; }
.adviceUsp .uspInner { display: flex; flex-direction: column; gap: 14px; }
.adviceUsp .usp {
  color: var(--white);
  display: grid; grid-template-columns: 22px 1fr;
  align-items: center; gap: 13px;
  font-size: 14.5px; line-height: 1.4; font-weight: 550;
}
.adviceUsp .usp::before {
  content: ""; width: 22px; height: 22px;
  background: var(--vinkje) no-repeat center / contain;
}

@media (max-width: 960px) {
  .adviceInner { grid-template-columns: 1fr; gap: 25px; }
  .adviceImage { max-width: 240px; }
  .adviceContent h2, .adviceContent p { max-width: 100%; }
}

/* ══════════════════════════════════════════════════════════
   CONTACTPAGINA — info links, grijs formulier-paneel rechts
   ══════════════════════════════════════════════════════════ */
section.contactContainer { padding: 60px 20px 40px; }
.contactInner { display: grid; grid-template-columns: 1fr 1.1fr; gap: 60px; align-items: start; }
.contactInfo h1 { font-size: 30px; margin-bottom: 16px; }
.contactInfo > p { font-weight: 300; line-height: 1.9; max-width: 90%; }
.contactInfo h3.contactSub { font-family: 'Sora', sans-serif; font-size: 18px; font-weight: 700; margin: 26px 0 8px; letter-spacing: 0; }
.contactMethods { display: flex; gap: 40px; margin-top: 12px; flex-wrap: wrap; }
.contactMethod { display: flex; align-items: center; gap: 15px; }
.contactMethod .contactIcon {
  width: 48px; height: 48px; border-radius: 50%; flex-shrink: 0;
  background: var(--footer-bg); color: var(--white);
  display: flex; align-items: center; justify-content: center;
}
.contactMethod .contactIcon svg { width: 20px; height: 20px; }
.contactMethod strong { display: block; font-size: 16px; }
.contactMethod a { font-size: 13.5px; color: var(--text); text-decoration: none; }
.contactMethod a:hover { color: var(--accent); }

/* Donkere CTA-kaart (contactpagina links onderin) */
.contactCta {
  background: var(--footer-bg); border-radius: 15px;
  padding: 32px 36px; margin-top: 32px;
  display: grid; grid-template-columns: 1fr 33%; gap: 24px; align-items: end;
  overflow: hidden;
}
.contactCta h2 { color: var(--white); font-size: 23px; }
.contactCta p { color: rgba(255,255,255,0.7); font-size: 13.5px; margin: 12px 0 20px; }
.contactCta a.buttonSolid { width: fit-content; }
.contactCta img { width: 100%; border-radius: 10px; margin-bottom: -32px; display: block; }

/* Formulier-paneel */
.contactFormPanel { background: var(--bg-grey); border-radius: 20px; padding: 45px 50px; }
.contactFormPanel h2 { font-size: 26px; margin-bottom: 8px; }
.contactFormPanel > p { font-weight: 300; font-size: 14px; margin-bottom: 22px; }
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.formRow { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 5px; }
.form-group label { font-size: 13px; font-weight: 600; }
.form-group label .req { color: var(--accent); }
.form-group input, .form-group textarea {
  font-family: inherit; font-size: 14px; padding: 11px 14px;
  border: 1px solid var(--border); border-radius: 8px; background: var(--white);
}
.form-group input:focus, .form-group textarea:focus { outline: 2px solid var(--accent); outline-offset: 1px; }
.contact-form button.buttonSolid { align-self: flex-start; padding: 11px 28px; }
.form-note { font-size: 11.5px; color: var(--text-muted); margin: 0; }
.form-resultaat { margin-top: 4px; padding: 10px 14px; border-radius: 8px; font-size: 13.5px; }
.form-resultaat.success { background: #f0fdf4; color: #15803d; border: 1px solid #86efac; }
.form-resultaat.error { background: #fff1f2; color: #b91c1c; border: 1px solid #fca5a5; }

@media (max-width: 960px) {
  .contactInner { grid-template-columns: 1fr; gap: 35px; }
  .contactFormPanel { padding: 28px 22px; }
  .formRow { grid-template-columns: 1fr; }
  .contactCta { grid-template-columns: 1fr; }
  .contactCta img { display: none; }
}

/* ── MAP ───────────────────────────────────────────────────── */
.map-section { padding: 0 20px 60px; }
.map-section iframe { border: 0; display: block; border-radius: 20px; max-width: 1240px; margin: 0 auto; }

/* ══════════════════════════════════════════════════════════
   FOOTER — wit, kolommen + nieuwsbrief + locaties + donkere balk
   ══════════════════════════════════════════════════════════ */
footer { background: var(--white); border-top: 1px solid var(--border); }
footer .footerBox {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr 1.4fr;
  gap: 40px;
  padding-top: 55px; padding-bottom: 40px;
}
footer .footerLogo {
  font-family: 'Fraunces', serif; font-weight: 800; font-size: 24px;
  letter-spacing: -0.03em; color: var(--text); text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px;
}
footer .footerLogo::before {
  content: ""; display: inline-block; width: 10px; height: 10px;
  background: var(--accent); border-radius: 2px;
}
footer .footerLogo img { height: 38px; width: auto; display: block; }
footer .footerLogo:has(img)::before { display: none; }
footer .footerBox p, footer .footerBox a { color: #2f2f2f; font-size: 13.5px; }
footer p.footerTitle { font-weight: 600; font-size: 16px; margin-bottom: 10px; }
footer p.footerTitleadres { font-weight: 600; font-size: 15px; margin: 16px 0 5px; }
footer .footerLinks { display: flex; flex-direction: column; gap: 6px; }
footer .footerLinks a { text-decoration: none; }
footer .footerLinks a:hover { color: var(--accent); }
footer .footerContact a { display: flex; align-items: center; gap: 8px; text-decoration: none; margin-bottom: 6px; }
footer .footerContact a:hover { color: var(--accent); }
footer .footerContact .footerContactIcon {
  width: 25px; height: 25px; border-radius: 50%; flex-shrink: 0;
  background: var(--footer-bg); color: var(--white);
  display: inline-flex; align-items: center; justify-content: center;
}
footer .footerContact .footerContactIcon svg { width: 12px; height: 12px; }

/* Nieuwsbrief-kolom */
footer .footerProject p.footerMt { font-size: 12px; line-height: 1.8; margin: 8px 0 14px; }
footer .footerProjectletterInput { display: flex; }
footer .footerProjectletterInput input {
  flex: 1; font-family: inherit; font-size: 13px;
  padding: 10px 14px; border: 1px solid var(--border);
  border-radius: 8px 0 0 8px; background: var(--bg-grey); min-width: 0;
}
footer .footerProjectletterInput input:focus-visible { outline: 2px solid var(--accent); outline-offset: 1px; }
footer .footerProjectletterInput button {
  font-family: inherit; font-size: 13px; font-weight: 600;
  background: var(--accent); color: var(--white);
  border: none; border-radius: 0 8px 8px 0; padding: 10px 18px; cursor: pointer;
}
footer .footerProjectletterInput button:hover { background: var(--accent-hover); }
footer .footerProjectletterSocials { display: flex; gap: 7px; margin-top: 16px; }
footer .footerProjectletterSocials a {
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--footer-bg); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  text-decoration: none; font-size: 13px; font-weight: 600;
}
footer .footerProjectletterSocials a:hover { background: var(--accent); }

/* Locaties */
footer .footerLine { border-bottom: 1px solid var(--border-grey); width: 100%; }
footer .footerLocation { padding-top: 20px; padding-bottom: 24px; }
footer .footerLocation p.footerTitle { font-size: 14px; margin-bottom: 10px; }
footer .footerLocationbox {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px;
}
footer .footerLocationitem { display: flex; flex-direction: column; gap: 4px; }
footer .footerLocationitem a, footer .footerLocationitem span {
  color: #2f2f2f; font-size: 12px; font-weight: 400;
  text-decoration: none; line-height: 1.4;
}
footer .footerLocationitem a:hover { color: var(--accent); }

/* Donkere onderbalk */
footer .footerSubcontent { background-color: var(--footer-bg); }
footer .footerSubcontentbox {
  display: flex; justify-content: space-between; align-items: center;
  gap: 25px; padding-top: 12px; padding-bottom: 12px; flex-wrap: wrap;
}
footer .footerSubcontentbox p, footer .footerSubcontentbox a { color: rgba(255,255,255,0.75); font-size: 12px; margin: 0; }
footer .footerSubcontentbox .footerPages { display: flex; gap: 0; align-items: center; }
footer .footerSubcontentbox .footerPages a { text-decoration: none; padding: 0 14px; }
footer .footerSubcontentbox .footerPages a:hover { color: var(--white); }
footer .footerSubcontentbox .footerPages a.footerBorder { border-left: 1.5px solid rgba(255,255,255,0.35); }

@media (max-width: 1000px) {
  footer .footerBox { grid-template-columns: 1fr 1fr; }
  footer .footerLocationbox { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  footer .footerBox { grid-template-columns: 1fr; }
  footer .footerLocationbox { grid-template-columns: 1fr; }
}

/* ── WHATSAPP FLOAT ────────────────────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: #25D366;
  border-radius: 50%;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.25);
  z-index: 999;
  transition: transform 0.2s var(--ease-out), box-shadow 0.2s var(--ease-out);
}
.whatsapp-float:hover { transform: scale(1.05); box-shadow: 0 6px 22px rgba(0,0,0,0.35); }
