/* =========================================================
   Sell on Socials | Landingspagina
   Stijl: modern, strak, energiek, mobile-first, social-commerce
   Basis geïnspireerd op Draftr (violet + zachte gradients),
   met één energiek accent (lime) voor CTA's.
   ========================================================= */

:root {
  /* Kleuren */
  --violet-900: #1c1230;
  --violet-700: #4c2dd0;
  --violet-600: #6741e8;
  --violet-500: #8b5cf6;
  --violet-100: #efeafc;
  --violet-050: #f6f3fe;
  --accent: #c6f63a;       /* energiek lime, CTA-accent */
  --accent-600: #aee01f;
  --ink: #16121f;
  --muted: #6b6577;
  --line: #e7e3ef;
  --white: #ffffff;
  --bg: #ffffff;

  /* Vorm */
  --radius: 18px;
  --radius-lg: 26px;
  --maxw: 1120px;
  --shadow-sm: 0 4px 14px rgba(28, 18, 48, .06);
  --shadow-md: 0 18px 40px rgba(28, 18, 48, .10);
  --shadow-lg: 0 30px 70px rgba(76, 45, 208, .18);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 22px; }
.narrow { max-width: 820px; }
.center { text-align: center; }

/* ---------- Typografie ---------- */
h1, h2, h3, h4 { line-height: 1.12; letter-spacing: -0.02em; font-weight: 800; }
h1 { font-size: clamp(2.1rem, 5.2vw, 3.6rem); font-weight: 900; }
h2 { font-size: clamp(1.7rem, 3.6vw, 2.6rem); }
h3 { font-size: 1.12rem; }
.lead { font-size: clamp(1.02rem, 1.6vw, 1.18rem); color: var(--muted); }
.lead--light { color: rgba(255,255,255,.78); }
.micro { font-size: .82rem; color: var(--muted); }

