/* ================================================================
   VvE LAADOPLOSSING - GEDEELDE STYLESHEET
   ================================================================

   LEES DIT als je dit bestand in een nieuwe thread uploadt
   (bijvoorbeeld voor het bouwen van quickscan.html of een
   kennisbank-artikel). Het beschrijft de conventies van de site,
   zodat een nieuwe pagina naadloos aansluit.

   ----------------------------------------------------------------
   1. MAPSTRUCTUUR EN TALEN
   ----------------------------------------------------------------
   De site is tweetalig (Nederlands + Engels) en wordt gehost op
   Cloudflare Pages als statische bestanden. URLs zijn 'clean'
   (zonder .html). De structuur:

     /styles.css                  <- dit bestand, gedeeld
     /index.html                  <- root, taaldoorstuur
     /robots.txt /sitemap.xml /site.webmanifest /404.html
     /quickscan-generator.html    <- interne tool, niet gelinkt
     /nl/...                      <- Nederlandse pagina's (Dutch slugs)
     /nl/kennisbank/<artikel>     <- losse kennisbank-artikelen
     /en/...                      <- Engelse pagina's (English slugs)
     /en/knowledge-base/<article>

   De Nederlandse kant gebruikt Nederlandse slugs (voor-besturen,
   tarieven, kennisbank). De Engelse kant gebruikt Engelse slugs
   (for-boards, pricing, knowledge-base). Alle links zijn
   root-absoluut, bijvoorbeeld href="/en/pricing" en
   <link rel="stylesheet" href="/styles.<hash>.css">. De taalwissel-knop
   linkt naar dezelfde pagina in de andere taal.
   ../en/tarieven.html.

   Browser-taaldetectie: alleen de root /index.html (een klein
   doorstuurbestand) kijkt via JavaScript naar navigator.language
   en stuurt door naar /nl/ of /en/. Losse pagina's doen geen
   detectie; daar gebruikt de bezoeker de taalwissel-knop.

   ----------------------------------------------------------------
   2. PAGINA-OPBOUW (vaste volgorde)
   ----------------------------------------------------------------
   <!DOCTYPE html> met lang="nl" of lang="en"
   <head>: meta charset, viewport, title, meta description,
           canonical, Open Graph-tags, Montserrat preconnect+link,
           <link rel="stylesheet" href="/styles.<hash>.css">
   <body>:
     - header (.nav: logo links, .nav-links midden,
       knop "Maak Quickscan" / "Start Quickscan" rechts)
     - page-hero of hero
     - content-secties (afwisselend wit en .section-grey)
     - final-cta
     - footer (4 kolommen)
   GEEN mockup-balk meer.

   ----------------------------------------------------------------
   3. HUISSTIJL
   ----------------------------------------------------------------
   Lettertype: Montserrat (Google Fonts), gewichten 300-800.
   Kleuren staan in :root hieronder. Hoofdgroen #1f4d2e,
   accentgroen #6cbf5e. Gebruik altijd de CSS-variabelen.

   ----------------------------------------------------------------
   4. SCHRIJFWIJZE
   ----------------------------------------------------------------
   - "VvE" met kleine v in het midden, of voluit
     "Vereniging van Eigenaren".
   - Gebruik GEEN em-dash. Gebruik een komma, een dubbele punt
     of een gewoon streepje. Vermijd andere AI-kenmerken zoals
     overmatige drieslagen.
   - Bedrijfsgegevens in de footer: onderdeel van Mawijaco BV,
     Bilderdijkkade 50D10, 1053 VN Amsterdam, KvK 56631804.

   ----------------------------------------------------------------
   5. BESCHIKBARE COMPONENTEN (klassen in dit bestand)
   ----------------------------------------------------------------
   Layout:     .container, .container-narrow
   Header:     .nav, .logo, .logo-mark, .logo-img, .nav-links
   Knoppen:    .btn, .btn-secondary, .btn-light,
               .btn-on-dark-secondary, .lang-switch
   Hero:       .hero + .hero-inner + .hero-content + .hero-visual,
               .page-hero + .page-hero-content
   Secties:    .content-section (.tight), .section-grey,
               .section-dark, .section-eyebrow, .section-title,
               .section-intro, .eyebrow
   Kaarten:    .cards-grid (.cols-2/.cols-3/.cols-4), .card
               (.linked), .card-icon, .card-title, .card-desc,
               .card-link
   Lijsten:    .check-list + .check-icon
   USP:        .usp-grid, .usp, .usp-num, .usp-title, .usp-desc
   Stappen:    .steps, .step, .step-num, .step-title, .step-desc
   FAQ:        .faq-list, .faq-item (een <details>-element)
   Tabel:      .tariff-table, .table-note
   Callout:    .callout, .callout-title
   Prose:      .prose (voor lange tekst, zoals een artikel)
   Tags:       .kb-tag, .kb-arrow, .kb-all
   Team:       .team-row, .team-photo(-placeholder), .team-info
   Iframe:     .iframe-wrap, .iframe-note
   Footer:     footer, .footer-grid, .footer-col, .company-line
   Slot:       .final-cta, .final-cta-buttons

   ----------------------------------------------------------------
   VvE Laadoplossing - Montserrat - groene merkkleuren
   ================================================================ */

