/*
Theme Name: biz.nl
Theme URI: https://biz.nl
Author: biz.nl
Description: Hardcoded classic PHP theme for biz.nl — AI-powered merkidentiteit voor Nederlandse ondernemers. Ported from the Next.js/shadcn source, light-only, no dark mode.
Version: 1.1.0
Requires at least: 6.5
Tested up to: 7.0
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: biz-nl
*/

/* ============================================================
   Design tokens — ported 1:1 from globals.css (light theme)
   ============================================================ */
:root {
  --background: #ffffff;
  --foreground: #0f1419;
  --card: #f7f8f8;
  --card-foreground: #0f1419;
  --primary: #1e9df1;
  --primary-foreground: #ffffff;
  --muted: #e5e5e6;
  --muted-foreground: #5b6570;
  --accent: #e3ecf6;
  --accent-foreground: #1e9df1;
  --border: #e1eaef;
  --radius: 1.3rem;
  --radius-sm: calc(var(--radius) - 8px);
  --radius-md: calc(var(--radius) - 4px);
  --radius-lg: var(--radius);
  --radius-pill: 9999px;
  --container: 1200px;
  --green: #16a34a;
  --amber: #f59e0b;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

/* ============================================================
   Reset / base
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  background: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4, h5, h6 { margin: 0; line-height: 1.15; letter-spacing: -0.02em; }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }
button { font-family: inherit; cursor: pointer; }

/* ============================================================
   Layout helpers
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 1rem;
}
@media (min-width: 640px)  { .container { padding-inline: 1.5rem; } }
@media (min-width: 1024px) { .container { padding-inline: 2rem; } }

.section { padding-block: 6rem; }
.section--tight { padding-block: 3rem; }
.section--muted { background: color-mix(in srgb, var(--muted) 30%, transparent); }
.section--muted-soft { background: color-mix(in srgb, var(--muted) 20%, transparent); }
.section--dark { background: var(--foreground); color: var(--background); }
@media (max-width: 640px) { .section { padding-block: 4rem; } }

.text-center { text-align: center; }
.measure { max-width: 42rem; margin-inline: auto; }
.measure-sm { max-width: 36rem; margin-inline: auto; }
.measure-lg { max-width: 56rem; margin-inline: auto; }

.eyebrow, .badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  padding: 0.35rem 0.9rem;
  font-size: 0.8rem; font-weight: 500;
  color: var(--muted-foreground);
  background: var(--background);
}
.badge--solid { background: var(--primary); color: var(--primary-foreground); border-color: var(--primary); }
.badge--dot::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--green); }

.section-head { margin-bottom: 4rem; }
.section-head h2 {
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 800; margin-block: 0.75rem 1rem;
}
.section-head p { font-size: 1.15rem; color: var(--muted-foreground); }

.text-primary { color: var(--primary); }
.text-muted { color: var(--muted-foreground); }
.underline-hover:hover { text-decoration: underline; }

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  border-radius: var(--radius-md);
  padding: 0.65rem 1.1rem;
  font-size: 0.9rem; font-weight: 600;
  border: 1px solid transparent;
  transition: background .18s, color .18s, border-color .18s, box-shadow .18s, transform .18s;
  white-space: nowrap;
}
.btn svg { width: 1rem; height: 1rem; }
.btn-primary { background: var(--primary); color: var(--primary-foreground); }
.btn-primary:hover { background: color-mix(in srgb, var(--primary) 88%, black); }
.btn-outline { background: transparent; border-color: var(--border); color: var(--foreground); }
.btn-outline:hover { border-color: color-mix(in srgb, var(--foreground) 40%, transparent); }
.btn-ghost { background: transparent; color: var(--muted-foreground); }
.btn-ghost:hover { background: var(--accent); color: var(--foreground); }
.btn-secondary { background: var(--background); color: var(--foreground); }
.btn-secondary:hover { background: color-mix(in srgb, var(--background) 90%, black); }
.btn-lg { padding: 0.85rem 1.5rem; font-size: 1rem; }
.btn-sm { padding: 0.5rem 0.85rem; font-size: 0.85rem; }
.btn-block { width: 100%; }
.btn-on-dark { background: color-mix(in srgb, #fff 12%, transparent); color: #fff; border: 1px solid color-mix(in srgb, #fff 30%, transparent); }
.btn-on-dark:hover { background: color-mix(in srgb, #fff 20%, transparent); }

/* ============================================================
   Cards / generic surfaces
   ============================================================ */
.card {
  border: 1px solid var(--border);
  background: var(--card);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
}
.card--plain { background: var(--background); }
.card--hover { transition: box-shadow .2s, border-color .2s, transform .2s; }
.card--hover:hover { box-shadow: 0 10px 30px -12px rgba(15,20,25,.15); }
.icon-tile {
  display: inline-flex; align-items: center; justify-content: center;
  width: 2.5rem; height: 2.5rem; border-radius: var(--radius-md);
  background: color-mix(in srgb, var(--primary) 10%, transparent);
  color: var(--primary);
}
.icon-tile svg { width: 1.25rem; height: 1.25rem; }
.icon-tile--lg { width: 3rem; height: 3rem; }

/* Grids */
.grid { display: grid; gap: 1.25rem; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 1024px) { .grid-4 { grid-template-columns: repeat(2, 1fr); } .grid-3 { grid-template-columns: 1fr; } }
@media (max-width: 640px)  { .grid-2, .grid-4 { grid-template-columns: 1fr; } }

.check { color: var(--primary); flex: none; width: 1rem; height: 1rem; margin-top: .15rem; }
.feature-list li { display: flex; gap: 0.5rem; align-items: flex-start; font-size: 0.9rem; margin-bottom: 0.6rem; }

/* ============================================================
   Header / navbar
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in srgb, var(--background) 85%, transparent);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, box-shadow .3s;
}
.site-header.scrolled { border-color: var(--border); box-shadow: 0 1px 0 rgba(15,20,25,.04); }
.nav {
  display: flex; align-items: center; justify-content: space-between;
  height: 4rem;
}
.brand { display: inline-flex; align-items: center; gap: 0.5rem; font-weight: 700; }
.brand__mark {
  display: inline-flex; align-items: center; justify-content: center;
  width: 2rem; height: 2rem; border-radius: var(--radius-sm);
  background: var(--foreground); color: var(--background);
  font-weight: 900; font-size: 0.85rem; letter-spacing: -.05em;
  transition: transform .2s;
}
.brand:hover .brand__mark { transform: scale(1.05); }
.brand__tld { font-size: 1.1rem; }

.nav__links { display: none; align-items: center; gap: 0.25rem; }
@media (min-width: 1024px) { .nav__links { display: flex; } }
.nav__item { position: relative; }
.nav__link {
  display: inline-flex; align-items: center; gap: 0.25rem;
  padding: 0.5rem 0.9rem; border-radius: var(--radius-sm);
  font-size: 0.9rem; font-weight: 500; color: var(--muted-foreground);
}
.nav__link:hover { color: var(--foreground); background: var(--accent); }
.nav__link.is-active { color: var(--foreground); }
.nav__link svg { width: 0.9rem; height: 0.9rem; transition: transform .2s; }
.nav__item:hover .nav__link svg { transform: rotate(180deg); }

.nav__dropdown {
  position: absolute; top: 100%; left: 50%; transform: translateX(-50%);
  padding-top: 0.5rem; width: 17rem;
  opacity: 0; visibility: hidden; transition: opacity .15s;
}
.nav__item:hover .nav__dropdown { opacity: 1; visibility: visible; }
.nav__dropdown-inner {
  border: 1px solid var(--border); background: var(--background);
  border-radius: var(--radius-md); box-shadow: 0 12px 40px -12px rgba(15,20,25,.2);
  padding: 0.5rem;
}
.nav__dropdown a { display: flex; flex-direction: column; padding: 0.6rem 0.75rem; border-radius: var(--radius-sm); }
.nav__dropdown a:hover { background: var(--accent); }
.nav__dropdown a span { font-size: 0.9rem; font-weight: 500; }
.nav__dropdown a small { font-size: 0.78rem; color: var(--muted-foreground); }

.nav__cta { display: none; align-items: center; gap: 0.5rem; }
@media (min-width: 1024px) { .nav__cta { display: flex; } }

.nav__toggle { display: inline-flex; background: transparent; border: none; padding: 0.5rem; color: var(--foreground); }
@media (min-width: 1024px) { .nav__toggle { display: none; } }
.nav__toggle svg { width: 1.4rem; height: 1.4rem; }

/* Mobile drawer */
.mobile-nav { display: none; }
.mobile-nav.open { display: block; }
.mobile-nav__backdrop { position: fixed; inset: 0; background: rgba(15,20,25,.4); z-index: 60; }
.mobile-nav__panel {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: 61;
  width: min(380px, 100%); background: var(--background);
  display: flex; flex-direction: column;
  box-shadow: -20px 0 60px -20px rgba(15,20,25,.3);
}
.mobile-nav__head { display: flex; align-items: center; justify-content: space-between; padding: 1.25rem; border-bottom: 1px solid var(--border); }
.mobile-nav__body { flex: 1; overflow-y: auto; padding: 1rem; }
.mobile-nav__body a, .mobile-nav__group > button {
  display: flex; align-items: center; justify-content: space-between; width: 100%;
  padding: 0.75rem 1rem; border-radius: var(--radius-sm);
  font-size: 0.9rem; font-weight: 500; color: var(--foreground);
  background: transparent; border: none; text-align: left;
}
.mobile-nav__body a:hover, .mobile-nav__group > button:hover { background: var(--accent); }
.mobile-nav__sub { padding-left: 1rem; display: none; }
.mobile-nav__group.open .mobile-nav__sub { display: block; }
.mobile-nav__group > button svg { width: 1rem; height: 1rem; transition: transform .2s; }
.mobile-nav__group.open > button svg { transform: rotate(180deg); }
.mobile-nav__sub a { flex-direction: column; align-items: flex-start; gap: 0.1rem; }
.mobile-nav__sub a small { font-size: 0.75rem; color: var(--muted-foreground); font-weight: 400; }
.mobile-nav__foot { border-top: 1px solid var(--border); padding: 1.25rem; display: grid; gap: 0.75rem; }

/* ============================================================
   Hero
   ============================================================ */
.hero { position: relative; overflow: hidden; padding-block: 5rem 7rem; }
@media (min-width: 640px) { .hero { padding-block: 7rem 9rem; } }
.hero__bg { position: absolute; inset: 0; pointer-events: none; }
.hero__dots {
  position: absolute; inset: 0; opacity: .4;
  background-image: radial-gradient(var(--border) 1px, transparent 1px);
  background-size: 22px 22px;
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, #000 30%, transparent 75%);
          mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, #000 30%, transparent 75%);
}
.hero__glow {
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 600px; height: 600px; border-radius: 50%;
  background: color-mix(in srgb, var(--primary) 8%, transparent);
  filter: blur(80px);
}
.hero__inner { position: relative; }
.hero h1 {
  font-size: clamp(2.6rem, 7vw, 4.5rem);
  font-weight: 800; line-height: 1.05; margin-bottom: 1.5rem;
}
.hero h1 .accent {
  position: relative; display: inline-block; margin-inline: .5rem;
  background: linear-gradient(90deg, var(--primary), color-mix(in srgb, var(--primary) 60%, transparent));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero h1 .accent svg { position: absolute; left: 0; bottom: -0.5rem; width: 100%; color: color-mix(in srgb, var(--primary) 40%, transparent); }
.hero__sub { font-size: 1.2rem; color: var(--muted-foreground); margin-bottom: 3rem; }
.hero__sub strong { color: var(--foreground); }

.prompt-box {
  border: 2px solid var(--border); background: color-mix(in srgb, var(--background) 80%, transparent);
  border-radius: var(--radius-lg); box-shadow: 0 25px 50px -12px rgba(30,157,241,.08);
  text-align: left; margin-inline: auto; max-width: 42rem;
}
.prompt-box:focus-within { border-color: var(--primary); }
.prompt-box__row { display: flex; align-items: flex-start; gap: 0.75rem; padding: 1rem; }
.prompt-box textarea {
  flex: 1; resize: none; border: none; background: transparent;
  font: inherit; font-size: 0.9rem; line-height: 1.6; color: var(--foreground);
}
.prompt-box textarea:focus { outline: none; }
.prompt-box textarea::placeholder { color: color-mix(in srgb, var(--muted-foreground) 50%, transparent); }
.prompt-box__foot { display: flex; align-items: center; justify-content: space-between; gap: 0.75rem; padding: 0 1rem 1rem; }
.prompt-box .icon-tile { width: 2rem; height: 2rem; margin-top: 0.15rem; }
.prompt-box .icon-tile svg { width: 1rem; height: 1rem; }

.chips { display: flex; flex-wrap: wrap; gap: 0.5rem; justify-content: center; margin-top: 0.75rem; }
.chip {
  border: 1px solid var(--border); background: color-mix(in srgb, var(--background) 60%, transparent);
  border-radius: var(--radius-pill); padding: 0.25rem 0.75rem; font-size: 0.78rem; color: var(--muted-foreground);
}
.chip:hover { color: var(--foreground); border-color: color-mix(in srgb, var(--foreground) 40%, transparent); }

.trust { display: flex; flex-wrap: wrap; gap: 1.5rem; justify-content: center; margin-top: 2rem; font-size: 0.9rem; color: var(--muted-foreground); }
.trust > div { display: flex; align-items: center; gap: 0.4rem; }
.trust svg { width: 0.9rem; height: 0.9rem; }
.trust .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); }

