/* ─── NAV ─────────────────────────────────────────── */

.nav { 
  background:#111111;
  border-bottom:1px solid rgba(255,255,255,0.08);
  position:sticky; 
  top:0; 
  z-index:100; 
  width:100%; 
}

.nav-inner { 
  max-width:640px; 
  margin:0 auto; 
  padding:0 1.46rem;
  height:56px; 
  display:flex; 
  align-items:center; 
  justify-content:space-between; 
  gap:1rem; 
}

  /* Dashboard nav — blauw thema */
.jk-dashboard .nav {
  background: #0a3d91;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.jk-dashboard .nav-dropdown-menu { background: #0d47a1; border-color: rgba(255,255,255,0.15); }
.jk-dashboard .mobiel-menu { background: #0a3d91; }

.nav-inner-jk { 
  max-width:640px; 
  margin:0 auto; 
  padding:0 1.46rem; 
  height:56px; 
  display:flex; 
  align-items:center;
  justify-content:space-between; 
  gap:1rem; 
}

.logo a { 
  text-decoration:none; 
}

.nav-rechts { 
  display:flex; 
  align-items:center; 
  gap:0.5rem; 
}

.nav-link { font-size:13px; font-weight:500; color:rgba(255,255,255,0.7); padding:7px 12px; border-radius:6px; background:none; border:none; transition:background .15s,color .15s; white-space:nowrap; font-family:'DM Sans',sans-serif; cursor:pointer; text-decoration:none; }
.nav-link:hover { background:rgba(255,255,255,0.1); color:#fff; text-decoration:none; }
.nav-dropdown { position:relative; }
.nav-dropdown-menu { display:none; position:absolute; top:44px; right:0; background:#1a1a1a; border:1px solid rgba(255,255,255,0.12); border-radius:8px; min-width:200px; box-shadow:0 8px 24px rgba(0,0,0,0.4); z-index:200; overflow:hidden; }
.nav-dropdown-menu.open { display:block; }
.nav-dropdown-menu a { display:block; padding:10px 16px; font-size:13px; color:rgba(255,255,255,0.8); text-decoration:none; }
.nav-dropdown-menu a:hover { background:rgba(255,255,255,0.07); color:#fff; }
.hamburger { background:none; border:1px solid rgba(255,255,255,0.2); border-radius:6px; color:#fff; font-size:16px; padding:6px 10px; cursor:pointer; }
.mobiel-menu { display:none; flex-direction:column; background:#111; border-top:1px solid rgba(255,255,255,0.08); padding:1rem 1.25rem; }
.mobiel-menu.open { display:flex; }
.mobiel-menu a { color:rgba(255,255,255,0.7); text-decoration:none; padding:10px 0; font-size:14px; border-bottom:1px solid rgba(255,255,255,0.06); }
.mobiel-menu a:hover { color:#fff; }
.verberg-mobiel { display:inline-flex; }
@media (max-width:600px) { .verberg-mobiel { display:none; } }

    :root {
      --zwart: #111111;
      --wit: #ffffff;
      --oranje: #da5515;
      --rand: rgba(255,255,255,0.1);
      --tekst: rgba(255,255,255,0.85);
      --tekst-mid: rgba(255,255,255,0.72);
      --tekst-licht: rgba(255,255,255,0.45);
      --font: 'DM Sans', sans-serif;
      --mono: 'DM Mono', monospace;
    }

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

    body {
      font-family: var(--font);
      background: var(--zwart);
      color: var(--tekst);
      min-height: 100vh;
      font-size: 14px;
      line-height: 1.6;
    }

    /* ─── NAV LOGO ────────────────────────────────────── */
    .nav-logo { font-family: 'Work Sans', sans-serif; font-size: 22px; font-weight: 600; color: #fff; text-decoration: none; letter-spacing: -0.5px; }
    .nav-logo span { color: #da5515; }

    /* ─── HERO ────────────────────────────────────────── */
    .hero {
      max-width: 640px;
      margin: 0 auto;
      padding: 2rem 1.46rem 1rem;
    }

    .hero-label {
      font-family: var(--mono);
      font-size: 11px;
      color: var(--oranje);
      letter-spacing: .1em;
      text-transform: uppercase;
      margin-bottom: 1rem;
      display: block;
    }

    .hero h1 {
      font-size: 28px;
      font-weight: 600;
      color: var(--wit);
      line-height: 1.3;
      letter-spacing: -0.5px;
      margin-bottom: 1rem;
    }

    .hero-sub {
      font-size: 14px;
      color: var(--tekst-mid);
      line-height: 1.7;
      max-width: 480px;
    }

    /* ─── NICHES ──────────────────────────────────────── */
    .niches {
      max-width: 640px;
      margin: 0 auto;
      padding: 0;
      display: flex;
      flex-direction: column;
      gap: 1px;
      background: var(--rand);
      border: 1px solid var(--rand);
      border-radius: 10px;
      overflow: hidden;
    }

    .niche-kaart {
      background: var(--zwart);
      padding: 1.25rem 1.5rem;
      cursor: pointer;
      transition: background .15s;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
      border: none;
      width: 100%;
      text-align: left;
    }

    .niche-kaart:hover { background: rgba(255,255,255,0.05); }

    .niche-kaart.actief { background: rgba(255,255,255,0.08); }

    .niche-links { flex: 1; }

    .niche-naam {
      font-size: 15px;
      font-weight: 600;
      color: var(--wit);
      margin-bottom: 2px;
    }

    .niche-sub {
      font-size: 12px;
      color: var(--tekst-mid);
    }

    .niche-rechts {
      display: flex;
      align-items: center;
      gap: 1rem;
      flex-shrink: 0;
    }

    .niche-prijs {
      font-family: var(--mono);
      font-size: 14px;
      color: var(--oranje);
    }

    .niche-radio {
      width: 18px;
      height: 18px;
      border-radius: 50%;
      border: 1.5px solid var(--rand);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      transition: border-color .15s;
    }

    .niche-kaart.actief .niche-radio {
      border-color: var(--oranje);
      background: var(--oranje);
    }

    .niche-radio-dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: #fff;
      opacity: 0;
      transition: opacity .15s;
    }

    .niche-kaart.actief .niche-radio-dot { opacity: 1; }

    /* ─── INCLUSIEF ───────────────────────────────────── */
    .inclusief {
      max-width: 640px;
      margin: 0 auto;
      padding: 1rem 2rem 0;
    }

    .inclusief-tekst {
      font-size: 12px;
      color: var(--tekst-licht);
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .inclusief-tekst span { color: var(--oranje); }

    /* ─── CTA ─────────────────────────────────────────── */
    .cta-wrap {
      max-width: 640px;
      margin: 0 auto;
      padding: 2rem 2rem 6rem;
    }

    .cta-knop {
      width: 100%;
      background: var(--oranje);
      color: #fff;
      font-family: var(--font);
      font-size: 14px;
      font-weight: 600;
      padding: 13px 24px;
      border-radius: 8px;
      border: none;
      cursor: pointer;
      transition: opacity .15s;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .cta-knop:hover { opacity: 0.88; }
    .cta-knop:disabled { opacity: 0.25; cursor: not-allowed; }

    .cta-sub {
      font-size: 11px;
      color: var(--tekst-licht);
      margin-top: 10px;
      text-align: center;
    }

    /* ─── FOOTER ──────────────────────────────────────── */
    footer {
      border-top: 1px solid var(--rand);
      padding: 1.5rem 2rem;
      max-width: 640px;
      margin: 0 auto;
      font-size: 11px;
      color: var(--tekst-licht);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;
      text-align: center;
    }

    footer a { color: var(--tekst-licht); text-decoration: none; }
    footer a:hover { color: var(--oranje); }

    @media (max-width: 600px) {
      .nav-inner { padding: 0 1.25rem; }
      .hero, .inclusief, .cta-wrap { padding-left: 1.25rem; padding-right: 1.25rem; }
      .niches { margin-left: 1.25rem; margin-right: 1.25rem; }
      footer { padding: 1.5rem 1.25rem; }
    }