/* ============================================================
   HORMAAT — concept preview (werknaam, kleuren volgen later)
   Modern, strak, betrouwbaar. Scherpe hoeken, editorial grid.
   ============================================================ */

:root {
  --paper: #ffffff;
  --paper-soft: #f0eee8;
  --ink: #1c1c1c;
  --ink-soft: #646464;
  --brand: #1c1c1c;       /* Veneta: zwart als vaste donkere kleur */
  --brand-deep: #0d0d0d;
  --accent: #ffd900;      /* Veneta signaalgeel */
  --accent-deep: #e0c00b;
  --accent-text: #8a7500; /* leesbaar donkergeel voor kleine tekst */
  --ok: #19b200;          /* Veneta groen voor checks */
  --line: rgba(28, 28, 28, 0.14);
  --white: #ffffff;
  --font-head: "Sora", "Helvetica Neue", Arial, sans-serif;
  --font-body: "Inter", "Helvetica Neue", Arial, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }

h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 600; line-height: 1.15; }
h2 { font-size: clamp(1.7rem, 3.4vw, 2.6rem); letter-spacing: -0.01em; }

.container { width: min(1240px, 92vw); margin: 0 auto; }

.kicker {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--accent);
  padding: 0.18rem 0.65rem;
  margin-bottom: 1rem;
}

/* ---------- Knoppen ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 1rem 1.7rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.btn-fill { background: var(--accent); color: var(--ink); }
.btn-fill:hover { background: var(--accent-deep); transform: translateY(-1px); }

.btn-dark { background: var(--brand); color: var(--white); }
.btn-dark:hover { background: var(--brand-deep); }

.btn-outline { border-color: var(--ink); color: var(--ink); background: transparent; }
.btn-outline:hover { background: var(--ink); color: var(--paper); }

/* ---------- Header ---------- */

.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  background: transparent;
  transition: background 0.25s ease, box-shadow 0.25s ease;
}

.site-header.scrolled { background: var(--paper); box-shadow: 0 1px 0 var(--line); }

/* Ruimte onder de zwevende header */
.hero { padding-top: 84px; }
main.pdp { padding-top: calc(84px + 1.5rem) !important; }

.header-inner {
  width: min(1320px, 94vw);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 0.95rem 0;
}

.logo { display: flex; align-items: center; gap: 0.65rem; font-family: var(--font-head); }
.logo-mark { width: 30px; height: 30px; color: var(--ink); }
.logo-name { font-size: 1.15rem; font-weight: 700; letter-spacing: 0.14em; }
.logo-name span { color: var(--accent-text); }

.main-nav { display: flex; gap: 1.7rem; }
.main-nav a {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s ease, color 0.2s ease;
}
.main-nav a:hover, .main-nav a.is-active { border-bottom-color: var(--accent); }

.header-usp {
  display: none;
  font-size: 0.75rem;
  color: var(--ink-soft);
}

/* ---------- Hero ---------- */

.hero { background: var(--accent); color: var(--ink); overflow: hidden; }

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  padding: clamp(3.5rem, 7vw, 6.5rem) 0;
}

.hero h1 {
  font-size: clamp(2.1rem, 4.6vw, 3.7rem);
  font-weight: 700;
  letter-spacing: -0.015em;
  color: var(--ink);
}

.hero h1 em { font-style: normal; background: var(--ink); color: var(--accent); padding: 0 0.35em; }

.hero-sub {
  margin-top: 1.4rem;
  max-width: 30rem;
  font-size: 1.05rem;
  color: rgba(28, 28, 28, 0.78);
}

.hero-cta { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.2rem; }

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 1.4rem 2.2rem;
  margin-top: 2.6rem;
  padding-top: 1.8rem;
  border-top: 1px solid rgba(28, 28, 28, 0.28);
}

.hero-point { display: flex; align-items: center; gap: 0.6rem; font-size: 0.85rem; }
.hero-point svg { width: 18px; height: 18px; color: var(--ink); flex: none; }

.hero-visual { position: relative; }
.hero-visual svg { width: 100%; height: auto; }

/* ---------- USP-strip ---------- */

.usp-strip { background: var(--ink); color: var(--paper); }

.usp-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  padding: 1.1rem 0;
  font-size: 0.8rem;
}

.usp-item { display: flex; align-items: center; gap: 0.6rem; justify-content: center; }
.usp-item svg { width: 17px; height: 17px; color: var(--accent); flex: none; }