:root {
  --green-deep: #1f4d2e;
  --green-mid: #2d7d46;
  --green-bright: #6cbf5e;
  --green-pale: #e8f5e9;
  --green-light: #c8e6c9;
  --ink: #1c2620;
  --ink-soft: #5d6b62;
  --grey-bg: #f4f6f4;
  --grey-line: #e2e7e3;
  --white: #ffffff;
  --amber-bg: #fdf6ec;
  --amber-line: #e0a23d;
  --radius: 14px;
  --radius-sm: 9px;
  --maxw: 1180px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 28px;
}

/* ---------- Mockup-balk ---------- */
.mockup-notice {
  background: var(--green-deep);
  color: var(--green-light);
  font-size: 12.5px;
  text-align: center;
  padding: 9px 16px;
  line-height: 1.8;
}
.mockup-notice strong { color: var(--white); }
.mockup-notice a {
  color: var(--green-light);
  text-decoration: none;
  border-bottom: 1px solid transparent;
}
.mockup-notice a:hover { border-bottom-color: var(--green-light); }

/* ---------- Header / nav ---------- */
header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--grey-line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 18px;
  color: var(--green-deep);
  text-decoration: none;
  letter-spacing: -0.01em;
}
.logo-mark {
  width: 38px;
  height: 38px;
  background: var(--green-deep);
  color: var(--green-bright);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 19px;
}
/* Echt logo: vervang .logo-mark span door <img class="logo-img" src="logo.svg" alt="VvE Laadoplossing">.
   Bevat het logobestand de bedrijfsnaam al? Verwijder dan de losse tekst ernaast. */
.logo-img {
  height: 40px;
  width: auto;
  display: block;
}
.nav-links {
  display: flex;
  gap: 26px;
  list-style: none;
}
.nav-links a {
  text-decoration: none;
  color: var(--ink);
  font-size: 14.5px;
  font-weight: 500;
  transition: color 0.15s;
}
.nav-links a:hover { color: var(--green-mid); }
.nav-links a.active { color: var(--green-mid); font-weight: 600; }

/* ---------- Knoppen ---------- */
.btn {
  display: inline-block;
  background: var(--green-deep);
  color: var(--white);
  font-family: inherit;
  font-size: 14.5px;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  border: 2px solid var(--green-deep);
  text-decoration: none;
  cursor: pointer;
  transition: background 0.18s, transform 0.18s, border-color 0.18s;
}
.btn:hover { background: var(--green-mid); border-color: var(--green-mid); transform: translateY(-2px); }

.btn-secondary {
  background: transparent;
  color: var(--green-deep);
  border-color: var(--green-deep);
}
.btn-secondary:hover { background: var(--green-deep); color: var(--white); }

