/* =========================================================================
   SCALE COLLECTIVE — Wokeguy-stijl: donker + vibrant paars, afwisselend licht
   Kleuren en fonts pas je bovenaan aan onder :root
   ========================================================================= */

:root {
  /* Donker */
  --bg:         #0b0b0f;
  --bg-2:       #101015;
  --surface:    #16161d;
  --surface-2:  #1d1d26;
  --line:       rgba(255,255,255,.08);
  --line-2:     rgba(255,255,255,.14);
  --text:       #f4f3f7;
  --muted:      #a1a0ad;
  --muted-2:    #6f6e7b;

  /* Licht (voor lichte secties) */
  --light:      #f4f2ee;
  --light-card: #ffffff;
  --ink:        #14131a;
  --ink-muted:  #5f5d6b;
  --line-light: rgba(20,19,26,.10);

  /* Paars accent */
  --violet:     #7c3aed;
  --fuchsia:    #d946ef;
  --pink:       #e879f9;
  --grad:       linear-gradient(100deg, #7c3aed 0%, #b21fd1 52%, #e05fe8 100%);
  --grad-soft:  linear-gradient(100deg, rgba(124,58,237,.9), rgba(217,70,239,.9));
  --violet-glow: rgba(139,63,237,.45);

  /* Typografie */
  --font-head: "Archivo", "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  --container: 1180px;
  --radius: 16px;
  --radius-lg: 22px;
  --round: 46px;
  --ease: cubic-bezier(.22,.61,.36,1);
}

/* --- Reset ---------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0; background: var(--bg); color: var(--text);
  font-family: var(--font-body); font-size: 17px; line-height: 1.6;
  -webkit-font-smoothing: antialiased; overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

h1, h2, h3, h4 {
  font-family: var(--font-head); font-weight: 800; line-height: 1.02;
  letter-spacing: -0.025em; margin: 0 0 .5em;
}
p { margin: 0 0 1em; }

/* (opacity-gate uit de statische site verwijderd — niet nodig/gewenst in WordPress) */

/* --- Layout helpers ------------------------------------------------- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section { padding: 104px 0; position: relative; }
.section--tight { padding: 70px 0; }
.center { text-align: center; }

/* Lichte / donkere secties + afgeronde overgang zoals Wokeguy */
.sec--light { background: var(--light); color: var(--ink); }
.sec--dark  { background: var(--bg); color: var(--text); }
.round-top  { border-radius: var(--round) var(--round) 0 0; margin-top: -1px; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  color: var(--fuchsia); margin-bottom: 20px;
}
.sec--light .eyebrow { color: var(--violet); }

.section-title { font-size: clamp(2.1rem, 5vw, 3.6rem); }
.section-lead { color: var(--muted); font-size: 1.1rem; max-width: 620px; }
.sec--light .section-lead { color: var(--ink-muted); }
.center .section-lead { margin-left: auto; margin-right: auto; }

/* Highlight-box + gradient-tekst (Wokeguy signature) */
.hl {
  background: var(--grad); background-size: 160% 160%;
  color: #fff; padding: .02em .26em; border-radius: 14px;
  display: inline-block; box-decoration-break: clone; -webkit-box-decoration-break: clone;
  animation: hlShift 6s ease infinite;
}
@keyframes hlShift { 0%,100%{background-position:0% 50%} 50%{background-position:100% 50%} }
.grad-text {
  background: var(--grad); background-size: 160% 160%;
  -webkit-background-clip: text; background-clip: text; color: transparent;
  animation: hlShift 6s ease infinite;
}

/* --- Buttons -------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 15px 26px; border-radius: 999px;
  font-weight: 600; font-size: 15.5px; border: 1.5px solid transparent;
  transition: all .22s var(--ease); white-space: nowrap;
}
.btn .arrow { transition: transform .22s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }

.btn--purple {
  background: var(--grad); background-size: 160% 160%; color: #fff;
  box-shadow: 0 12px 34px -12px var(--violet-glow);
}
.btn--purple:hover { transform: translateY(-2px); box-shadow: 0 18px 44px -12px var(--violet-glow); background-position: 100% 50%; }

.btn--ghost { border-color: var(--line-2); color: var(--text); background: rgba(255,255,255,.02); }
.btn--ghost:hover { border-color: var(--fuchsia); color: #fff; }
.sec--light .btn--ghost { border-color: var(--line-light); color: var(--ink); background: transparent; }
.sec--light .btn--ghost:hover { border-color: var(--violet); color: var(--violet); }

.btn--block { width: 100%; justify-content: center; }
.btn--lg { padding: 17px 32px; font-size: 16.5px; }

/* --- Header --------------------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  transition: background .3s ease, border-color .3s ease, backdrop-filter .3s ease;
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled {
  background: rgba(11,11,15,.72); backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%); border-bottom-color: var(--line);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 74px; gap: 20px; }

.logo { display: inline-flex; align-items: center; gap: 11px; font-weight: 800; }
.logo-mark {
  display: grid; place-items: center; width: 38px; height: 38px; border-radius: 11px;
  font-family: var(--font-head); font-size: 20px; font-weight: 800; color: #fff;
  background: var(--grad); box-shadow: 0 8px 20px -8px var(--violet-glow);
}
/* Logo-tekst: eigen urban/hip-hop font (Bungee) — alleen voor het logo */
.logo-word { font-family: "Bungee", var(--font-head); font-size: 17px; letter-spacing: .3px; color: var(--text); line-height: 1; }
.logo-word-accent { color: var(--fuchsia); margin-left: 4px; }
.sec--light .logo-word { color: var(--ink); }

.nav { display: flex; align-items: center; gap: 32px; }
.nav-links { display: flex; align-items: center; gap: 28px; list-style: none; margin: 0; padding: 0; }
.nav-links a { font-size: 15px; color: var(--muted); transition: color .2s ease; }
.nav-links a:hover { color: var(--text); }

.nav-toggle { display: none; width: 44px; height: 44px; border: 1px solid var(--line-2);
  border-radius: 11px; background: transparent; position: relative; }
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: ""; position: absolute; left: 50%; width: 18px; height: 2px; background: var(--text);
  transform: translateX(-50%); transition: .25s var(--ease); border-radius: 2px; }