/* ---------- Secties ---------- */

.section { padding: clamp(4rem, 8vw, 6.5rem) 0; }
.section-soft { background: var(--paper-soft); }

.section-head { max-width: 44rem; margin-bottom: 3rem; }
.section-head p { margin-top: 1rem; color: var(--ink-soft); }

.section-head-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 3rem;
}

/* ---------- Productgrid ---------- */

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.6rem;
}

.product-card {
  background: var(--white);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease;
}

.product-card:hover { transform: translateY(-4px); }

.product-thumb { background: var(--paper-soft); padding: 1.8rem 1.8rem 1.2rem; }
.product-thumb svg { width: 100%; height: 170px; }

.product-body { padding: 1.4rem 1.6rem 1.7rem; display: flex; flex-direction: column; flex: 1; }

.product-body h3 { font-size: 1.06rem; }

.product-body p { font-size: 0.86rem; color: var(--ink-soft); margin-top: 0.5rem; flex: 1; }

.product-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1.2rem;
}

.product-price { font-family: var(--font-head); font-weight: 700; font-size: 1.02rem; }
.product-price small { display: block; font-family: var(--font-body); font-weight: 400; font-size: 0.68rem; color: var(--ink-soft); }

.product-link {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
  border-bottom: 2px solid var(--accent);
  padding-bottom: 2px;
}

/* ---------- Stappen ---------- */

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.step { background: var(--white); padding: 2.2rem 2rem; }

.step-num {
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--accent-text);
}

.step h3 { font-size: 1.15rem; margin-top: 0.9rem; }
.step p { font-size: 0.9rem; color: var(--ink-soft); margin-top: 0.6rem; }

/* ---------- Vertrouwen ---------- */

.trust-band { background: var(--ink); color: var(--white); }

.trust-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}

.trust-grid h2 { color: var(--white); }
.trust-grid > div > p { margin-top: 1.2rem; color: rgba(255, 255, 255, 0.8); }

.trust-facts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.4rem;
}

.trust-fact { border-left: 3px solid var(--accent); padding-left: 1.1rem; }
.trust-fact strong { display: block; font-family: var(--font-head); font-size: 1.7rem; font-weight: 700; }
.trust-fact span { font-size: 0.8rem; color: rgba(255, 255, 255, 0.75); }

/* ---------- Reviews ---------- */

.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }

.review { display: flex; flex-direction: column; }

/* Tekstballon */
.review-bubble {
  position: relative;
  background: var(--white);
  padding: 1.9rem 1.8rem;
  flex: 1;
}

.review-bubble::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 2.1rem;
  width: 0; height: 0;
  border-style: solid;
  border-width: 16px 20px 0 0;
  border-color: var(--white) transparent transparent transparent;
}

.review-stars { display: flex; gap: 3px; margin-bottom: 0.9rem; }
.review-stars svg { width: 15px; height: 15px; color: var(--accent); }

.review-bubble p { font-size: 0.9rem; }

.review-author {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-top: 1.4rem;
  padding-left: 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--ink-soft);
}

.review-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem;
  flex: none;
}

/* ---------- CTA ---------- */

.cta-band { position: relative; overflow: hidden; background: var(--ink); color: var(--paper); text-align: center; }

.cta-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.cta-overlay { position: absolute; inset: 0; background: rgba(18, 18, 18, 0.84); }
.cta-band .container { position: relative; z-index: 1; }

@media (prefers-reduced-motion: reduce) { .cta-video { display: none; } }
.cta-band h2 { color: var(--white); }
.cta-band p { max-width: 32rem; margin: 1.1rem auto 2rem; color: rgba(247, 246, 242, 0.8); }

/* ---------- Footer ---------- */

.site-footer { background: var(--brand-deep); color: rgba(247, 246, 242, 0.85); font-size: 0.88rem; }

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding: 3.6rem 0 2.8rem;
}

.site-footer h4 {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1rem;
}

.footer-grid a { display: block; margin-bottom: 0.55rem; }
.footer-grid a:hover { color: var(--white); }

.footer-note { font-size: 0.8rem; color: rgba(247, 246, 242, 0.6); max-width: 21rem; margin-top: 1rem; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.3rem 0;
  border-top: 1px solid rgba(247, 246, 242, 0.15);
  font-size: 0.76rem;
  color: rgba(247, 246, 242, 0.6);
}