.btn-light {
  background: var(--white);
  color: var(--green-deep);
  border-color: var(--white);
}
.btn-light:hover { background: var(--green-pale); border-color: var(--green-pale); color: var(--green-deep); }

.btn-on-dark-secondary {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.55);
}
.btn-on-dark-secondary:hover { background: var(--white); color: var(--green-deep); border-color: var(--white); }

/* ---------- Eyebrow / sectiekoppen ---------- */
.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--green-bright);
  background: rgba(108, 191, 94, 0.14);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 22px;
}
.section-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--green-mid);
  margin-bottom: 14px;
}
.section-title {
  font-size: clamp(27px, 3.4vw, 39px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.018em;
  color: var(--green-deep);
  margin-bottom: 18px;
  max-width: 760px;
}
.section-intro {
  font-size: 16.5px;
  color: var(--ink-soft);
  max-width: 680px;
  margin-bottom: 44px;
}

/* ---------- Generieke secties ---------- */
.content-section { padding: 64px 0; }
.content-section.tight { padding: 44px 0; }

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

.section-dark {
  background: var(--green-deep);
  color: var(--white);
}
.section-dark .section-title { color: var(--white); }
.section-dark .section-eyebrow { color: var(--green-bright); }
.section-dark .section-intro { color: rgba(255, 255, 255, 0.78); }

/* ---------- HERO (homepage) ---------- */
.hero {
  background: linear-gradient(150deg, var(--green-deep) 0%, #16361f 55%, var(--green-mid) 130%);
  color: var(--white);
  padding: 68px 0 72px;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(108, 191, 94, 0.22), transparent 70%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}
.hero-content { position: relative; max-width: 600px; }
.hero h1 {
  font-size: clamp(33px, 4.6vw, 52px);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.025em;
  margin-bottom: 20px;
}
.hero-sub {
  font-size: 17.5px;
  color: rgba(255, 255, 255, 0.86);
  max-width: 540px;
  margin-bottom: 30px;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-visual { position: relative; }
.hero-visual svg { width: 100%; height: auto; display: block; }
@media (max-width: 880px) {
  .hero-inner { grid-template-columns: 1fr; gap: 36px; }
  .hero-visual { max-width: 460px; }
}

/* ---------- PAGE HERO (subpagina's) ---------- */
.page-hero {
  background: linear-gradient(150deg, var(--green-deep) 0%, #16361f 60%, var(--green-mid) 135%);
  color: var(--white);
  padding: 70px 0 76px;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: "";
  position: absolute;
  top: -120px;
  right: -100px;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(108, 191, 94, 0.2), transparent 70%);
  pointer-events: none;
}
.page-hero-content { position: relative; max-width: 760px; }
.page-hero h1 {
  font-size: clamp(30px, 4.4vw, 47px);
  font-weight: 700;
  line-height: 1.16;
  letter-spacing: -0.022em;
  margin-bottom: 18px;
}
.page-hero-sub {
  font-size: 17.5px;
  color: rgba(255, 255, 255, 0.86);
  max-width: 620px;
}

/* ---------- STATS-balk ---------- */
.stats {
  background: var(--white);
  border-bottom: 1px solid var(--grey-line);
  padding: 50px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.stats-grid > div { text-align: center; }
.stat-num {
  font-size: 46px;
  font-weight: 800;
  color: var(--green-deep);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 14px;
  color: var(--ink-soft);
  font-weight: 500;
}

/* ---------- Kaartenraster ---------- */
.cards-grid {
  display: grid;
  gap: 22px;
}
.cards-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.cards-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.cards-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--white);
  border: 1px solid var(--grey-line);
  border-radius: var(--radius);
  padding: 30px 28px;
  display: flex;
  flex-direction: column;
}
.section-grey .card { background: var(--white); }

.card.linked {
  text-decoration: none;
  color: inherit;
  transition: transform 0.18s, box-shadow 0.18s, border-color 0.18s;
}
.card.linked:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 34px rgba(31, 77, 46, 0.1);
  border-color: var(--green-bright);
}
.card-icon {
  width: 50px;
  height: 50px;
  background: var(--green-pale);
  color: var(--green-deep);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.card-icon svg { width: 25px; height: 25px; }
.card-title {
  font-size: 19px;
  font-weight: 700;
  color: var(--green-deep);
  margin-bottom: 9px;
  letter-spacing: -0.01em;
}
.card-desc {
  font-size: 14.5px;
  color: var(--ink-soft);
  flex-grow: 1;
}
.card-link {
  margin-top: 16px;
  font-size: 14px;
  font-weight: 600;
  color: var(--green-mid);
  text-decoration: none;
}

/* ---------- Check-lijst ---------- */
.check-list { list-style: none; }
.check-list li {
  display: flex;
  gap: 13px;
  align-items: flex-start;
  padding: 11px 0;
  font-size: 15.5px;
  border-bottom: 1px solid var(--grey-line);
}
.check-list li:last-child { border-bottom: none; }
.check-icon {
  width: 21px;
  height: 21px;
  flex-shrink: 0;
  color: var(--green-mid);
  margin-top: 2px;
}
.section-dark .check-list li { border-bottom-color: rgba(255, 255, 255, 0.16); }
.section-dark .check-icon { color: var(--green-bright); }

/* ---------- Callout ---------- */
.callout {
  background: var(--amber-bg);
  border-left: 4px solid var(--amber-line);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 24px 28px;
  margin-top: 34px;
}
.callout-title {
  font-size: 16.5px;
  font-weight: 700;
  color: var(--green-deep);
  margin-bottom: 7px;
}
.callout p { font-size: 14.5px; color: var(--ink-soft); }

/* ---------- USP-raster ---------- */
.usp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.usp {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius);
  padding: 26px 24px;
}
.usp-num {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  color: var(--green-deep);
  background: var(--green-bright);
  border-radius: 100px;
  padding: 3px 12px;
  margin-bottom: 16px;
}
.usp-title {
  font-size: 16.5px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 9px;
  line-height: 1.3;
}
.usp-desc {
  font-size: 13.8px;
  color: rgba(255, 255, 255, 0.76);
}

/* ---------- Processtappen ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.step {
  background: var(--white);
  border: 1px solid var(--grey-line);
  border-radius: var(--radius);
  padding: 26px 24px;
}
.section-grey .step { background: var(--white); }
.step-num {
  width: 38px;
  height: 38px;
  background: var(--green-deep);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 16px;
}
.step-title {
  font-size: 16.5px;
  font-weight: 700;
  color: var(--green-deep);
  margin-bottom: 8px;
}
.step-desc { font-size: 14px; color: var(--ink-soft); }

/* ---------- FAQ ---------- */
.faq-list { border-top: 1px solid var(--grey-line); margin-top: 8px; }
.faq-item {
  border-bottom: 1px solid var(--grey-line);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--green-deep);
  display: flex;
  justify-content: space-between;
  gap: 18px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 21px;
  font-weight: 400;
  color: var(--green-mid);
  flex-shrink: 0;
  line-height: 1;
}
.faq-item[open] summary::after { content: "\2013"; }
.faq-item p {
  font-size: 15px;
  color: var(--ink-soft);
  padding-bottom: 20px;
  max-width: 760px;
}

