/* ============================================================
   AVODY - "duurzaam & fris" stylesheet
   Palet: wit #FFFFFF · bosgroen #1D3A30 · groen #2E7D5B · solar-amber #E29A3A
   ============================================================ */

:root {
  /* Basis: wit + licht mint (geen crème) */
  --paper:        #FFFFFF;   /* wit */
  --paper-2:      #F6F9F5;   /* kaarten, fluister-groen wit */
  --paper-3:      #EDF3EA;   /* licht mint/sage, alt-secties */
  --paper-4:      #E1EADD;

  /* Inkt / fris donkergroen */
  --ink:          #1E2B24;   /* primaire tekst */
  --ink-2:        #55655C;   /* gedempte tekst */
  --ink-3:        #808E84;   /* nog lichter / labels */
  --espresso:     #1D3A30;   /* donkere secties (bosgroen) */
  --espresso-2:   #142A22;
  --cream-on-dark:#EAF0E6;   /* tekst op donker */
  --cream-on-dark-2: #A9BBAF;

  /* Merk (groen) & energie-accent (amber) */
  --brand:        #2E7D5B;   /* fris groen */
  --accent:       #2E7D5B;   /* groen: iconen, ticks, links, marks */
  --accent-2:     #246347;   /* dieper groen, hover */
  --accent-glow:  #EAA746;   /* solar-amber pop op donker */
  --amber:        #E29A3A;   /* energie-accent */
  --amber-glow:   #F3C27E;
  --green-soft:   #6FA986;   /* zacht blad-groen */

  /* Lijnen */
  --line:         rgba(30, 43, 36, 0.14);
  --line-2:       rgba(30, 43, 36, 0.10);
  --line-light:   rgba(234, 240, 230, 0.16);

  /* Type */
  --display: "Bricolage Grotesque", "Segoe UI", system-ui, sans-serif;
  --sans:    "Manrope", "Segoe UI", system-ui, sans-serif;

  /* Ritme */
  --wrap: 1200px;
  --gutter: clamp(1.25rem, 4vw, 2.5rem);
  --radius: 18px;
  --radius-lg: 26px;
  --shadow-sm: 0 2px 10px rgba(20, 42, 34, 0.05);
  --shadow:    0 24px 60px -28px rgba(20, 42, 34, 0.30);
  --shadow-lg: 0 40px 90px -35px rgba(20, 42, 34, 0.40);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; scroll-padding-top: 96px; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--sans);
  color: var(--ink);
  background-color: var(--paper);
  background-image:
    radial-gradient(1100px 620px at 82% -6%, rgba(46, 125, 91, 0.06), transparent 60%),
    radial-gradient(900px 560px at -10% 8%, rgba(111, 169, 134, 0.06), transparent 55%);
  background-attachment: fixed;
  line-height: 1.65;
  font-weight: 400;
  font-size: 1.02rem;
  letter-spacing: 0.005em;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
em { font-style: italic; }

/* ---------- Grain overlay ---------- */
.grain {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.22;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.35'/%3E%3C/svg%3E");
}

/* ---------- Layout ---------- */
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gutter); }

.section { position: relative; padding-block: clamp(4.5rem, 9vw, 8rem); }

.skip-link {
  position: absolute; left: 50%; top: -60px; transform: translateX(-50%);
  background: var(--espresso); color: var(--cream-on-dark);
  padding: 0.6rem 1.1rem; border-radius: 0 0 12px 12px; z-index: 10000;
  transition: top 0.25s var(--ease);
}
.skip-link:focus { top: 0; }

