/* ==========================================================================
   Vigil, AI Governance · concept-marketingsite (Proud Nerds spin-off)
   Eigen, moderne stijl met een knipoog naar de PN-huisstijl:
   dezelfde fonts (Red Hat Display + Nunito Sans) en goud-accent op diep ink,
   maar een frisse, lichte landingsopbouw. Betrouwbaar & robuust, niet druk.
   ========================================================================== */

:root {
  --ink:        #14110b;
  --ink-2:      #221e17;
  --ink-soft:   #2c2820;
  --gold:       #c9a24b;
  --gold-2:     #e3c578;
  --gold-hi:    #f3e0a0;
  --gold-tint:  #f3ead4;
  --paper:      #ffffff;
  --mist:       #f7f5ef;
  --mist-2:     #efece3;
  --line:       #e7e2d4;
  --text:       #26231d;
  --muted:      #6d675b;
  --ok:         #2f7d5b;
  --r:          14px;
  --r-sm:       10px;
  --r-pill:     999px;
  --shadow:     0 10px 30px rgba(20,17,11,0.08);
  --shadow-lg:  0 20px 50px rgba(20,17,11,0.14);
  --maxw:       1120px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Nunito Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--paper);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
h1,h2,h3,h4 { font-family: 'Red Hat Display', sans-serif; color: var(--ink); line-height: 1.12; letter-spacing: -0.02em; }
h1 { font-size: clamp(38px, 6vw, 62px); font-weight: 800; }
h2 { font-size: clamp(28px, 3.5vw, 40px); font-weight: 800; }
h3 { font-size: 21px; font-weight: 700; }
p { color: var(--text); }
a { color: inherit; text-decoration: none; }
.muted { color: var(--muted); }
.gold { color: var(--gold); }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
section { padding: 88px 0; }
.lead { font-size: clamp(18px, 2.2vw, 22px); color: var(--muted); line-height: 1.55; }
.eyebrow {
  font-family: 'Red Hat Display', sans-serif; font-size: 13px; font-weight: 800;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold);
  display: inline-flex; align-items: center; gap: 8px; margin-bottom: 14px;
}
.center { text-align: center; }
.center .lead { max-width: 720px; margin-left: auto; margin-right: auto; }