/* ---------- Prose ---------- */
.prose p { font-size: 16px; color: var(--ink-soft); margin-bottom: 16px; }
.prose h3 {
  font-size: 21px;
  font-weight: 700;
  color: var(--green-deep);
  margin: 30px 0 10px;
  letter-spacing: -0.01em;
}
.prose ul { margin: 14px 0 18px 22px; }
.prose li { font-size: 15.5px; color: var(--ink-soft); margin-bottom: 7px; }
.prose strong { color: var(--ink); }

/* ---------- WWD (wat wij doen — homepage) ---------- */
.wwd-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 48px;
  align-items: center;
}
.wwd-visual {
  background: var(--green-pale);
  border-radius: var(--radius);
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.wwd-visual svg { width: 100%; height: auto; }
.wwd-list-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--green-deep);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 6px;
}

/* ---------- Tariefkaart (homepage) ---------- */
.tarief-card {
  background: var(--green-pale);
  border-radius: var(--radius);
  padding: 44px;
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: 36px;
  align-items: center;
}
.tarief-content h3 {
  font-size: 26px;
  font-weight: 700;
  color: var(--green-deep);
  margin-bottom: 10px;
  letter-spacing: -0.015em;
}
.tarief-content p { font-size: 15.5px; color: var(--ink-soft); }
.tarief-cta { text-align: center; }