/* ---------- Typografie ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-family: var(--sans); font-weight: 600;
  font-size: 0.74rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--ink-2);
  margin-bottom: 1.4rem;
}
.eyebrow--light { color: var(--cream-on-dark-2); }
.eyebrow-dot {
  width: 7px; height: 7px; background: var(--amber);
  transform: rotate(45deg); display: inline-block; flex: none;
  box-shadow: 0 0 0 4px rgba(233, 169, 74, 0.18);
}

.section-title {
  font-family: var(--display);
  font-weight: 600;
  font-optical-sizing: auto;
  font-size: clamp(2rem, 4.2vw, 3.15rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink);
  max-width: 20ch;
}
.section-title em { color: var(--accent); font-style: normal; }

.section-head { max-width: 720px; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--center .eyebrow,
.section-head--center .section-title { margin-inline: auto; }
.section-head--center .section-title { max-width: 24ch; }

.section-lead {
  margin-top: 1.4rem;
  font-size: clamp(1.05rem, 1.6vw, 1.22rem);
  color: var(--ink-2);
  max-width: 60ch;
  line-height: 1.7;
}
.section-head--center .section-lead { margin-inline: auto; }

/* ---------- Buttons ---------- */
.btn {
  --btn-bg: var(--ink);
  --btn-fg: var(--paper);
  display: inline-flex; align-items: center; gap: 0.55rem;
  font-family: var(--sans); font-weight: 600; font-size: 0.98rem;
  letter-spacing: 0.01em;
  padding: 0.95rem 1.6rem;
  border-radius: 100px;
  border: 1px solid transparent;
  cursor: pointer;
  position: relative;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease),
              background-color 0.35s var(--ease), color 0.35s var(--ease), border-color 0.35s var(--ease);
  will-change: transform;
}
.btn:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }
.btn .arrow { transition: transform 0.35s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }
.btn--sm { padding: 0.7rem 1.2rem; font-size: 0.9rem; }

.btn--primary { background: var(--ink); color: var(--paper); box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: var(--espresso); transform: translateY(-3px); box-shadow: 0 18px 34px -14px rgba(20,42,34,0.5); }

.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--ink); transform: translateY(-3px); background: rgba(30,58,48,0.05); }