.nav-toggle span { top: 50%; }
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }

/* --- Hero ----------------------------------------------------------- */
.hero { position: relative; padding: 84px 0 92px; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }

/* Bewegende paarse gloed op de achtergrond */
.hero::before {
  content: ""; position: absolute; z-index: 0; width: 720px; height: 720px;
  right: -160px; top: -220px; border-radius: 50%;
  background: radial-gradient(circle, rgba(139,63,237,.5), rgba(217,70,239,.16) 45%, transparent 70%);
  filter: blur(30px); animation: blob 16s ease-in-out infinite;
}
.hero::after {
  content: ""; position: absolute; z-index: 0; width: 460px; height: 460px;
  left: -180px; bottom: -200px; border-radius: 50%;
  background: radial-gradient(circle, rgba(124,58,237,.28), transparent 70%);
  filter: blur(30px); animation: blob 20s ease-in-out infinite reverse;
}
@keyframes blob {
  0%,100% { transform: translate(0,0) scale(1); }
  33% { transform: translate(-40px,30px) scale(1.12); }
  66% { transform: translate(30px,-20px) scale(.94); }
}
.hero-inner { position: relative; z-index: 1; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 9px; padding: 8px 15px;
  border: 1px solid var(--line-2); border-radius: 999px; font-size: 13px;
  color: var(--muted); margin-bottom: 26px; background: rgba(255,255,255,.03);
}
.hero-badge .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--fuchsia);
  box-shadow: 0 0 0 4px rgba(217,70,239,.22); }
.hero h1 { font-size: clamp(2.7rem, 6vw, 4.6rem); font-weight: 800; }
.hero-lead { font-size: 1.16rem; color: var(--muted); max-width: 500px; margin: 24px 0 34px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 13px; align-items: center; }
.hero-note { font-size: 14px; color: var(--muted-2); margin: 24px 0 0; display: flex; align-items: center; gap: 9px; }
.hero-note::before { content: "→"; color: var(--fuchsia); font-weight: 700; }

