@import url('https://fonts.googleapis.com/css2?family=Archivo:wght@700;800;900&family=Archivo+Black&family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400;1,500&display=swap');

/* ===========================
   RESET & BASE
=========================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: #0A0A0A;
  background: #FFFFFF;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

/* ===========================
   VARIABLES
=========================== */
:root {
  --purple: #7C3AED;
  --purple-d: #5B21B6;
  --orange: #E8590C;
  --dark: #0A0A0A;
  --mid: #3D3D3D;
  --muted: #767676;
  --border: #E5E5E5;
  --surface: #F5F5F5;
  --white: #FFFFFF;
  --max: 1200px;
  --ease: 0.2s ease;
  /* TikTok-brandkleuren: roze = conversie (gids-CTA's), cyan = decoratie op donker */
  --tt-cyan: #25F4EE;
  --tt-pink: #FE2C55;
  --cta: #E6224A;
  --cta-d: #C4183D;
  --ink: #07070C;
  --g50: #F7F7F9;
}
[id] { scroll-margin-top: 86px; }

/* ===========================
   LAYOUT
=========================== */
.container { max-width: var(--max); margin: 0 auto; padding: 0 24px; }
.narrow { max-width: 720px; margin: 0 auto; padding: 0 24px; }

/* ===========================
   TOP BAR (disclaimer)
=========================== */
.topbar {
  background: #0A0A0A;
  color: rgba(255,255,255,0.7);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: 7px 0;
  text-align: center;
}
.topbar a { color: rgba(255,255,255,0.9); text-decoration: underline; }
.topbar strong { color: rgba(255,255,255,0.9); }
.topbar--sale {
  background: var(--ink);
  color: rgba(255,255,255,0.88);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 9px 0;
  letter-spacing: 0.01em;
  position: relative;
}
.topbar--sale::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--tt-cyan), var(--purple) 45%, var(--tt-pink));
  opacity: 0.85;
}

/* ===========================
   NAVIGATION
=========================== */
.nav {
  position: sticky;
  top: 0;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  z-index: 100;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 32px;
}
.logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  flex-shrink: 0;
}
.logo-name {
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--dark);
}
.logo-name em { font-style: normal; color: var(--purple); }
.logo-sub {
  font-size: 0.6rem;
  color: var(--muted);
  font-weight: 400;
  letter-spacing: 0.04em;
  margin-top: 2px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
}
.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--mid);
  padding: 6px 12px;
  border-radius: 6px;
  transition: all var(--ease);
}
.nav-links a:hover { color: var(--dark); background: var(--surface); }
.nav-links a.active { color: var(--purple); }
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  background: var(--cta);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  border-radius: 8px;
  transition: background var(--ease), box-shadow var(--ease);
  flex-shrink: 0;
}
.nav-cta:hover { background: var(--cta-d); box-shadow: 0 4px 14px rgba(230,34,74,0.3); }
.ham {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  border: none;
  background: none;
}
.ham span { display: block; width: 22px; height: 2px; background: var(--dark); border-radius: 2px; transition: var(--ease); }
.mob-nav {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: white;
  z-index: 200;
  padding: 24px;
  flex-direction: column;
  gap: 8px;
}
.mob-nav.open { display: flex; }
.mob-close {
  align-self: flex-end;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 4px 8px;
  color: var(--mid);
  background: none;
  border: none;
  margin-bottom: 16px;
}
.mob-nav a {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--dark);
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}