/* Hero showcase */
.showcase { margin-top: 5rem; max-width: 56rem; margin-inline: auto; position: relative; }
.showcase__glow { position: absolute; top: -1.5rem; left: 50%; transform: translateX(-50%); width: 75%; height: 6rem; background: color-mix(in srgb, var(--primary) 20%, transparent); filter: blur(60px); border-radius: 50%; }
.showcase__frame { position: relative; border: 1px solid var(--border); background: color-mix(in srgb, var(--card) 60%, transparent); border-radius: var(--radius-lg); overflow: hidden; box-shadow: 0 30px 60px -20px rgba(15,20,25,.25); }
.showcase__grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.showcase__cell { padding: 1.5rem; }
.showcase__cell + .showcase__cell { border-left: 1px solid var(--border); }
.showcase__label { font-size: 0.7rem; font-weight: 500; text-transform: uppercase; letter-spacing: .08em; color: var(--muted-foreground); margin-bottom: 0.75rem; }
.showcase__foot { border-top: 1px solid var(--border); background: color-mix(in srgb, var(--muted) 30%, transparent); padding: 0.75rem 1.5rem; display: flex; align-items: center; justify-content: space-between; font-size: 0.78rem; color: var(--muted-foreground); }
.sq { aspect-ratio: 1; border-radius: var(--radius-md); }
@media (max-width: 640px) { .showcase__grid { grid-template-columns: 1fr; } .showcase__cell + .showcase__cell { border-left: none; border-top: 1px solid var(--border); } }

