:root {
  --kleur-achtergrond: #0C141F;
  --kleur-tekst: #E8EDF4;
  --kleur-primair: #E8A33D;
  --kleur-primair-contrast: #0C141F;
  --kleur-zacht: #111C2B;
  --font-koppen: 'Bricolage Grotesque', 'Arial Rounded MT Bold', Arial, sans-serif;
  --font-tekst: 'Inter', Arial, sans-serif;
  --radius: 999px;
  --kleur-gedempt: #9AA8BC;
  --kleur-rand: #24334A;
  --font-mono: 'JetBrains Mono', 'Fira Mono', monospace;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--kleur-achtergrond);
  color: var(--kleur-tekst);
  font-family: var(--font-tekst);
  font-size: 16px;
  line-height: 1.6;
  min-width: 360px;
}

img { max-width: 100%; height: auto; }

a { color: var(--kleur-primair); text-decoration: none; }
a:hover { color: #F4C87E; }

.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* ===== HEADER ===== */
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  background: var(--kleur-achtergrond);
  border-bottom: 1px solid var(--kleur-rand);
  position: sticky;
  top: 0;
  z-index: 100;
}

.logo {
  font-family: var(--font-koppen);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--kleur-tekst);
  text-decoration: none;
  letter-spacing: -0.02em;
  line-height: 1;
}

.logo-accent {
  color: var(--kleur-primair);
}

nav[data-pagira-menu] ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

nav[data-pagira-menu] ul li a {
  font-size: 16px;
  font-family: var(--font-tekst);
  color: var(--kleur-tekst);
  text-decoration: none;
}

/* ===== KNOPPEN ===== */
.btn,
.nav-cta-btn {
  display: inline-block;
  background: var(--kleur-primair);
  color: var(--kleur-primair-contrast);
  font-family: var(--font-tekst);
  font-size: 16px;
  font-weight: 700;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius);
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
  min-height: 44px;
  line-height: 1.2;
}

.btn:hover,
.nav-cta-btn:hover {
  background: #F4C87E;
  color: var(--kleur-primair-contrast);
}

/* ===== ACCENT ===== */
.accent { color: var(--kleur-primair); }

/* ===== HERO ===== */
.hero {
  position: relative;
  overflow: hidden;
  padding: 5rem 0 3rem;
  text-align: center;
  background: var(--kleur-achtergrond);
}

.hero-glow {
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 500px;
  background: radial-gradient(ellipse at center top, rgba(232,163,61,0.18) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.hero-badge {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--kleur-primair);
  border: 1.5px solid var(--kleur-primair);
  border-radius: var(--radius);
  padding: 0.35rem 1rem;
}

.hero-kop {
  font-family: var(--font-koppen);
  font-size: clamp(2.2rem, 6vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--kleur-tekst);
  letter-spacing: -0.02em;
  max-width: 750px;
}

.hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: var(--kleur-gedempt);
  max-width: 600px;
  line-height: 1.7;
}

.hero-klein {
  font-size: 0.85rem;
  color: var(--kleur-gedempt);
  margin-top: -0.5rem;
}

/* ===== EDITOR SECTIE ===== */
.editor-sectie {
  background: var(--kleur-achtergrond);
  border-top: 1px solid var(--kleur-rand);
  border-bottom: 1px solid var(--kleur-rand);
  padding: 3rem 0;
}

.editor-rij {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem;
  justify-content: center;
}

.editor-venster {
  background: var(--kleur-zacht);
  border: 1px solid var(--kleur-rand);
  border-radius: 10px;
  overflow: hidden;
  flex: 1 1 300px;
  max-width: 420px;
  min-width: 260px;
}

.editor-titelbalk {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: #162233;
  padding: 0.55rem 0.85rem;
  border-bottom: 1px solid var(--kleur-rand);
}

.dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  display: inline-block;
}