/* ============================================================
   Productpagina + configurator
   ============================================================ */

.pdp { padding: clamp(2.5rem, 5vw, 4rem) 0 clamp(4rem, 7vw, 6rem); }

.breadcrumb { font-size: 0.78rem; color: var(--ink-soft); margin-bottom: 1.8rem; }
.breadcrumb a { color: var(--brand); font-weight: 600; }

.pdp-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(2rem, 4.5vw, 4.5rem);
  align-items: start;
}

/* Preview-paneel */

.config-stage {
  position: sticky;
  top: 90px;
  background: var(--white);
  padding: clamp(1.4rem, 3vw, 2.4rem);
}

.stage-canvas { background: var(--paper-soft); padding: 1.6rem; }
.stage-canvas svg { width: 100%; height: auto; }

.stage-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.2rem;
}

.stage-hint { font-size: 0.75rem; color: var(--ink-soft); }

.stage-demo {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: var(--brand);
  color: var(--white);
  border: 0;
  padding: 0.7rem 1.1rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s ease;
}
.stage-demo:hover { background: var(--brand-deep); }
.stage-demo svg { width: 14px; height: 14px; }

/* Configurator-paneel */

.config-panel h1 { font-size: clamp(1.55rem, 3vw, 2.2rem); letter-spacing: -0.01em; }

.pdp-intro { margin-top: 0.8rem; font-size: 0.92rem; color: var(--ink-soft); }

.config-block { margin-top: 1.9rem; }

.config-label {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}

.config-label small { font-family: var(--font-body); font-weight: 400; font-size: 0.72rem; color: var(--ink-soft); text-transform: none; letter-spacing: 0; }

/* Model-keuze */

.model-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.7rem; }

.model-opt {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  background: var(--white);
  border: 1px solid var(--line);
  padding: 0.75rem 0.9rem;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.model-opt svg { width: 26px; height: 26px; flex: none; color: var(--brand); }
.model-opt:hover { border-color: var(--brand); }
.model-opt.is-active { border-color: var(--brand); background: rgba(23, 83, 72, 0.06); box-shadow: inset 0 0 0 1px var(--brand); }

/* Kleur-keuze */

.color-row { display: flex; gap: 0.8rem; }

.color-opt {
  width: 44px; height: 44px;
  border: 1px solid var(--line);
  cursor: pointer;
  position: relative;
  transition: transform 0.15s ease;
}
.color-opt:hover { transform: scale(1.06); }
.color-opt.is-active { box-shadow: 0 0 0 2px var(--paper), 0 0 0 4px var(--brand); }
.color-opt[data-tip]:hover::after {
  content: attr(data-tip);
  position: absolute;
  bottom: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--ink);
  color: var(--paper);
  font-size: 0.65rem;
  padding: 0.25rem 0.5rem;
  white-space: nowrap;
}

/* Maatvoering */

.size-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }

.size-field label { display: block; font-size: 0.72rem; font-weight: 600; color: var(--ink-soft); margin-bottom: 0.4rem; }

.size-input {
  display: flex;
  align-items: center;
  border: 1px solid var(--line);
  background: var(--white);
}

.size-input input[type="number"] {
  width: 100%;
  border: 0;
  padding: 0.65rem 0.8rem;
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
  background: transparent;
  outline: none;
  -moz-appearance: textfield;
}
.size-input input::-webkit-outer-spin-button, .size-input input::-webkit-inner-spin-button { -webkit-appearance: none; }
.size-input span { padding: 0 0.8rem; font-size: 0.72rem; color: var(--ink-soft); border-left: 1px solid var(--line); }

.size-field input[type="range"] {
  width: 100%;
  margin-top: 0.7rem;
  accent-color: var(--brand);
}

/* Gaas-keuze */

.mesh-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.7rem; }

.mesh-opt {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 0.8rem 0.9rem;
  text-align: left;
  font-size: 0.78rem;
  cursor: pointer;
  transition: border-color 0.2s ease;
}
.mesh-opt strong { display: block; font-size: 0.78rem; }
.mesh-opt span { font-size: 0.68rem; color: var(--ink-soft); }
.mesh-opt em { display: block; font-style: normal; font-size: 0.7rem; font-weight: 700; color: var(--brand); margin-top: 0.3rem; }
.mesh-opt:hover { border-color: var(--brand); }
.mesh-opt.is-active { border-color: var(--brand); background: rgba(23, 83, 72, 0.06); box-shadow: inset 0 0 0 1px var(--brand); }

