/* =====================================================================
   Raadsagent — landing/marketing stylesheet
   Gedeeld door index.html, raadsleden.html, ambtenaren.html.
   Kleur- en typografie-tokens gespiegeld op de webapp (styles_v2.css).
   ===================================================================== */

:root {
  --bg:        #F7F4ED;
  --bg-warm:   #EFEBE0;
  --surface:   #FFFFFF;
  --surface-2: #F2EFE8;
  --rule:      #E0DBCC;
  --rule-soft: #ECE7D7;

  --ink:       #1A1814;
  --ink-soft:  #5B564B;
  --ink-faint: #7A7567;

  --accent:           #2D5440;
  --accent-2:         #3E6B54;
  --accent-deep:      #1F3B2C;
  --accent-bg:        rgba(45, 84, 64, 0.08);
  --accent-bg-strong: rgba(45, 84, 64, 0.14);

  --voor:     #2D5440;
  --tegen:    #9C3B2C;
  --warn:     #B8862E;
  --gold:     #C08A2E;

  --radius:    8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --shadow-sm: 0 1px 2px rgba(26, 24, 20, 0.05);
  --shadow:    0 4px 14px rgba(26, 24, 20, 0.07), 0 1px 3px rgba(26, 24, 20, 0.05);
  --shadow-lg: 0 18px 50px rgba(26, 24, 20, 0.14), 0 4px 10px rgba(26, 24, 20, 0.06);
  --shadow-green: 0 14px 40px rgba(31, 59, 44, 0.28);

  --font-serif: "Spectral", Georgia, serif;
  --font-sans:  "Inter", -apple-system, BlinkMacSystemFont, sans-serif;

  --max: 1140px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
h1, h2, h3, h4 { font-family: var(--font-serif); font-weight: 600; letter-spacing: -0.02em; line-height: 1.1; margin: 0; }
p { margin: 0; }
a { color: inherit; text-decoration: none; }
img, svg { display: block; }

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 24px; }