/* Hero-visual: zwevende bewijs-kaarten */
.hero-visual { position: relative; z-index: 1; height: 440px; }
.float-card {
  position: absolute; background: var(--surface); border: 1px solid var(--line-2);
  border-radius: 18px; padding: 20px 22px; box-shadow: 0 30px 60px -30px rgba(0,0,0,.7);
  backdrop-filter: blur(6px); animation: float 6s ease-in-out infinite;
}
.float-card .fc-label { font-size: 12.5px; color: var(--muted); }
.float-card .fc-value { font-family: var(--font-head); font-weight: 800; font-size: 1.7rem; margin-top: 4px; letter-spacing: -.02em; }
.float-card .fc-up { color: #58e08a; font-size: 13px; font-weight: 600; margin-top: 3px; display: inline-block; }
.fc-1 { top: 8%; left: 0; animation-delay: 0s; }
.fc-3 { bottom: 4%; right: 2%; animation-delay: -3s; }

/* Zwevende platform-logo's */
.logo-chip {
  position: absolute; width: 54px; height: 54px; border-radius: 16px; background: #fff;
  display: grid; place-items: center; z-index: 2;
  box-shadow: 0 22px 44px -20px rgba(0,0,0,.75); border: 1px solid rgba(255,255,255,.08);
  animation: float 6.5s ease-in-out infinite;
}
.logo-chip svg { width: 28px; height: 28px; display: block; }
.logo-chip.chip-dark { background: #111015; }
.lc-1 { top: 40%; right: 2%;  animation-delay: -.6s; }   /* Google */
.lc-2 { top: 6%;  left: 28%;  animation-delay: -2.4s; }  /* Meta */
.lc-3 { bottom: 30%; left: 1%; animation-delay: -1.4s; } /* TikTok */
.lc-4 { top: 46%; left: 24%;  animation-delay: -3.6s; }  /* Instagram */
.lc-5 { bottom: 7%; left: 32%; animation-delay: -4.8s; } /* YouTube */
.fc-badge {
  position: absolute; top: 0; right: 4%; background: var(--grad); color: #fff;
  font-size: 12.5px; font-weight: 700; padding: 9px 15px; border-radius: 999px;
  box-shadow: 0 14px 30px -12px var(--violet-glow); animation: float 7s ease-in-out infinite; animation-delay: -1s;
}
/* mini staafgrafiek */
.fc-chart { display: flex; align-items: flex-end; gap: 6px; height: 46px; margin-top: 12px; }
.fc-chart span { width: 12px; border-radius: 4px 4px 0 0; background: var(--grad); opacity: .85;
  animation: grow 2.4s var(--ease) infinite alternate; }
.fc-chart span:nth-child(1){height:36%; animation-delay:0s}
.fc-chart span:nth-child(2){height:54%; animation-delay:.2s}
.fc-chart span:nth-child(3){height:44%; animation-delay:.4s}
.fc-chart span:nth-child(4){height:72%; animation-delay:.6s}
.fc-chart span:nth-child(5){height:92%; animation-delay:.8s}
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-16px)} }
@keyframes grow { from{transform:scaleY(.7)} to{transform:scaleY(1)} }