/* Prijs + CTA */

.config-summary {
  margin-top: 2.2rem;
  background: var(--white);
  padding: 1.5rem 1.6rem;
}

.summary-rows { font-size: 0.82rem; color: var(--ink-soft); }
.summary-rows div { display: flex; justify-content: space-between; padding: 0.28rem 0; }
.summary-rows span:last-child { color: var(--ink); font-weight: 600; }

.summary-price {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-top: 0.9rem;
  padding-top: 0.9rem;
  border-top: 1px solid var(--line);
}

.summary-price strong { font-family: var(--font-head); font-size: 1.9rem; font-weight: 700; transition: color 0.2s ease; }
.summary-price strong.bump { color: var(--accent-deep); }
.summary-price small { font-size: 0.72rem; color: var(--ink-soft); }

.summary-cta { display: grid; gap: 0.7rem; margin-top: 1.3rem; }
.summary-cta .btn { justify-content: center; }

.summary-note { margin-top: 0.9rem; font-size: 0.72rem; color: var(--ink-soft); text-align: center; }

/* Specs onder de configurator */

.pdp-specs { margin-top: clamp(3rem, 6vw, 5rem); display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
.spec-card { background: var(--white); padding: 1.8rem 1.7rem; }
.spec-card h3 { font-size: 0.95rem; margin-bottom: 0.6rem; }
.spec-card p, .spec-card li { font-size: 0.85rem; color: var(--ink-soft); }
.spec-card ul { list-style: none; }
.spec-card li { padding: 0.25rem 0 0.25rem 1.1rem; position: relative; }
.spec-card li::before { content: ""; position: absolute; left: 0; top: 0.62rem; width: 15px; height: 15px; background: url('data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 20 20%22%3E%3Cpath d=%22M3 10.5l4.5 4.5L17 5.5%22 stroke=%22%238a7500%22 stroke-width=%223%22 fill=%22none%22 stroke-linecap=%22square%22/%3E%3C/svg%3E') center / contain no-repeat; }

/* Reveal */

.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------- Responsive ---------- */

@media (max-width: 1080px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .usp-inner { grid-template-columns: repeat(2, 1fr); gap: 0.7rem; }
  .pdp-grid { grid-template-columns: 1fr; }
  .config-stage { position: static; }
}

@media (max-width: 820px) {
  .main-nav { display: none; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { order: -1; max-width: 420px; }
  .steps-grid, .review-grid, .pdp-specs { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .mesh-row { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .product-grid { grid-template-columns: 1fr; }
  .usp-inner { grid-template-columns: 1fr 1fr; font-size: 0.68rem; }
  .model-row { grid-template-columns: 1fr; }
  .size-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ============================================================
   Losse pagina's: landingspagina's, foto-secties, FAQ, contact
   ============================================================ */

.page-hero { background: var(--accent); padding: calc(84px + 1.6rem) 0 clamp(2.5rem, 5vw, 4rem); }

.page-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

.page-hero h1, .page-intro h1 { font-size: clamp(1.9rem, 3.8vw, 3rem); letter-spacing: -0.015em; margin-top: 0.4rem; }

.page-lead { margin-top: 1.2rem; color: var(--ink-soft); max-width: 36rem; }

.page-hero .breadcrumb, .page-intro .breadcrumb { margin-bottom: 1.4rem; }

.page-hero .hero-cta { margin-top: 1.8rem; }

.page-intro { background: var(--accent); padding: calc(84px + 1.6rem) 0 2.4rem; margin-bottom: 2rem; }

.breadcrumb { font-size: 0.78rem; color: var(--ink-soft); }
.breadcrumb a { font-weight: 600; }

/* Fotokaders */

.photo-frame { border: 4px solid var(--ink); background: var(--ink); }
.photo-frame img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4 / 3; }

.hero-photo img { aspect-ratio: 5 / 4; }

.product-photo { overflow: hidden; }
.product-photo img { width: 100%; height: 210px; object-fit: cover; transition: transform 0.4s ease; }
.product-card:hover .product-photo img { transform: scale(1.04); }

.split-band {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.split-band h2 { margin-bottom: 1rem; }
.split-band p { color: var(--ink-soft); margin-bottom: 1rem; }

/* Keuzehulp */

.choice-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.6rem; }
.choice { background: var(--white); padding: 1.8rem 1.7rem; }
.choice h3 { font-size: 1.02rem; margin-bottom: 0.5rem; }
.choice p { font-size: 0.9rem; color: var(--ink-soft); }
.choice a { font-weight: 600; color: var(--ink); border-bottom: 2px solid var(--accent); }

/* Configurator op landingspagina */

.config-title { font-size: clamp(1.4rem, 2.6vw, 1.9rem); }
.section .pdp-grid { align-items: start; }
.section .config-stage { top: 84px; }

/* Inhoudskolommen + specs + FAQ */

.content-cols { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2.5rem, 5vw, 4.5rem); align-items: start; }
.content-cols h2 { margin-bottom: 1.1rem; font-size: clamp(1.4rem, 2.6vw, 1.9rem); }
.content-cols p { color: var(--ink-soft); margin-bottom: 1rem; }

.spec-list { list-style: none; }
.spec-list li { padding: 0.45rem 0 0.45rem 1.5rem; position: relative; color: var(--ink-soft); font-size: 0.94rem; }
.spec-list li::before { content: ""; position: absolute; left: 0; top: 0.82rem; width: 16px; height: 16px; background: url('data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 20 20%22%3E%3Cpath d=%22M3 10.5l4.5 4.5L17 5.5%22 stroke=%22%238a7500%22 stroke-width=%223%22 fill=%22none%22 stroke-linecap=%22square%22/%3E%3C/svg%3E') center / contain no-repeat; }

.faq { display: grid; gap: 0.7rem; max-width: 46rem; }
.faq-item { background: var(--white); border: 1px solid var(--line); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1rem 3rem 1rem 1.3rem;
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 600;
  position: relative;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 1.2rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.3rem;
  color: var(--accent-text);
}
.faq-item[open] summary::after { content: "\2013"; }
.faq-item p { padding: 0 1.3rem 1.1rem; font-size: 0.9rem; color: var(--ink-soft); }

/* Extra productgrid-variant */

.product-grid.three { grid-template-columns: repeat(3, 1fr); }

/* Contact */

.contact-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: clamp(2.5rem, 5vw, 4.5rem); align-items: start; }

.contact-form { background: var(--white); padding: 2rem; display: grid; gap: 1.1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.form-field label { display: block; font-size: 0.72rem; font-weight: 600; color: var(--ink-soft); margin-bottom: 0.4rem; }
.form-field input, .form-field textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: var(--paper);
  padding: 0.75rem 0.9rem;
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--ink);
  outline: none;
}
.form-field input:focus, .form-field textarea:focus { border-color: var(--ink); }

.contact-info h3 { font-size: 1.05rem; margin-bottom: 0.6rem; }
.contact-info p { font-size: 0.92rem; color: var(--ink-soft); margin-bottom: 0.6rem; }
.contact-line strong { display: block; font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--ink); }

