/* ==========================================================================
   Pergo v2 — modern theme voor Socialmeester.nl
   - Behoudt oranje #ff9800 als brand color
   - Donkere navigatie + lichte content (modern, professioneel)
   - Mobile-first, fluid typografie via clamp()
   - Subtiele animaties, glassmorphism, soft shadows
   ========================================================================== */

/* ---------- 1. Design tokens ---------- */
:root {
  --brand: #ff9800;
  --brand-2: #ff6f00;
  --brand-grad: linear-gradient(135deg, #ffa726 0%, #ff6f00 100%);
  --brand-glow: 0 12px 30px -12px rgba(255, 152, 0, 0.55);

  --ink-900: #0f172a;
  --ink-800: #1e293b;
  --ink-700: #334155;
  --ink-600: #475569;
  --ink-500: #64748b;
  --ink-400: #94a3b8;
  --ink-200: #e2e8f0;
  --ink-100: #f1f5f9;
  --ink-50:  #f8fafc;

  --bg: #ffffff;
  --bg-soft: #f8fafc;
  --bg-dark: #0f172a;

  --success: #10b981;
  --danger: #ef4444;

  --radius-sm: 10px;
  --radius:    16px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.04), 0 1px 3px rgba(15, 23, 42, 0.06);
  --shadow:    0 4px 6px -1px rgba(15, 23, 42, 0.05), 0 10px 25px -5px rgba(15, 23, 42, 0.10);
  --shadow-lg: 0 20px 25px -5px rgba(15, 23, 42, 0.10), 0 10px 10px -5px rgba(15, 23, 42, 0.04);

  --max-width: 1200px;

  --font-body: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  --font-display: 'Arvo', 'Lato', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* ---------- 2. Reset & basics ---------- */
*, *::before, *::after { box-sizing: border-box; }

body.pergov2 {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-800);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.pergov2 img { max-width: 100%; height: auto; display: block; }

.pergov2 h1, .pergov2 h2, .pergov2 h3, .pergov2 h4 {
  font-family: var(--font-display);
  color: var(--ink-900);
  margin: 0;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.pergov2 a {
  color: var(--brand-2);
  text-decoration: none;
  transition: color .15s ease;
}
.pergov2 a:hover { color: var(--brand); }

.pergov2 .container,
.pergov2 .pv2-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

/* ---------- 3. Buttons ---------- */
.pergov2 .pv2-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-weight: 700;
  font-size: 15px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .2s ease;
  text-decoration: none;
  white-space: nowrap;
  line-height: 1;
}

.pergov2 .pv2-btn--primary {
  background: var(--brand-grad);
  color: #fff;
  box-shadow: var(--brand-glow);
}
.pergov2 .pv2-btn--primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 38px -10px rgba(255, 152, 0, 0.65);
  color: #fff;
}

.pergov2 .pv2-btn--ghost {
  background: rgba(255, 255, 255, 0.08);
  color: #ff9800;
  border: 1px solid #ff9800;
  backdrop-filter: blur(8px);
}
.pergov2 .pv2-btn--ghost:hover { background: rgba(255, 255, 255, 0.15); color: #ff9800; }

.pergov2 .pv2-btn--outline {
  background: transparent;
  color: var(--brand-2);
  border: 2px solid var(--brand);
}
.pergov2 .pv2-btn--outline:hover { background: var(--brand); color: #fff; }

.pergov2 .pv2-btn--small { padding: 10px 18px; font-size: 13px; }
.pergov2 .pv2-btn--large { padding: 18px 36px; font-size: 17px; }

/* ---------- 4. Header / Nav (LICHT, sticky, sleek) ---------- */
.pv2-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 12px 0;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--ink-200);
  transition: padding .2s ease, box-shadow .2s ease;
}
.pv2-header.is-scrolled {
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.08);
  padding: 8px 0;
}
.pv2-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}
.pv2-header__logo img {
  height: 34px;
  width: auto;
}
.pv2-nav {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.pv2-nav__item { position: relative; }

/* Extend hover area van parent omlaag zodat de dropdown bereikbaar blijft
   tijdens muis-overgang. Geen gap meer tussen item en dropdown. */
.pv2-nav__item--has-dropdown::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  top: 100%;
  height: 14px;
  pointer-events: auto;
  background: transparent;
  display: none;
}
.pv2-nav__item--has-dropdown:hover::after,
.pv2-nav__item--has-dropdown:focus-within::after { display: block; }
.pv2-nav__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 13px;
  border-radius: 8px;
  color: var(--ink-700);
  font-weight: 600;
  font-size: 14px;
  transition: background .15s ease, color .15s ease;
  cursor: pointer;
}
.pv2-nav__link:hover,
.pv2-nav__link.is-active {
  background: var(--ink-100);
  color: var(--ink-900);
}
.pv2-nav__link--cta {
  margin-left: 8px;
  background: var(--brand-grad);
  color: #fff !important;
  padding: 10px 20px;
  box-shadow: var(--brand-glow);
}
.pv2-nav__link--cta:hover {
  color: #fff !important;
  background: var(--brand-grad);
  transform: translateY(-1px);
}