/* --- Marquee (paarse balk) ----------------------------------------- */
.marquee { background: var(--grad); overflow: hidden; padding: 15px 0; }
.marquee-track { display: flex; gap: 0; width: max-content; animation: scrollx 24s linear infinite; }
.marquee-track span { color: #fff; font-weight: 600; font-size: 15px; padding: 0 26px; display: inline-flex; align-items: center; gap: 26px; white-space: nowrap; }
.marquee-track span::after { content: "✦"; opacity: .7; }
@keyframes scrollx { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* --- Stats ---------------------------------------------------------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.stat { padding: 28px 24px; border-radius: var(--radius-lg); background: var(--light-card);
  border: 1px solid var(--line-light); }
.stat-num { font-family: var(--font-head); font-weight: 800; font-size: clamp(1.9rem, 4vw, 2.7rem);
  line-height: 1; letter-spacing: -.03em; }
.stat-num.grad-text { display: inline-block; }
.stat-label { color: var(--ink-muted); font-size: 14px; margin-top: 11px; }

/* --- Transformatie / voor wie (compare) ---------------------------- */
.compare { display: grid; grid-template-columns: 1fr auto 1fr; gap: 20px; align-items: stretch; margin-top: 22px; }
.compare-arrow { align-self: center; width: 52px; height: 52px; border-radius: 50%; display: grid; place-items: center;
  background: var(--grad); color: #fff; font-size: 22px; box-shadow: 0 14px 30px -12px var(--violet-glow); }
.compare-card { padding: 32px; border-radius: var(--radius-lg); background: var(--light-card); border: 1px solid var(--line-light); }
.compare-card.is-good { box-shadow: 0 30px 60px -40px var(--violet-glow); border-color: rgba(124,58,237,.3); }
.compare-card h3 { font-size: 1.3rem; }
.compare-list { list-style: none; padding: 0; margin: 16px 0 0; }
.compare-list li { display: flex; gap: 11px; padding: 10px 0; border-top: 1px solid var(--line-light); color: var(--ink-muted); }
.compare-list li:first-child { border-top: none; }
.compare-list .ic { flex: none; width: 22px; height: 22px; border-radius: 50%; display: grid; place-items: center; font-size: 12px; font-weight: 800; margin-top: 1px; }
.is-good .ic { background: rgba(124,58,237,.14); color: var(--violet); }
.is-bad .ic { background: rgba(20,19,26,.07); color: var(--ink-muted); }

/* --- Methode (genummerde kaarten) ---------------------------------- */
.method-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 22px; }
.method-card {
  padding: 32px 28px; border-radius: var(--radius-lg); border: 1px solid var(--line);
  background: var(--surface); position: relative; overflow: hidden;
  transition: transform .3s var(--ease), border-color .3s var(--ease);
}
.method-card:hover { transform: translateY(-6px); border-color: rgba(217,70,239,.4); }
.method-num { font-family: var(--font-head); font-weight: 800; font-size: 15px; letter-spacing: .04em; }
.method-num.grad-text { display: inline-block; }
.method-card h3 { font-size: 1.28rem; margin-top: 12px; }
.method-card p { color: var(--muted); font-size: 15.5px; margin: 0; }

/* --- Pricing (3 pakketten) — op lichte sectie ---------------------- */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: start; margin-top: 8px; }
.price-card {
  position: relative; padding: 38px 32px; border-radius: var(--radius-lg);
  border: 1px solid var(--line-light); background: var(--light-card);
  display: flex; flex-direction: column;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.price-card:hover { transform: translateY(-6px); box-shadow: 0 30px 60px -40px rgba(20,19,26,.28); }
.price-card--featured {
  border: none; background: #14121d; color: #fff;
  box-shadow: 0 40px 80px -40px var(--violet-glow);
}
.price-card--featured::before {
  content: ""; position: absolute; inset: 0; border-radius: inherit; padding: 1.5px;
  background: var(--grad); -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude; pointer-events: none;
}
@media (min-width: 961px) { .price-card--featured { transform: scale(1.04); } .price-card--featured:hover { transform: scale(1.04) translateY(-6px); } }
.price-badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--grad); color: #fff; font-size: 12px; font-weight: 700;
  padding: 6px 15px; border-radius: 999px; box-shadow: 0 10px 22px -10px var(--violet-glow); white-space: nowrap;
}
.price-name { font-family: var(--font-head); font-weight: 800; font-size: 1.35rem; letter-spacing: -.02em; }
.price-tagline { color: var(--ink-muted); font-size: 14.5px; margin: 6px 0 18px; }
.price-card--featured .price-tagline { color: var(--muted); }
.price-amount { font-family: var(--font-head); font-weight: 800; font-size: clamp(2.4rem, 5vw, 3rem); line-height: 1; letter-spacing: -.03em; }
.price-card:not(.price-card--featured) .price-amount { color: var(--violet); }
.price-per { color: var(--ink-muted); font-size: 13.5px; display: block; margin: 8px 0 24px; }
.price-card--featured .price-per { color: var(--muted-2); }
.price-card .btn { margin-bottom: 24px; }
.price-card:not(.price-card--featured) .btn--ghost { border-color: var(--line-light); color: var(--ink); }
.price-card:not(.price-card--featured) .btn--ghost:hover { border-color: var(--violet); color: var(--violet); }
.price-features { list-style: none; padding: 20px 0 0; margin: 0; border-top: 1px solid var(--line-light); display: grid; gap: 12px; }
.price-card--featured .price-features { border-top-color: rgba(255,255,255,.12); }
.price-features li { display: flex; gap: 10px; font-size: 15px; line-height: 1.4; color: var(--ink-muted); }
.price-card--featured .price-features li { color: var(--muted); }
.price-features li::before { content: "✦"; color: var(--fuchsia); flex: none; }