.dot-rood { background: #FF5F57; }
.dot-geel { background: #FEBC2E; }
.dot-groen { background: #28C840; }

.editor-bestandsnaam {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--kleur-gedempt);
  margin-left: 0.25rem;
}

.editor-code {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  line-height: 1.7;
  color: var(--kleur-tekst);
  padding: 1rem 1rem;
  white-space: pre;
  overflow-x: auto;
}

.editor-code .dir {
  color: var(--kleur-gedempt);
}

.editor-code .akkoord {
  color: var(--kleur-primair);
  font-weight: 700;
}

.editor-pijl {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  flex: 0 0 auto;
}

.pijl-symbool {
  font-size: 2rem;
  color: var(--kleur-primair);
  line-height: 1;
}

.pijl-tekst {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--kleur-primair);
  white-space: nowrap;
}

/* ===== SECTIES ALGEMEEN ===== */
.sectie-donker {
  background: var(--kleur-zacht);
  border-top: 1px solid var(--kleur-rand);
  border-bottom: 1px solid var(--kleur-rand);
  padding: 4rem 0;
}

.sectie-licht {
  background: var(--kleur-achtergrond);
  border-top: 1px solid var(--kleur-rand);
  padding: 4rem 0;
}

.sectie-kop {
  font-family: var(--font-koppen);
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 800;
  color: var(--kleur-tekst);
  text-align: center;
  margin-bottom: 2.5rem;
  letter-spacing: -0.01em;
}

/* ===== KAARTEN ===== */
.kaarten-rij {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.kaart {
  background: var(--kleur-achtergrond);
  border: 1px solid var(--kleur-rand);
  border-radius: 12px;
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.sectie-donker .kaart {
  background: var(--kleur-achtergrond);
}

.sectie-licht .kaart,
.kaart-voor {
  background: var(--kleur-zacht);
  border: 1px solid var(--kleur-rand);
}

.stap-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  color: var(--kleur-primair);
  text-transform: uppercase;
  font-weight: 700;
}

.kaart h3 {
  font-family: var(--font-koppen);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--kleur-tekst);
  line-height: 1.3;
}

.kaart p {
  font-size: 0.97rem;
  color: var(--kleur-gedempt);
  line-height: 1.6;
}

.kaart-voor h3.accent {
  color: var(--kleur-primair);
}

/* ===== FAQ ===== */
.faq-inner {
  max-width: 720px;
}

.faq-lijst {
  display: flex;
  flex-direction: column;
  gap: 0;
}

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

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

.faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.1rem 0;
  cursor: pointer;
  font-family: var(--font-koppen);
  font-size: 1rem;
  font-weight: 700;
  color: var(--kleur-tekst);
  list-style: none;
  gap: 1rem;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-icoon {
  color: var(--kleur-primair);
  font-size: 1.4rem;
  font-weight: 400;
  flex-shrink: 0;
  line-height: 1;
  transition: transform 0.2s;
}

.faq-item[open] .faq-icoon {
  content: '−';
  transform: rotate(45deg);
}

.faq-item p {
  padding: 0 0 1rem;
  font-size: 0.97rem;
  color: var(--kleur-gedempt);
  line-height: 1.7;
}

/* ===== WACHTLIJST ===== */
.wachtlijst-inner {
  max-width: 640px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

.wachtlijst-sub {
  font-size: 1.05rem;
  color: var(--kleur-gedempt);
  margin-top: -0.5rem;
}

.wachtlijst-form {
  width: 100%;
}

.form-rij {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  width: 100%;
}

.form-rij input {
  flex: 1 1 200px;
  min-width: 0;
  background: var(--kleur-zacht);
  border: 1.5px solid var(--kleur-rand);
  border-radius: var(--radius);
  color: var(--kleur-tekst);
  font-family: var(--font-tekst);
  font-size: 1rem;
  padding: 0.75rem 1.25rem;
  min-height: 44px;
  outline: none;
  transition: border-color 0.2s;
}

.form-rij input:focus {
  border-color: var(--kleur-primair);
}

.form-rij input::placeholder {
  color: var(--kleur-gedempt);
}

.wachtlijst-klein {
  font-size: 0.82rem;
  color: var(--kleur-gedempt);
}

/* ===== FOOTER ===== */
footer[data-pagira-footer] {
  border-top: 1px solid var(--kleur-rand);
  background: var(--kleur-achtergrond);
  padding: 1.75rem 1.25rem;
  text-align: center;
}

.footer-inner p {
  font-size: 0.82rem;
  color: var(--kleur-gedempt);
  line-height: 1.8;
}

.footer-inner a {
  color: var(--kleur-gedempt);
  text-decoration: underline;
}

.footer-inner a:hover {
  color: var(--kleur-primair);
}

/* ===== PRIVACY ===== */
.privacy-inner {
  max-width: 720px;
}

.privacy-inner h1 {
  font-family: var(--font-koppen);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--kleur-tekst);
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

.privacy-inner h2 {
  font-family: var(--font-koppen);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--kleur-tekst);
  margin: 2rem 0 0.5rem;
}

.privacy-inner p {
  color: var(--kleur-gedempt);
  font-size: 0.97rem;
  line-height: 1.7;
  margin-bottom: 0.5rem;
}

.privacy-inner a {
  color: var(--kleur-primair);
}

.dempt {
  color: var(--kleur-gedempt);
  font-size: 0.85rem;
}

/* ===== SR-ONLY ===== */
.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;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 600px) {
  .editor-rij {
    flex-direction: column;
    align-items: stretch;
  }

  .editor-pijl {
    flex-direction: row;
    justify-content: center;
    gap: 0.5rem;
  }

  .pijl-symbool {
    transform: rotate(90deg);
  }

  .form-rij {
    flex-direction: column;
  }

  .form-rij input,
  .form-rij .btn {
    width: 100%;
  }

  .hero {
    padding: 3.5rem 0 2rem;
  }

  .sectie-donker,
  .sectie-licht {
    padding: 3rem 0;
  }
}