.grad {
  background: linear-gradient(100deg, var(--violet-600), var(--violet-500) 55%, #b07bff);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

.eyebrow {
  display: inline-block; font-size: .8rem; font-weight: 700; letter-spacing: .02em;
  color: var(--violet-700); background: var(--violet-100);
  padding: 7px 14px; border-radius: 999px; margin-bottom: 20px;
}
.eyebrow--light { color: var(--accent); background: rgba(198,246,58,.12); }

/* ---------- Knoppen ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-weight: 700; font-size: .98rem; border-radius: 999px; cursor: pointer;
  padding: 14px 26px; transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  white-space: nowrap; border: 0;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary { background: var(--violet-600); color: #fff; box-shadow: 0 10px 24px rgba(76,45,208,.28); }
.btn--primary:hover { background: var(--violet-700); }
.btn--accent { background: var(--accent); color: #1a2400; box-shadow: 0 10px 24px rgba(174,224,31,.35); }
.btn--accent:hover { background: var(--accent-600); }
.btn--lg { padding: 17px 34px; font-size: 1.05rem; }
.btn--sm { padding: 10px 18px; font-size: .9rem; }
.btn--block { width: 100%; }

.textlink { display: inline-block; margin-top: 18px; font-weight: 700; color: var(--violet-700); }
.textlink:hover { text-decoration: underline; }

/* ---------- Navigatie ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.82); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 66px; }
.nav__logo { font-weight: 900; letter-spacing: -.02em; font-size: 1.12rem; }
.nav__links { display: flex; gap: 26px; font-size: .92rem; font-weight: 500; color: var(--muted); }
.nav__links a:hover { color: var(--ink); }

/* ---------- Secties ---------- */
.section { padding: clamp(56px, 8vw, 100px) 0; }
.section__head { margin-bottom: 44px; }
.section__head .lead { margin-top: 14px; }
.transition-line { margin-top: 40px; font-weight: 700; font-size: 1.15rem; }
.value-anchor { margin-top: 36px; font-size: 1.15rem; }

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(900px 500px at 80% -5%, rgba(139,92,246,.22), transparent 60%),
    radial-gradient(700px 500px at 0% 10%, rgba(103,65,232,.14), transparent 55%),
    var(--violet-050);
  padding: clamp(40px, 6vw, 76px) 0 38px;
}
.hero__inner { display: grid; grid-template-columns: 1.1fr .9fr; gap: 48px; align-items: center; }
.hero__title { margin-bottom: 20px; }
.hero__sub { font-size: clamp(1.05rem, 1.7vw, 1.22rem); color: #46414f; max-width: 36ch; }
.hero__cta { margin-top: 30px; }
.hero__microcopy { font-size: .85rem; color: var(--muted); margin-top: 12px; }

.price-anchor { margin-top: 18px; font-size: .98rem; }
.price-anchor strong { color: var(--violet-700); }
.price-anchor__old { text-decoration: line-through; color: var(--muted); }

.trust-strip { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 8px 20px; margin-top: 26px; font-size: .9rem; font-weight: 600; }

.disclaimer-line { font-size: .78rem; color: var(--muted); margin-top: 30px; max-width: 70ch; }

/* Marktcijfer-strip (urgentie) */
.stats { list-style: none; display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; margin: 34px 0 10px; }
.stats li { flex: 1 1 180px; max-width: 240px; background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 20px 16px; box-shadow: var(--shadow-sm); }
.stats__num { display: block; font-size: 1.7rem; font-weight: 900; letter-spacing: -.02em; color: var(--violet-700); }
.stats__label { display: block; font-size: .82rem; color: var(--muted); margin-top: 4px; }

/* Telefoon-mockups (CSS-placeholder) */
.hero__mockups { position: relative; height: 440px; }
.phone {
  position: absolute; width: 210px; height: 420px; border-radius: 34px;
  background: #0e0a18; padding: 10px; box-shadow: var(--shadow-lg);
}
.phone--back { right: 28%; top: 18px; transform: rotate(-7deg); opacity: .92; }
.phone--front { right: 2%; top: 0; transform: rotate(5deg); }
.phone__screen { width: 100%; height: 100%; border-radius: 26px; overflow: hidden; background: linear-gradient(160deg, #ede7ff, #d9ccff); position: relative; display: flex; flex-direction: column; }
.ui-video { flex: 1; background: linear-gradient(160deg, #8b5cf6, #4c2dd0); display: flex; align-items: center; justify-content: center; }
.ui-play { width: 54px; height: 54px; border-radius: 50%; background: rgba(255,255,255,.9); display: flex; align-items: center; justify-content: center; color: var(--violet-700); font-size: 1.1rem; padding-left: 4px; }
.ui-overlay { position: absolute; bottom: 12px; left: 12px; right: 12px; display: flex; flex-direction: column; gap: 8px; align-items: flex-start; }
.ui-tag { background: rgba(255,255,255,.9); color: var(--violet-700); font-size: .68rem; font-weight: 700; padding: 4px 10px; border-radius: 999px; }
.ui-card { margin: auto 14px; background: #fff; border-radius: 16px; padding: 12px; box-shadow: var(--shadow-sm); width: calc(100% - 28px); }
.ui-card__media { height: 96px; border-radius: 10px; background: linear-gradient(150deg, #ffd66b, #ff7eb3); margin-bottom: 10px; }
.ui-card__row { display: flex; align-items: center; justify-content: space-between; }
.ui-pill { font-weight: 800; color: var(--ink); }
.ui-buy { background: var(--accent); color: #1a2400; font-size: .72rem; font-weight: 800; padding: 6px 12px; border-radius: 999px; }
.ui-buy--wide { width: 100%; text-align: center; padding: 9px; }

/* ---------- Grids & cards ---------- */
.grid { display: grid; gap: 18px; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.grid--5 { grid-template-columns: repeat(5, 1fr); }
.grid--6 { grid-template-columns: repeat(6, 1fr); }

.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px 22px; box-shadow: var(--shadow-sm); position: relative;
  transition: transform .15s ease, box-shadow .15s ease;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.card .ico { font-size: 1.7rem; display: block; margin-bottom: 14px; }
.card h3 { margin-bottom: 7px; }
.card p { font-size: .92rem; color: var(--muted); }
.card--pain { background: var(--violet-050); }
.card--bonus { background: linear-gradient(170deg, #fff, var(--violet-050)); }
.card--soon { border: 1.5px dashed var(--violet-500); background: var(--violet-050); }

.badge {
  display: inline-block; margin-top: 12px; font-size: .72rem; font-weight: 800;
  color: var(--violet-700); background: var(--violet-100); padding: 5px 12px; border-radius: 999px;
}
.badge--light { color: var(--accent); background: rgba(198,246,58,.12); margin: 8px 0 24px; }

/* ---------- Oplossing (split) ---------- */
.section--solution { background: var(--violet-050); }
.split { display: grid; grid-template-columns: .9fr 1.1fr; gap: 48px; align-items: center; }
.split__copy .promise-list { list-style: none; margin: 22px 0 28px; display: grid; gap: 10px; }
.split__copy .promise-list li { padding-left: 28px; position: relative; }
.split__copy .promise-list li::before { content: "✓"; position: absolute; left: 0; color: var(--violet-600); font-weight: 900; }

.guide-mockup {
  aspect-ratio: 3 / 4; border-radius: var(--radius-lg); padding: 32px;
  background: linear-gradient(155deg, var(--violet-600), var(--violet-900));
  box-shadow: var(--shadow-lg); display: flex; flex-direction: column; justify-content: flex-end; gap: 10px;
  color: #fff; position: relative; overflow: hidden;
}
.guide-mockup::before { content: ""; position: absolute; top: -40px; right: -40px; width: 180px; height: 180px; border-radius: 50%; background: radial-gradient(circle, rgba(198,246,58,.45), transparent 70%); }
.guide-mockup__label { font-size: 1.5rem; font-weight: 900; line-height: 1.1; letter-spacing: -.02em; }
.guide-mockup__edition { font-size: .85rem; font-weight: 700; color: var(--accent); }

/* ---------- TOC ---------- */
.section--toc { background: var(--violet-050); }
.toc { list-style: none; display: grid; gap: 4px; counter-reset: none; }
.toc li { display: flex; gap: 18px; align-items: baseline; padding: 16px 18px; background: #fff; border: 1px solid var(--line); border-radius: 14px; }
.toc__num { font-weight: 900; color: var(--violet-500); font-size: 1.05rem; min-width: 30px; }

/* ---------- Donkere sectie ---------- */
.section--dark { background: var(--violet-900); color: #fff; border-radius: 0; }
.section--dark .light { color: #fff; }
.flow-visual { display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap; margin: 30px 0 6px; }
.node { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.16); padding: 12px 22px; border-radius: 14px; font-weight: 700; }
.arrow { color: var(--accent); font-size: 1.3rem; }

/* ---------- Prijsblok ---------- */
.section--price { background: linear-gradient(180deg, #fff, var(--violet-050)); }
.price-card {
  max-width: 480px; margin: 0 auto; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 38px 32px; box-shadow: var(--shadow-md); text-align: left;
  position: relative;
}
.price-card__label { display: inline-block; font-weight: 800; color: var(--violet-700); background: var(--violet-100); padding: 6px 14px; border-radius: 999px; font-size: .82rem; }
/* Waarde-stack */
.value-stack { list-style: none; display: grid; gap: 9px; margin: 20px 0 14px; }
.value-stack li { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; font-size: .94rem; padding-bottom: 9px; border-bottom: 1px dashed var(--line); }
.value-stack li:last-child { border-bottom: 0; padding-bottom: 0; }
.vs-val { color: var(--muted); font-weight: 700; white-space: nowrap; }
.value-total { display: flex; justify-content: space-between; font-weight: 800; padding: 12px 0; border-top: 2px solid var(--ink); margin-bottom: 4px; }
.launch-badge { font-size: .82rem; font-weight: 600; color: var(--violet-700); background: var(--violet-100); padding: 10px 14px; border-radius: 12px; margin: 4px 0 14px; }

.price-card__price { display: flex; align-items: baseline; gap: 12px; margin: 18px 0 6px; }
.price-card__price .amount { font-size: 3.4rem; font-weight: 900; letter-spacing: -.03em; }
.price-card__price .old { font-size: 1.3rem; text-decoration: line-through; color: var(--muted); }
.price-card__note { font-size: .9rem; color: var(--muted); margin-bottom: 22px; }
.checklist { list-style: none; display: grid; gap: 11px; margin-bottom: 26px; }
.checklist li { padding-left: 30px; position: relative; font-size: .96rem; }
.checklist li::before { content: "✓"; position: absolute; left: 0; top: -1px; width: 20px; height: 20px; background: var(--accent); color: #1a2400; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: .7rem; font-weight: 900; }
.price-card__secure { text-align: center; font-size: .85rem; color: var(--muted); margin-top: 14px; }
.price-card__terms { font-size: .76rem; color: var(--muted); margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--line); }

/* ---------- Doelgroep ---------- */
.audience__item { display: flex; flex-direction: column; align-items: center; gap: 10px; text-align: center; background: var(--violet-050); border: 1px solid var(--line); border-radius: 14px; padding: 22px 12px; font-weight: 600; font-size: .9rem; }
.audience__item .ico { font-size: 1.8rem; }

/* ---------- FAQ ---------- */
.section--faq { background: var(--violet-050); }
.faq { display: grid; gap: 12px; }
.faq__item { background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 4px 22px; }
.faq__item summary { cursor: pointer; font-weight: 700; padding: 18px 0; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after { content: "+"; font-size: 1.4rem; color: var(--violet-600); font-weight: 400; transition: transform .2s ease; }
.faq__item[open] summary::after { transform: rotate(45deg); }
.faq__item p { padding-bottom: 20px; color: var(--muted); font-size: .95rem; }

/* ---------- Laatste CTA ---------- */
.section--final { background: var(--violet-050); }
.section--final .btn { margin-top: 12px; }

/* ---------- Footer ---------- */
.footer { background: var(--violet-900); color: rgba(255,255,255,.7); padding: 60px 0 40px; }
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 32px; padding-bottom: 36px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer .nav__logo { color: #fff; }
.footer__col h4 { color: #fff; font-size: .92rem; margin-bottom: 14px; }
.footer__col a { display: block; font-size: .9rem; padding: 5px 0; color: rgba(255,255,255,.7); }
.footer__col a:hover { color: #fff; }
.footer__disclaimer { padding-top: 26px; }
.footer__disclaimer p { font-size: .78rem; color: rgba(255,255,255,.55); max-width: 80ch; }
.footer__disclaimer .micro { margin-top: 14px; color: rgba(255,255,255,.4); }

/* ---------- Sticky mobiele CTA ---------- */
.sticky-cta {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 60;
  display: none; align-items: center; justify-content: space-between; gap: 14px;
  background: #fff; border-top: 1px solid var(--line); padding: 12px 18px;
  box-shadow: 0 -6px 24px rgba(28,18,48,.10);
}
.sticky-cta__price strong { font-size: 1.25rem; }
.sticky-cta__price span { font-size: .78rem; color: var(--muted); }
.sticky-cta .btn { flex: 1; max-width: 200px; }

/* =========================================================
   RESPONSIVE | mobile-first aanpassingen
   ========================================================= */
@media (max-width: 960px) {
  .nav__links { display: none; }
  .hero__inner { grid-template-columns: 1fr; gap: 36px; }
  .hero__mockups { height: 360px; margin-inline: auto; }
  .hero__sub { max-width: none; }
  .split { grid-template-columns: 1fr; gap: 32px; }
  .split__media { max-width: 340px; margin-inline: auto; }
  .grid--5, .grid--6 { grid-template-columns: repeat(3, 1fr); }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .grid--3, .grid--4, .grid--5, .grid--6 { grid-template-columns: 1fr; }
  .grid--6.audience { grid-template-columns: 1fr 1fr; }
  .hero { padding-top: 30px; }
  .hero__mockups { height: 320px; transform: scale(.9); }
  .price-card { padding: 28px 22px; }
  .price-card__price .amount { font-size: 2.8rem; }
  .footer__grid { grid-template-columns: 1fr; gap: 24px; }

  /* Sticky CTA zichtbaar op mobiel; ruimte onderaan zodat hij niets overlapt */
  .sticky-cta { display: flex; }
  body { padding-bottom: 74px; }
}