/* ===========================
   LAUNCH ANNOUNCEMENT
=========================== */
.launch-announcement {
  background: #0A0A0A;
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.launch-announcement-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  padding: 34px 0;
}
.launch-kicker {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 4px;
  background: rgba(255,107,53,0.16);
  color: #FDBA74;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.launch-announcement h1 {
  font-size: clamp(1.7rem, 3vw, 3rem);
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}
.launch-announcement p {
  max-width: 760px;
  color: rgba(255,255,255,0.72);
  font-size: 1rem;
  line-height: 1.7;
}
.launch-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 8px;
  background: #fff;
  color: #0A0A0A;
  font-size: 0.9rem;
  font-weight: 800;
  white-space: nowrap;
}
.launch-btn:hover { background: #F5F5F5; }

/* ===========================
   BADGES / TAGS
=========================== */
.tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 10px;
  border-radius: 4px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.tag-cat { background: #EDE9FE; color: var(--purple); }
.tag-new { background: #FEF3C7; color: #92400E; }
.tag-hot { background: #FEE2E2; color: #B91C1C; }
.tag-free { background: #DCFCE7; color: #166534; }

/* ===========================
   HOMEPAGE — FEATURED ARTICLE
=========================== */
.featured {
  padding: 48px 0 40px;
  border-bottom: 1px solid var(--border);
}
.featured-inner {
  display: grid;
  grid-template-columns: 1fr 460px;
  gap: 48px;
  align-items: start;
}
.featured-img {
  border-radius: 12px;
  overflow: hidden;
  height: 320px;
  position: relative;
}
.featured-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  position: relative;
}
.img-grad-1 { background: linear-gradient(135deg, #1a0533 0%, #7C3AED 60%, #c084fc 100%); }
.img-grad-2 { background: linear-gradient(135deg, #0f0f0f 0%, #3D3D3D 100%); }
.img-grad-3 { background: linear-gradient(135deg, #1e1b4b 0%, #7C3AED 100%); }
.img-grad-4 { background: linear-gradient(135deg, #0c0c0c 0%, #374151 100%); }
.img-grad-5 { background: linear-gradient(135deg, #1a0533 0%, #5B21B6 100%); }

.featured-content { display: flex; flex-direction: column; gap: 16px; }
.featured-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  color: var(--muted);
}
.featured-title {
  font-size: clamp(1.6rem, 2.5vw, 2.4rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--dark);
}
.featured-title a:hover { color: var(--purple); }
.featured-excerpt {
  font-size: 1rem;
  color: var(--mid);
  line-height: 1.7;
}
.featured-readmore {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--purple);
  margin-top: 4px;
  transition: gap var(--ease);
}
.featured-readmore:hover { gap: 10px; }

/* ===========================
   SECTION HEADERS
=========================== */
.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 36px 0 20px;
}
.section-header h2 {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-header h2::after {
  content: '';
  display: inline-block;
  width: 24px;
  height: 3px;
  background: var(--purple);
  border-radius: 2px;
}
.see-all {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--purple);
  display: flex;
  align-items: center;
  gap: 4px;
}
.see-all:hover { text-decoration: underline; }

/* ===========================
   ARTICLE GRID (cards)
=========================== */
.articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border);
}
.article-card {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  background: var(--white);
  transition: box-shadow var(--ease), transform var(--ease);
}
.article-card:hover {
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transform: translateY(-2px);
}
.card-img {
  height: 160px;
  overflow: hidden;
  position: relative;
}
.card-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
}
.card-body { padding: 20px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.card-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  color: var(--muted);
}
.card-title {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: -0.01em;
  color: var(--dark);
  flex: 1;
}
.article-card:hover .card-title { color: var(--purple); }
.card-excerpt {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.6;
}
.card-footer {
  padding: 0 20px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.78rem;
  color: var(--muted);
}
.read-more {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--purple);
  display: flex;
  align-items: center;
  gap: 4px;
}

/* ===========================
   ARTICLES — LIST STYLE
=========================== */
.articles-list { display: flex; flex-direction: column; }
.list-item {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}
.list-item:last-child { border-bottom: none; }
.list-thumb {
  width: 100px;
  height: 68px;
  border-radius: 6px;
  overflow: hidden;
  flex-shrink: 0;
}
.list-thumb-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}
.list-content { display: flex; flex-direction: column; gap: 6px; }
.list-title {
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.4;
  color: var(--dark);
}
.list-item:hover .list-title { color: var(--purple); }
.list-meta { font-size: 0.75rem; color: var(--muted); }

/* ===========================
   EBOOK BANNER
=========================== */
.ebook-banner {
  background: #0A0A0A;
  border-radius: 12px;
  padding: 40px 48px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
  margin: 40px 0;
}
.ebook-banner h3 {
  font-size: 1.4rem;
  font-weight: 800;
  color: white;
  line-height: 1.3;
  margin-bottom: 8px;
}
.ebook-banner p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
}
.ebook-banner-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 10px;
  background: rgba(124,58,237,0.3);
  border: 1px solid rgba(124,58,237,0.5);
  border-radius: 4px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #C4B5FD;
  margin-bottom: 12px;
}
.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: white;
  color: var(--dark);
  font-size: 0.875rem;
  font-weight: 700;
  border-radius: 8px;
  transition: all var(--ease);
  white-space: nowrap;
  flex-shrink: 0;
}
.btn-white:hover { background: #F5F5F5; }
.btn-purple {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: var(--cta);
  color: white;
  font-size: 0.875rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  border-radius: 8px;
  transition: all var(--ease);
  white-space: nowrap;
}
.btn-purple:hover { background: var(--cta-d); box-shadow: 0 4px 14px rgba(230,34,74,0.3); }
.btn-purple-lg {
  padding: 15px 30px;
  font-size: 1rem;
}
.btn-outline-dark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: transparent;
  color: white;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.25);
  transition: all var(--ease);
  white-space: nowrap;
}
.btn-outline-dark:hover { border-color: rgba(255,255,255,0.6); background: rgba(255,255,255,0.05); }

/* ===========================
   NEWSLETTER
=========================== */
.newsletter-section {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 56px 0;
  margin: 40px 0 0;
}
.newsletter-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.newsletter-text h2 {
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}
.newsletter-text p { color: var(--muted); font-size: 0.95rem; }
.newsletter-form { display: flex; flex-direction: column; gap: 10px; }
.nl-row { display: flex; gap: 8px; }
.nl-input {
  flex: 1;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.9rem;
  outline: none;
  background: white;
  transition: border-color var(--ease);
}
.nl-input:focus { border-color: var(--purple); }
.nl-note { font-size: 0.75rem; color: var(--muted); }
.nl-success { display: none; padding: 16px; background: #F0FDF4; border: 1px solid #BBF7D0; border-radius: 8px; color: #166534; font-size: 0.9rem; font-weight: 600; }

/* ===========================
   FOOTER
=========================== */
.footer {
  position: relative;
  background: var(--ink);
  padding: 42px 0 20px;
  overflow: hidden;
  border-top: 2px solid transparent;
  border-image: linear-gradient(90deg, var(--tt-cyan), var(--purple) 45%, var(--tt-pink)) 1;
}
.footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(480px 260px at 92% 0%, rgba(254,44,85,0.07), transparent 65%),
    radial-gradient(420px 240px at 4% 100%, rgba(37,244,238,0.04), transparent 60%);
  pointer-events: none;
}
.footer > .container { position: relative; z-index: 1; }
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1.25fr 1.25fr 0.7fr;
  gap: 40px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255,255,255,0.09);
  margin-bottom: 16px;
}
.footer-brand { max-width: 320px; }
.footer-brand .logo-name {
  color: white;
  font-size: 1.15rem;
  display: block;
  margin-bottom: 8px;
  text-shadow: -2px -1px 0 rgba(37,244,238,0.35), 2px 1px 0 rgba(254,44,85,0.35);
}
.footer-brand p { font-size: 0.8rem; color: rgba(255,255,255,0.55); line-height: 1.6; margin-bottom: 12px; }
.footer-disc {
  padding: 8px 12px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 8px;
  font-size: 0.68rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.5;
}
.footer-col h3 {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Archivo', 'Plus Jakarta Sans', sans-serif;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 12px;
}
.footer-col h3::before {
  content: '';
  width: 14px;
  height: 3px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--tt-cyan), var(--tt-pink));
  flex-shrink: 0;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 7px; }