.btn--light { background: var(--amber); color: #2A1E08; box-shadow: 0 18px 40px -18px rgba(0,0,0,0.45); }
.btn--light:hover { background: #F0A748; transform: translateY(-3px); box-shadow: 0 24px 50px -18px rgba(0,0,0,0.55); }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 900;
  background: var(--paper);
  transition: box-shadow 0.4s var(--ease), background-color 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled {
  box-shadow: 0 1px 0 var(--line), 0 10px 30px -22px rgba(20,42,34,0.45);
  border-bottom-color: var(--line-2);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
}
.header-inner {
  display: flex; align-items: center; gap: 1.5rem;
  min-height: 76px;
}
.brand { display: inline-flex; align-items: center; flex: none; }
.brand-logo {
  height: 52px; width: auto;
  transition: height 0.4s var(--ease);
}
.site-header.is-scrolled .brand-logo { height: 44px; }

.nav { margin-left: auto; }
.nav-list { display: flex; align-items: center; gap: 0.35rem; }
.nav-list a {
  display: inline-block;
  font-size: 0.94rem; font-weight: 500; color: var(--ink-2);
  padding: 0.5rem 0.85rem; border-radius: 100px;
  position: relative;
  transition: color 0.25s var(--ease), background-color 0.25s var(--ease);
}
.nav-list a:hover { color: var(--ink); background: rgba(30,58,48,0.06); }

.nav-cta { flex: none; }
.nav-cta-mobile { display: none; }

.nav-toggle {
  display: none;
  flex: none;
  width: 46px; height: 46px;
  background: transparent; border: 1px solid var(--line); border-radius: 12px;
  cursor: pointer; position: relative;
  margin-left: auto;
}
.nav-toggle span {
  position: absolute; left: 50%; top: 50%; width: 20px; height: 2px;
  background: var(--ink); border-radius: 2px;
  transition: transform 0.35s var(--ease), opacity 0.2s var(--ease);
}
.nav-toggle span:nth-child(1) { transform: translate(-50%, -7px); }
.nav-toggle span:nth-child(2) { transform: translate(-50%, 0); }
.nav-toggle span:nth-child(3) { transform: translate(-50%, 7px); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translate(-50%, 0) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translate(-50%, 0) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; padding-block: clamp(3rem, 7vw, 6rem) clamp(3.5rem, 7vw, 6.5rem); overflow: hidden; }
.hero-aura {
  position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background:
    radial-gradient(760px 520px at 88% 22%, rgba(46, 125, 91, 0.10), transparent 62%),
    radial-gradient(520px 420px at 6% 82%, rgba(111, 169, 134, 0.08), transparent 60%);
}
.hero-inner {
  display: grid; grid-template-columns: 1.12fr 0.88fr; align-items: center;
  gap: clamp(2rem, 5vw, 4.5rem);
  min-height: min(78vh, 720px);
}
.hero-copy { max-width: 640px; }

.hero-title {
  font-family: var(--display); font-weight: 600; font-optical-sizing: auto;
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.028em;
  color: var(--ink);
  margin-bottom: 1.5rem;
  overflow-wrap: break-word;
}
.hero-title em { font-style: normal; color: var(--accent); }

.hero-sub {
  font-size: clamp(1.08rem, 1.5vw, 1.28rem);
  color: var(--ink-2); max-width: 52ch; line-height: 1.72;
  margin-bottom: 2.2rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-bottom: 2.2rem; }

.hero-trust {
  display: flex; flex-wrap: wrap; align-items: center; gap: 0.75rem;
  font-size: 0.9rem; color: var(--ink-3); letter-spacing: 0.01em;
}
.hero-trust .dot-sep { color: var(--accent); }

/* Hero visual (foto van een installateur) */
.hero-visual { position: relative; transition: transform 0.5s var(--ease); }
.hero-photo-frame {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  border: 1px solid var(--line);
  background: var(--paper-3);
  box-shadow: var(--shadow-lg);
}
.hero-photo {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 30%;
  filter: saturate(1.05) contrast(1.04) brightness(1.03);
  transform: scale(1.03);
}
.hero-photo-grade {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(120% 78% at 82% 8%, rgba(111, 169, 134, 0.14), transparent 55%),
    linear-gradient(180deg, rgba(20, 42, 34, 0) 48%, rgba(20, 42, 34, 0.30) 100%);
  mix-blend-mode: multiply;
}
.hero-accent {
  position: absolute; left: -24px; bottom: -20px;
  width: 112px; height: 112px; color: var(--accent);
}
.hero-accent-arc { stroke: var(--green-soft, #6FA986); stroke-width: 1.5; opacity: 0.6; }
.hero-accent-arc:nth-of-type(2) { opacity: 0.32; }
.hero-accent-diamond { fill: var(--amber); stroke: none; }

.hero-scroll {
  position: absolute; left: 50%; bottom: 1.2rem; transform: translateX(-50%);
  width: 26px; height: 42px; border: 1.5px solid var(--line); border-radius: 100px;
  display: grid; place-items: start center; padding-top: 8px;
}
.hero-scroll span { width: 4px; height: 8px; border-radius: 4px; background: var(--accent); animation: scrolldot 1.8s var(--ease) infinite; }
@keyframes scrolldot { 0% { opacity: 0; transform: translateY(-3px); } 40% { opacity: 1; } 80% { opacity: 0; transform: translateY(9px); } 100% { opacity: 0; } }

/* ---------- Hero-accent beweging ---------- */
.hero-accent-diamond { transform-box: fill-box; transform-origin: center; animation: floatDiamond 6s ease-in-out infinite; }
@keyframes floatDiamond { 0%, 100% { transform: translateY(0) rotate(0); } 50% { transform: translateY(-7px) rotate(8deg); } }

/* ============================================================
   CARDS (algemeen)
   ============================================================ */
.cards { display: grid; gap: 1.4rem; }
.cards--4 { grid-template-columns: repeat(4, 1fr); }
.cards--3 { grid-template-columns: repeat(3, 1fr); }

.card {
  background: var(--paper-2);
  border: 1px solid var(--line-2);
  border-radius: var(--radius);
  padding: 1.9rem 1.7rem;
  position: relative;
  box-shadow: 0 1px 2px rgba(20, 42, 34, 0.04);
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease), border-color 0.45s var(--ease);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--line); }
.card h3 { font-family: var(--display); font-weight: 600; font-size: 1.3rem; line-height: 1.2; margin-bottom: 0.6rem; letter-spacing: -0.015em; }
.card p { color: var(--ink-2); font-size: 0.98rem; }

/* ---------- Probleem ---------- */
.problem { background: var(--paper); }
.pain { padding-top: 2.4rem; }
.pain-num {
  font-family: var(--display); font-style: italic; font-size: 1.05rem;
  color: var(--accent-2);
  position: absolute; top: 1.4rem; right: 1.5rem;
  letter-spacing: 0.02em;
}
.pain::before {
  content: ""; position: absolute; left: 1.7rem; top: 1.7rem;
  width: 26px; height: 2px; background: var(--accent); border-radius: 2px;
}
.pain h3 { margin-top: 1.1rem; }

/* ============================================================
   OPLOSSING
   ============================================================ */
.solution { background: linear-gradient(180deg, var(--paper) 0%, var(--paper-3) 100%); }
.solution-inner { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.solution-copy .btn { margin-top: 2rem; }

.flow {
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2.2rem;
  box-shadow: var(--shadow);
  display: grid; gap: 0.2rem;
}
.flow-node {
  display: flex; align-items: center; gap: 0.9rem;
  font-weight: 600; font-size: 1.02rem; color: var(--ink);
  padding: 0.85rem 1.1rem; border-radius: 14px;
  background: var(--paper);
  border: 1px solid var(--line-2);
}
.flow-node .flow-ic { color: var(--accent); font-size: 0.8rem; }
.flow-node--goal { background: var(--espresso); color: var(--cream-on-dark); border-color: transparent; box-shadow: var(--shadow); }
.flow-node--goal .flow-ic { color: var(--accent-glow); }
.flow-line { width: 2px; height: 22px; margin-left: 1.55rem; background: linear-gradient(var(--accent), transparent); }

/* ============================================================
   DIENSTEN
   ============================================================ */
.services { background: var(--paper-3); }
.service { padding: 2.2rem 2rem; display: flex; flex-direction: column; }
.service-ic {
  width: 58px; height: 58px; border-radius: 16px;
  display: grid; place-items: center; margin-bottom: 1.4rem;
  background: var(--paper); border: 1px solid var(--line);
  color: var(--accent-2);
}
.service-ic svg { width: 30px; height: 30px; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.service h3 { margin-bottom: 0.7rem; }
.service p { margin-bottom: 1.3rem; }
.service .ticks { margin-top: auto; }
.ticks li {
  position: relative; padding-left: 1.5rem; margin-bottom: 0.5rem;
  font-size: 0.92rem; font-weight: 500; color: var(--ink);
}
.ticks li::before {
  content: ""; position: absolute; left: 0; top: 0.5em;
  width: 8px; height: 8px; background: var(--accent); transform: rotate(45deg);
}
.card--feature {
  background: var(--espresso);
  border-color: transparent;
  color: var(--cream-on-dark);
  box-shadow: var(--shadow-lg);
}
.card--feature h3 { color: #fff; }
.card--feature p { color: var(--cream-on-dark-2); }
.card--feature .service-ic { background: rgba(234,240,230,0.07); border-color: var(--line-light); color: var(--accent-glow); }
.card--feature .ticks li { color: var(--cream-on-dark); }
.card--feature .ticks li::before { background: var(--accent-glow); }
.service-tag {
  display: inline-block; align-self: flex-start;
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--espresso); background: var(--accent-glow);
  padding: 0.32rem 0.7rem; border-radius: 100px; margin-bottom: 0.9rem;
}

/* ============================================================
   AANPAK - stappen
   ============================================================ */
.approach { background: var(--paper); }
.steps {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem; counter-reset: step;
  position: relative;
}
.steps::before {
  content: ""; position: absolute; left: 0; right: 0; top: 30px; height: 1px;
  background: repeating-linear-gradient(90deg, var(--line) 0 8px, transparent 8px 16px);
  z-index: 0;
}
.step { position: relative; padding-top: 0; z-index: 1; }
.step-num {
  display: grid; place-items: center;
  width: 60px; height: 60px; border-radius: 50%;
  background: var(--paper); border: 1px solid var(--line);
  font-family: var(--display); font-size: 1.5rem; font-weight: 700; color: var(--accent);
  margin-bottom: 1.4rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.4s var(--ease), background-color 0.4s var(--ease), color 0.4s var(--ease);
}
.step:hover .step-num { background: var(--espresso); color: var(--accent-glow); transform: translateY(-4px); border-color: transparent; }
.step h3 { font-family: var(--display); font-weight: 600; font-size: 1.28rem; margin-bottom: 0.5rem; letter-spacing: -0.015em; }
.step p { color: var(--ink-2); font-size: 0.96rem; }

/* ============================================================
   WAAROM AVODY
   ============================================================ */
.why { background: linear-gradient(180deg, var(--paper) 0%, var(--paper-3) 100%); }
.why-inner { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: start; }
.why-head { margin-bottom: 0; position: sticky; top: 110px; }
.why-list { display: grid; gap: 0.4rem; }
.why-item {
  padding: 1.7rem 0; border-bottom: 1px solid var(--line);
  transition: padding-left 0.4s var(--ease);
}
.why-item:first-child { border-top: 1px solid var(--line); }
.why-item:hover { padding-left: 0.7rem; }
.why-item h3 {
  font-family: var(--display); font-weight: 600; font-size: clamp(1.25rem, 2.2vw, 1.55rem);
  letter-spacing: -0.01em; margin-bottom: 0.55rem;
  display: flex; align-items: baseline; gap: 0.7rem;
}
.why-mark { color: var(--accent); font-size: 0.7em; flex: none; }
.why-item p { color: var(--ink-2); max-width: 54ch; }

/* ============================================================
   FOTOBAND (sector, duotone)
   ============================================================ */
.band {
  position: relative;
  min-height: clamp(360px, 52vw, 560px);
  display: grid; align-items: center;
  overflow: hidden;
  background: var(--espresso);
}
.band-img {
  position: absolute; left: -6%; top: -6%; width: 112%; height: 112%;
  object-fit: cover; object-position: center 42%;
  filter: grayscale(0.42) saturate(0.9) brightness(0.72) contrast(1.06);
  animation: kenburns 24s ease-in-out infinite alternate;
  will-change: transform;
}
@keyframes kenburns { from { transform: scale(1); } to { transform: scale(1.09) translate(-1.5%, -1%); } }
.band-overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(700px 500px at 82% 20%, rgba(233, 169, 74, 0.22), transparent 60%),
    linear-gradient(102deg, rgba(17, 36, 29, 0.92) 0%, rgba(17, 36, 29, 0.66) 42%, rgba(17, 36, 29, 0.30) 100%);
}
.band-content { position: relative; z-index: 2; color: var(--cream-on-dark); padding-block: 3rem; }
.band-title {
  font-family: var(--display); font-weight: 600; font-optical-sizing: auto;
  font-size: clamp(1.7rem, 3.6vw, 3rem); line-height: 1.14; letter-spacing: -0.02em;
  color: #fff; max-width: 20ch;
}

/* ============================================================
   SOCIAL PROOF
   ============================================================ */
.proof { background: var(--paper-3); text-align: center; padding-block: clamp(3.5rem, 6vw, 5.5rem); }
.proof-label {
  font-size: 0.76rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--ink-3); margin-bottom: 2rem;
}
.proof-logos {
  display: flex; flex-wrap: wrap; justify-content: center; align-items: center;
  gap: clamp(1rem, 4vw, 3rem);
}
.proof-logo {
  font-family: var(--display); font-style: italic; font-size: 1.25rem;
  color: var(--ink-3); opacity: 0.5;
  padding: 0.6rem 1.4rem; border: 1px dashed var(--line);
  border-radius: 12px; letter-spacing: 0.01em;
}
.proof-note {
  margin: 0 auto; max-width: 56ch;
  font-family: var(--display); font-size: clamp(1.15rem, 2vw, 1.5rem);
  font-weight: 500; font-style: normal; line-height: 1.4; letter-spacing: -0.01em; color: var(--ink);
}

/* ============================================================
   CTA (donkere espresso-sectie)
   ============================================================ */
.cta { background: var(--espresso); color: var(--cream-on-dark); overflow: hidden; }
.cta-aura {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(680px 460px at 78% 10%, rgba(233, 169, 74, 0.20), transparent 60%),
    radial-gradient(560px 500px at 8% 100%, rgba(111, 169, 134, 0.16), transparent 60%);
}
.cta-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1.25fr 0.75fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.cta-title {
  font-family: var(--display); font-weight: 600; font-optical-sizing: auto;
  font-size: clamp(2rem, 4vw, 3.1rem); line-height: 1.1; letter-spacing: -0.02em;
  color: #fff; max-width: 20ch; margin-bottom: 1.3rem;
}
.cta-sub { color: var(--cream-on-dark-2); font-size: clamp(1.02rem, 1.4vw, 1.15rem); max-width: 56ch; margin-bottom: 2rem; line-height: 1.7; }
.cta-actions { display: flex; flex-direction: column; align-items: flex-start; gap: 1rem; }
.cta-micro { font-size: 0.86rem; color: var(--cream-on-dark-2); letter-spacing: 0.01em; }

.cta-list {
  display: grid; gap: 1rem;
  background: rgba(234, 240, 230, 0.05);
  border: 1px solid var(--line-light);
  border-radius: var(--radius-lg);
  padding: 1.9rem;
}
.cta-list li { display: flex; align-items: flex-start; gap: 0.85rem; font-size: 1rem; color: var(--cream-on-dark); line-height: 1.5; }
.cta-check {
  flex: none; width: 26px; height: 26px; border-radius: 50%;
  background: var(--accent-glow); color: var(--espresso);
  display: grid; place-items: center; font-size: 0.8rem; font-weight: 700; margin-top: 1px;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq { background: var(--paper); }
.faq-inner { max-width: 860px; margin-inline: auto; }
.accordion { display: grid; gap: 0.9rem; margin-top: 1rem; }
.qa {
  background: var(--paper-2); border: 1px solid var(--line-2);
  border-radius: 16px; overflow: hidden;
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.qa[open] { border-color: var(--line); box-shadow: var(--shadow-sm); }
.qa summary {
  list-style: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.3rem 1.6rem;
  font-family: var(--display); font-weight: 600; font-size: clamp(1.05rem, 1.7vw, 1.22rem);
  letter-spacing: -0.01em; color: var(--ink);
}
.qa summary::-webkit-details-marker { display: none; }
.qa-ic { position: relative; flex: none; width: 18px; height: 18px; }
.qa-ic::before, .qa-ic::after {
  content: ""; position: absolute; left: 50%; top: 50%; background: var(--accent-2);
  transition: transform 0.35s var(--ease), opacity 0.35s var(--ease);
}
.qa-ic::before { width: 15px; height: 2px; transform: translate(-50%, -50%); }
.qa-ic::after { width: 2px; height: 15px; transform: translate(-50%, -50%); }
.qa[open] .qa-ic::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }
.qa-body { padding: 0 1.6rem 1.4rem; }
.qa-body p { color: var(--ink-2); max-width: 68ch; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--espresso-2); color: var(--cream-on-dark-2); padding-top: clamp(3.5rem, 6vw, 5rem); }
.footer-inner {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2.5rem 3rem;
  padding-bottom: 3rem; border-bottom: 1px solid var(--line-light);
}
.footer-brand { grid-column: 1; display: flex; align-items: center; gap: 0.9rem; }
.footer-mark { color: var(--accent-glow); width: 46px; flex: none; }
.footer-mark svg { width: 100%; height: auto; }
.footer-word { font-family: var(--display); font-weight: 700; font-size: 1.6rem; letter-spacing: -0.01em; color: var(--cream-on-dark); display: block; line-height: 1; }
.footer-tag { font-size: 0.68rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--accent); }
.footer-pitch { grid-column: 1; max-width: 42ch; font-size: 0.96rem; line-height: 1.65; margin-top: -1rem; }

.footer-nav, .footer-contact { display: flex; flex-direction: column; gap: 0.7rem; align-content: start; }
.footer-col-title { font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--accent); margin-bottom: 0.4rem; }
.footer-nav a, .footer-contact a { color: var(--cream-on-dark-2); font-size: 0.96rem; width: fit-content; transition: color 0.25s var(--ease); }
.footer-nav a:hover, .footer-contact a:hover { color: var(--cream-on-dark); }