/* Dropdown (single column, voor 1 platform).
   Geen margin-top: dropdown plakt direct onder de nav-link.
   Visuele "lucht" wordt gecreëerd door padding bovenin de dropdown. */
.pv2-nav__dropdown {
  position: absolute;
  top: calc(100% + 14px);
  left: 0;
  min-width: 260px;
  background: #fff;
  border-radius: var(--radius);
  padding: 8px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--ink-200);
  list-style: none;
  margin: 0;
  display: none;
  z-index: 1001;
}
.pv2-nav__item:hover > .pv2-nav__dropdown,
.pv2-nav__item:focus-within > .pv2-nav__dropdown,
.pv2-nav__item.is-open > .pv2-nav__dropdown { display: block; }
.pv2-nav__dropdown a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 10px;
  color: var(--ink-800);
  font-size: 14px;
  transition: background .15s ease;
}
.pv2-nav__dropdown a:hover { background: var(--ink-100); color: var(--brand-2); }

/* MEGA dropdown (voor "Meer", multi-platform overflow) */
.pv2-nav__dropdown--mega {
  min-width: 560px;
  display: none;
  grid-template-columns: repeat(2, 1fr);
  gap: 4px 16px;
  padding: 16px;
  left: auto;
  right: 0;
}
.pv2-nav__item:hover > .pv2-nav__dropdown--mega,
.pv2-nav__item:focus-within > .pv2-nav__dropdown--mega,
.pv2-nav__item.is-open > .pv2-nav__dropdown--mega { display: grid; }
.pv2-nav__group {
  list-style: none;
  margin: 0;
  padding: 0;
}
.pv2-nav__group-title {
  display: block;
  padding: 8px 12px 4px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-400);
}
.pv2-nav__group a {
  display: block;
  padding: 7px 12px;
  border-radius: 8px;
  color: var(--ink-700);
  font-size: 13px;
  font-weight: 500;
  transition: background .15s ease, color .15s ease;
}
.pv2-nav__group a:hover { background: var(--ink-100); color: var(--brand-2); }

.pv2-nav__toggle {
  display: none;
  position: relative;
  background: none;
  border: 0;
  color: var(--ink-800);
  width: 44px;
  height: 44px;
  border-radius: 10px;
  cursor: pointer;
  flex-shrink: 0;
}
.pv2-nav__toggle:hover { background: var(--ink-100); }
.pv2-nav__toggle svg { display: none; } /* legacy SVG hide */

/* CSS hamburger -> X transform */
.pv2-nav__toggle-line {
  position: absolute;
  left: 11px;
  width: 22px;
  height: 2.5px;
  background: var(--ink-800);
  border-radius: 3px;
  transition: transform .22s ease, opacity .15s ease, top .22s ease;
}
.pv2-nav__toggle-line:nth-child(1) { top: 14px; }
.pv2-nav__toggle-line:nth-child(2) { top: 21px; }
.pv2-nav__toggle-line:nth-child(3) { top: 28px; }
.pv2-nav__toggle[aria-expanded="true"] .pv2-nav__toggle-line:nth-child(1) {
  top: 21px; transform: rotate(45deg);
}
.pv2-nav__toggle[aria-expanded="true"] .pv2-nav__toggle-line:nth-child(2) {
  opacity: 0;
}
.pv2-nav__toggle[aria-expanded="true"] .pv2-nav__toggle-line:nth-child(3) {
  top: 21px; transform: rotate(-45deg);
}