/* Navbar */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,0.82); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav .wrap { display: flex; align-items: center; justify-content: space-between; height: 78px; }
.brand { display: flex; align-items: center; gap: 11px; font-family: 'Red Hat Display'; font-weight: 800; font-size: 21px; color: var(--ink); letter-spacing: -0.01em; }
.brand .mark {
  width: 30px; height: 30px; border-radius: 8px; flex-shrink: 0;
  background: radial-gradient(circle at 30% 30%, var(--gold-2), var(--gold));
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--ink); font-size: 17px; font-weight: 800; box-shadow: inset 0 0 0 1px rgba(0,0,0,0.08);
}
.brand .logo { height: 46px; width: auto; display: block; filter: drop-shadow(0 2px 4px rgba(20,17,11,0.18)); }
.brand .brand-txt { display: flex; flex-direction: column; justify-content: center; line-height: 1.02; margin-top: -3px; }
.brand .bn { font-family: 'Red Hat Display'; font-weight: 800; font-size: 21px; color: var(--ink); letter-spacing: -0.01em; }
.brand .by { font-family: 'Nunito Sans'; font-size: 13px; font-weight: 700; color: var(--gold); letter-spacing: 0.01em; margin-top: 5px; }
.footer .brand .logo { height: 40px; }
.nav-links { display: flex; align-items: center; flex: 1; justify-content: space-between; gap: 18px; margin-left: 64px; }
.nav-links a.btn-primary { margin-left: 10px; }
.nav-links a { font-size: 14.5px; font-weight: 700; color: var(--ink-2); }
.nav-links a:hover { color: var(--gold); }
.nav-links .pn-link { font-size: 13px; color: var(--muted); font-weight: 700; }
/* CTA-knop in de nav: forceer witte tekst (anders wint .nav-links a op specificiteit → donker op zwart) */
.nav-links a.btn-primary, .nav-links a.btn-primary:hover { color: #fff; }
.nav-links a.btn-gold, .nav-links a.btn-gold:hover { color: var(--ink); }

/* Buttons */
.btn { display: inline-flex; align-items: center; gap: 8px; font-family: 'Red Hat Display'; font-weight: 700; font-size: 15px; padding: 12px 22px; border-radius: var(--r-pill); cursor: pointer; transition: all .16s ease; border: 1px solid transparent; white-space: nowrap; }
.btn-primary { background: var(--ink); color: #fff; }
.btn-primary:hover { background: var(--ink-soft); transform: translateY(-1px); box-shadow: var(--shadow); }
.btn-gold { background: linear-gradient(180deg, var(--gold-hi), var(--gold)); color: var(--ink); }
.btn-gold:hover { transform: translateY(-1px); box-shadow: var(--shadow); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }
.btn-light { background: rgba(255,255,255,0.1); color: #fff; border-color: rgba(255,255,255,0.25); }
.btn-light:hover { background: rgba(255,255,255,0.18); }

/* Hero */
.hero { background: radial-gradient(1200px 500px at 75% -10%, #34301f 0%, var(--ink) 55%); color: #f3efe6; padding: 110px 0 96px; position: relative; overflow: hidden; }
.hero h1 { color: #fff; font-size: clamp(30px, 3.6vw, 44px); line-height: 1.12; }
.hero .lead { color: #cfc8b8; margin-top: 20px; }
.hero-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 48px; align-items: center; }
.hero-shot { position: relative; z-index: 0; max-width: 500px; margin-left: auto; }
.hero-shot::before {
  content: ""; position: absolute; inset: -32% -28%; z-index: -1; border-radius: 50px;
  background:
    radial-gradient(42% 50% at 24% 28%, rgba(227,197,120,0.9), transparent 70%),
    radial-gradient(48% 58% at 76% 68%, rgba(201,162,75,0.85), transparent 72%),
    radial-gradient(40% 46% at 60% 16%, rgba(243,224,160,0.72), transparent 68%);
  filter: blur(46px);
  animation: heroGlowMove 14s ease-in-out infinite alternate;
  will-change: transform, opacity;
}
.hero-shot .shot { position: relative; border: 1px solid rgba(201,162,75,0.4); border-radius: 12px; box-shadow: 0 22px 55px rgba(0,0,0,0.5), 0 0 40px -6px rgba(201,162,75,0.45); }
@keyframes heroGlowMove {
  0%   { transform: translate(-12%, 7%)  scale(1.0);  opacity:.7;  }
  50%  { transform: translate(12%, -9%)  scale(1.3);  opacity:1;   }
  100% { transform: translate(-6%, 12%)  scale(1.12); opacity:.82; }
}
@media (prefers-reduced-motion: reduce) { .hero-shot::before { animation: none; } }
.hero .eyebrow { color: var(--gold-2); }
.hero-cta { display: flex; gap: 14px; margin-top: 30px; flex-wrap: wrap; }
.hero-note { margin-top: 18px; font-size: 14px; color: #b6ae9c; display:flex; gap:18px; flex-wrap:wrap; }
.hero-note span { display:inline-flex; align-items:center; gap:7px; }
.hero-note .dot { width:7px; height:7px; border-radius:50%; background: var(--gold); }

/* Glass panel (hero visual: a faux dashboard) */
.panel { background: linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.03)); border: 1px solid rgba(255,255,255,0.14); border-radius: 18px; padding: 18px; box-shadow: var(--shadow-lg); }
.panel-top { display:flex; align-items:center; justify-content:space-between; padding: 4px 6px 14px; border-bottom: 1px solid rgba(255,255,255,0.1); margin-bottom: 14px; }
.panel-top .t { font-family:'Red Hat Display'; font-weight:800; color:#fff; font-size:14px; }
.panel-top .pill { font-size:11px; font-weight:800; color: var(--ink); background: var(--gold-2); padding:3px 10px; border-radius: var(--r-pill); }
.prow { display:flex; align-items:center; justify-content:space-between; padding:11px 8px; border-radius:10px; }
.prow + .prow { margin-top:4px; }
.prow:nth-child(even){ background: rgba(255,255,255,0.04); }
.prow .l { display:flex; align-items:center; gap:10px; color:#e9e3d6; font-weight:700; font-size:14px; }
.prow .ic { width:26px;height:26px;border-radius:7px;background:rgba(201,162,75,0.18);display:inline-flex;align-items:center;justify-content:center;color:var(--gold-2);font-size:13px;font-weight:800; }
.tag { font-size:11px; font-weight:800; padding:3px 9px; border-radius:var(--r-pill); }
.tag.ok { background: rgba(47,125,91,0.2); color:#8ad6ad; }
.tag.warn { background: rgba(201,162,75,0.2); color: var(--gold-2); }
.tag.cls { background: rgba(255,255,255,0.12); color:#dcd5c6; }

/* Trust strip */
.strip { background: var(--mist); border-top:1px solid var(--line); border-bottom:1px solid var(--line); padding: 30px 0; }
.strip .row { display:flex; align-items:center; justify-content:center; gap: 14px 40px; flex-wrap:wrap; }
.strip .label { width:100%; text-align:center; font-size:12px; font-weight:800; letter-spacing:0.14em; text-transform:uppercase; color:var(--muted); margin-bottom:6px; font-family:'Red Hat Display'; }
.frbadge { font-family:'Red Hat Display'; font-weight:800; color:var(--ink-2); font-size:15px; display:inline-flex; align-items:center; gap:9px; }
.frbadge .b { width:9px; height:9px; border-radius:3px; background: var(--gold); }

/* Feature grid */
.grid { display:grid; gap: 22px; }
.g3 { grid-template-columns: repeat(3,1fr); }
.g2 { grid-template-columns: repeat(2,1fr); }
.card { background: var(--paper); border:1px solid var(--line); border-radius: var(--r); padding: 26px; transition: all .18s ease; }
.card:hover { box-shadow: var(--shadow); transform: translateY(-3px); border-color: #ded7c4; }
.card .ico { width:44px; height:44px; border-radius:11px; background: var(--gold-tint); color: var(--ink); display:inline-flex; align-items:center; justify-content:center; font-size:20px; margin-bottom:16px; }
.card h3 { margin-bottom:8px; }
.card p { color: var(--muted); font-size:15.5px; }

/* Section on mist */
.alt { background: var(--mist); }
.alt-ink { background: var(--ink); color:#ece6d9; }
.alt-ink h2 { color:#fff; }
.alt-ink .lead { color:#c4bcab; }

/* Steps */
.steps { counter-reset: s; display:grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.step { background:var(--paper); border:1px solid var(--line); border-radius:var(--r); padding:26px; position:relative; }
.step .n { font-family:'Red Hat Display'; font-weight:800; font-size:13px; color:var(--gold); letter-spacing:0.12em; }
.step h3 { margin:8px 0; }
.step p { color:var(--muted); font-size:15px; }

/* Differentiator list */
.diff { display:grid; grid-template-columns: repeat(2,1fr); gap: 16px; }
.diff .item { display:flex; gap:14px; padding:18px 20px; background:var(--paper); border:1px solid var(--line); border-radius:var(--r); }
.diff .chk { flex-shrink:0; width:26px; height:26px; border-radius:50%; background:var(--ok); color:#fff; display:inline-flex; align-items:center; justify-content:center; font-weight:800; font-size:14px; }
.diff h4 { font-size:16px; margin-bottom:3px; }
.diff p { font-size:14.5px; color:var(--muted); }

/* Engagement / pricing cards */
.plans { display:grid; grid-template-columns: repeat(3,1fr); gap: 22px; align-items:stretch; }
.plan { background:var(--paper); border:1px solid var(--line); border-radius:var(--r); padding:30px 26px; display:flex; flex-direction:column; }
.plan.feature { border:2px solid var(--gold); box-shadow: var(--shadow); position:relative; }
.plan.feature::before { content:"Meest gekozen"; position:absolute; top:-12px; left:26px; background:var(--gold); color:var(--ink); font-family:'Red Hat Display'; font-weight:800; font-size:11px; letter-spacing:0.08em; text-transform:uppercase; padding:4px 12px; border-radius:var(--r-pill); }
.plan .pname { font-family:'Red Hat Display'; font-weight:800; font-size:20px; color:var(--ink); }
.plan .pdesc { color:var(--muted); font-size:14.5px; margin:6px 0 18px; min-height:42px; }
.plan ul { list-style:none; margin: 6px 0 22px; }
.plan li { padding:8px 0 8px 26px; position:relative; font-size:15px; border-top:1px solid var(--line); }
.plan li:first-child { border-top:none; }
.plan li::before { content:"✓"; position:absolute; left:0; color:var(--gold); font-weight:800; }
.plan .btn { margin-top:auto; justify-content:center; }

/* Quote */
.quote { background: var(--ink); color:#fff; border-radius: 20px; padding: 48px; text-align:center; }
.quote p { font-family:'Red Hat Display'; font-weight:700; font-size: clamp(20px,2.6vw,28px); color:#fff; line-height:1.3; max-width:840px; margin:0 auto 18px; letter-spacing:-0.01em; }
.quote .src { color: var(--gold-2); font-weight:700; font-size:14px; }
/* Override: in .prose wint .prose p anders qua specificiteit, tekst moet wit blijven op donkere quote */
.prose .quote p { color:#fff; }

/* CTA band */
.cta-band { background: linear-gradient(120deg, var(--ink), var(--ink-soft)); color:#fff; border-radius: 22px; padding: 56px; text-align:center; box-shadow: var(--shadow-lg); }
.cta-band h2 { color:#fff; }
.cta-band .lead { color:#cfc8b8; margin: 12px auto 26px; max-width: 600px; }
.cta-band .hero-cta { justify-content:center; }

/* Footer */
.footer { background: var(--ink); color:#b6ae9c; padding: 56px 0 34px; }
.footer .cols { display:grid; grid-template-columns: 1.8fr 1fr 1fr 1.1fr; gap: 32px; padding-bottom: 30px; border-bottom:1px solid rgba(255,255,255,0.1); }
.footer h5 { color:#fff; font-family:'Red Hat Display'; font-size:13px; letter-spacing:0.1em; text-transform:uppercase; margin-bottom:12px; }
.footer a { display:block; color:#b6ae9c; font-size:14.5px; padding:5px 0; }
.footer a:hover { color: var(--gold-2); }
.footer .brand { color:#fff; margin-bottom:10px; }
.footer .small { font-size:13px; color:#8c8473; margin-top:8px; }
.footer .bottom { padding-top:22px; font-size:13px; color:#8c8473; display:flex; justify-content:space-between; flex-wrap:wrap; gap:10px; }
.footer .concept-note { background: rgba(201,162,75,0.12); border:1px solid rgba(201,162,75,0.3); color:#e9e3d6; border-radius:10px; padding:10px 14px; font-size:13px; margin-top:14px; }

/* Section heading helper */
.sec-head { max-width: 760px; margin-bottom: 44px; }
.sec-head.center { margin-left:auto; margin-right:auto; }

/* Prose (artikelen, trust, cases) */
.prose { max-width: 760px; }
.prose p { margin-bottom: 16px; color: var(--text); }
.prose h2 { margin: 30px 0 12px; }
.prose h3 { margin: 22px 0 10px; }
.prose ul, .prose ol { padding-left: 22px; margin: 0 0 16px; }
.prose li { margin-bottom: 8px; }
.prose .lead { margin-bottom: 22px; }
.prose a { color: var(--ink); border-bottom: 1px solid var(--gold); }
.prose a:hover { color: var(--gold); }
.note-chip { display:inline-block; font-family:'Red Hat Display'; font-size:11px; font-weight:800; letter-spacing:0.08em; text-transform:uppercase; color:var(--ink); background:var(--gold-tint); border:1px solid var(--gold); padding:4px 10px; border-radius:var(--r-pill); }
.back-link { font-family:'Red Hat Display'; font-weight:700; font-size:14px; color:var(--muted); }
.back-link:hover { color: var(--gold); }
.meta-row { font-size:13px; color:var(--muted); font-weight:700; margin-bottom:6px; }

/* ===== Artikel-opmaak ===== */
.art-hero { padding: 70px 0 56px; }
.art-hero .back-link { color: var(--gold-2); }
.art-hero .back-link:hover { color: #fff; }
.art-cat { display:inline-block; margin:16px 0 0; font-family:'Red Hat Display'; font-weight:800; font-size:11px; letter-spacing:.12em; text-transform:uppercase; color:var(--ink); background:var(--gold-2); padding:5px 12px; border-radius:var(--r-pill); }
.art-hero h1 { color:#fff; font-size:clamp(28px,4vw,44px); line-height:1.14; max-width:840px; margin:14px 0 0; }
.art-hero .lead { color:#cfc8b8; max-width:740px; margin-top:16px; }
.art-meta { color:#8c8473; font-size:13.5px; font-weight:700; margin-top:20px; }
.prose h2 { font-size:24px; }
.prose .lead { font-size:19px; color:var(--ink); }

/* Statistieken */
.stat-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:14px; margin:10px 0 24px; }
.stat { background:var(--mist); border:1px solid var(--line); border-radius:14px; padding:18px; }
.stat .n { display:block; font-family:'Red Hat Display'; font-weight:800; font-size:32px; color:var(--ink); line-height:1; }
.stat .l { display:block; font-size:13px; color:var(--muted); margin-top:8px; line-height:1.4; }

/* Kader (callout) */
.kader { background:var(--mist); border:1px solid var(--line); border-left:4px solid var(--gold); border-radius:14px; padding:22px 24px; margin:28px 0; }
.kader.gold { background:var(--gold-tint); }
.kader.warn { border-left-color:#b3402f; }
.kader h4 { font-family:'Red Hat Display'; font-weight:800; font-size:17px; margin-bottom:10px; color:var(--ink); }
.kader p { margin:0 0 8px; } .kader p:last-child { margin-bottom:0; }
.kader ul { margin:0; } .kader li { margin-bottom:6px; }

/* Pull-quote */
.pullquote { margin:32px 0; padding:4px 0 4px 24px; border-left:4px solid var(--gold); font-family:'Red Hat Display'; font-weight:700; font-size:clamp(20px,2.6vw,26px); line-height:1.3; color:var(--ink); }

/* Figuur */
.fig { margin:30px 0; }
.fig figcaption { font-size:13px; color:var(--muted); margin-top:10px; text-align:center; }

/* Bronnen */
.sources { background:var(--mist); border:1px solid var(--line); border-radius:14px; padding:22px 24px; }
.sources h4 { font-family:'Red Hat Display'; font-weight:800; font-size:12px; letter-spacing:.06em; text-transform:uppercase; color:var(--muted); margin-bottom:10px; }
.sources ul { padding-left:18px; margin:0; } .sources li { font-size:14px; color:var(--text); margin-bottom:6px; }
.sources a { color:var(--ink); border-bottom:1px solid var(--gold); }

/* Pijplijn-diagram (case-artikel) */
.pipeflow { display:flex; align-items:stretch; gap:8px; margin:30px 0; }
.pipeflow .node { flex:1; background:var(--mist); border:1px solid var(--line); border-radius:14px; padding:16px 18px; }
.pipeflow .node.local { background:var(--gold-tint); border-color:var(--gold); }
.pipeflow .node .s { font-family:'Red Hat Display'; font-size:10.5px; font-weight:800; letter-spacing:.07em; text-transform:uppercase; color:var(--gold); }
.pipeflow .node h5 { font-family:'Red Hat Display'; font-size:16px; margin:5px 0 5px; color:var(--ink); }
.pipeflow .node p { font-size:13px; color:var(--muted); margin:0; line-height:1.45; }
.pipeflow .arrow { display:flex; align-items:center; color:var(--gold); font-size:20px; font-weight:800; flex-shrink:0; }
@media (max-width:760px){ .stat-grid { grid-template-columns:repeat(2,1fr); } .pipeflow { flex-direction:column; } .pipeflow .arrow { transform:rotate(90deg); justify-content:center; } }

/* Product-mockups (donker glass), extra op .panel/.prow/.tag */
.mock-cap { font-size:13px; color:var(--muted); margin-top:12px; text-align:center; }
.bar-row { display:flex; align-items:center; gap:10px; padding:7px 8px; }
.bar-row .bl { width:120px; color:#e9e3d6; font-size:13px; font-weight:700; flex-shrink:0; }
.bar-row .bt { flex:1; height:8px; border-radius:6px; background:rgba(255,255,255,0.12); overflow:hidden; }
.bar-row .bf { display:block; height:100%; background:linear-gradient(90deg,var(--gold),var(--gold-2)); }
.bar-row .bv { width:60px; text-align:right; color:#dcd5c6; font-size:12.5px; font-weight:700; }
.tgl { font-family:'Red Hat Display'; font-size:11px; font-weight:800; letter-spacing:0.04em; padding:3px 10px; border-radius:var(--r-pill); white-space:nowrap; }
.tgl.on { background:rgba(47,125,91,0.22); color:#8ad6ad; }
.tgl.off { background:rgba(255,255,255,0.12); color:#cfc8b8; }

/* Tabbed productviewer */
.viewer { max-width:720px; margin:0 auto; }
.viewer-tabs { display:flex; gap:8px; justify-content:center; flex-wrap:wrap; margin-bottom:20px; }
.viewer-tabs button { font-family:'Red Hat Display'; font-weight:700; font-size:13px; padding:9px 16px; border-radius:var(--r-pill); border:1px solid var(--line); background:var(--paper); color:var(--ink-2); cursor:pointer; transition:all .15s; }
.viewer-tabs button:hover { border-color:var(--gold); color:var(--ink); }
.viewer-tabs button.active { background:var(--ink); color:#fff; border-color:var(--ink); }
.screen { display:none; }
.screen.active { display:block; animation:scrfade .45s cubic-bezier(.16,1,.3,1); }
.screen.leaving { display:block; opacity:0; transform:translateY(-6px); transition:opacity .22s ease, transform .22s ease; }
@keyframes scrfade { from{opacity:0; transform:translateY(10px)} to{opacity:1; transform:translateY(0)} }

/* Feature-row (Platform-tour) */
.frow { display:grid; grid-template-columns:1fr 1fr; gap:44px; align-items:center; margin-bottom:56px; }
.frow:nth-child(even) .frow-text { order:2; }
.frow h3 { font-size:24px; margin-bottom:10px; }
.frow .frow-text p { color:var(--muted); }
.frow ul { padding-left:20px; margin-top:10px; }
.frow li { margin-bottom:6px; color:var(--muted); font-size:15px; }
@media (max-width:900px){ .frow{ grid-template-columns:1fr; gap:22px; } .frow:nth-child(even) .frow-text{ order:0; } }

/* Risicomatrix (kans x impact) */
.rmx { display:grid; grid-template-columns:30px repeat(5,1fr); gap:6px; max-width:580px; }
.rmx .yl, .rmx .xl { font-family:'Red Hat Display'; font-weight:800; font-size:12px; color:var(--muted); display:flex; align-items:center; justify-content:center; }
.rmx .c { min-height:48px; border-radius:10px; padding:5px; display:flex; align-items:flex-start; }
.rmx .c span { font-family:'Red Hat Display'; font-weight:800; font-size:10.5px; background:rgba(255,255,255,0.8); border:1px solid var(--line); border-radius:6px; padding:2px 6px; color:var(--ink); line-height:1.2; }
.rmx .lo { background:rgba(47,125,91,0.15); } .rmx .md { background:rgba(201,162,75,0.22); } .rmx .hi { background:rgba(179,64,47,0.16); }
.rmx-axis { display:flex; justify-content:space-between; max-width:580px; font-family:'Red Hat Display'; font-weight:800; font-size:12px; color:var(--muted); margin-top:8px; }

/* Echte platform-screenshots */
.shot { display:block; width:100%; height:auto; border-radius:14px; border:1px solid rgba(20,17,11,0.12); box-shadow:var(--shadow-lg); }

/* Actief menu-item + onderstreping-micro-animatie */
.nav-links a:not(.btn) { position: relative; transition: color .15s ease; }
.nav-links a:not(.btn)::after { content:""; position:absolute; left:0; right:0; bottom:-7px; height:2px; border-radius:2px; background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform .22s ease; }
.nav-links a:not(.btn):hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-links a.active { color: var(--ink); }

/* Footer: contact + juridische links */
.footer .foot-contact { display:block; color:#8c8473; font-size:14px; line-height:1.55; padding:5px 0; }
.footer .bottom .foot-legal { display:flex; gap:18px; }
.footer .bottom .foot-legal a { display:inline-block; padding:0; color:#8c8473; }
.footer .bottom .foot-legal a:hover { color: var(--gold-2); }

/* Reveal-on-scroll micro-animatie (alleen actief als JS de class toevoegt) */
.reveal { opacity:0; transform: translateY(22px); transition: opacity .6s ease, transform .6s cubic-bezier(.16,1,.3,1); }
.reveal.in { opacity:1; transform:none; }

/* Hero-entree bij laden (gestaggerd) */
@keyframes heroIn { from { opacity:0; transform: translateY(20px); } to { opacity:1; transform:none; } }
.hero .eyebrow, .hero h1, .hero .lead, .hero .hero-cta, .hero .hero-note, .hero-shot { opacity:0; animation: heroIn .7s cubic-bezier(.16,1,.3,1) forwards; }
.hero .eyebrow { animation-delay:.05s; }
.hero h1 { animation-delay:.13s; }
.hero .lead { animation-delay:.22s; }
.hero .hero-cta { animation-delay:.30s; }
.hero .hero-note { animation-delay:.38s; }
.hero-shot { animation-delay:.18s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity:1; transform:none; transition:none; }
  .hero .eyebrow, .hero h1, .hero .lead, .hero .hero-cta, .hero .hero-note, .hero-shot { opacity:1; animation:none; }
}

/* Chat-widget (concept) */
.chat-launch { position: fixed; right: 22px; bottom: 22px; z-index: 60; width: 56px; height: 56px; border-radius: 50%; border:none; cursor:pointer; background: linear-gradient(180deg, var(--gold-hi), var(--gold)); color: var(--ink); font-size: 22px; box-shadow: 0 10px 28px rgba(20,17,11,0.35); display:flex; align-items:center; justify-content:center; transition: transform .18s ease, box-shadow .18s ease; }
.chat-launch:hover { transform: translateY(-2px) scale(1.04); box-shadow: 0 14px 34px rgba(20,17,11,0.4); }
.chat-panel { position: fixed; right: 22px; bottom: 90px; z-index: 60; width: 340px; max-width: calc(100vw - 32px); background: var(--paper); border:1px solid var(--line); border-radius: 16px; box-shadow: var(--shadow-lg); overflow: hidden; transform-origin: bottom right; opacity:0; transform: translateY(12px) scale(.96); pointer-events:none; transition: opacity .2s ease, transform .2s cubic-bezier(.16,1,.3,1); }
.chat-panel.open { opacity:1; transform: none; pointer-events:auto; }
.chat-head { display:flex; align-items:center; gap:10px; padding:14px 16px; background: var(--ink); color:#fff; }
.chat-head img { height:24px; width:auto; }
.chat-head .ct { font-family:'Red Hat Display'; font-weight:800; font-size:14px; }
.chat-head .cs { font-size:11px; color: var(--gold-2); font-weight:700; }
.chat-head .x { margin-left:auto; background:none; border:none; color:#cfc8b8; font-size:18px; cursor:pointer; line-height:1; }
.chat-body { padding:14px 16px; max-height: 320px; overflow-y:auto; display:flex; flex-direction:column; gap:10px; background: var(--mist); }
.chat-msg { font-size:14px; line-height:1.5; padding:9px 12px; border-radius:12px; max-width:85%; }
.chat-msg.bot { background:#fff; border:1px solid var(--line); align-self:flex-start; border-bottom-left-radius:4px; }
.chat-msg.user { background: var(--ink); color:#fff; align-self:flex-end; border-bottom-right-radius:4px; }
.chat-input { display:flex; gap:8px; padding:12px; border-top:1px solid var(--line); background: var(--paper); }
.chat-input input { flex:1; border:1px solid var(--line); border-radius: var(--r-pill); padding:9px 14px; font-family:inherit; font-size:14px; }
.chat-input input:focus { outline:none; border-color: var(--gold); }
.chat-input button { border:none; border-radius: var(--r-pill); padding:9px 16px; background: var(--ink); color:#fff; font-family:'Red Hat Display'; font-weight:700; cursor:pointer; }
.chat-note { font-size:11px; color: var(--muted); text-align:center; padding:0 12px 10px; background: var(--paper); }

/* Contactpagina */
.contact-grid { display:grid; grid-template-columns: 0.9fr 1.1fr; gap: 44px; align-items: start; }
.contact-item { display:flex; gap:14px; padding:16px 0; border-bottom:1px solid var(--line); }
.contact-item:last-child { border-bottom:none; }
.contact-item .ci { width:42px; height:42px; border-radius:11px; background:var(--gold-tint); display:flex; align-items:center; justify-content:center; font-size:18px; flex-shrink:0; }
.contact-item h4 { font-family:'Red Hat Display'; font-size:11.5px; letter-spacing:.08em; text-transform:uppercase; color:var(--muted); margin-bottom:3px; }
.contact-item a, .contact-item p { font-size:15.5px; color:var(--ink); }
.contact-card { background:var(--paper); border:1px solid var(--line); border-radius:var(--r); padding:28px; box-shadow:var(--shadow); }
.contact-card .row2 { display:grid; grid-template-columns:1fr 1fr; gap:14px; }
.field { display:flex; flex-direction:column; gap:6px; margin-bottom:14px; }
.field label { font-size:13px; font-weight:700; color:var(--ink-2); }
.field input, .field textarea { font-family:inherit; font-size:15px; padding:11px 14px; border:1px solid var(--line); border-radius:10px; background:#fff; color:var(--text); }
.field input:focus, .field textarea:focus { outline:none; border-color:var(--gold); }
.field textarea { min-height:120px; resize:vertical; }
.form-done { background: rgba(47,125,91,0.1); border:1px solid rgba(47,125,91,0.3); border-radius:12px; padding:24px; color:var(--ink); font-size:15.5px; }
@media (max-width:900px){ .contact-grid { grid-template-columns:1fr; } .contact-card .row2 { grid-template-columns:1fr; } }

/* Mobiel menu (hamburger, knop wordt door site.js toegevoegd) */
.nav-burger { display:none; background:none; border:0; padding:12px; margin:-12px; cursor:pointer; }
.nav-burger span { display:block; width:22px; height:2px; background:var(--ink); border-radius:2px; transition: transform .25s ease, opacity .2s ease; }
.nav-burger span + span { margin-top:5px; }
.nav.open .nav-burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav.open .nav-burger span:nth-child(2) { opacity:0; }
.nav.open .nav-burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Responsive */
@media (max-width: 900px) {
  .hero-grid, .g3, .g2, .steps, .diff, .plans { grid-template-columns: 1fr; }
  .nav-links { display:none; }
  .nav-burger { display:block; }
  .nav.open .nav-links {
    display:flex; flex-direction:column; align-items:stretch; gap:0; margin-left:0;
    position:absolute; left:0; right:0; top:78px;
    background:#fffdf9;
    border-bottom:1px solid var(--line); padding:6px 24px 18px;
    box-shadow:0 18px 30px rgba(20,17,11,0.08);
  }
  .nav.open .nav-links a { padding:13px 0; font-size:16px; border-bottom:1px solid var(--line); }
  .nav.open .nav-links a:last-child { border-bottom:0; }
  .nav.open .nav-links a.btn-primary { margin:14px 0 0; text-align:center; padding:12px 16px; border-bottom:0; }
  .footer .cols { grid-template-columns: 1fr; }
  section { padding: 60px 0; }
  .cta-band, .quote { padding: 36px 22px; }
  .rmx, .rmx-axis { max-width:100%; }
}