/* ============================================================
   Social proof bar + marquee
   ============================================================ */
.proofbar { border-block: 1px solid var(--border); background: color-mix(in srgb, var(--muted) 30%, transparent); padding-block: 1.25rem; }
.proofbar__inner { display: flex; flex-direction: column; gap: 1rem; align-items: center; justify-content: space-between; }
@media (min-width: 640px) { .proofbar__inner { flex-direction: row; } }
.stars { display: inline-flex; gap: 1px; }
.stars svg { width: 1rem; height: 1rem; fill: var(--amber); color: var(--amber); }
.marquee { position: relative; overflow: hidden; flex: 1; max-width: 36rem; }
.marquee::before, .marquee::after { content: ""; position: absolute; top: 0; bottom: 0; width: 2rem; z-index: 2; pointer-events: none; }
.marquee::before { left: 0; background: linear-gradient(90deg, color-mix(in srgb, var(--muted) 30%, var(--background)), transparent); }
.marquee::after { right: 0; background: linear-gradient(-90deg, color-mix(in srgb, var(--muted) 30%, var(--background)), transparent); }
.marquee__track { display: flex; gap: 0.75rem; width: max-content; animation: marquee 40s linear infinite; }
.marquee__track span { flex: none; border: 1px solid var(--border); background: var(--background); border-radius: var(--radius-pill); padding: 0.25rem 0.75rem; font-size: 0.78rem; color: var(--muted-foreground); white-space: nowrap; }
@keyframes marquee { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee__track { animation: none; } }