/* Topbar boven nav (contact / kvk) */
.pv2-topbar {
  background: var(--ink-50);
  color: var(--ink-600);
  font-size: 12.5px;
  padding: 7px 0;
  border-bottom: 1px solid var(--ink-200);
}
.pv2-topbar__inner {
  display: flex;
  justify-content: flex-end;
  gap: 22px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}
.pv2-topbar a { color: var(--ink-600); }
.pv2-topbar a:hover { color: var(--brand-2); }

@media (max-width: 991px) {
  .pv2-nav__toggle { display: block; }
  .pv2-nav {
    display: flex; /* altijd flex zodat we kunnen animeren */
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: #fff;
    flex-direction: column;
    padding: 14px 14px 20px;
    gap: 2px;
    border-top: 1px solid var(--ink-200);
    box-shadow: 0 14px 28px rgba(15, 23, 42, 0.14);
    max-height: calc(100vh - 80px);
    overflow-y: auto;
    /* Hidden default met smooth slide */
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity .22s ease, transform .22s ease, visibility 0s .22s;
  }
  .pv2-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition: opacity .22s ease, transform .22s ease, visibility 0s 0s;
  }
  .pv2-nav__item { width: 100%; }
  .pv2-nav__link {
    width: 100%;
    padding: 13px 14px;
    justify-content: space-between;
    font-size: 15px;
  }
  .pv2-nav__link--cta { margin-left: 0; margin-top: 8px; justify-content: center; }

  /* Dropdown bridge uitschakelen op mobile (geen hover daar) */
  .pv2-nav__item--has-dropdown::after { display: none !important; }

  .pv2-nav__dropdown,
  .pv2-nav__dropdown--mega {
    position: static;
    grid-template-columns: 1fr;
    box-shadow: none;
    background: var(--ink-50);
    margin: 4px 0 8px;
    border: 0;
    border-radius: 12px;
    padding: 6px;
    display: none;
    min-width: 0;
  }
  .pv2-nav__item.is-open > .pv2-nav__dropdown { display: block; }
  .pv2-nav__item.is-open > .pv2-nav__dropdown--mega { display: grid; }
  .pv2-nav__dropdown a { padding: 11px 14px; font-size: 14px; }
  .pv2-nav__group-title { padding: 10px 12px 4px; font-size: 11px; }
  .pv2-nav__group a { padding: 9px 14px; font-size: 14px; }

  .pv2-topbar { display: none; }
}

/* Spacing onder fixed header (alleen nav, topbar is verwijderd) */
body.pergov2 { padding-top: 72px; }
@media (max-width: 991px) {
  body.pergov2 { padding-top: 64px; }
}
.pv2-page,
.pv2-page--with-topbar { padding-top: 0; }

/* ---------- 5. Hero (LICHT, sleek) ---------- */
.pv2-hero {
  position: relative;
  background:
    radial-gradient(ellipse at top right, rgba(255,167,38,0.18), transparent 55%),
    radial-gradient(ellipse at bottom left, rgba(255,111,0,0.10), transparent 60%),
    linear-gradient(180deg, #ffffff 0%, #fff7ed 100%);
  color: var(--ink-900);
  padding: clamp(110px, 14vw, 170px) 0 clamp(60px, 10vw, 110px);
  overflow: hidden;
  border-bottom: 1px solid var(--ink-200);
}
.pv2-hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}
@media (min-width: 992px) {
  .pv2-hero__inner {
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
  }
}
.pv2-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(255,152,0,0.12);
  border: 1px solid rgba(255,152,0,0.25);
  color: var(--brand-2);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 24px;
}
.pv2-hero__title {
  font-size: clamp(32px, 5.5vw, 58px);
  line-height: 1.06;
  margin: 0 0 22px;
  color: var(--ink-900);
  letter-spacing: -0.02em;
}
.pv2-hero__title .pv2-grad {
  background: linear-gradient(135deg, #ffa726 0%, #ff6f00 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.pv2-hero__sub {
  font-size: clamp(16px, 1.6vw, 18px);
  color: var(--ink-600);
  max-width: 560px;
  margin: 0 0 28px;
  line-height: 1.6;
}
.pv2-hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 36px;
}
.pv2-hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 26px;
  margin-top: 8px;
  color: var(--ink-600);
  font-size: 14px;
}
.pv2-hero__trust span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
}
.pv2-hero__trust svg {
  width: 18px; height: 18px;
  color: var(--brand-2);
}