/* anker-doelen niet onder de sticky nav laten vallen */
[id] { scroll-margin-top: 92px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-sans); font-weight: 600; font-size: 15px;
  padding: 13px 24px; border-radius: 999px;
  transition: transform 0.16s ease, box-shadow 0.16s ease, background 0.16s ease;
  cursor: pointer; white-space: nowrap;
}
.btn-primary {
  background: var(--accent); color: #F7F4ED;
  box-shadow: var(--shadow-green);
}
.btn-primary:hover { transform: translateY(-2px); background: var(--accent-2); box-shadow: 0 20px 48px rgba(31,59,44,0.34); }
.btn-ghost { background: transparent; color: var(--ink); border: 1px solid var(--rule); }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); background: var(--accent-bg); }
.btn-secondary { background: var(--surface); color: var(--accent); border: 1.5px solid var(--accent); box-shadow: var(--shadow-sm); }
.btn-secondary:hover { transform: translateY(-2px); background: var(--accent-bg); box-shadow: var(--shadow); }
.btn-lg { padding: 16px 32px; font-size: 16px; }
.btn svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(247, 244, 237, 0.82);
  backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.nav.scrolled { border-bottom-color: var(--rule); box-shadow: 0 2px 12px rgba(26,24,20,0.04); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.brand { display: flex; align-items: center; gap: 11px; }
.brand-mark {
  width: 36px; height: 36px; border-radius: 10px;
  background: var(--accent); color: #F7F4ED;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-serif); font-weight: 700; font-size: 20px;
  box-shadow: var(--shadow-sm);
}
.brand-name { font-family: var(--font-serif); font-size: 21px; font-weight: 600; letter-spacing: -0.02em; }
.nav-links { display: flex; align-items: center; gap: 26px; }
.nav-links a.link { font-size: 15px; color: var(--ink-soft); font-weight: 500; transition: color 0.15s; display: inline-flex; align-items: center; gap: 5px; }
.nav-links a.link:hover, .nav-links a.link.active { color: var(--ink); }

/* dropdown-nav (doelgroep-menu's) */
.nav-item { position: relative; display: flex; align-items: center; }
.nav-item .chev { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; transition: transform 0.16s ease; }
.nav-item:hover .chev, .nav-item:focus-within .chev { transform: rotate(180deg); }
/* onzichtbare brug zodat de muis de gap naar het menu overbrugt */
.nav-item::after { content: ""; position: absolute; top: 100%; left: -10px; right: -10px; height: 16px; }
.dropdown {
  position: absolute; top: calc(100% + 12px); left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 288px; background: var(--surface);
  border: 1px solid var(--rule); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); padding: 8px;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity 0.16s ease, transform 0.16s ease;
  z-index: 60;
}
.nav-item:hover .dropdown, .nav-item:focus-within .dropdown {
  opacity: 1; visibility: visible; pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.dd-item { display: flex; align-items: flex-start; gap: 12px; padding: 10px 12px; border-radius: 11px; transition: background 0.12s ease; }
.dd-item:hover { background: var(--accent-bg); }
.dd-item .dico { flex-shrink: 0; width: 36px; height: 36px; border-radius: 9px; background: var(--accent-bg); color: var(--accent); display: flex; align-items: center; justify-content: center; }
.dd-item .dico svg { width: 19px; height: 19px; stroke: currentColor; fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.dd-item .dtxt b { display: block; font-size: 14px; font-weight: 600; color: var(--ink); }
.dd-item .dtxt span { display: block; font-size: 12.5px; color: var(--ink-soft); margin-top: 1px; line-height: 1.35; }

/* Hamburger-knop — alleen zichtbaar op mobiel */
.nav-toggle { display: none; align-items: center; justify-content: center; width: 42px; height: 42px; border-radius: 10px; color: var(--ink); background: transparent; border: 1px solid var(--rule); cursor: pointer; }
.nav-toggle svg { width: 22px; height: 22px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.nav-toggle .icon-close { display: none; }
.nav.open .nav-toggle .icon-open { display: none; }
.nav.open .nav-toggle .icon-close { display: block; }

@media (max-width: 900px) {
  .nav-toggle { display: inline-flex; }
  /* nav-links wordt een uitklap-paneel onder de balk */
  .nav-links {
    position: absolute; top: 100%; left: 0; right: 0; margin: 0;
    flex-direction: column; align-items: stretch; gap: 2px;
    background: var(--bg-warm); border-bottom: 1px solid var(--rule);
    box-shadow: var(--shadow-lg); padding: 12px 20px 20px;
    display: none;
  }
  .nav.open .nav-links { display: flex; }
  .nav-links a.link { font-size: 16px; padding: 13px 12px; border-radius: 8px; }
  .nav-links a.link:hover, .nav-links a.link.active { background: var(--accent-bg); color: var(--accent); }
  /* dropdown-ouders worden gewone rijen; sub-menu verborgen (link → pagina) */
  .nav-item { display: block; }
  .nav-item::after { display: none; }
  .nav-item .chev { display: none; }
  .nav-item .dropdown { display: none !important; }
  .nav-item > .link { padding: 13px 12px; font-size: 16px; border-radius: 8px; }
  .nav-item > .link:hover { background: var(--accent-bg); color: var(--accent); }
  .nav-hide-sm { display: block; }
  .nav-links .btn-secondary { margin-top: 10px; justify-content: center; }
}

/* ---------- Hero ---------- */
.hero { position: relative; padding: 84px 0 40px; overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(1100px 520px at 78% -8%, rgba(62,107,84,0.18), transparent 60%),
    radial-gradient(760px 420px at 8% 8%, rgba(192,138,46,0.10), transparent 55%);
}
.hero-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 48px; align-items: center; }
@media (max-width: 940px) { .hero-grid { grid-template-columns: 1fr; gap: 44px; } }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 600; letter-spacing: 0.02em;
  color: var(--accent); background: var(--accent-bg);
  padding: 7px 14px; border-radius: 999px; margin-bottom: 22px;
  border: 1px solid var(--accent-bg-strong);
}
.eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent-2); box-shadow: 0 0 0 3px rgba(62,107,84,0.2); animation: pulse 2.4s infinite; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.4; } }