/* ---------- Quickscan-kaart (homepage) ---------- */
.qs-card {
  background: linear-gradient(140deg, var(--green-deep), var(--green-mid));
  color: var(--white);
  border-radius: var(--radius);
  padding: 48px;
  display: grid;
  grid-template-columns: 1.5fr 0.5fr;
  gap: 36px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.qs-card::after {
  content: "";
  position: absolute;
  bottom: -100px;
  right: -60px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(108, 191, 94, 0.28), transparent 70%);
}
.qs-content { position: relative; }
.qs-content .section-eyebrow { color: var(--green-bright); }
.qs-content .section-title { color: var(--white); }
.qs-content .section-intro { color: rgba(255, 255, 255, 0.82); margin-bottom: 26px; }
.qs-visual { position: relative; text-align: center; }
.qs-icon {
  width: 110px;
  height: 110px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.qs-icon svg { width: 52px; height: 52px; }

/* ---------- Kennisbank-tegels ---------- */
.kb-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green-mid);
  background: var(--green-pale);
  padding: 4px 10px;
  border-radius: 5px;
  margin-bottom: 14px;
  align-self: flex-start;
}
.kb-arrow {
  margin-top: 16px;
  font-size: 14px;
  font-weight: 600;
  color: var(--green-mid);
}
.kb-all { text-align: center; margin-top: 30px; }
.kb-all a {
  font-size: 15px;
  font-weight: 600;
  color: var(--green-deep);
  text-decoration: none;
  border-bottom: 2px solid var(--green-bright);
  padding-bottom: 3px;
}

/* ---------- Tarieftabel ---------- */
.tariff-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border: 1px solid var(--grey-line);
  border-radius: var(--radius);
  overflow: hidden;
  margin: 8px 0 16px;
}
.tariff-table th,
.tariff-table td {
  text-align: left;
  padding: 14px 20px;
  font-size: 14.5px;
  border-bottom: 1px solid var(--grey-line);
}
.tariff-table thead th {
  background: var(--green-deep);
  color: var(--white);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.tariff-table tbody tr:last-child td { border-bottom: none; }
.tariff-table tbody tr:nth-child(even) { background: var(--grey-bg); }
.tariff-table td:first-child { font-weight: 600; color: var(--green-deep); }

/* ---------- Final CTA ---------- */
.final-cta {
  background: var(--amber-bg);
  text-align: center;
  padding: 84px 0;
}
.final-cta .section-title { margin-left: auto; margin-right: auto; }
.final-cta .section-intro { margin-left: auto; margin-right: auto; }
.final-cta-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---------- Footer ---------- */
footer {
  background: var(--green-deep);
  color: rgba(255, 255, 255, 0.72);
  padding: 56px 0 26px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 38px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-weight: 700;
  font-size: 17px;
  margin-bottom: 12px;
}
.footer-tag { font-size: 13.5px; max-width: 280px; }
.footer-col h4 {
  color: var(--white);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 7px; }
.footer-col a {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  font-size: 13.8px;
}
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12.5px;
}
.footer-bottom a { text-decoration: none; color: rgba(255, 255, 255, 0.72); }
.footer-bottom a:hover { color: var(--white); }