/* Ghost-button: oranje outline op lichte achtergrond — duidelijk contrast */
.pv2-btn--ghost {
  background: #fff;
  color: var(--brand-2);
  border: 2px solid var(--brand);
  font-weight: 700;
}
.pv2-btn--ghost:hover {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
  transform: translateY(-1px);
}

/* Hero visual: floating platform-cards (lichte variant) */
.pv2-hero__visual {
  position: relative;
  min-height: 420px;
  display: none;
}
@media (min-width: 992px) { .pv2-hero__visual { display: block; } }
.pv2-pcard {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--ink-200);
  box-shadow: 0 14px 30px -10px rgba(15, 23, 42, 0.15);
  color: var(--ink-900);
  font-weight: 600;
  animation: pv2-float 6s ease-in-out infinite;
}
.pv2-pcard__icon {
  width: 40px; height: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #fff;
}
.pv2-pcard__meta { font-size: 14px; line-height: 1.3; }
.pv2-pcard__meta strong { display: block; font-size: 15px; }
.pv2-pcard__meta span { color: var(--ink-500); font-size: 12px; font-weight: 500; }
.pv2-pcard--ig { top: 0; right: 6%; animation-delay: 0s; }
.pv2-pcard--ig .pv2-pcard__icon { background: linear-gradient(135deg,#feda75,#fa7e1e 30%,#d62976 60%,#962fbf 80%,#4f5bd5); }
.pv2-pcard--tt { top: 38%; right: 30%; animation-delay: 1.5s; }
.pv2-pcard--tt .pv2-pcard__icon { background: #000; }
.pv2-pcard--yt { bottom: 4%; right: 8%; animation-delay: 3s; }
.pv2-pcard--yt .pv2-pcard__icon { background: #ff0000; }

@keyframes pv2-float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-12px); }
}

/* ---------- 6. Section base ---------- */
.pv2-section {
  padding: clamp(60px, 8vw, 120px) 0;
}
.pv2-section--soft { background: var(--bg-soft); }
.pv2-section--dark { background: var(--bg-dark); color: #fff; }

.pv2-section__head { text-align: center; max-width: 720px; margin: 0 auto 48px; }
.pv2-section__eyebrow {
  display: inline-block;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(255, 152, 0, 0.12);
  color: var(--brand-2);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
}
.pv2-section__title {
  font-size: clamp(28px, 4vw, 42px);
  margin: 0 0 16px;
}
.pv2-section--dark .pv2-section__title { color: #fff; }
.pv2-section__lead {
  font-size: 17px;
  color: var(--ink-500);
  margin: 0 auto;
}
.pv2-section--dark .pv2-section__lead { color: rgba(255,255,255,0.75); }

/* ---------- 7. Trustbar ---------- */
.pv2-trustbar {
  border-top: 1px solid var(--ink-200);
  border-bottom: 1px solid var(--ink-200);
  padding: 20px 0;
  background: #fff;
}
.pv2-trustbar__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 14px 32px;
  font-size: 14px;
  color: var(--ink-500);
}
.pv2-trustbar__item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.pv2-trustbar__item svg { color: var(--brand); width: 18px; height: 18px; }

/* ---------- 8. Platform grid (replaces .services-list) ---------- */
.pv2-platforms {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
@media (min-width: 600px) { .pv2-platforms { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 992px) { .pv2-platforms { grid-template-columns: repeat(4, 1fr); } }

.pv2-platform {
  position: relative;
  background: #fff;
  border: 1px solid var(--ink-200);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  text-align: center;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  display: flex;
  flex-direction: column;
}
.pv2-platform:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--brand);
}
.pv2-platform__icon {
  width: 64px; height: 64px;
  border-radius: 18px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--ink-100);
}
.pv2-platform__icon img { width: 36px; height: 36px; }
.pv2-platform__name {
  font-size: 18px;
  margin: 0 0 14px;
}
.pv2-platform__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
}
.pv2-platform__list a {
  display: block;
  padding: 9px 12px;
  border-radius: 10px;
  background: var(--ink-50);
  color: var(--ink-700);
  font-size: 13px;
  font-weight: 600;
  transition: background .15s ease, color .15s ease;
}
.pv2-platform__list a:hover {
  background: var(--brand);
  color: #fff;
}
.pv2-platform__cta { margin-top: auto; }