.footer-top .footer-col:nth-child(2) .footer-links {
  display: block;
  columns: 2;
  column-gap: 24px;
}
.footer-top .footer-col:nth-child(2) .footer-links li {
  break-inside: avoid;
  margin-bottom: 7px;
}
.footer-links a {
  position: relative;
  display: inline-block;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--ease), transform var(--ease);
}
.footer-links a:hover { color: #fff; transform: translateX(4px); }
.footer-links a::before {
  content: '→';
  position: absolute;
  left: -16px;
  color: var(--tt-pink);
  opacity: 0;
  transition: opacity var(--ease);
}
.footer-links a:hover::before { opacity: 1; }
/* Footer nieuwsbrief-inschrijving */
.footer-nl .ft-sub {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.55;
  margin-bottom: 12px;
}
.footer-nl .ft-sub strong { color: rgba(255,255,255,0.85); font-weight: 700; }
.ft-row { display: flex; gap: 6px; }
.ft-input {
  flex: 1;
  min-width: 0;
  padding: 10px 13px;
  border-radius: 9px;
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.05);
  color: #fff;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.84rem;
  outline: none;
  transition: border-color var(--ease), background var(--ease);
}
.ft-input::placeholder { color: rgba(255,255,255,0.35); }
.ft-input:focus { border-color: var(--tt-pink); background: rgba(255,255,255,0.08); }
.ft-btn {
  padding: 10px 16px;
  border-radius: 9px;
  border: none;
  background: var(--tt-pink);
  color: #fff;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 0.84rem;
  cursor: pointer;
  flex-shrink: 0;
  transition: background var(--ease), box-shadow var(--ease);
}
.ft-btn:hover { background: var(--cta); box-shadow: 0 4px 14px rgba(254,44,85,0.3); }
.ft-btn:disabled { opacity: 0.6; cursor: wait; }
.ft-note { font-size: 0.68rem; color: rgba(255,255,255,0.38); margin-top: 8px; }
.ft-ok {
  display: none;
  font-size: 0.82rem;
  font-weight: 600;
  color: #4ADE80;
  padding: 10px 13px;
  background: rgba(74,222,128,0.08);
  border: 1px solid rgba(74,222,128,0.25);
  border-radius: 9px;
  line-height: 1.5;
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.42);
}
.footer-bottom a { transition: color var(--ease); }
.footer-bottom a:hover { color: rgba(255,255,255,0.85) !important; }