/* ---------- Responsief ---------- */
@media (max-width: 920px) {
  .nav-links { display: none; }
  .cards-grid.cols-2,
  .cards-grid.cols-3,
  .cards-grid.cols-4 { grid-template-columns: 1fr 1fr; }
  .usp-grid { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: 1fr; gap: 26px; }
  .wwd-grid,
  .tarief-card,
  .qs-card { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .cards-grid.cols-2,
  .cards-grid.cols-3,
  .cards-grid.cols-4,
  .usp-grid,
  .steps { grid-template-columns: 1fr; }
  .content-section { padding: 48px 0; }
  .hero { padding: 52px 0 56px; }
  .footer-grid { grid-template-columns: 1fr; }
  .tarief-card,
  .qs-card { padding: 32px 26px; }
  .hero-ctas .btn,
  .final-cta-buttons .btn { width: 100%; text-align: center; }
}

/* ---------- Team-blok (Over ons) ---------- */
.team-row {
  display: flex;
  gap: 24px;
  align-items: center;
  background: var(--grey-bg);
  border: 1px solid var(--grey-line);
  border-radius: var(--radius);
  padding: 26px;
}
.team-photo {
  width: 104px;
  height: 104px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  background: var(--green-light);
}
.team-photo-placeholder {
  width: 104px;
  height: 104px;
  border-radius: 50%;
  flex-shrink: 0;
  background: var(--green-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-deep);
  font-weight: 700;
  font-size: 30px;
}
.team-info h3 { font-size: 19px; color: var(--green-deep); margin-bottom: 2px; }
.team-role { font-size: 14px; color: var(--ink-soft); margin-bottom: 10px; }
.team-info p { font-size: 14.5px; }
.team-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--green-mid);
  text-decoration: none;
  margin-top: 8px;
}
.team-link:hover { text-decoration: underline; }
@media (max-width: 600px) {
  .team-row { flex-direction: column; text-align: center; }
}

/* ---------- Bedrijfsgegevens-strip (footer) ---------- */
.company-line {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
}

/* ---------- Iframe-wrapper (quickscan) ---------- */
.iframe-wrap {
  border: 1px solid var(--grey-line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--grey-bg);
}
.iframe-wrap iframe {
  width: 100%;
  border: 0;
  display: block;
  min-height: 1400px;
}
.iframe-note {
  font-size: 13px;
  color: var(--ink-soft);
  text-align: center;
  margin-top: 14px;
}

/* ---------- Tarieventabel: BTW-noot ---------- */
.table-note {
  font-size: 13px;
  color: var(--ink-soft);
  margin-top: 10px;
  font-style: normal;
}

/* ---------- Taalwissel ---------- */
.nav-right { display: flex; align-items: center; gap: 16px; }
.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-soft);
  text-decoration: none;
  border: 1px solid var(--grey-line);
  border-radius: 100px;
  padding: 6px 12px;
  transition: border-color 0.15s, color 0.15s;
}
.lang-switch:hover { border-color: var(--green-mid); color: var(--green-mid); }
.lang-switch svg { width: 14px; height: 14px; }
@media (max-width: 600px) {
  .nav-right { gap: 10px; }
  .lang-switch { padding: 5px 9px; font-size: 12px; }
}

/* ================================================================
   UITBREIDING - mobiel menu, Kennisbank, Quickscan, generator, 404
   Toegevoegd bij het samenvoegen van de drie deelsites.
   ================================================================ */

/* ---------- Logo in de header ---------- */
.logo-img { height: 46px; width: auto; display: block; }
@media (max-width: 600px) { .logo-img { height: 38px; } }

/* ---------- Mobiel menu (hamburger) ---------- */
.nav-collapse { display: flex; align-items: center; gap: 30px; }
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px; height: 44px;
  padding: 0; margin: 0;
  background: none; border: none; cursor: pointer;
}
.nav-toggle span {
  display: block; width: 24px; height: 2.5px;
  background: var(--green-deep); border-radius: 2px;
  transition: transform 0.22s ease, opacity 0.18s ease;
}