/* ---------- 9. USP grid ---------- */
.pv2-usps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
@media (min-width: 700px) { .pv2-usps { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .pv2-usps { grid-template-columns: repeat(3, 1fr); } }
.pv2-usp {
  background: #fff;
  border: 1px solid var(--ink-200);
  border-radius: var(--radius);
  padding: 28px;
  transition: border-color .2s ease, transform .2s ease;
}
.pv2-usp:hover {
  border-color: var(--brand);
  transform: translateY(-2px);
}
.pv2-usp__icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--brand-grad);
  color: #fff;
  margin-bottom: 18px;
  box-shadow: var(--brand-glow);
}
.pv2-usp__icon svg { width: 26px; height: 26px; }
.pv2-usp__title { font-size: 19px; margin: 0 0 8px; }
.pv2-usp__text  { color: var(--ink-500); font-size: 15px; margin: 0; line-height: 1.55; }

/* ---------- 10. Steps (how it works) ---------- */
.pv2-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  position: relative;
}
@media (min-width: 768px) {
  .pv2-steps { grid-template-columns: repeat(3, 1fr); }
}
.pv2-step {
  position: relative;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  border: 1px solid var(--ink-200);
}
.pv2-step__num {
  position: absolute;
  top: -22px;
  left: 28px;
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--brand-grad);
  color: #fff;
  font-weight: 700;
  font-size: 18px;
  font-family: var(--font-display);
  box-shadow: var(--brand-glow);
}
.pv2-step__title { font-size: 19px; margin: 8px 0 8px; }
.pv2-step__text  { color: var(--ink-500); margin: 0; }

/* ---------- 11. Best sellers ---------- */
.pv2-bestsellers {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
@media (min-width: 768px) { .pv2-bestsellers { grid-template-columns: repeat(3, 1fr); } }
.pv2-bestseller {
  position: relative;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid var(--ink-200);
  text-align: left;
  transition: transform .2s ease, box-shadow .2s ease;
}
.pv2-bestseller:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.pv2-bestseller__badge {
  position: absolute;
  top: 16px; right: 16px;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--brand);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.pv2-bestseller__icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  margin-bottom: 18px;
  background: var(--ink-100);
  display: flex;
  align-items: center;
  justify-content: center;
}
.pv2-bestseller__icon img { width: 32px; height: 32px; }
.pv2-bestseller__title { font-size: 21px; margin: 0 0 10px; }
.pv2-bestseller__text  { color: var(--ink-500); font-size: 15px; margin: 0 0 20px; }

/* ---------- 12. Reviews ---------- */
.pv2-reviews {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 768px) { .pv2-reviews { grid-template-columns: repeat(3, 1fr); } }
.pv2-review {
  background: #fff;
  border: 1px solid var(--ink-200);
  border-radius: var(--radius);
  padding: 28px;
  position: relative;
}
.pv2-review__stars {
  display: flex;
  gap: 2px;
  margin-bottom: 14px;
  color: #fbbf24;
}
.pv2-review__stars svg { width: 18px; height: 18px; fill: currentColor; }
.pv2-review__text {
  font-size: 16px;
  color: var(--ink-700);
  margin: 0 0 18px;
  line-height: 1.55;
}
.pv2-review__person {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--ink-200);
  padding-top: 14px;
}
.pv2-review__avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--brand-grad);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-family: var(--font-display);
}
.pv2-review__name { font-weight: 700; color: var(--ink-900); font-size: 14px; line-height: 1.2; }
.pv2-review__role { color: var(--ink-500); font-size: 13px; }