.hero h1 { font-size: clamp(36px, 4.9vw, 52px); line-height: 1.04; letter-spacing: -0.03em; }
.hero h1 .accent { color: var(--accent); font-style: italic; font-weight: 500; }
.hero-sub { font-size: 20px; color: var(--ink-soft); margin-top: 22px; max-width: 30em; line-height: 1.5; }
.hero-cta { display: flex; align-items: center; gap: 14px; margin-top: 34px; flex-wrap: wrap; }
.hero-note { display: flex; align-items: center; gap: 18px; margin-top: 22px; font-size: 14px; color: var(--ink-faint); flex-wrap: wrap; }
.hero-note .item { display: inline-flex; align-items: center; gap: 7px; }
.hero-note svg { width: 16px; height: 16px; stroke: var(--accent-2); fill: none; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }

/* ---------- Hero mockup ---------- */
.mock {
  position: relative;
  background: var(--surface);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--rule);
  overflow: hidden;
  transform: perspective(1600px) rotateY(-8deg) rotateX(3deg);
  transition: transform 0.5s ease;
}
.mock:hover { transform: perspective(1600px) rotateY(-3deg) rotateX(1deg); }
.mock-bar { display: flex; align-items: center; gap: 7px; padding: 13px 16px; background: var(--surface-2); border-bottom: 1px solid var(--rule); }
.mock-bar .dot { width: 11px; height: 11px; border-radius: 50%; }
.mock-bar .dot.r { background: #E0857A; } .mock-bar .dot.y { background: #E6C067; } .mock-bar .dot.g { background: #8FBF95; }
.mock-bar .url { margin-left: 10px; font-size: 12px; color: var(--ink-faint); font-family: ui-monospace, monospace; }
.mock-body { padding: 22px; }
.mock-date { font-size: 12px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--accent); }
.mock-title { font-family: var(--font-serif); font-size: 23px; font-weight: 600; margin: 6px 0 4px; letter-spacing: -0.02em; }
.mock-lead { font-size: 14px; color: var(--ink-soft); line-height: 1.5; }