/* --- Testimonials (donker) ----------------------------------------- */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 22px; }
.testi-card { padding: 30px; border-radius: var(--radius-lg); border: 1px solid var(--line); background: var(--surface); }
.stars { color: var(--fuchsia); letter-spacing: 3px; font-size: 15px; margin-bottom: 14px; }
.testi-card blockquote { margin: 0 0 20px; font-size: 1.02rem; line-height: 1.55; color: var(--text); }
.testi-author { display: flex; align-items: center; gap: 13px; }
.testi-avatar { width: 46px; height: 46px; border-radius: 50%; flex: none; background: var(--grad);
  display: grid; place-items: center; font-family: var(--font-head); font-weight: 800; color: #fff; }
.testi-name { font-weight: 600; font-size: 15px; }
.testi-role { color: var(--muted-2); font-size: 13.5px; }

/* --- FAQ (licht) ---------------------------------------------------- */
.faq { max-width: 800px; margin: 20px auto 0; }
.faq-item { border-bottom: 1px solid var(--line-light); }
.faq-q {
  width: 100%; text-align: left; background: none; border: none; color: var(--ink);
  padding: 24px 44px 24px 0; font-size: 1.1rem; font-family: var(--font-head); font-weight: 700;
  position: relative; letter-spacing: -.02em;
}
.faq-q::after { content: "+"; position: absolute; right: 4px; top: 50%; transform: translateY(-50%);
  font-size: 24px; color: var(--violet); transition: transform .3s var(--ease); font-family: var(--font-body); }
.faq-item.is-open .faq-q::after { transform: translateY(-50%) rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s var(--ease); }
.faq-item.is-open .faq-a { max-height: 340px; }
.faq-a p { color: var(--ink-muted); padding: 0 44px 24px 0; margin: 0; }

/* --- Slot-CTA banner (donker, paars) ------------------------------- */
.cta-banner {
  max-width: 820px; margin: 0 auto; text-align: center; padding: 62px 48px; border-radius: 28px;
  background: radial-gradient(120% 140% at 50% 0%, rgba(124,58,237,.28), transparent 60%), var(--surface);
  border: 1px solid var(--line-2); position: relative; overflow: hidden;
}
.cta-banner h2 { font-size: clamp(2rem, 4.4vw, 3rem); }
.cta-banner p { color: var(--muted); max-width: 520px; margin: 0 auto 28px; }
.cta-contact { font-size: 14px; color: var(--muted-2); margin: 24px auto 0; }
.cta-contact a { color: var(--fuchsia); }

/* --- Footer --------------------------------------------------------- */
.site-footer { border-top: 1px solid var(--line); padding: 60px 0 32px; background: var(--bg-2); }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; }
.footer-about p { color: var(--muted); font-size: 15px; max-width: 320px; margin-top: 16px; }
.footer-col h4 { font-family: var(--font-body); font-size: 12.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted-2); font-weight: 700; }
.footer-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer-col a, .footer-col li { color: var(--muted); font-size: 15px; }
.footer-col a:hover { color: var(--fuchsia); }
.footer-legal { margin-top: 48px; padding-top: 24px; border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; color: var(--muted-2); font-size: 13.5px; }
.footer-legal .biz { display: flex; gap: 20px; flex-wrap: wrap; }

/* --- Scroll reveal -------------------------------------------------- */
/* Reveal-animatie ALLEEN als JS actief is (klasse .sc-js op <html>).
   Zonder JS blijft alle content gewoon zichtbaar — geen blanco pagina. */