/* ---------- 13. FAQ accordion ---------- */
.pv2-faq { max-width: 820px; margin: 0 auto; }
.pv2-faq__item {
  background: #fff;
  border: 1px solid var(--ink-200);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color .15s ease;
}
.pv2-faq__item:hover { border-color: var(--brand); }
.pv2-faq__q {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  border: 0;
  cursor: pointer;
  text-align: left;
  font-weight: 700;
  font-size: 16px;
  color: var(--ink-900);
  font-family: var(--font-display);
}
.pv2-faq__q::after {
  content: '+';
  font-size: 24px;
  color: var(--brand-2);
  transition: transform .2s ease;
  flex-shrink: 0;
}
.pv2-faq__item.is-open .pv2-faq__q::after { transform: rotate(45deg); }
.pv2-faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
}
.pv2-faq__a-inner { padding: 0 24px 22px; color: var(--ink-600); }
.pv2-faq__item.is-open .pv2-faq__a { max-height: 500px; }

/* ---------- 14. Final CTA — minimalistisch, geen oranje paneel meer ---------- */
.pv2-cta {
  text-align: center;
  padding: clamp(40px, 6vw, 80px) 20px;
  max-width: 760px;
  margin: 0 auto;
  background: transparent;
  position: relative;
}
.pv2-cta__title {
  font-size: clamp(28px, 4.5vw, 44px);
  color: var(--ink-900);
  margin: 0 auto 14px;
  letter-spacing: -0.02em;
  line-height: 1.15;
}
.pv2-cta__title .pv2-grad {
  background: linear-gradient(135deg, #ffa726 0%, #ff6f00 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.pv2-cta__lead {
  font-size: clamp(15px, 1.6vw, 18px);
  color: var(--ink-600);
  max-width: 540px;
  margin: 25px auto 28px;
  line-height: 1.6;
}
/* Geen aparte CTA-styling meer — gewoon de standaard primary button */

/* ---------- 15. Footer ---------- */
.pv2-footer {
  background: var(--ink-900);
  color: rgba(255,255,255,0.75);
  padding: 64px 0 32px;
  font-size: 14px;
}
.pv2-footer__top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .pv2-footer__top { grid-template-columns: 1.5fr repeat(3, 1fr); }
}
.pv2-footer__brand img { height: 36px; margin-bottom: 14px; }
.pv2-footer__about { line-height: 1.6; max-width: 320px; margin: 0 0 18px; }
.pv2-footer__col h4 {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #fff;
  margin: 0 0 14px;
  font-family: var(--font-body);
  font-weight: 700;
}
.pv2-footer__col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pv2-footer__col a {
  color: rgba(255,255,255,0.7);
  transition: color .15s ease;
}
.pv2-footer__col a:hover { color: var(--brand); }
.pv2-footer__contact a, .pv2-footer__contact span {
  display: block;
  color: rgba(255,255,255,0.7);
  margin-bottom: 8px;
}
.pv2-footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  text-align: center;
  font-size: 13px;
}
@media (min-width: 768px) {
  .pv2-footer__bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}
.pv2-footer__pay {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}
.pv2-footer__pay span {
  padding: 4px 10px;
  border-radius: 6px;
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.85);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.pv2-footer__legal { color: rgba(255,255,255,0.5); }