@media (max-width: 920px) {
  .nav-toggle { display: flex; }
  .nav-collapse {
    display: none;
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--white);
    border-top: 1px solid var(--grey-line);
    box-shadow: 0 14px 26px rgba(15, 30, 23, 0.10);
    padding: 10px 0 18px;
  }
  header.nav-open .nav-collapse { display: flex; }
  /* override the original rule that hid the links entirely */
  header .nav-links {
    display: flex !important;
    flex-direction: column; gap: 0; width: 100%;
  }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; padding: 13px 30px; font-size: 15px; }
  .nav-links a.active { font-weight: 700; }
  .nav-right {
    flex-direction: column; align-items: stretch; gap: 12px;
    padding: 16px 30px 4px; margin-top: 6px;
    border-top: 1px solid var(--grey-line);
  }
  .nav-right .lang-switch,
  .nav-right .btn { width: 100%; justify-content: center; text-align: center; }
  header.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
  header.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
  header.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }
}

/* ---------- Smalle container (was wel gebruikt, niet gedefinieerd) ---------- */
.container-narrow { max-width: 820px; margin: 0 auto; padding: 0 28px; }

/* ---------- Breadcrumb ---------- */
.breadcrumb { font-size: 13px; margin-bottom: 18px; color: rgba(255, 255, 255, 0.7); }
.breadcrumb a { color: rgba(255, 255, 255, 0.7); text-decoration: none; }
.breadcrumb a:hover { color: var(--white); text-decoration: underline; }
.breadcrumb span { margin: 0 7px; opacity: 0.6; }
.breadcrumb .current { color: var(--white); }
.page-hero .article-meta {
  display: flex; flex-wrap: wrap; gap: 10px 16px; align-items: center;
  margin-top: 18px; font-size: 13.5px; color: rgba(255, 255, 255, 0.82);
}
.page-hero .article-meta .pill {
  background: rgba(108, 191, 94, 0.18); color: var(--green-bright);
  font-weight: 700; font-size: 11.5px; letter-spacing: 0.08em;
  text-transform: uppercase; padding: 4px 12px; border-radius: 100px;
}

/* ---------- Kennisbank: filterbalk ---------- */
.kb-filters { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 36px; }
.kb-filter {
  font-family: inherit; font-size: 13.5px; font-weight: 600;
  padding: 9px 18px; border-radius: 100px;
  border: 1.5px solid var(--grey-line); background: var(--white);
  color: var(--ink-soft); cursor: pointer; transition: all 0.15s;
}
.kb-filter:hover { border-color: var(--green-mid); color: var(--green-mid); }
.kb-filter.active {
  background: var(--green-deep); border-color: var(--green-deep); color: var(--white);
}

