/* ==========================================================================
   STIJLGIDS — UnravelNow
   Bron-van-waarheid voor design-tokens + design-keuzes van deze site.
   Bij elke kleur-/font-/spacing-wijziging: pas zowel de :root-variabele
   hieronder als deze comments aan, zodat de stijlgids in sync blijft.
   ========================================================================== */

/* PRIMAIRE KLEUR
   #022717 — Diep bosgroen. Gebruikt voor: nav-achtergrond, primaire knoppen,
   section-labels, schema-accenten, footer-achtergrond.
   Bewust gekozen omdat: autoritair zonder clichégroen, verwijst naar
   duurzaamheid zonder activistisch te zijn, past bij McKinsey/consultancy-sfeer. */

/* PRIMAIRE CONTAINER
   #1a3d2b — Iets lichter bosgroen. Gebruikt voor: persona-icoon-achtergrond,
   hover-states, subtiele groene vlakken. */

/* ACCENT / SECUNDAIRE KLEUR
   #c8692a — Warme amber/terracotta. Gebruikt voor: accent-knoppen (btn-accent),
   stap-nummers methode, uitkomst-vinkjes, focus-outline.
   Bewust gekozen: contrasteert scherp met groen, communiceert energie en
   commercieel denken — precies het onderscheid dat UnravelNow maakt. */

/* ACHTERGROND
   #fcf9f8 — Gebroken wit (off-white), papier-achtig. Vermindert oogvermoeidheid
   t.o.v. puur wit. Primaire page-achtergrond en hero-achtergrond.
   Alternatieve sectie-bg: #f0eded (licht grijs) voor afwisseling. */

/* TEKST
   Body: #1b1b1b (vrijwel zwart), Subtext/labels: #414843 (donker grijsgroen).
   Lijnhoogte body: 1.65, headings: 1.15. */

/* TYPOGRAFIE
   Headings: DM Serif Display (serif), geladen via Google Fonts — uitzondering
   op de no-external-fonts regel omdat dit uit het Stitch design-system komt.
   Body: Inter, system-ui, sans-serif. Label (uppercase nav/tags): Inter 600,
   letter-spacing 0.05em.
   Schaal: body 16px (1rem), h3 1.4rem, h2 2rem, h1 clamp(2.2rem, 5vw, 3.5rem). */

/* SPACING-SCHAAL
   Basis: 4px unit. Section-padding: clamp(5rem, 10vw, 7.5rem) vertical.
   Container max-width: 1280px, padding: 0 clamp(1.25rem, 5vw, 4rem).
   Grid-gutters: 2rem (mobiel 1rem). */

/* RADIUS + SHADOWS
   --radius: 4px (knoppen, cards — minimal sharp consultancy-stijl).
   --radius-lg: 8px (grote cards). Geen schaduwen — flat, tonal depth via
   outline en achtergrondkleur-shift (zoals McKinsey). */

/* KNOPPEN
   .btn-accent: amber (#c8692a) achtergrond, wit tekst, geen border,
   radius 4px, hover: iets donkerder (#a8541f), letter-spacing 0.02em.
   .btn-outline: geen achtergrond, 1px border #022717, hover: bg #022717 wit tekst.
   .btn-ghost: transparent, tekst #022717, hover: subtiele groene bg.
   Mobile sticky: full-width aan onderkant scherm. */

/* ==========================================================================
   IMPORT — DM Serif Display
   Uitzondering op no-external-fonts: dit is het design-system-font.
   ========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display&family=Inter:wght@400;500;600&display=swap');

/* ==========================================================================
   CUSTOM PROPERTIES
   ========================================================================== */
:root {
  /* Kleuren */
  --color-primary:           #022717;
  --color-primary-container: #1a3d2b;
  --color-accent:            #c8692a;
  --color-accent-dark:       #a8541f;
  --color-bg:                #fcf9f8;
  --color-bg-alt:            #f0eded;
  --color-surface:           #ffffff;
  --color-text:              #1b1b1b;
  --color-text-muted:        #414843;
  --color-outline:           rgba(28, 28, 28, 0.15);
  --color-outline-strong:    rgba(28, 28, 28, 0.25);
  --color-footer-bg:         #022717;
  --color-footer-text:       #c4ecd2;

  /* Typografie */
  --font-heading: 'DM Serif Display', Georgia, 'Times New Roman', serif;
  --font-body:    'Inter', system-ui, -apple-system, sans-serif;

  /* Spacing */
  --section-pad-v: clamp(4rem, 9vw, 7.5rem);
  --container-pad: clamp(1.25rem, 5vw, 4rem);
  --container-max: 1280px;

  /* Radius */
  --radius:    4px;
  --radius-lg: 8px;
  --radius-xl: 12px;
}