/* ---------- 16. Sticky mobile CTA ---------- */
.pv2-sticky-cta {
  position: fixed;
  bottom: 16px; left: 16px; right: 16px;
  background: var(--brand-grad);
  color: #fff;
  border-radius: 999px;
  padding: 14px 24px;
  font-weight: 700;
  text-align: center;
  display: none;
  z-index: 999;
  box-shadow: 0 14px 30px -8px rgba(255,111,0,0.5);
  transition: opacity .25s ease, transform .25s ease, visibility 0s 0s;
}
.pv2-sticky-cta:hover { color: #fff; }
/* Verbergen wanneer het oranje final-CTA paneel of footer zichtbaar is
   (anders krijg je oranje-op-oranje en wordt 'ie onleesbaar). */
.pv2-sticky-cta.is-hidden {
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: opacity .25s ease, transform .25s ease, visibility 0s .25s;
  pointer-events: none;
}
@media (max-width: 768px) {
  .pv2-sticky-cta { display: block; }
  body.pergov2 { padding-bottom: 90px; }
}

/* ---------- 17. Loader (preserve existing) ---------- */
#page-overlay { z-index: 9998; }

/* ============================================================
   PRODUCT / CATEGORY PAGE (pakket-overzicht per platform)
   ============================================================ */

/* Hero / page header (LICHT, met platform-icon en trust-pills) */
.pv2-pkg-hero {
  background:
    radial-gradient(ellipse at top right, rgba(255,167,38,0.14), transparent 55%),
    linear-gradient(180deg, #ffffff 0%, #fff7ed 100%);
  color: var(--ink-900);
  padding: clamp(100px, 11vw, 130px) 0 clamp(40px, 5vw, 60px);
  border-bottom: 1px solid var(--ink-200);
}
.pv2-pkg-hero__breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 13px;
  color: var(--ink-500);
  margin-bottom: 18px;
}
.pv2-pkg-hero__breadcrumb a { color: var(--ink-600); font-weight: 500; }
.pv2-pkg-hero__breadcrumb a:hover { color: var(--brand-2); }
.pv2-pkg-hero__breadcrumb span[aria-hidden] { color: var(--ink-300, #cbd5e1); }

.pv2-pkg-hero__head {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  flex-wrap: wrap;
}
.pv2-pkg-hero__icon {
  width: 76px;
  height: 76px;
  border-radius: 22px;
  background: var(--brand-grad);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 18px 36px -12px rgba(255, 111, 0, 0.45);
  font-size: 32px;
}
.pv2-pkg-hero__icon i { font-size: 36px; }
.pv2-pkg-hero__icon img { width: 44px; height: 44px; object-fit: contain; }
.pv2-pkg-hero__copy { flex: 1; min-width: 260px; }

.pv2-pkg-hero__title {
  font-size: clamp(28px, 4.5vw, 42px);
  margin: 0 0 12px;
  color: var(--ink-900);
  letter-spacing: -0.02em;
}
.pv2-pkg-hero__lead {
  font-size: 16px;
  color: var(--ink-600);
  margin: 0 0 18px;
  max-width: 640px;
  line-height: 1.6;
}
.pv2-pkg-hero__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.pv2-pkg-hero__pills li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--ink-200);
  color: var(--ink-700);
  font-size: 13px;
  font-weight: 600;
}
.pv2-pkg-hero__pills svg {
  width: 14px;
  height: 14px;
  color: var(--success);
}

/* Package grid */
.pv2-pkg-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
@media (min-width: 600px) { .pv2-pkg-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 992px) { .pv2-pkg-grid { grid-template-columns: repeat(4, 1fr); } }

.pv2-pkg {
  position: relative;
  background: #fff;
  border: 1px solid var(--ink-200);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.pv2-pkg:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--brand);
}
.pv2-pkg--featured {
  border-color: var(--brand);
  border-width: 2px;
  background: linear-gradient(180deg, #fff7ed 0%, #fff 50%);
  box-shadow: var(--brand-glow);
}
.pv2-pkg__ribbon {
  position: absolute;
  top: -10px;
  right: 16px;
  padding: 5px 12px;
  border-radius: 999px;
  background: var(--brand-grad);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  box-shadow: var(--brand-glow);
}
.pv2-pkg__name {
  color: var(--ink-500);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  margin: 0 0 6px;
}
.pv2-pkg__qty {
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 32px);
  font-weight: 700;
  color: var(--ink-900);
  line-height: 1.05;
  margin: 0 0 12px;
  letter-spacing: -0.01em;
}
.pv2-pkg__price {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.4vw, 36px);
  font-weight: 700;
  color: var(--brand-2);
  letter-spacing: -0.02em;
  margin: 0 -10px 12px;
  line-height: 1;
}
.pv2-pkg__price small {
  display: block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  color: var(--ink-500);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 2px;
}
.pv2-pkg__sales {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(16, 185, 129, 0.1);
  color: #047857;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 12px;
}
.pv2-pkg__cta {
  margin-top: auto;
  background: var(--brand-grad);
  color: #fff;
  border: 0;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: transform .15s ease, box-shadow .15s ease;
  box-shadow: var(--brand-glow);
}
.pv2-pkg__cta:hover { transform: translateY(-1px); }
.pv2-pkg.hidden-package { display: none; }