/* ---------- Kennisbank: artikelkaart ---------- */
.kb-card-meta { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.kb-tag {
  display: inline-block; background: var(--green-pale); color: var(--green-mid);
  font-size: 11px; font-weight: 700; letter-spacing: 0.05em;
  text-transform: uppercase; padding: 4px 11px; border-radius: 100px;
}
.kb-read-time { font-size: 12.5px; color: var(--ink-soft); }
.kb-card .card-title { margin-bottom: 9px; }
.kb-card .card-desc { font-size: 14px; }
.kb-card .kb-arrow {
  display: inline-block; margin-top: 14px; font-size: 13.5px;
  font-weight: 600; color: var(--green-mid);
}
.kb-empty {
  display: none; text-align: center; color: var(--ink-soft);
  padding: 40px 0; font-size: 15px;
}

/* ---------- Artikelpagina: prose-aanvullingen ---------- */
.kb-article { max-width: 760px; }
.kb-article .lead-intro {
  font-size: 18px; color: var(--ink); font-weight: 500;
  margin-bottom: 26px; line-height: 1.6;
}
.kb-article h3:first-of-type { margin-top: 8px; }
.kb-article ol { margin: 14px 0 18px 22px; }
.kb-article ol li { font-size: 15.5px; color: var(--ink-soft); margin-bottom: 7px; }
.kb-article a {
  color: var(--green-mid); text-decoration: underline; text-underline-offset: 2px;
}
.kb-article a:hover { color: var(--green-deep); }
.kb-article .callout {
  background: var(--green-pale); border-left: 4px solid var(--green-mid);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 16px 20px; margin: 20px 0; font-size: 14.5px; color: var(--ink);
}
.kb-article .callout strong { color: var(--green-deep); }
.kb-article .callout-info { background: #eef3fb; border-left-color: #3a6ea5; }
.kb-article .callout-info strong { color: #2c4a8a; }
.kb-article .callout-green { background: var(--green-pale); border-left-color: var(--green-bright); }
.kb-article .callout-warning { background: var(--amber-bg); border-left-color: var(--amber-line); }
.kb-article .callout-warning strong { color: #92400e; }
.kb-article .checklist { list-style: none; margin: 14px 0 18px; padding: 0; }
.kb-article .checklist li {
  position: relative; padding: 7px 0 7px 28px; font-size: 15px;
  color: var(--ink-soft); border-bottom: 1px solid var(--grey-line);
}
.kb-article .checklist li:last-child { border-bottom: none; }
.kb-article .checklist li::before {
  content: "\2713"; position: absolute; left: 0; top: 7px;
  color: var(--green-mid); font-weight: 700;
}
.kb-article .quickscan-cta {
  display: inline-block; background: var(--green-deep); color: var(--white) !important;
  font-weight: 600; font-size: 14.5px; padding: 12px 24px;
  border-radius: var(--radius-sm); text-decoration: none !important;
  margin: 18px 0 6px; transition: background 0.18s, transform 0.18s;
}
.kb-article .quickscan-cta:hover { background: var(--green-mid); transform: translateY(-2px); }

/* "Lees ook"-blok */
.kb-related {
  margin-top: 40px; padding: 26px 28px; background: var(--grey-bg);
  border: 1px solid var(--grey-line); border-radius: var(--radius);
}
.kb-related h2 {
  font-size: 14px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.07em; color: var(--green-deep); margin-bottom: 14px;
}
.kb-related ul { list-style: none; }
.kb-related li { padding: 9px 0; border-bottom: 1px solid var(--grey-line); }
.kb-related li:last-child { border-bottom: none; }
.kb-related a { font-size: 15px; font-weight: 600; color: var(--green-mid); text-decoration: none; }
.kb-related a:hover { color: var(--green-deep); text-decoration: underline; }
.kb-related .kb-rel-tag {
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.06em; color: var(--ink-soft); margin-right: 8px;
}
.kb-translation-note {
  background: var(--amber-bg); border: 1px solid var(--amber-line);
  border-radius: var(--radius-sm); padding: 13px 18px;
  font-size: 13px; color: var(--ink-soft); margin-bottom: 30px;
}
.kb-back {
  display: inline-flex; align-items: center; gap: 6px; margin-top: 34px;
  font-size: 14px; font-weight: 600; color: var(--green-mid); text-decoration: none;
}
.kb-back:hover { color: var(--green-deep); }

/* ---------- 404-pagina ---------- */
.error-wrap {
  min-height: 58vh; display: flex; flex-direction: column;
  align-items: center; justify-content: center; text-align: center;
  padding: 60px 28px;
}
.error-code {
  font-size: 90px; font-weight: 800; color: var(--green-bright);
  line-height: 1; letter-spacing: -0.04em;
}
.error-wrap h1 { font-size: clamp(24px, 3vw, 32px); color: var(--green-deep); margin: 10px 0 12px; }
.error-wrap p { color: var(--ink-soft); max-width: 460px; margin-bottom: 26px; }

/* ================================================================
   QUICKSCAN - reskin naar de huisstijl (Montserrat + groen).
   De volledige quickscan-CSS staat genest onder .quickscan-app,
   zodat die niet botst met de gedeelde stylesheet.
   ================================================================ */