.footer-bottom {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 0.6rem;
  padding-block: 1.6rem; font-size: 0.85rem; color: var(--ink-3);
}
.footer-bottom a { color: var(--ink-3); transition: color 0.25s var(--ease); }
.footer-bottom a:hover { color: var(--cream-on-dark-2); }

/* ============================================================
   REVEAL-animaties
   ============================================================ */
/* Subtiel: alleen een zachte fade, geen omhoog-beweging/pop */
.reveal {
  opacity: 0;
  transition: opacity 0.6s ease;
  transition-delay: calc(var(--d, 0) * 40ms);
}
.reveal.is-visible { opacity: 1; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1040px) {
  .cards--4 { grid-template-columns: repeat(2, 1fr); }
  .hero-inner { grid-template-columns: 1fr; min-height: unset; }
  .hero-visual { max-width: 420px; margin-inline: auto; order: -1; }
  .hero-copy { max-width: 640px; }
  .solution-inner, .why-inner, .cta-inner { grid-template-columns: 1fr; }
  .why-head { position: static; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .steps::before { display: none; }
}

@media (max-width: 720px) {
  .nav, .nav-cta { display: none; }
  .nav-toggle { display: block; }

  /* Mobiel menu paneel */
  .nav {
    position: fixed; inset: 0 0 auto 0; top: 76px; margin: 0;
    background: var(--paper); border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    transform: translateY(-120%); transition: transform 0.4s var(--ease);
    padding: 1rem var(--gutter) 1.6rem;
    display: block;
  }
  body.nav-open { overflow: hidden; }
  body.nav-open .nav { transform: translateY(0); }
  .nav-list { flex-direction: column; align-items: stretch; gap: 0.15rem; }
  .nav-list a { padding: 0.85rem 0.5rem; font-size: 1.05rem; border-radius: 12px; }
  .nav-cta-mobile {
    display: inline-flex; width: 100%; justify-content: center; margin-top: 1rem;
    padding: 0.95rem 1.6rem; font-size: 1rem;
  }

  .cards--4, .cards--3, .steps { grid-template-columns: 1fr; }
  .hero-scroll { display: none; }
  .hero-trust { gap: 0.4rem; }
  .hero-trust .dot-sep { display: none; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand, .footer-pitch { grid-column: 1 / -1; }
  .footer-pitch { margin-top: 0; }
  .cta-actions { align-items: stretch; }
  .btn--light { justify-content: center; }
}

@media (max-width: 440px) {
  .footer-inner { grid-template-columns: 1fr; }
  .card { padding: 1.6rem 1.4rem; }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .draw { stroke-dashoffset: 0; }
  .art-diamond, .art-dot { opacity: 1; }
  .hero-scroll span { animation: none; }
}