.mock-card { background: var(--bg); border: 1px solid var(--rule-soft); border-radius: 12px; padding: 14px 15px; margin-top: 14px; }
.mock-card .tag { display: inline-block; font-size: 11px; font-weight: 600; padding: 3px 9px; border-radius: 999px; background: var(--accent-bg); color: var(--accent); letter-spacing: 0.02em; }
.mock-card .tag.warn { background: rgba(184,134,46,0.14); color: #90671f; }
.mock-card h4 { font-size: 15px; margin: 9px 0 5px; letter-spacing: -0.01em; }
.mock-card p { font-size: 13px; color: var(--ink-soft); line-height: 1.5; }
.mock-cite { display: inline-flex; align-items: center; gap: 5px; margin-top: 9px; font-size: 11.5px; color: var(--accent); font-weight: 500; background: var(--accent-bg); padding: 3px 8px; border-radius: 6px; }
.mock-cite svg { width: 12px; height: 12px; stroke: currentColor; fill: none; stroke-width: 2; }
.mock-vote { display: flex; gap: 8px; margin-top: 12px; }
.mock-pill { flex: 1; text-align: center; font-size: 12px; font-weight: 600; padding: 8px; border-radius: 8px; }
.mock-pill.voor { background: rgba(45,84,64,0.12); color: var(--voor); }
.mock-pill.tegen { background: rgba(156,59,44,0.10); color: var(--tegen); }

/* chat-mockup */
.mock-chat { display: flex; flex-direction: column; gap: 13px; }
.chat-row { display: flex; }
.chat-row.me { justify-content: flex-end; }
.bubble { max-width: 88%; padding: 11px 14px; border-radius: 14px; font-size: 13.5px; line-height: 1.5; }
.bubble.me { background: var(--accent); color: #F7F4ED; border-bottom-right-radius: 5px; }
.bubble.ai { background: var(--bg); border: 1px solid var(--rule-soft); color: var(--ink); border-bottom-left-radius: 5px; }
.bubble.ai b { color: var(--ink); font-weight: 600; }
.chat-who { display: flex; align-items: center; gap: 7px; margin-bottom: 8px; }
.chat-who .av { width: 21px; height: 21px; border-radius: 6px; background: var(--accent); color: #F7F4ED; display: flex; align-items: center; justify-content: center; font-family: var(--font-serif); font-weight: 700; font-size: 12px; }
.chat-who .nm { font-size: 11px; font-weight: 600; letter-spacing: 0.03em; text-transform: uppercase; color: var(--ink-faint); }
.chat-cites { display: flex; gap: 6px; margin-top: 10px; flex-wrap: wrap; }
.chat-cites .mock-cite { margin-top: 0; }
.typing { display: inline-flex; gap: 4px; padding: 12px 14px; }
.typing span { width: 6px; height: 6px; border-radius: 50%; background: var(--ink-faint); opacity: 0.5; animation: blink 1.2s infinite; }
.typing span:nth-child(2) { animation-delay: 0.2s; } .typing span:nth-child(3) { animation-delay: 0.4s; }
@keyframes blink { 0%, 60%, 100% { opacity: 0.25; } 30% { opacity: 0.9; } }

.float-badge {
  position: absolute; display: flex; align-items: center; gap: 9px;
  background: var(--surface); border: 1px solid var(--rule);
  border-radius: 12px; padding: 10px 14px; box-shadow: var(--shadow-lg);
  font-size: 13px; font-weight: 600;
}
.float-badge .ico { width: 30px; height: 30px; border-radius: 8px; background: var(--accent); color: #F7F4ED; display: flex; align-items: center; justify-content: center; }
.float-badge .ico svg { width: 17px; height: 17px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.float-badge small { display: block; font-weight: 500; font-size: 11px; color: var(--ink-faint); }
.fb-1 { top: 28px; left: -34px; animation: float 5s ease-in-out infinite; }
.fb-2 { bottom: 34px; right: -28px; animation: float 5s ease-in-out infinite 1.4s; }
@media (max-width: 1080px) { .fb-1, .fb-2 { display: none; } }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-11px); } }

/* ---------- Bron-strip (wat de agent doorzoekt) ---------- */
.strip { padding: 108px 0 24px; }
.strip p { text-align: center; font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-faint); font-weight: 600; margin-bottom: 26px; }
.strip-row { display: flex; align-items: center; justify-content: center; gap: 11px; flex-wrap: wrap; max-width: 900px; margin: 0 auto; }
.strip-item { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-sans); font-size: 14px; font-weight: 500; color: var(--ink-soft); background: var(--surface); border: 1px solid var(--rule); padding: 9px 15px; border-radius: 999px; box-shadow: var(--shadow-sm); }
.strip-item svg { width: 17px; height: 17px; stroke: var(--accent-2); fill: none; stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }

/* ---------- Section shells ---------- */
section { position: relative; }
.section-pad { padding: 88px 0; }
.section-head { max-width: 640px; margin: 0 auto 52px; text-align: center; }
.section-head .kick { font-size: 13px; font-weight: 700; letter-spacing: 0.09em; text-transform: uppercase; color: var(--accent-2); margin-bottom: 14px; }
.section-head h2 { font-size: clamp(30px, 4vw, 44px); letter-spacing: -0.025em; }
.section-head p { font-size: 19px; color: var(--ink-soft); margin-top: 16px; line-height: 1.5; }

/* ---------- Problem ---------- */
.problem { background: var(--bg-warm); border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); }
.problem-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 820px) { .problem-grid { grid-template-columns: 1fr; } }
.stat { text-align: center; padding: 12px; }
.stat .num { font-family: var(--font-serif); font-size: 52px; font-weight: 700; color: var(--accent); letter-spacing: -0.03em; line-height: 1; }
.stat .lbl { font-size: 16px; color: var(--ink-soft); margin-top: 12px; line-height: 1.45; }