.pv2-pkg-more {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}

/* Tabs */
.pv2-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  padding: 4px;
  background: var(--ink-100);
  border-radius: 12px;
  margin-bottom: 24px;
}
.pv2-tabs__btn {
  flex: 1;
  min-width: 120px;
  padding: 10px 18px;
  background: transparent;
  border: 0;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  color: var(--ink-600);
  cursor: pointer;
  transition: background .15s ease, color .15s ease;
}
.pv2-tabs__btn.is-active {
  background: #fff;
  color: var(--ink-900);
  box-shadow: var(--shadow-sm);
}
.pv2-tabs__btn:hover { color: var(--ink-900); }

.pv2-tabpanel { display: none; }
.pv2-tabpanel.is-active { display: block; }

/* Rich content from DB (article styling) */
.pv2-content {
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-700);
  max-width: 820px;
  margin: 0 auto;
}
.pv2-content h1, .pv2-content h2, .pv2-content h3, .pv2-content h4 {
  color: var(--ink-900);
  margin: 32px 0 12px;
}
.pv2-content h2 { font-size: clamp(22px, 3vw, 28px); }
.pv2-content h3 { font-size: clamp(19px, 2.4vw, 22px); }
.pv2-content p { margin: 0 0 16px; }
.pv2-content ul, .pv2-content ol { padding-left: 22px; margin: 0 0 16px; }
.pv2-content a { color: var(--brand-2); }
.pv2-content a:hover { color: var(--brand); }

/* Related categories block (was in pv2- al; nu vaster) */
.package-related .pv2-platforms,
.package-related .related-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin: 0;
}
.package-related .related-list a {
  display: inline-block;
  padding: 10px 18px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--ink-200);
  color: var(--ink-700);
  font-size: 14px;
  font-weight: 600;
  transition: background .15s ease, border-color .15s ease, color .15s ease;
}
.package-related .related-list a:hover {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
}

/* ---------- 18. Auth (sign-in / forgot / change password) ---------- */
.pergov2 .auth-login-form {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 16px;
  background:
    radial-gradient(ellipse at top, rgba(255,152,0,0.08), transparent 50%),
    linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}
.pergov2 .form-login {
  width: 100%;
  max-width: 440px;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 40px 32px;
  border: 1px solid var(--ink-200);
}
.pergov2 .form-login .card-title {
  margin-bottom: 24px;
}
.pergov2 .form-login .site-logo {
  text-align: center;
  margin-bottom: 12px;
}
.pergov2 .form-login .site-logo img { height: 44px; margin: 0 auto; }
.pergov2 .form-login h4 {
  text-align: center;
  font-size: 22px;
  margin: 0;
  color: var(--ink-900);
}
.pergov2 .form-login p.text-muted {
  text-align: center;
  color: var(--ink-500);
  font-size: 14px;
  margin: 0 0 22px;
}
.pergov2 .form-login .form-control {
  border-radius: 10px;
  border: 1px solid var(--ink-200);
  padding: 12px 14px;
  font-size: 15px;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.pergov2 .form-login .form-control:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(255,152,0,0.15);
  outline: none;
}
.pergov2 .form-login .input-icon {
  position: relative;
}
.pergov2 .form-login .input-icon-addon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--ink-400);
  pointer-events: none;
}
.pergov2 .form-login .input-icon .form-control { padding-left: 42px; }
.pergov2 .form-login .btn-gradient,
.pergov2 .form-login .btn-submit {
  background: var(--brand-grad) !important;
  color: #fff !important;
  border: 0;
  width: 100%;
  padding: 14px;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: var(--brand-glow);
  transition: transform .15s ease;
}
.pergov2 .form-login .btn-gradient:hover { transform: translateY(-1px); }
.pergov2 .form-login .form-footer { margin-top: 8px; }

/* ---------- 19. Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  .pv2-pcard { animation: none; }
  *, *::before, *::after { transition: none !important; animation: none !important; }
}