/* ==========================================================================
   RESET + BASE
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--color-text);
  background: var(--color-bg);
  overflow-x: hidden;
}

img, video {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: underline;
  text-decoration-color: var(--color-outline-strong);
  text-underline-offset: 3px;
}

a:hover {
  text-decoration-color: var(--color-accent);
}

:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
  border-radius: var(--radius);
}

ul, ol {
  list-style: none;
}

/* ==========================================================================
   TYPOGRAFI
   ========================================================================== */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1.15;
  color: var(--color-primary);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.75rem); letter-spacing: -0.01em; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }

.label-lg {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-accent);
}

/* ==========================================================================
   LAYOUT — CONTAINER
   ========================================================================== */
.container {
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  white-space: nowrap;
}

.btn-accent {
  background: var(--color-accent);
  color: #fff;
}
.btn-accent:hover, .btn-accent:focus-visible {
  background: var(--color-accent-dark);
  color: #fff;
  text-decoration: none;
}

.btn-outline {
  background: transparent;
  color: var(--color-primary);
  border: 1px solid var(--color-primary);
}
.btn-outline:hover, .btn-outline:focus-visible {
  background: var(--color-primary);
  color: #fff;
  text-decoration: none;
}

.btn-ghost {
  background: transparent;
  color: var(--color-primary);
  border: none;
  padding-left: 0;
}
.btn-ghost:hover {
  color: var(--color-accent);
  text-decoration: none;
}

.btn-lg {
  padding: 1rem 2.25rem;
  font-size: 1rem;
}

.btn-block {
  width: 100%;
}

/* ==========================================================================
   NAVIGATION
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: var(--color-primary);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.nav-inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  max-width: var(--container-max);
  margin-inline: auto;
  padding: 1rem var(--container-pad);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: var(--color-accent);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  border-radius: var(--radius);
}

.nav-logo-img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  border-radius: var(--radius);
  background: #fff;
  padding: 2px;
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 400;
}

.nav-links {
  display: none;
  gap: 2.5rem;
  margin-left: auto;
}

.nav-links a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.nav-links a:hover {
  color: #fff;
}

.nav-cta {
  margin-left: auto;
  padding: 0.6rem 1.25rem;
  font-size: 0.85rem;
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
}

.mobile-menu {
  background: var(--color-primary-container);
  padding: 1.5rem var(--container-pad);
}

.mobile-menu ul {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mobile-menu a {
  color: rgba(255,255,255,0.9);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  display: block;
  padding: 0.5rem 0;
}

.mobile-menu .btn {
  margin-top: 0.5rem;
  width: 100%;
}

@media (min-width: 720px) {
  .nav-toggle { display: none; }
  .nav-links { display: flex; }
  .mobile-menu { display: none !important; }
  .nav-cta { margin-left: 0; }
}

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  display: grid;
  grid-template-columns: 1fr;
  min-height: 80vh;
  background: var(--color-bg);
  overflow: hidden;
}

.hero-content {
  padding: clamp(3rem, 8vw, 6rem) var(--container-pad);
  max-width: 680px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hero-eyebrow {
  margin-bottom: -0.5rem;
}

.hero-content h1 {
  font-size: clamp(2.4rem, 5.5vw, 3.8rem);
  line-height: 1.1;
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--color-text-muted);
  max-width: 56ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  font-size: 0.8rem;
  color: var(--color-text-muted);
  font-weight: 500;
  margin-top: 0.5rem;
}

.trust-divider {
  color: var(--color-outline-strong);
}

.hero-visual {
  position: relative;
  min-height: 280px;
  overflow: hidden;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

@media (min-width: 720px) {
  .hero {
    grid-template-columns: 1fr 1fr;
    min-height: 85vh;
  }

  .hero-content {
    padding: clamp(4rem, 8vw, 7rem) var(--container-pad);
    max-width: 640px;
  }

  .hero-visual {
    min-height: 100%;
  }
}

/* ==========================================================================
   SECTION HEADER (shared)
   ========================================================================== */