/* ---------- Bento features ---------- */
.bento { display: grid; grid-template-columns: repeat(6, 1fr); gap: 20px; grid-auto-rows: minmax(0, auto); }
@media (max-width: 900px) { .bento { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .bento { grid-template-columns: 1fr; } }
.card {
  background: var(--surface); border: 1px solid var(--rule);
  border-radius: var(--radius-lg); padding: 26px; box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  display: flex; flex-direction: column;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--accent-bg-strong); }
.card .ico { width: 46px; height: 46px; border-radius: 12px; background: var(--accent-bg); color: var(--accent); display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.card .ico svg { width: 24px; height: 24px; stroke: currentColor; fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.card h3 { font-size: 21px; letter-spacing: -0.02em; }
.card p { font-size: 15px; color: var(--ink-soft); margin-top: 10px; line-height: 1.55; }
.col-3 { grid-column: span 3; } .col-2 { grid-column: span 2; }
@media (max-width: 900px) { .col-3, .col-2 { grid-column: span 1; } }
@media (max-width: 560px) { .col-3, .col-2 { grid-column: span 1; } }

.card.feature-hero {
  grid-column: span 3; grid-row: span 2;
  background: linear-gradient(155deg, var(--accent-deep), var(--accent) 70%);
  color: #EDEAE0; border: none; box-shadow: var(--shadow-green);
  justify-content: space-between;
}
@media (max-width: 900px) { .card.feature-hero { grid-column: span 2; grid-row: span 1; } }
@media (max-width: 560px) { .card.feature-hero { grid-column: span 1; } }
.card.feature-hero .ico { background: rgba(247,244,237,0.14); color: #F7F4ED; }
.card.feature-hero h3 { color: #FBFAF6; font-size: 25px; }
.card.feature-hero p { color: rgba(247,244,237,0.82); font-size: 16px; }
.mini-chat { margin-top: 20px; background: rgba(247,244,237,0.07); border: 1px solid rgba(247,244,237,0.14); border-radius: 12px; padding: 14px; }
.mini-chat .q { font-size: 13.5px; color: #F7F4ED; font-weight: 500; }
.mini-chat .a { font-size: 13px; color: rgba(247,244,237,0.78); margin-top: 9px; line-height: 1.5; }
.mini-chat .a b { color: #F7F4ED; font-weight: 600; }
.mini-cite { display: inline-block; margin-top: 8px; font-size: 11px; background: rgba(247,244,237,0.14); color: #F7F4ED; padding: 2px 7px; border-radius: 5px; }

/* ---------- How it works ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; counter-reset: step; }
@media (max-width: 820px) { .steps { grid-template-columns: 1fr; } }
.step { position: relative; padding-top: 8px; }
.step .n {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--accent); color: #F7F4ED;
  font-family: var(--font-serif); font-weight: 700; font-size: 20px;
  display: flex; align-items: center; justify-content: center; margin-bottom: 18px;
  box-shadow: var(--shadow-sm);
}
.step h3 { font-size: 21px; }
.step p { font-size: 15px; color: var(--ink-soft); margin-top: 9px; line-height: 1.55; }

/* ---------- Trust / AI ---------- */
.trust { background: var(--accent-deep); color: #EDEAE0; overflow: hidden; position: relative; }
.trust::before { content: ""; position: absolute; inset: 0; background: radial-gradient(700px 400px at 85% 15%, rgba(192,138,46,0.16), transparent 60%); z-index: 0; }
.trust .wrap { position: relative; z-index: 1; }
.trust-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
@media (max-width: 900px) { .trust-grid { grid-template-columns: 1fr; gap: 36px; } }
.trust .kick { color: var(--gold); font-size: 13px; font-weight: 700; letter-spacing: 0.09em; text-transform: uppercase; margin-bottom: 16px; }
.trust h2 { color: #FBFAF6; font-size: clamp(28px, 3.6vw, 40px); letter-spacing: -0.025em; }
.trust h2 .g { color: var(--gold); font-style: italic; font-weight: 500; }
.trust-lead { color: rgba(247,244,237,0.78); font-size: 18px; margin-top: 18px; line-height: 1.55; }
.trust-list { margin-top: 26px; display: flex; flex-direction: column; gap: 16px; }
.trust-list .row { display: flex; gap: 13px; align-items: flex-start; }
.trust-list .check { flex-shrink: 0; width: 26px; height: 26px; border-radius: 8px; background: rgba(192,138,46,0.22); color: var(--gold); display: flex; align-items: center; justify-content: center; }
.trust-list .check svg { width: 15px; height: 15px; stroke: currentColor; fill: none; stroke-width: 2.6; stroke-linecap: round; stroke-linejoin: round; }
.trust-list .row div b { color: #FBFAF6; font-weight: 600; }
.trust-list .row div p { color: rgba(247,244,237,0.72); font-size: 14.5px; margin-top: 2px; }

.quote-card { background: rgba(247,244,237,0.06); border: 1px solid rgba(247,244,237,0.13); border-radius: var(--radius-lg); padding: 32px; backdrop-filter: blur(4px); }
.quote-card .mark { font-family: var(--font-serif); font-size: 64px; line-height: 0.6; color: var(--gold); height: 34px; }
.quote-card blockquote { font-family: var(--font-serif); font-size: 22px; line-height: 1.4; color: #FBFAF6; margin: 0; font-style: italic; letter-spacing: -0.01em; }
.quote-card .who { display: flex; align-items: center; gap: 12px; margin-top: 22px; }
.quote-card .av { width: 42px; height: 42px; border-radius: 50%; background: var(--accent-2); display: flex; align-items: center; justify-content: center; font-family: var(--font-serif); font-weight: 700; color: #F7F4ED; }
.quote-card .who .nm { font-weight: 600; color: #FBFAF6; font-size: 15px; }
.quote-card .who .rl { font-size: 13px; color: rgba(247,244,237,0.6); }

/* ---------- Audience ---------- */
.aud-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
@media (max-width: 760px) { .aud-grid { grid-template-columns: 1fr; } }
.aud {
  border: 1px solid var(--rule); border-radius: var(--radius-lg); padding: 30px;
  background: var(--surface); box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.aud:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--accent-bg-strong); }
.aud .ico { width: 48px; height: 48px; border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.aud.a1 .ico { background: var(--accent-bg); color: var(--accent); }
.aud.a2 .ico { background: rgba(192,138,46,0.14); color: #90671f; }
.aud .ico svg { width: 25px; height: 25px; stroke: currentColor; fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.aud h3 { font-size: 22px; }
.aud p { font-size: 15px; color: var(--ink-soft); margin-top: 10px; line-height: 1.55; }
.aud ul { margin: 18px 0 0; padding: 0; list-style: none; display: flex; flex-direction: column; gap: 10px; }
.aud li { display: flex; gap: 10px; align-items: flex-start; font-size: 14.5px; color: var(--ink-soft); }
.aud li svg { flex-shrink: 0; width: 18px; height: 18px; stroke: var(--accent-2); fill: none; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; margin-top: 1px; }
.aud .aud-link { margin-top: 22px; display: inline-flex; align-items: center; gap: 7px; font-weight: 600; font-size: 15px; color: var(--accent); }
.aud .aud-link svg { width: 17px; height: 17px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; transition: transform 0.16s ease; }
.aud:hover .aud-link svg { transform: translateX(4px); }

/* ---------- Final CTA ---------- */
.final { padding: 96px 0; }
.final-box {
  position: relative; overflow: hidden;
  background: linear-gradient(150deg, var(--accent-deep), var(--accent) 78%);
  border-radius: var(--radius-xl); padding: 68px 48px; text-align: center;
  box-shadow: var(--shadow-green);
}
.final-box::before { content: ""; position: absolute; inset: 0; background: radial-gradient(600px 300px at 20% 0%, rgba(192,138,46,0.18), transparent 60%); }
.final-box > * { position: relative; z-index: 1; }
.final-box h2 { color: #FBFAF6; font-size: clamp(30px, 4vw, 46px); letter-spacing: -0.03em; }
.final-box h2 .g { color: var(--gold); font-style: italic; font-weight: 500; }
.final-box p { color: rgba(247,244,237,0.82); font-size: 19px; margin: 18px auto 0; max-width: 32em; line-height: 1.5; }
.final-cta { display: flex; align-items: center; justify-content: center; gap: 14px; margin-top: 34px; flex-wrap: wrap; }
.btn-gold { background: var(--gold); color: #221a08; box-shadow: 0 14px 40px rgba(192,138,46,0.34); }
.btn-gold:hover { transform: translateY(-2px); background: #cf9836; }
.btn-outline-light { background: transparent; color: #F7F4ED; border: 1px solid rgba(247,244,237,0.34); }
.btn-outline-light:hover { border-color: #F7F4ED; background: rgba(247,244,237,0.08); }
.final-note { color: rgba(247,244,237,0.62); font-size: 14px; margin-top: 20px; }

/* ---------- Footer ---------- */
.footer { border-top: 1px solid var(--rule); padding: 44px 0 40px; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.footer .brand-name { font-size: 18px; display: inline; }
.footer .brand-mark { width: 30px; height: 30px; font-size: 17px; border-radius: 8px; }
.footer-links { display: flex; gap: 26px; flex-wrap: wrap; }
.footer-links a { font-size: 14px; color: var(--ink-soft); }
.footer-links a:hover { color: var(--ink); }
.footer-copy { font-size: 13px; color: var(--ink-faint); margin-top: 20px; }

/* ---------- Login / gemeente-kiezer ---------- */
.login-page { min-height: 100vh; display: flex; flex-direction: column; }
.login-main { flex: 1; display: flex; align-items: center; justify-content: center; padding: 56px 24px 80px; }
.login-card { width: 100%; max-width: 460px; background: var(--surface); border: 1px solid var(--rule); border-radius: var(--radius-xl); box-shadow: var(--shadow-lg); padding: 40px; }
.login-card h1 { font-size: 29px; letter-spacing: -0.02em; }
.login-card .sub { color: var(--ink-soft); font-size: 16px; margin-top: 10px; line-height: 1.5; }
.login-search { margin-top: 24px; position: relative; }
.login-search input { width: 100%; padding: 13px 15px 13px 44px; border: 1px solid var(--rule); border-radius: var(--radius); font-family: var(--font-sans); font-size: 15px; background: var(--bg); color: var(--ink); }
.login-search input:focus { outline: 2px solid var(--accent); outline-offset: 1px; border-color: var(--accent); }
.login-search .s-icon { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); width: 18px; height: 18px; stroke: var(--ink-faint); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.gemeente-list { margin-top: 16px; display: flex; flex-direction: column; gap: 8px; }
.gemeente { display: flex; align-items: center; gap: 12px; padding: 13px 15px; border: 1px solid var(--rule); border-radius: var(--radius-lg); transition: border-color 0.15s, background 0.15s, transform 0.15s; }
.gemeente:hover { border-color: var(--accent); background: var(--accent-bg); transform: translateY(-1px); }
.gemeente .g-mark { width: 36px; height: 36px; border-radius: 9px; background: var(--accent-bg); color: var(--accent); display: flex; align-items: center; justify-content: center; font-family: var(--font-serif); font-weight: 700; font-size: 17px; }
.gemeente .g-name { flex: 1; font-weight: 600; font-size: 15px; }
.gemeente .g-arrow { width: 18px; height: 18px; stroke: var(--ink-faint); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.gemeente:hover .g-arrow { stroke: var(--accent); }
.login-empty { display: none; color: var(--ink-soft); font-size: 14px; padding: 16px 4px; text-align: center; }
.login-foot { margin-top: 22px; padding-top: 20px; border-top: 1px solid var(--rule-soft); font-size: 14px; color: var(--ink-soft); line-height: 1.5; }
.login-foot a { color: var(--accent); font-weight: 600; }
.login-topbar { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.login-back { font-size: 14px; color: var(--ink-soft); font-weight: 500; display: inline-flex; align-items: center; gap: 6px; }
.login-back:hover { color: var(--ink); }
.login-back svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .float-badge, .eyebrow .dot { animation: none; }
  html { scroll-behavior: auto; }
}