@media (max-width: 1080px) {
  .product-grid.three { grid-template-columns: 1fr; }
}

@media (max-width: 820px) {
  .page-hero-grid, .split-band, .content-cols, .contact-grid { grid-template-columns: 1fr; }
  .choice-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .page-hero .photo-frame { order: -1; }
}

/* Vinkjes in voordelen-blokken op landingspagina's */
.step-num svg { width: 24px; height: 24px; color: var(--accent-text); }


/* Animaties boven het stappenplan (zo-werkt-het) */
.step-art { height: 130px; margin-bottom: 1.3rem; display: flex; }
.step-art svg { height: 100%; width: auto; margin: 0 auto; }
@media (prefers-reduced-motion: reduce) { .step-art animate, .step-art animateTransform { display: none; } }


/* Icoontjes in de keuzehulp-cards */
.choice-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px; height: 52px;
  background: var(--accent);
  margin-bottom: 1rem;
}
.choice-icon svg { width: 28px; height: 28px; }


/* Gele hero-banden op subpagina's: contrast-aanpassingen */
.page-hero .kicker, .page-intro .kicker { background: var(--ink); color: var(--accent); }
.page-hero .breadcrumb, .page-intro .breadcrumb,
.page-hero .page-lead, .page-intro .page-lead { color: rgba(28, 28, 28, 0.78); }
.page-hero .btn-fill { background: var(--ink); color: var(--white); }
.page-hero .btn-fill:hover { background: var(--brand-deep); }