/* ===========================
   ARTICLE PAGE
=========================== */
.article-header {
  position: relative;
  background: var(--white);
  padding: 48px 0 0;
  border-bottom: none;
}
.article-header > .narrow, .article-header > .container { position: relative; z-index: 1; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 26px;
}
.breadcrumb a { color: var(--muted); transition: color var(--ease); }
.breadcrumb a:hover { color: var(--purple); }
.breadcrumb span { color: var(--border); }
.breadcrumb span:last-child { color: var(--mid); }
.article-title {
  font-family: 'Archivo', 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(2rem, 4.6vw, 3.1rem);
  font-weight: 900;
  line-height: 1.07;
  letter-spacing: -0.035em;
  color: var(--dark);
  margin-bottom: 26px;
  max-width: 820px;
  text-wrap: balance;
}
.article-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.84rem;
  color: var(--muted);
  flex-wrap: wrap;
  padding: 16px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.article-meta strong { color: var(--dark); font-weight: 700; }
.meta-sep { color: var(--border); }
/* Hero-illustratie boven een artikel. De SVG's hebben een viewBox van 1200x400,
   dus 3/1 laat ze exact passen zonder bijsnijden. Op smalle schermen wordt de
   tekst in de illustratie onleesbaar klein; daar tonen we hem niet. */
.article-cover { display: none; }
@media (min-width: 760px) {
  .article-cover {
    display: block;
    position: relative;
    width: 100%;
    aspect-ratio: 3 / 1;
    margin-top: 28px;
    border-radius: 16px;
    overflow: hidden;
    background: #0A0A12;
  }
  .article-cover svg { display: block; width: 100%; height: 100%; }
}
.article-body {
  font-size: 1.05rem;
  line-height: 1.85;
  color: #1A1A1A;
  padding-top: 40px;
}
.article-body > p:first-of-type {
  font-size: 1.22rem;
  line-height: 1.7;
  color: var(--mid);
}
.article-body p { margin-bottom: 1.6rem; }
.article-body h2 {
  font-family: 'Archivo', 'Plus Jakarta Sans', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.025em;
  color: var(--dark);
  margin: 3.4rem 0 1.1rem;
}
.article-body h3 {
  font-family: 'Archivo', 'Plus Jakarta Sans', sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.015em;
  color: var(--dark);
  margin: 2.2rem 0 0.75rem;
}
.article-body ul, .article-body ol {
  padding-left: 1.4rem;
  margin-bottom: 1.6rem;
}
.article-body li { margin-bottom: 0.6rem; }
.article-body li::marker { color: var(--purple); }
.article-body strong { font-weight: 700; color: var(--dark); }
.article-body a {
  color: var(--purple);
  text-decoration: underline;
  text-decoration-color: rgba(124,58,237,0.35);
  text-underline-offset: 3px;
  transition: text-decoration-color var(--ease);
}
.article-body a:hover { text-decoration-color: var(--purple); }
.callout {
  background: var(--g50);
  border: none;
  border-left: 3px solid var(--purple);
  padding: 20px 26px;
  border-radius: 0 10px 10px 0;
  margin: 2.2rem 0;
}
.callout p { color: var(--mid); margin: 0; font-size: 0.97rem; line-height: 1.75; }
.callout strong { color: var(--dark); }
.article-ebook-cta {
  background: linear-gradient(var(--ink), var(--ink)) padding-box,
              linear-gradient(120deg, rgba(37,244,238,0.65), rgba(124,58,237,0.45) 45%, rgba(254,44,85,0.75)) border-box;
  border: 1px solid transparent;
  border-radius: 16px;
  padding: 32px;
  margin: 3rem 0;
  display: flex;
  align-items: center;
  gap: 24px;
}
.article-ebook-cta-text h3 {
  font-size: 1.1rem;
  font-weight: 800;
  color: white;
  margin-bottom: 6px;
}
.article-ebook-cta-text p {
  font-size: 0.87rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.5;
  margin: 0;
}
.article-ebook-icon { font-size: 2.5rem; flex-shrink: 0; }

/* Related articles */
.related { padding: 48px 0; border-top: 1px solid var(--border); margin-top: 32px; }
.related h2 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.related h2::after { content: ''; display: inline-block; width: 24px; height: 3px; background: var(--purple); border-radius: 2px; }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 1024px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 26px; }
  .footer-top .footer-col:nth-child(2) { grid-column: 1 / -1; }
  .launch-announcement-inner { grid-template-columns: 1fr; gap: 20px; }
  .launch-btn { justify-self: start; }
  .featured-inner { grid-template-columns: 1fr; gap: 24px; }
  .featured-img { height: 240px; order: -1; }
  .articles-grid { grid-template-columns: repeat(2, 1fr); }
  .newsletter-inner { grid-template-columns: 1fr; gap: 28px; }
  .related-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .ham { display: flex; }
  .articles-grid { grid-template-columns: 1fr; }
  .ebook-banner { grid-template-columns: 1fr; gap: 20px; padding: 28px 24px; }
  .related-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 22px; }
  .footer-brand { grid-column: 1 / -1; max-width: none; }
  .footer-nl { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; gap: 6px; text-align: center; }
  .article-title { font-size: 1.9rem; }
  .article-body { padding-top: 30px; }
  .article-body > p:first-of-type { font-size: 1.12rem; }
  .article-ebook-cta { flex-direction: column; gap: 16px; }
  .nl-row { flex-direction: column; }
}