.logo-row { padding-block: 1rem 3rem; }
.logo-row p { text-align: center; font-size: 0.9rem; font-weight: 500; color: var(--muted-foreground); margin-bottom: 2rem; }
.logo-row .marquee { max-width: none; }
.logo-row .marquee::before { background: linear-gradient(90deg, var(--background), transparent); width: 4rem; }
.logo-row .marquee::after { background: linear-gradient(-90deg, var(--background), transparent); width: 4rem; }
.logo-row .marquee__track span { height: 2.5rem; display: inline-flex; align-items: center; padding-inline: 1.5rem; background: var(--card); font-weight: 500; font-size: 0.9rem; }

/* ============================================================
   Numbered / step markers
   ============================================================ */
.step-num { font-size: 2.5rem; font-weight: 900; line-height: 1; color: color-mix(in srgb, var(--primary) 15%, transparent); }

/* ============================================================
   Dream / before-after
   ============================================================ */
.ba { border: 1px solid var(--border); background: var(--card); border-radius: var(--radius-lg); overflow: hidden; }
.ba__before { padding: 1rem 1.25rem; background: color-mix(in srgb, var(--muted) 30%, transparent); border-bottom: 1px solid var(--border); display: flex; align-items: center; gap: 0.5rem; font-size: 0.9rem; color: var(--muted-foreground); }
.ba__before .txt { text-decoration: line-through; }
.ba__after { padding: 1rem 1.25rem; display: flex; align-items: center; gap: 0.5rem; font-size: 0.9rem; font-weight: 500; }
.ba__after .mark { color: var(--primary); }