.sc-js [data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.sc-js [data-reveal].is-visible { opacity: 1; transform: none; }
.sc-js [data-reveal][data-delay="1"] { transition-delay: .08s; }
.sc-js [data-reveal][data-delay="2"] { transition-delay: .16s; }
.sc-js [data-reveal][data-delay="3"] { transition-delay: .24s; }
@media (prefers-reduced-motion: reduce) {
  .sc-js [data-reveal] { opacity: 1; transform: none; transition: none; }
  .hero::before, .hero::after, .float-card, .fc-badge, .fc-chart span, .marquee-track, .hl, .grad-text { animation: none !important; }
  html { scroll-behavior: auto; }
}

/* --- Responsive ----------------------------------------------------- */
@media (max-width: 960px) {
  .section { padding: 80px 0; }
  .hero-grid { grid-template-columns: 1fr; gap: 20px; }
  .hero-visual { display: none; }
  .stats { grid-template-columns: 1fr 1fr; }
  .method-grid, .testi-grid { grid-template-columns: 1fr 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 460px; margin: 8px auto 0; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 720px) {
  body { font-size: 16px; }
  :root { --round: 32px; }
  .nav-toggle { display: block; }
  .nav {
    position: fixed; inset: 74px 0 auto 0; flex-direction: column; align-items: stretch; gap: 0;
    background: rgba(12,12,16,.98); backdrop-filter: blur(12px); border-bottom: 1px solid var(--line);
    padding: 12px 24px 22px; transform: translateY(-120%); transition: transform .35s var(--ease); z-index: 90;
  }
  .nav.is-open { transform: translateY(0); }
  .nav-links { flex-direction: column; align-items: stretch; gap: 0; }
  .nav-links li { border-bottom: 1px solid var(--line); }
  .nav-links a { display: block; padding: 15px 0; }
  .nav .btn { margin-top: 16px; justify-content: center; }
  .compare { grid-template-columns: 1fr; }
  .compare-arrow { transform: rotate(90deg); margin: 4px auto; }
  .method-grid, .testi-grid, .stats { grid-template-columns: 1fr; }
  .cta-banner { padding: 44px 24px; }
  .price-card { padding: 34px 26px; }
  .section { padding: 64px 0; }
}

/* =========================================================================
   WORDPRESS / WOOCOMMERCE — aanvullende styling
   ========================================================================= */

/* Logo als afbeelding */
.logo--img img { max-height: 44px; width: auto; display: block; }

/* Footer: 4 kolommen */
.footer-top { grid-template-columns: 1.6fr 1fr 1fr 1.1fr; }
.footer-col ul.menu, .footer-col .menu { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }

/* Betaal-badges + betaalregel */
.pay-badges { display: inline-flex; flex-wrap: wrap; gap: 8px; justify-content: center; }
.pay-badge { font-size: 12px; font-weight: 600; color: #fff; background: var(--pb, #555);
  padding: 5px 11px; border-radius: 7px; line-height: 1.4; }
.pay-line { color: var(--ink-muted); font-size: 14.5px; max-width: 640px; margin-left: auto; margin-right: auto; }

/* Pagina-hero (juridische pagina's / WooCommerce) */
.page-hero { position: relative; overflow: hidden; }
.page-hero::before { content: ""; position: absolute; inset: 0; z-index: 0;
  background: radial-gradient(640px 300px at 50% -30%, rgba(139,63,237,.20), transparent 70%); }
.page-hero .container { position: relative; z-index: 1; }

/* Smalle leescontainer + juridische content */
.container--narrow { max-width: 820px; }
.legal-content { font-size: 16.5px; color: var(--ink); }
.legal-content h2 { font-family: var(--font-head); font-weight: 800; font-size: 1.5rem; letter-spacing: -.02em; margin: 1.8em 0 .5em; color: var(--ink); }
.legal-content h3 { font-family: var(--font-head); font-weight: 700; font-size: 1.15rem; margin: 1.4em 0 .4em; color: var(--ink); }
.legal-content p, .legal-content li { color: #3f3d47; line-height: 1.75; }
.legal-content ul, .legal-content ol { padding-left: 1.25em; margin: 0 0 1.2em; }
.legal-content li { margin-bottom: .4em; }
.legal-content a { color: var(--violet); font-weight: 600; }
.legal-note { background: rgba(124,58,237,.07); border: 1px solid rgba(124,58,237,.22); border-left: 4px solid var(--violet);
  border-radius: 12px; padding: 16px 18px; margin: 0 0 30px; font-size: 14.5px; color: var(--ink-muted); }

/* Blog-fallback */
.sc-entry { margin-bottom: 34px; padding-bottom: 34px; border-bottom: 1px solid var(--line-light); }
.sc-entry h2 { font-family: var(--font-head); }
.sc-entry h2 a { color: var(--ink); }

/* WooCommerce algemeen (in lichte wrapper) */
.woo-wrap .button, .woo-wrap a.button, .woo-wrap button.button, .woo-wrap input.button {
  background: var(--grad); color: #fff; border: none; border-radius: 999px; padding: 12px 24px; font-weight: 600; }
.woo-wrap .button:hover { transform: translateY(-2px); }
.woocommerce-message, .woocommerce-info, .woocommerce-error, .woocommerce-noreviews {
  border-radius: 12px; padding: 14px 16px; border: 1px solid var(--line-light); background: #fff; list-style: none;
  color: var(--ink); border-top: 3px solid var(--violet); }
.woocommerce-error { border-top-color: #d23; color: #b3261e; }

/* ===================== CUSTOM CHECKOUT (Stripe/Shopify-look) ============ */
.sc-checkout-grid { display: grid; grid-template-columns: 1.2fr .9fr; gap: 28px; align-items: start; }
.sc-panel { background: var(--light-card); border: 1px solid var(--line-light); border-radius: var(--radius-lg); padding: 30px; }
.sc-panel + .sc-panel { margin-top: 20px; }
.sc-panel-title { font-family: var(--font-head); font-weight: 800; font-size: 1.2rem; letter-spacing: -.02em; color: var(--ink); margin: 0 0 6px; }
.sc-panel-sub { color: var(--ink-muted); font-size: 14px; margin: 0 0 22px; }
.sc-summary { position: sticky; top: 96px; }

/* Formuliervelden */
.sc-checkout .form-row { width: 100% !important; float: none !important; margin: 0 0 14px; padding: 0; display: block; }
.sc-checkout label { display: block; font-size: 13.5px; color: var(--ink-muted); font-weight: 600; margin: 0 0 6px; }
.sc-checkout label .required { color: var(--fuchsia); border: 0; }
.sc-checkout input.input-text, .sc-checkout textarea, .sc-checkout select {
  width: 100%; padding: 13px 15px; border: 1px solid var(--line-light); border-radius: 12px; background: #fff;
  color: var(--ink); font: inherit; font-size: 15px; transition: border-color .2s ease, box-shadow .2s ease; }
.sc-checkout input.input-text:focus, .sc-checkout textarea:focus, .sc-checkout select:focus {
  outline: none; border-color: var(--violet); box-shadow: 0 0 0 3px rgba(124,58,237,.12); }
.sc-checkout .woocommerce-input-wrapper { display: block; width: 100%; }

/* Overzicht / totalen */
#order_review .shop_table { width: 100%; border-collapse: collapse; margin: 0 0 4px; }
#order_review .shop_table th, #order_review .shop_table td { padding: 12px 0; text-align: left; color: var(--ink); border-bottom: 1px solid var(--line-light); font-size: 15px; }
#order_review .shop_table th { font-weight: 600; }
#order_review .cart-subtotal, #order_review .order-total { font-weight: 600; }
#order_review .order-total .woocommerce-Price-amount { font-family: var(--font-head); font-weight: 800; font-size: 1.35rem; color: var(--violet); }

/* Betaalmethodes */
#payment { background: transparent; border-radius: 0; }
#payment ul.payment_methods { list-style: none; margin: 0 0 14px; padding: 16px 0 6px; border-top: 1px solid var(--line-light); }
#payment ul.payment_methods li { margin: 0 0 8px; color: var(--ink); font-size: 15px; }
#payment ul.payment_methods label { display: inline; color: var(--ink); font-weight: 600; }
#payment div.payment_box { background: #f3f0fb; border-radius: 10px; padding: 12px 14px; font-size: 13.5px; color: var(--ink-muted); margin-top: 8px; }
#payment div.payment_box::before { display: none; }

/* Voorwaarden + knop */
.woocommerce-terms-and-conditions-wrapper { margin: 6px 0 16px; font-size: 13.5px; color: var(--ink-muted); }
.woocommerce-terms-and-conditions-wrapper a { color: var(--violet); font-weight: 600; }
.sc-checkout #place_order, .sc-checkout button#place_order {
  width: 100%; background: var(--grad); color: #fff; border: none; border-radius: 999px; padding: 16px 24px;
  font-weight: 700; font-size: 16px; cursor: pointer; box-shadow: 0 14px 34px -14px var(--violet-glow); transition: transform .2s ease; }
.sc-checkout #place_order:hover { transform: translateY(-2px); }

/* Vertrouwensregel + badges onder de betaling */
.sc-checkout-trust { margin-top: 18px; text-align: center; }
.sc-secure { font-size: 13px; color: var(--ink-muted); margin-bottom: 10px; }

/* Responsive checkout + footer */
@media (max-width: 860px) {
  .sc-checkout-grid { grid-template-columns: 1fr; }
  .sc-summary { position: static; }
}
@media (max-width: 960px) { .footer-top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 720px) { .footer-top { grid-template-columns: 1fr; } }

/* =========================================================================
   STANDALONE HOSTED CHECKOUT (Stripe-stijl, volledig scherm)
   ========================================================================= */
body.sc-hosted { background: var(--light); }
.sc-hosted-wrap { display: grid; grid-template-columns: 1fr 1fr; min-height: 100vh; }

/* Links: merk / reclame */
.sc-hosted-brand { background: var(--bg); color: var(--text); padding: 7vh 5vw; position: relative; overflow: hidden; display: flex; }
.sc-hosted-brand::before { content: ""; position: absolute; width: 620px; height: 620px; right: -170px; top: -190px; border-radius: 50%;
  background: radial-gradient(circle, rgba(139,63,237,.42), transparent 60%); filter: blur(30px); }
.sc-hosted-brand::after { content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 64px 64px; opacity: .18; -webkit-mask-image: radial-gradient(500px 400px at 70% 0%, #000, transparent 75%); mask-image: radial-gradient(500px 400px at 70% 0%, #000, transparent 75%); }
.sc-hosted-brand-inner { position: relative; z-index: 1; max-width: 460px; margin-left: auto; width: 100%; align-self: center; }
.sc-hosted-back { color: var(--muted); font-size: 14px; display: inline-block; margin-bottom: 34px; }
.sc-hosted-back:hover { color: var(--fuchsia); }
.sc-hosted-logo { margin-bottom: 44px; }
.sc-hosted-eyebrow { font-size: 12px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--fuchsia); }
.sc-hosted-title { font-family: var(--font-head); font-weight: 800; font-size: clamp(1.7rem, 3vw, 2.3rem); margin: 10px 0 6px; letter-spacing: -.02em; }
.sc-hosted-price { font-family: var(--font-head); font-weight: 800; font-size: clamp(2.4rem, 4vw, 3.2rem); line-height: 1; display: inline-block; margin-bottom: 26px; }
.sc-hosted-price .woocommerce-Price-amount, .sc-hosted-price bdi { color: inherit; background: none; }
.sc-hosted-usps { color: var(--muted); font-size: 15px; }
.sc-hosted-usps ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 11px; }
.sc-hosted-usps li { display: flex; gap: 10px; }
.sc-hosted-usps li::before { content: "✦"; color: var(--fuchsia); flex: none; }
.sc-hosted-usps p { margin: 0 0 12px; }
.sc-hosted-trust { margin-top: 32px; padding-top: 24px; border-top: 1px solid var(--line); }
.sc-hosted-trust .sc-secure { color: var(--muted); font-size: 13px; margin-bottom: 12px; }
.sc-hosted-quote { margin: 30px 0 0; padding: 0; border: 0; color: var(--muted); font-size: 15px; font-style: italic; }
.sc-hosted-quote .stars { display: block; color: var(--fuchsia); letter-spacing: 3px; margin-bottom: 8px; font-style: normal; }
.sc-hosted-quote cite { display: block; margin-top: 8px; color: var(--muted-2); font-style: normal; font-size: 13px; }

/* Rechts: het formulier */
.sc-hosted-form { background: var(--light); padding: 7vh 5vw; display: flex; }
.sc-hosted-form-inner { max-width: 480px; width: 100%; margin: 0 auto; align-self: center; }
.sc-checkout--hosted .sc-panel { border: none; background: transparent; padding: 0; }
.sc-checkout--hosted .sc-panel + .sc-panel { margin-top: 30px; padding-top: 30px; border-top: 1px solid var(--line-light); }
.sc-checkout--hosted .sc-panel-title { font-size: 1.1rem; }

/* WooCommerce's eigen koppen verbergen (we hebben eigen titels) */
.sc-checkout .woocommerce-billing-fields > h3,
.sc-checkout h3#order_review_heading { display: none; }

@media (max-width: 900px) {
  .sc-hosted-wrap { grid-template-columns: 1fr; }
  .sc-hosted-brand { padding: 40px 26px; }
  .sc-hosted-brand-inner { max-width: 480px; margin: 0 auto; }
  .sc-hosted-form { padding: 34px 26px 64px; }
}