/* ===========================
   ARTIKEL OVERZICHT GRID
=========================== */
.compact-section {
  background: var(--g50);
  padding: 56px 0 64px;
  border-top: 1px solid var(--border);
}
.compact-section .section-header { padding-top: 0; padding-bottom: 28px; }

.compact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.ctile {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0;
  display: flex;
  gap: 0;
  align-items: stretch;
  text-decoration: none;
  overflow: hidden;
  transition: box-shadow .2s ease, transform .2s ease, border-color .2s ease;
}
.ctile:hover {
  box-shadow: 0 6px 28px rgba(124,58,237,.13);
  transform: translateY(-2px);
  border-color: rgba(124,58,237,.25);
}
/* coloured accent strip on left */
.ctile-accent {
  width: 5px;
  flex-shrink: 0;
}
.ca-hot  { background: linear-gradient(180deg,#EF4444,#DC2626); }
.ca-cat  { background: linear-gradient(180deg,#7C3AED,#5B21B6); }
.ca-live { background: linear-gradient(180deg,#EF4444,#DC2626); }
.ca-ana  { background: linear-gradient(180deg,#FF6B35,#E85A28); }
.ca-reg  { background: linear-gradient(180deg,#22C55E,#16A34A); }

.ctile-thumb {
  width: 110px;
  flex-shrink: 0;
  overflow: hidden;
  position: relative;
}
.ctile-thumb svg { display: block; width: 100%; height: 100%; }

.ctile-body {
  flex: 1;
  min-width: 0;
  padding: 18px 18px 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.ctile-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 3px 9px;
  border-radius: 4px;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: 8px;
  width: fit-content;
}
.cb-hot  { background: #FEE2E2; color: #B91C1C; }
.cb-cat  { background: #EDE9FE; color: #5B21B6; }
.cb-live { background: #FEE2E2; color: #B91C1C; }
.cb-ana  { background: #FFF0EB; color: #C2410C; }
.cb-reg  { background: #DCFCE7; color: #15803D; }

.ctile-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: .95rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.4;
  margin-bottom: 10px;
  flex: 1;
  transition: color .18s ease;
}
.ctile:hover .ctile-title { color: var(--purple); }

.ctile-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.ctile-date {
  font-size: .72rem;
  color: var(--muted);
}
.ctile-arrow {
  font-size: .8rem;
  font-weight: 700;
  color: var(--purple);
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity .18s ease, transform .18s ease;
}
.ctile:hover .ctile-arrow { opacity: 1; transform: translateX(0); }

@media(max-width:768px){
  .compact-grid { grid-template-columns: 1fr; }
  .ctile-thumb { width: 88px; }
}

/* ===========================
   HOMEPAGE V2 — HERO
=========================== */
.hero {
  position: relative;
  background: var(--ink);
  color: #fff;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.045) 1px, transparent 1px);
  background-size: 44px 44px;
  -webkit-mask-image: radial-gradient(ellipse 90% 85% at 60% 15%, #000 25%, transparent 75%);
  mask-image: radial-gradient(ellipse 90% 85% at 60% 15%, #000 25%, transparent 75%);
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(620px 360px at 84% 28%, rgba(254,44,85,0.20), transparent 65%),
    radial-gradient(520px 330px at 10% 88%, rgba(37,244,238,0.11), transparent 60%),
    radial-gradient(720px 430px at 45% -12%, rgba(124,58,237,0.24), transparent 65%);
  pointer-events: none;
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 44px;
  align-items: center;
  padding: 64px 0 60px;
}
.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 100px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  margin-bottom: 22px;
}
.hk-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #4ADE80;
  box-shadow: 0 0 0 0 rgba(74,222,128,0.6);
  animation: hkPulse 2.2s ease-out infinite;
}
@keyframes hkPulse {
  0% { box-shadow: 0 0 0 0 rgba(74,222,128,0.55); }
  70% { box-shadow: 0 0 0 9px rgba(74,222,128,0); }
  100% { box-shadow: 0 0 0 0 rgba(74,222,128,0); }
}
.hero-title {
  font-family: 'Archivo Black', 'Archivo', 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(2.3rem, 4.6vw, 3.9rem);
  line-height: 1.04;
  letter-spacing: -0.015em;
  margin-bottom: 20px;
}
.tt-echo {
  white-space: nowrap;
  text-shadow: -4px -2px 0 rgba(37,244,238,0.85), 4px 2px 0 rgba(254,44,85,0.85);
}
.hero-sub {
  max-width: 540px;
  color: rgba(255,255,255,0.72);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 30px;
}
.hero-cta-row {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 38px;
}
.btn-hero {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 50px;
  padding: 0 26px;
  border-radius: 10px;
  background: var(--tt-pink);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  box-shadow: 0 8px 28px rgba(254,44,85,0.35);
  transition: transform var(--ease), box-shadow var(--ease), background var(--ease);
}
.btn-hero:hover {
  background: var(--cta);
  transform: translateY(-2px);
  box-shadow: 0 12px 34px rgba(254,44,85,0.45);
}
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.22);
  color: rgba(255,255,255,0.9);
  font-size: 0.95rem;
  font-weight: 700;
  transition: border-color var(--ease), background var(--ease);
}
.btn-ghost:hover { border-color: rgba(37,244,238,0.6); background: rgba(37,244,238,0.06); }
.hero-stats {
  display: flex;
  align-items: stretch;
  gap: 14px 0;
  flex-wrap: wrap;
}
.hstat {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 0 26px;
  border-left: 1px solid rgba(255,255,255,0.14);
}
.hstat:first-child { padding-left: 0; border-left: none; }
.hstat strong {
  font-family: 'Archivo', 'Plus Jakarta Sans', sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.hstat span { font-size: 0.78rem; color: rgba(255,255,255,0.55); }

/* Telefoon-mockup */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}
.phone {
  position: relative;
  width: 256px;
  height: 520px;
  border-radius: 42px;
  background: #101016;
  padding: 10px;
  border: 1px solid rgba(255,255,255,0.16);
  box-shadow: 0 0 0 7px #1A1A22, 0 40px 90px rgba(0,0,0,0.55), 0 0 100px rgba(254,44,85,0.14);
  transform: rotate(3deg);
}
.phone-screen {
  position: relative;
  height: 100%;
  border-radius: 33px;
  overflow: hidden;
  background: linear-gradient(168deg, #1E0A3C 0%, #4C1D95 42%, #BE185D 76%, #F97316 105%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 14px;
}
.ps-lamp {
  position: absolute;
  top: 24%; left: 50%;
  transform: translateX(-50%);
  width: 130px; height: 130px;
  border-radius: 50%;
  background: radial-gradient(circle, #FDBA74 0%, rgba(244,63,94,0.55) 52%, transparent 72%);
  filter: blur(2px);
}
.ps-top {
  position: absolute;
  top: 14px; left: 14px; right: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.ps-live {
  background: var(--tt-pink);
  color: #fff;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  padding: 4px 9px;
  border-radius: 5px;
}
.ps-viewers {
  background: rgba(0,0,0,0.4);
  color: rgba(255,255,255,0.85);
  font-size: 0.62rem;
  font-weight: 600;
  padding: 4px 9px;
  border-radius: 5px;
  backdrop-filter: blur(4px);
}
.ps-hearts {
  position: absolute;
  right: 16px; bottom: 130px;
  display: flex;
  flex-direction: column;
  pointer-events: none;
}
.ps-hearts span {
  font-size: 1.1rem;
  opacity: 0;
  animation: heartUp 3.6s ease-in infinite;
}
.ps-hearts span:nth-child(2) { animation-delay: 1.2s; font-size: 0.9rem; }
.ps-hearts span:nth-child(3) { animation-delay: 2.4s; }
@keyframes heartUp {
  0% { opacity: 0; transform: translateY(0) scale(0.7); }
  12% { opacity: 1; }
  100% { opacity: 0; transform: translateY(-150px) scale(1.15) rotate(-8deg); }
}
.ps-caption {
  color: #fff;
  font-size: 0.78rem;
  font-weight: 600;
  text-shadow: 0 1px 6px rgba(0,0,0,0.5);
  margin-bottom: 10px;
}
.ps-product {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.96);
  border-radius: 13px;
  padding: 10px;
  box-shadow: 0 6px 24px rgba(0,0,0,0.35);
}
.ps-thumb {
  width: 40px; height: 40px;
  border-radius: 9px;
  background: linear-gradient(135deg, #FDE68A, #FB923C);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.ps-info { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 1px; }
.ps-info strong { color: #0A0A0A; font-size: 0.76rem; font-weight: 800; white-space: nowrap; }
.ps-info span { color: #767676; font-size: 0.64rem; font-weight: 600; white-space: nowrap; }
.ps-buy {
  background: var(--tt-pink);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 8px 12px;
  border-radius: 8px;
  flex-shrink: 0;
}
.fpill {
  position: absolute;
  padding: 9px 14px;
  border-radius: 11px;
  background: rgba(16,16,22,0.92);
  border: 1px solid rgba(255,255,255,0.16);
  color: #fff;
  font-size: 0.74rem;
  font-weight: 700;
  white-space: nowrap;
  box-shadow: 0 12px 32px rgba(0,0,0,0.45);
  backdrop-filter: blur(6px);
}
.fp1 {
  top: 86px; left: -86px;
  border-color: rgba(37,244,238,0.45);
  animation: fpFloat 5.5s ease-in-out infinite alternate;
}
.fp2 {
  bottom: 178px; right: -74px;
  border-color: rgba(254,44,85,0.5);
  animation: fpFloat 6.5s 0.8s ease-in-out infinite alternate;
}
@keyframes fpFloat {
  from { transform: translateY(-6px); }
  to { transform: translateY(8px); }
}

/* Hero entree-animatie */
@keyframes rise {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: none; }
}
.hero-copy > * { animation: rise 0.65s cubic-bezier(0.2, 0.7, 0.3, 1) both; }
.hero-copy > *:nth-child(2) { animation-delay: 0.07s; }
.hero-copy > *:nth-child(3) { animation-delay: 0.14s; }
.hero-copy > *:nth-child(4) { animation-delay: 0.21s; }
.hero-copy > *:nth-child(5) { animation-delay: 0.3s; }
@keyframes phoneIn {
  from { opacity: 0; transform: translateY(28px) rotate(7deg); }
  to { opacity: 1; transform: translateY(0) rotate(3deg); }
}
.phone { animation: phoneIn 0.85s 0.25s cubic-bezier(0.2, 0.7, 0.3, 1) both; }

/* ===========================
   HOMEPAGE V2 — KIES JE STARTPUNT
=========================== */
.paths {
  padding: 60px 0 56px;
  background: #fff;
  border-bottom: 1px solid var(--border);
}
.paths-head { max-width: 620px; margin-bottom: 34px; }
.paths-kicker {
  display: inline-flex;
  padding: 4px 12px;
  border-radius: 100px;
  background: #FFF0F3;
  color: var(--cta);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.paths-head h2 {
  font-family: 'Archivo', 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(1.6rem, 2.6vw, 2.1rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  margin-bottom: 10px;
}
.paths-head p { color: var(--muted); font-size: 0.97rem; line-height: 1.7; }
.paths-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.path-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 26px 24px;
  overflow: hidden;
  transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
}
.path-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--pc, var(--purple));
}
.path-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(10,10,15,0.09);
  border-color: transparent;
}
.pc-seller { --pc: linear-gradient(90deg, #FE2C55, #F97316); --pc-tint: #FFF0F3; }
.pc-creator { --pc: linear-gradient(90deg, #7C3AED, #25F4EE); --pc-tint: #F3EFFE; }
.pc-buyer { --pc: linear-gradient(90deg, #16A34A, #4ADE80); --pc-tint: #EFFAF3; }
.path-card::before { background: var(--pc); }
.path-icon {
  width: 46px; height: 46px;
  border-radius: 12px;
  background: var(--pc-tint, var(--surface));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 16px;
}
.path-card h3 {
  font-family: 'Archivo', 'Plus Jakarta Sans', sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}
.path-card > p {
  color: var(--muted);
  font-size: 0.87rem;
  line-height: 1.6;
  margin-bottom: 16px;
  min-height: 42px;
}
.path-links { list-style: none; display: flex; flex-direction: column; }
.path-links li { border-top: 1px solid var(--g50); }
.path-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 2px;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--mid);
  transition: color var(--ease), padding-left var(--ease);
}
.path-links a::after {
  content: '→';
  font-weight: 700;
  color: var(--border);
  transition: color var(--ease), transform var(--ease);
}
.path-links a:hover { color: var(--dark); padding-left: 6px; }
.path-links a:hover::after { color: var(--cta); transform: translateX(3px); }

/* Grote sectiekoppen homepage */
.section-header.sh-big h2 {
  font-family: 'Archivo', 'Plus Jakarta Sans', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.025em;
}

/* ===========================
   HOMEPAGE V2 — GIDS-BANNER
=========================== */
.guide-banner {
  position: relative;
  border-radius: 20px;
  padding: 1px;
  background: linear-gradient(120deg, rgba(37,244,238,0.65), rgba(124,58,237,0.45) 45%, rgba(254,44,85,0.75));
  margin: 48px 0;
}
.guide-inner {
  position: relative;
  border-radius: 19px;
  background: var(--ink);
  padding: 44px 48px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
  overflow: hidden;
}
.guide-inner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(480px 280px at 88% 100%, rgba(254,44,85,0.16), transparent 65%),
              radial-gradient(400px 240px at 4% 0%, rgba(37,244,238,0.09), transparent 60%);
  pointer-events: none;
}
.guide-text { position: relative; }
.guide-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  background: rgba(254,44,85,0.14);
  border: 1px solid rgba(254,44,85,0.4);
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #FDA4B8;
  margin-bottom: 16px;
}
.guide-text h3 {
  font-family: 'Archivo', 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(1.4rem, 2.4vw, 1.85rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  color: #fff;
  line-height: 1.25;
  margin-bottom: 10px;
}
.guide-text > p {
  font-size: 0.93rem;
  color: rgba(255,255,255,0.62);
  line-height: 1.7;
  max-width: 560px;
  margin-bottom: 22px;
}
.guide-note { font-size: 0.78rem; color: rgba(255,255,255,0.45); margin-top: 12px; }
.guide-mock {
  position: relative;
  width: 168px;
  height: 224px;
  flex-shrink: 0;
}
.gm-page {
  position: absolute;
  inset: 0;
  border-radius: 12px;
  background: #15151D;
  border: 1px solid rgba(255,255,255,0.1);
}
.gm-p2 { transform: rotate(5deg) translateX(9px); }
.gm-p3 { transform: rotate(10deg) translateX(18px); opacity: 0.6; }
.gm-cover {
  position: absolute;
  inset: 0;
  border-radius: 12px;
  background: linear-gradient(160deg, #16161E 0%, #23122E 60%, #3B1027 100%);
  border: 1px solid rgba(255,255,255,0.18);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  padding: 20px 18px;
  transform: rotate(-3deg);
  box-shadow: 0 24px 48px rgba(0,0,0,0.5);
  transition: transform var(--ease);
}
.guide-banner:hover .gm-cover { transform: rotate(-5deg) translateY(-4px); }
.gm-cover span {
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  color: var(--tt-cyan);
}
.gm-cover strong {
  font-family: 'Archivo', 'Plus Jakarta Sans', sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.25;
  color: #fff;
  text-shadow: -2px -1px 0 rgba(37,244,238,0.5), 2px 1px 0 rgba(254,44,85,0.5);
}
.gm-cover em {
  font-style: normal;
  font-size: 0.66rem;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
}

/* ===========================
   HOMEPAGE V2 — NIEUWSBRIEF
=========================== */
.nl-points {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 18px;
}
.nl-points li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--mid);
  line-height: 1.5;
}
.nl-points li::before {
  content: '✓';
  flex-shrink: 0;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: #DCFCE7;
  color: #15803D;
  font-size: 0.72rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}
.nl-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 26px;
  box-shadow: 0 12px 36px rgba(10,10,15,0.06);
}

/* ===========================
   HOMEPAGE V2 — RESPONSIVE
=========================== */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 52px; padding: 52px 0; }
  .hero-visual { padding: 0 60px; }
  .fp1 { left: -10px; }
  .fp2 { right: -6px; }
  .paths-grid { grid-template-columns: 1fr; }
  .path-card > p { min-height: 0; }
  .guide-inner { grid-template-columns: 1fr; gap: 36px; }
  .guide-mock { justify-self: center; }
}
@media (max-width: 768px) {
  .hero-grid { padding: 40px 0 46px; }
  .hero-cta-row .btn-hero, .hero-cta-row .btn-ghost { width: 100%; justify-content: center; }
  .hstat { padding: 0 16px; }
  .hstat strong { font-size: 1.1rem; }
  .phone { width: 226px; height: 460px; }
  .fp1 { top: 62px; }
  .fp2 { bottom: 240px; right: -4px; }
  .guide-inner { padding: 32px 24px; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-copy > *, .phone, .fpill, .ps-hearts span, .hk-dot { animation: none !important; }
  .hero-copy > * { opacity: 1; }
}

/* ===========================
   ARTIKEL V2 — LEESBALK & INHOUDSOPGAVE
=========================== */
.readbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 3px;
  z-index: 300;
  pointer-events: none;
}
.readbar span {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--tt-cyan), var(--purple) 55%, var(--tt-pink));
  transition: width 0.1s linear;
}
.toc {
  background: var(--g50);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px 28px;
  margin: 2.2rem 0;
}
.toc-title {
  font-family: 'Archivo', 'Plus Jakarta Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 14px;
}
.toc ol {
  list-style: none;
  padding: 0;
  margin: 0;
  columns: 2;
  column-gap: 32px;
  counter-reset: toc;
}
.toc li {
  counter-increment: toc;
  break-inside: avoid;
  margin-bottom: 0;
}
.toc a {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding: 7px 0;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--mid);
  line-height: 1.4;
  text-decoration: none;
  transition: color var(--ease);
}
.toc a::before {
  content: counter(toc, decimal-leading-zero);
  font-family: 'Archivo', sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--cta);
  flex-shrink: 0;
}
.toc a:hover { color: var(--dark); }
@media (max-width: 640px) {
  .toc ol { columns: 1; }
}