.story .who { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1rem; }
.avatar { width: 2.75rem; height: 2.75rem; border-radius: 50%; background: color-mix(in srgb, var(--primary) 10%, transparent); color: var(--primary); display: inline-flex; align-items: center; justify-content: center; font-weight: 700; font-size: 0.85rem; flex: none; }
.story blockquote { font-size: 0.9rem; color: var(--muted-foreground); margin: 0 0 1rem; line-height: 1.6; }
.story__result { border: 1px solid color-mix(in srgb, var(--primary) 10%, transparent); background: color-mix(in srgb, var(--primary) 5%, transparent); border-radius: var(--radius-sm); padding: 0.5rem 0.75rem; font-size: 0.78rem; font-weight: 600; color: var(--primary); }

/* ============================================================
   Testimonials (masonry-ish)
   ============================================================ */
.masonry { columns: 3; column-gap: 1.5rem; }
@media (max-width: 1024px) { .masonry { columns: 2; } }
@media (max-width: 640px)  { .masonry { columns: 1; } }
.masonry .card { break-inside: avoid; margin-bottom: 1.25rem; background: var(--background); }
.t-head { display: flex; gap: 0.75rem; margin-bottom: 0.75rem; }
.t-head .name { font-size: 0.9rem; font-weight: 600; }
.t-head .role { font-size: 0.78rem; color: var(--muted-foreground); }

/* ============================================================
   Pricing
   ============================================================ */
.plan { position: relative; display: flex; flex-direction: column; }
.plan--popular { border-color: color-mix(in srgb, var(--primary) 50%, transparent); box-shadow: 0 25px 50px -12px rgba(30,157,241,.15); }
.plan__badge { position: absolute; top: -0.85rem; left: 50%; transform: translateX(-50%); }
.plan__price { display: flex; align-items: baseline; gap: 0.25rem; }
.plan__price .amt { font-size: 2rem; font-weight: 800; }
.plan__meta { display: flex; align-items: center; gap: 0.4rem; font-size: 0.78rem; color: var(--muted-foreground); margin-top: 0.5rem; }
.plan__meta svg { width: 0.85rem; height: 0.85rem; }
.plan ul.feature-list { flex: 1; }
.plan ul.feature-list li.plus { color: var(--primary); font-weight: 600; }

.toggle { display: inline-flex; background: var(--background); border: 1px solid var(--border); border-radius: var(--radius-pill); padding: 0.25rem; }
.toggle button { border: none; background: transparent; padding: 0.4rem 1.25rem; border-radius: var(--radius-pill); font-size: 0.85rem; color: var(--muted-foreground); }
.toggle button.active { background: var(--foreground); color: var(--background); }

.pack { border: 1px solid var(--border); background: var(--background); border-radius: var(--radius-md); padding: 1rem; transition: box-shadow .2s, border-color .2s; }
.pack:hover { border-color: color-mix(in srgb, var(--primary) 40%, transparent); box-shadow: 0 6px 20px -10px rgba(15,20,25,.15); }
.pack .n { font-size: 1.5rem; font-weight: 800; }

/* ============================================================
   FAQ (native details/summary)
   ============================================================ */