.section-header {
  max-width: 700px;
  margin-bottom: 3.5rem;
}

.section-label {
  display: block;
  margin-bottom: 0.75rem;
}

.section-intro {
  font-size: 1.05rem;
  color: var(--color-text-muted);
  margin-top: 1rem;
  max-width: 60ch;
}

/* ==========================================================================
   VOOR-WIE
   ========================================================================== */
.voor-wie {
  padding-block: var(--section-pad-v);
  background: var(--color-bg-alt);
}

.persona-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.persona-card {
  background: var(--color-surface);
  border: 1px solid var(--color-outline);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.persona-card h3 {
  font-size: 1.15rem;
}

.persona-icon {
  width: 40px;
  flex-shrink: 0;
}

.persona-quote {
  font-style: italic;
  color: var(--color-accent);
  border-left: 3px solid var(--color-accent);
  padding-left: 1rem;
  font-size: 0.95rem;
  line-height: 1.5;
}

.persona-card p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

.voor-wie-cta {
  text-align: center;
}

@media (min-width: 720px) {
  .persona-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ==========================================================================
   UITKOMST
   ========================================================================== */
.uitkomst {
  padding-block: var(--section-pad-v);
  background: var(--color-primary);
  color: #fff;
}

.uitkomst h2 {
  color: #fff;
}

.uitkomst .section-label {
  color: var(--color-accent);
}

.uitkomst-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

.uitkomst-text {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.uitkomst-text p {
  color: rgba(255,255,255,0.85);
  font-size: 1.05rem;
}

.uitkomst-text em {
  color: #fff;
  font-style: italic;
}

.uitkomst-lijst {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.uitkomst-lijst li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  color: rgba(255,255,255,0.9);
  font-size: 0.95rem;
}

.uitkomst-check {
  color: var(--color-accent);
  font-size: 1.1rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.uitkomst-lijst strong {
  color: #fff;
}

@media (min-width: 720px) {
  .uitkomst-inner {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}

/* ==========================================================================
   METHODE
   ========================================================================== */
.methode {
  padding-block: var(--section-pad-v);
  background: var(--color-bg);
}

.methode-stappen {
  display: flex;
  flex-direction: column;
  gap: 0;
  counter-reset: stap;
  margin-bottom: 3rem;
  max-width: 800px;
}

.methode-stap {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 1.5rem;
  padding: 2rem 0;
  border-top: 1px solid var(--color-outline);
  align-items: start;
}

.methode-stap:last-child {
  border-bottom: 1px solid var(--color-outline);
}

.stap-nummer {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--color-accent);
  line-height: 1;
  opacity: 0.5;
}

.stap-content h3 {
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.stap-content p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
}

.methode-cta {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.methode-cta-note {
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

/* ==========================================================================
   BEWIJS
   ========================================================================== */
.bewijs {
  padding-top: var(--section-pad-v);
  background: var(--color-bg-alt);
}

.bewijs-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
  padding-inline: var(--container-pad);
  max-width: var(--container-max);
  margin-inline: auto;
}

.bewijs-foto-col {
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.bewijs-foto-placeholder {
  width: 220px;
  height: 280px;
  background: var(--color-primary-container);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.bewijs-foto {
  width: 260px;
  height: 340px;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius-lg);
  border: 2px solid var(--color-outline);
}

.foto-initialen {
  font-family: var(--font-heading);
  font-size: 3rem;
  color: var(--color-footer-text);
  opacity: 0.6;
}

.foto-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
}

.bewijs-tekst-col {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.bewijs-tekst-col h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
}

.bewijs-tekst-col p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  max-width: 65ch;
}

.bewijs-feiten {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5rem;
  border-top: 1px solid var(--color-outline);
  padding-top: 1.25rem;
}

.feit-item {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 0.5rem;
  font-size: 0.9rem;
}

.feit-item dt {
  font-weight: 600;
  color: var(--color-text);
}

.feit-item dd {
  color: var(--color-text-muted);
}

.bewijs-quote-blok {
  border-left: 3px solid var(--color-accent);
  padding: 1rem 1.25rem;
  background: var(--color-surface);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
}

.bewijs-quote-blok p {
  font-style: italic;
  font-size: 1rem;
  color: var(--color-text);
  margin: 0;
}

.bewijs-quote-blok em {
  color: var(--color-primary);
  font-style: italic;
}

.bewijs-quote-blok footer {
  margin-top: 0.5rem;
  font-size: 0.8rem;
  color: var(--color-text-muted);
  font-style: normal;
}

.bewijs-linkedin a {
  color: var(--color-accent);
  font-size: 0.9rem;
  font-weight: 600;
}

.link-external {
  color: var(--color-accent);
  text-decoration: none;
  font-weight: 500;
}
.link-external:hover {
  text-decoration: underline;
}

.bewijs-landscape {
  width: 100%;
  max-height: 360px;
  overflow: hidden;
}

.bewijs-landscape img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  object-position: center 30%;
}

@media (min-width: 720px) {
  .bewijs-inner {
    grid-template-columns: 240px 1fr;
  }
}

/* ==========================================================================
   AANBOD
   ========================================================================== */
.aanbod {
  padding-block: var(--section-pad-v);
  background: var(--color-bg);
}

.aanbod-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.aanbod-card {
  border: 1px solid var(--color-outline);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  background: var(--color-surface);
  min-width: 280px;
}

.aanbod-card--featured {
  border-color: var(--color-primary-container);
  border-width: 2px;
  background: #f8fdf9;
}

.aanbod-card-header h3 {
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
}

.aanbod-tagline {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-accent);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.aanbod-card p {
  color: var(--color-text-muted);
  font-size: 0.9rem;
}

.aanbod-features {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.aanbod-features li {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  padding-left: 1.25rem;
  position: relative;
}

.aanbod-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-accent);
  font-weight: 700;
}

.aanbod-prijs {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  border-top: 1px solid var(--color-outline);
  padding-top: 1rem;
  margin-top: auto;
}

.aanbod-prijs a {
  color: var(--color-accent);
}

.aanbod-note {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  max-width: 65ch;
  padding: 1.25rem;
  border: 1px solid var(--color-outline);
  border-radius: var(--radius-lg);
  background: var(--color-bg-alt);
}

@media (min-width: 720px) {
  .aanbod-grid {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  }
}

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq {
  padding-block: var(--section-pad-v);
  background: var(--color-bg-alt);
}

.faq-lijst {
  max-width: 800px;
  display: flex;
  flex-direction: column;
}

.faq-item {
  border-bottom: 1px solid var(--color-outline);
}

.faq-item:first-child {
  border-top: 1px solid var(--color-outline);
}

.faq-vraag {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 0;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-primary);
  cursor: pointer;
  line-height: 1.4;
}

.faq-vraag:hover {
  color: var(--color-accent);
}

.faq-icon {
  font-size: 1.25rem;
  color: var(--color-accent);
  flex-shrink: 0;
  transition: transform 0.2s;
}

.faq-vraag[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg);
}