.faq { display: grid; gap: 0.75rem; max-width: 48rem; margin-inline: auto; }
.faq details { border: 1px solid var(--border); background: var(--card); border-radius: var(--radius-md); overflow: hidden; }
.faq summary { display: flex; align-items: center; gap: 1rem; padding: 1rem 1.25rem; font-weight: 500; list-style: none; cursor: pointer; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { background: color-mix(in srgb, var(--muted) 30%, transparent); }
.faq details[open] summary { border-bottom: 1px solid var(--border); }
.faq__q-icon { display: inline-flex; align-items: center; justify-content: center; width: 2rem; height: 2rem; border-radius: 50%; background: color-mix(in srgb, var(--primary) 10%, transparent); color: var(--primary); flex: none; }
.faq__q-icon svg { width: 1rem; height: 1rem; }
.faq__answer { padding: 0.9rem 1.25rem 1.1rem; color: var(--muted-foreground); font-size: 0.9rem; padding-left: 3.75rem; }

/* ============================================================
   Contact / forms
   ============================================================ */
.field label { display: block; font-size: 0.85rem; font-weight: 500; margin-bottom: 0.4rem; }
.field input, .field textarea {
  width: 100%; font: inherit; font-size: 0.9rem;
  border: 1px solid var(--border); border-radius: var(--radius-sm);
  background: var(--background); color: var(--foreground);
  padding: 0.6rem 0.8rem;
}
.field input:focus, .field textarea:focus { outline: 2px solid color-mix(in srgb, var(--primary) 40%, transparent); outline-offset: 1px; border-color: var(--primary); }
.field textarea { resize: vertical; min-height: 8rem; }
.field + .field { margin-top: 1rem; }
.form-grid-2 { display: grid; gap: 1rem; grid-template-columns: 1fr 1fr; }
@media (max-width: 640px) { .form-grid-2 { grid-template-columns: 1fr; } }

/* ============================================================
   CTA (dark) sections
   ============================================================ */
.cta-dark { position: relative; overflow: hidden; }
.cta-dark__glow { position: absolute; inset: 0; opacity: .05; pointer-events: none; }
.cta-dark__glow span { position: absolute; border-radius: 50%; background: var(--primary); filter: blur(80px); }
.avatar-stack { display: inline-flex; }
.avatar-stack .avatar { border: 2px solid var(--foreground); margin-left: -0.5rem; background: color-mix(in srgb, #fff 20%, transparent); color: color-mix(in srgb, #fff 80%, transparent); font-size: 0.65rem; width: 2.25rem; height: 2.25rem; }
.avatar-stack .avatar:first-child { margin-left: 0; }
.cta-facts { display: flex; flex-wrap: wrap; gap: 0.5rem 2rem; justify-content: center; font-size: 0.85rem; color: color-mix(in srgb, #fff 40%, transparent); }
.cta-facts span { display: inline-flex; align-items: center; gap: 0.4rem; }
.cta-facts .dot { width: 6px; height: 6px; border-radius: 50%; background: color-mix(in srgb, #fff 20%, transparent); }
.cta-facts .dot--green { background: var(--green); }

/* ============================================================
   Article / legal prose pages
   ============================================================ */
.prose { max-width: 46rem; margin-inline: auto; }
.prose h2 { font-size: 1.25rem; font-weight: 700; margin-top: 2.25rem; margin-bottom: 0.75rem; }
.prose h3 { font-size: 1.05rem; font-weight: 600; margin-top: 1.5rem; margin-bottom: 0.5rem; }
.prose p { color: var(--muted-foreground); margin-bottom: 1rem; line-height: 1.75; }
.prose ul { margin-bottom: 1rem; }
.prose ul li { color: var(--muted-foreground); margin-bottom: 0.4rem; line-height: 1.7; }
.prose a { color: var(--primary); }
.prose a:hover { text-decoration: underline; }

/* Blog cards */
.post-card { overflow: hidden; padding: 0; background: var(--background); }
.post-card__thumb { aspect-ratio: 16/9; border-bottom: 1px solid var(--border); display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, color-mix(in srgb, var(--primary) 10%, transparent), transparent); font-size: 3rem; font-weight: 900; color: color-mix(in srgb, var(--primary) 20%, transparent); }
.post-card__body { padding: 1.5rem; }
.post-card__meta { display: flex; align-items: center; justify-content: space-between; margin-bottom: 0.75rem; }
.pill-cat { font-size: 0.72rem; font-weight: 600; padding: 0.25rem 0.6rem; border-radius: var(--radius-pill); }
.pill-cat.Branding { background: color-mix(in srgb, #3b82f6 10%, transparent); color: #1d4ed8; }
.pill-cat.Marketing, .pill-cat.Tips { background: color-mix(in srgb, #f59e0b 10%, transparent); color: #b45309; }
.pill-cat.Inspiratie { background: color-mix(in srgb, #8b5cf6 10%, transparent); color: #6d28d9; }
.pill-cat.TipsTricks { background: color-mix(in srgb, #16a34a 10%, transparent); color: #15803d; }
.pill-cat.Nieuws { background: color-mix(in srgb, #ef4444 10%, transparent); color: #b91c1c; }
.cat-filter { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.cat-filter button { border: 1px solid var(--border); background: transparent; color: var(--muted-foreground); border-radius: var(--radius-pill); padding: 0.4rem 1rem; font-size: 0.85rem; font-weight: 500; }
.cat-filter button.active { background: var(--foreground); color: var(--background); border-color: var(--foreground); }
.cat-filter button:hover:not(.active) { color: var(--foreground); border-color: color-mix(in srgb, var(--foreground) 40%, transparent); }

/* Page hero (sub-pages) */
.page-hero { position: relative; overflow: hidden; padding-block: 5rem; }
.page-hero__bg { position: absolute; inset: 0; background: linear-gradient(135deg, color-mix(in srgb, var(--primary) 5%, transparent), transparent 60%); pointer-events: none; }
.page-hero h1 { font-size: clamp(2.25rem, 5vw, 3.75rem); font-weight: 800; line-height: 1.1; margin-block: 1.5rem; }
.page-hero__lead { font-size: 1.2rem; color: var(--muted-foreground); line-height: 1.7; }

/* ============================================================
   Footer
   ============================================================ */
.site-footer { border-top: 1px solid var(--border); background: var(--background); }
.footer-inner { padding-block: 4rem; }
.newsletter { border: 1px solid var(--border); background: color-mix(in srgb, var(--muted) 30%, transparent); border-radius: var(--radius-lg); padding: 2rem; margin-bottom: 4rem; }
.newsletter form { display: flex; gap: 0.5rem; max-width: 24rem; margin-inline: auto; }
.newsletter input { flex: 1; }
.footer-grid { display: grid; grid-template-columns: 2fr repeat(4, 1fr); gap: 2rem; }
@media (max-width: 1024px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } .footer-grid > div:first-child { grid-column: 1 / -1; } }
.footer-col h4 { font-size: 0.9rem; font-weight: 600; margin-bottom: 1rem; }
.footer-col ul li { margin-bottom: 0.75rem; }
.footer-col a { font-size: 0.9rem; color: var(--muted-foreground); }
.footer-col a:hover { color: var(--foreground); }
.footer-brand p { font-size: 0.9rem; color: var(--muted-foreground); max-width: 20rem; margin-block: 1rem 1.25rem; line-height: 1.6; }
.social-row { display: flex; gap: 0.5rem; }
.social-row a { width: 2rem; height: 2rem; border: 1px solid var(--border); border-radius: var(--radius-sm); display: inline-flex; align-items: center; justify-content: center; color: var(--foreground); }
.social-row a:hover { border-color: color-mix(in srgb, var(--foreground) 40%, transparent); }
.social-row svg { width: 0.9rem; height: 0.9rem; }
.footer-sep { border: none; border-top: 1px solid var(--border); margin-block: 2rem; }
.footer-bottom { display: flex; flex-direction: column; gap: 1rem; align-items: center; justify-content: space-between; font-size: 0.85rem; color: var(--muted-foreground); }
@media (min-width: 640px) { .footer-bottom { flex-direction: row; } }
.footer-bottom .made { display: inline-flex; align-items: center; gap: 0.35rem; }
.footer-bottom .made svg { width: 0.9rem; height: 0.9rem; color: #ef4444; fill: #ef4444; }
.footer-bottom .links { display: inline-flex; gap: 1rem; }

/* Utility spacing */
.mb-1 { margin-bottom: 0.5rem; } .mb-2 { margin-bottom: 1rem; } .mb-3 { margin-bottom: 1.5rem; } .mb-4 { margin-bottom: 2rem; }
.mt-2 { margin-top: 1rem; } .mt-3 { margin-top: 1.5rem; } .mt-4 { margin-top: 2rem; }
.stack-sm > * + * { margin-top: 0.75rem; }
.flex-cta { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }
.items-stretch { align-items: stretch; }
.hide-sm { display: none; }
@media (min-width: 640px) { .hide-sm { display: inline; } }

/* Skip link (a11y) */
.skip-link { position: absolute; left: -9999px; top: 0; background: var(--foreground); color: var(--background); padding: 0.75rem 1rem; border-radius: var(--radius-sm); z-index: 100; }
.skip-link:focus { left: 1rem; top: 1rem; }

/* ============================================================
   v1.1 additions — mega menu, breadcrumbs, feature cards, blog
   ============================================================ */

/* Screen-reader-only utility */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* Mega menu (Functies) */
.nav__item--mega { position: static; }
.nav__mega {
  position: absolute; left: 0; right: 0; top: 100%;
  padding-top: 0.5rem;
  opacity: 0; visibility: hidden; transition: opacity .15s;
  z-index: 60;
}
.nav__item--mega:hover .nav__mega,
.nav__item--mega:focus-within .nav__mega { opacity: 1; visibility: visible; }
.nav__mega-inner {
  max-width: var(--container); margin-inline: auto;
  background: var(--background); border: 1px solid var(--border);
  border-radius: var(--radius-md); box-shadow: 0 20px 50px -15px rgba(15,20,25,.22);
  padding: 1.5rem; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
}
.nav__mega-heading { font-size: 0.72rem; text-transform: uppercase; letter-spacing: .08em; font-weight: 700; color: var(--muted-foreground); margin-bottom: 0.5rem; }
.nav__mega-col a { display: flex; flex-direction: column; padding: 0.6rem 0.75rem; border-radius: var(--radius-sm); }
.nav__mega-col a:hover { background: var(--accent); }
.nav__mega-col a span { font-size: 0.9rem; font-weight: 500; }
.nav__mega-col a small { font-size: 0.78rem; color: var(--muted-foreground); }
.nav__mega-foot { max-width: var(--container); margin: 0.5rem auto 0; }
.nav__mega-foot a { display: inline-flex; align-items: center; gap: 0.4rem; font-size: 0.85rem; font-weight: 500; color: var(--primary); padding: 0.5rem 0.75rem; }
.nav__mega-foot a svg { width: 0.9rem; height: 0.9rem; }

/* Mobile sub headings inside drawer */
.mobile-nav__subheading { font-size: 0.72rem; text-transform: uppercase; letter-spacing: .08em; font-weight: 700; color: var(--muted-foreground); padding: 0.75rem 1rem 0.25rem; }

/* Breadcrumbs */
.breadcrumbs { margin-bottom: 1.25rem; }
.breadcrumbs ol { display: flex; flex-wrap: wrap; gap: 0.4rem; align-items: center; font-size: 0.82rem; color: var(--muted-foreground); }
.breadcrumbs li { display: inline-flex; align-items: center; gap: 0.4rem; }
.breadcrumbs li:not(:last-child)::after { content: "/"; color: var(--border); margin-left: 0.4rem; }
.breadcrumbs a { color: var(--muted-foreground); }
.breadcrumbs a:hover { color: var(--foreground); }
.breadcrumbs li[aria-current="page"] { color: var(--foreground); font-weight: 500; }

/* Feature cards (overview + related) */
.feature-group { margin-bottom: 3.5rem; }
.feature-group:last-child { margin-bottom: 0; }
.feature-group__title { font-size: 1.35rem; font-weight: 800; margin-bottom: 1.25rem; }
.feature-card { display: flex; flex-direction: column; text-decoration: none; color: inherit; }
.feature-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 0.4rem; }
.feature-card p { font-size: 0.88rem; line-height: 1.6; flex: 1; }
.feature-card__more { display: inline-flex; align-items: center; gap: 0.4rem; font-size: 0.85rem; font-weight: 500; margin-top: 1rem; }
.feature-card__more svg { width: 0.9rem; height: 0.9rem; transition: transform .2s; }
.feature-card:hover .feature-card__more svg { transform: translateX(3px); }

/* Newsletter form (footer) */
.newsletter-form { display: flex; gap: 0.5rem; max-width: 24rem; margin-inline: auto; }
.newsletter-form input { flex: 1; font: inherit; font-size: 0.9rem; border: 1px solid var(--border); border-radius: var(--radius-sm); background: var(--background); color: var(--foreground); padding: 0.6rem 0.8rem; }
.newsletter-form input:focus { outline: 2px solid color-mix(in srgb, var(--primary) 40%, transparent); outline-offset: 1px; border-color: var(--primary); }

/* Blog thumbnails (real images) */
.post-card__img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 16/9; border-bottom: 1px solid var(--border); }
.post-card__thumb-link { display: block; }
.post-content img { border-radius: var(--radius-md); height: auto; }
.post-content h2 { margin-top: 2rem; }
.post-content h3 { margin-top: 1.5rem; }
.post-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; }

/* Pagination */
.pagination .nav-links { display: flex; gap: 0.5rem; justify-content: center; flex-wrap: wrap; }
.pagination .page-numbers { display: inline-flex; align-items: center; justify-content: center; min-width: 2.5rem; height: 2.5rem; padding: 0 0.75rem; border: 1px solid var(--border); border-radius: var(--radius-sm); font-size: 0.9rem; color: var(--foreground); }
.pagination .page-numbers.current { background: var(--foreground); color: var(--background); border-color: var(--foreground); }
.pagination .page-numbers:hover:not(.current) { border-color: color-mix(in srgb, var(--foreground) 40%, transparent); }

/* Reduced motion: disable card/hover transforms and marquee */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}