.faq-item dd {
  padding-bottom: 1.25rem;
  color: var(--color-text-muted);
  font-size: 0.95rem;
  line-height: 1.65;
  max-width: 65ch;
}

.faq-item dd a {
  color: var(--color-accent);
}

/* ==========================================================================
   CONTACT
   ========================================================================== */
.contact {
  padding-block: var(--section-pad-v);
  background: var(--color-bg);
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

.contact-tekst {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-tekst h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
}

.contact-tekst p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  max-width: 50ch;
}

.contact-details {
  margin-top: 0.5rem;
  font-size: 0.9rem;
}

/* Formulier */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  background: var(--color-surface);
  padding: 2rem;
  border: 1px solid var(--color-outline);
  border-radius: var(--radius-xl);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.form-group input,
.form-group textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-text);
  background: var(--color-bg);
  border: 1px solid rgba(28,28,28,0.2);
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  transition: border-color 0.2s;
  width: 100%;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  border-width: 2px;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-note {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  text-align: center;
}

.form-status {
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
  font-size: 0.9rem;
  text-align: center;
}

.form-status--ok {
  background: #d1fae5;
  color: #065f46;
}

.form-status--err {
  background: #fde8e8;
  color: #c53030;
}

@media (min-width: 720px) {
  .contact-inner {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background: var(--color-footer-bg);
  color: var(--color-footer-text);
  padding-block: clamp(3rem, 6vw, 5rem);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 2rem;
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: #fff;
  display: block;
  margin-bottom: 0.5rem;
}

.footer-tagline {
  font-size: 0.9rem;
  color: rgba(196, 236, 210, 0.7);
  margin-bottom: 0.75rem;
}

.footer-brand a {
  font-size: 0.85rem;
  color: var(--color-accent);
}

.footer-nav nav ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-nav a {
  color: rgba(196, 236, 210, 0.75);
  text-decoration: none;
  font-size: 0.9rem;
}

.footer-nav a:hover {
  color: #fff;
}

.footer-legal ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.footer-legal a {
  color: rgba(196, 236, 210, 0.75);
  text-decoration: none;
  font-size: 0.85rem;
}

.footer-legal a:hover {
  color: #fff;
  text-decoration: underline;
}

.footer-copy {
  font-size: 0.8rem;
  color: rgba(196, 236, 210, 0.5);
  margin-bottom: 0.5rem;
}

.footer-attribution {
  font-size: 0.75rem;
  color: rgba(196, 236, 210, 0.4);
}

.footer-attribution a {
  color: rgba(196, 236, 210, 0.6);
}

@media (min-width: 720px) {
  .footer-inner {
    grid-template-columns: 2fr 1fr 1.5fr;
  }
}

/* Demo disclaimer */
.demo-disclaimer {
  background: rgba(200, 105, 42, 0.15);
  border: 1px solid rgba(200, 105, 42, 0.4);
  border-radius: var(--radius-lg);
  padding: 1rem 1.25rem;
  margin-top: 2rem;
  margin-bottom: 1.5rem;
}

.demo-disclaimer p {
  font-size: 0.8rem;
  color: rgba(255, 220, 180, 0.9);
  line-height: 1.5;
}

.demo-disclaimer strong {
  color: #ffb68d;
}

/* EO Credit */
.eo-credit {
  font-size: 0.75rem;
  color: rgba(196, 236, 210, 0.35);
  text-align: center;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.eo-credit a {
  color: rgba(196, 236, 210, 0.45);
  text-decoration: none;
}

.eo-credit a:hover {
  color: rgba(196, 236, 210, 0.7);
  text-decoration: underline;
}

/* ==========================================================================
   MODALS
   ========================================================================== */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
}

.modal--open {
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

@media (min-width: 600px) {
  .modal--open {
    align-items: center;
  }
}

.modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(2, 39, 23, 0.7);
  backdrop-filter: blur(2px);
}

.modal-content {
  position: relative;
  z-index: 1;
  background: var(--color-surface);
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  padding: 2rem;
  width: 100%;
  max-width: 640px;
  max-height: 90vh;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 600px) {
  .modal-content {
    border-radius: var(--radius-xl);
    max-height: 85vh;
    padding: 2.5rem;
  }
}

.modal-content h2 {
  color: var(--color-primary);
  font-size: 1.8rem;
}

.modal-content h3 {
  font-size: 1rem;
  margin-top: 0.5rem;
}

.modal-content p,
.modal-content li {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.65;
}

.modal-content ul {
  list-style: disc;
  padding-left: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.modal-intro {
  font-size: 1rem !important;
  color: var(--color-accent) !important;
  font-weight: 600;
}

.modal-datum {
  font-size: 0.8rem !important;
  color: rgba(65,72,67,0.6) !important;
  margin-top: 0.5rem;
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  color: var(--color-text-muted);
  padding: 0.25rem 0.5rem;
  border-radius: var(--radius);
}

.modal-close:hover {
  background: var(--color-bg-alt);
  color: var(--color-primary);
}

.voorwaarden-cta {
  margin-top: 1rem;
}

body.modal-active {
  overflow: hidden;
}

/* ==========================================================================
   MOBILE STICKY CTA
   ========================================================================== */
.mobile-sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 800;
  padding: 0.75rem 1.25rem;
  background: var(--color-primary);
  border-top: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 -4px 16px rgba(0,0,0,0.15);
}

.mobile-sticky-cta .btn {
  font-size: 0.95rem;
  padding: 0.85rem;
}

@media (min-width: 720px) {
  .mobile-sticky-cta {
    display: none;
  }
}

/* Ruimte voor sticky CTA op mobiel */
@media (max-width: 719px) {
  .site-footer {
    padding-bottom: calc(clamp(3rem, 6vw, 5rem) + 4.5rem);
  }
}

/* ==========================================================================
   UTILITIES
   ========================================================================== */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}