/* Snapshot copied from ../prijzen.html on 2026-06-12. */
/* ============================================================= */
/* PRIJZEN-PAGINA                                                 */
/* ============================================================= */
.pp-wrap { max-width: 1280px; margin: 0 auto; padding: 0 var(--space-6); }
.pp-h2 {
  font-size: 40px;
  font-weight: 700;
  letter-spacing: -0.032em;
  line-height: 1.05;
  color: var(--ink);
  margin: 0 0 12px;
}
.pp-h2-sub {
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 0 0 40px;
  max-width: 560px;
}

/* ---- Header ---- */
.pp-hero {
  background: linear-gradient(180deg, var(--bg-warm) 0%, var(--bg) 72%);
  padding: 76px 0 24px;
  text-align: center;
}
.pp-title {
  font-size: 56px;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.02;
  color: var(--ink);
  margin: 0 auto 18px;
  max-width: 780px;
}
.pp-title em { color: var(--emerald); font-style: normal; }
.pp-sub {
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 0 auto 34px;
  max-width: 680px;
}

/* ---- Billing toggle ---- */
.billing-toggle {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  background: var(--bg-warm);
  border: 1px solid var(--ink-line);
  border-radius: var(--radius-pill);
}
.bt-opt {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: none;
  background: transparent;
  color: var(--ink-soft);
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  cursor: pointer;
  white-space: nowrap;
  transition: background-color var(--duration-base), color var(--duration-base), box-shadow var(--duration-base);
}
.bt-opt.is-active {
  background: var(--surface);
  color: var(--ink);
  box-shadow: 0 1px 3px rgba(10,10,10,0.07), 0 5px 14px -8px rgba(10,10,10,0.14);
}
/* Trust-strip */
.pp-usps {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px 38px;
  margin: 0 0 38px;
}
.pp-usp { display: inline-flex; align-items: center; gap: 8px; }
.pp-usp svg { width: 16px; height: 16px; color: var(--emerald); flex-shrink: 0; }
.pp-usp span { font-size: 13px; color: var(--ink-soft); line-height: 1.3; white-space: nowrap; }

/* Toggle met bespaar-note eronder */
.pp-toggle-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.pp-toggle-note {
  font-size: 13px;
  font-weight: 500;
  color: var(--emerald-deep);
  white-space: nowrap;
}

/* ---- Cards (hergebruik strip-stijl) ---- */
.pp-cards-section { background: var(--bg); padding: 24px 0 112px; }
.pp-integrations-section {
  background: var(--bg);
  padding: 112px 0;
}
.pp-integrations-header {
  max-width: 620px;
  margin: 0 auto 56px;
  text-align: center;
}
.pp-integrations-header .pp-h2-sub { margin-bottom: 0; margin-left: auto; margin-right: auto; }

/* Bridge in een omkaderde card, gecentreerd onder de kop */
.pp-bridge-card {
  max-width: 920px;
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--ink-line);
  border-radius: var(--radius-lg);
  box-shadow: 0 32px 64px -32px rgba(10, 10, 10, 0.12);
  padding: 64px 56px;
}
.pp-integration-overline {
  font-family: var(--mono);
  font-size: 10.5px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--emerald-deep);
  margin: 0 0 12px;
}
.pp-integrations-accent {
  display: block;
  margin-top: 5px;
  color: var(--emerald-deep);
  font-weight: 550;
}
.pp-integration-chip {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  height: 22px;
  color: var(--ink-soft);
  opacity: 0.62;
  transition: opacity var(--duration-base) var(--ease-default);
}
.pp-integration-chip:hover { opacity: 1; }

/* ---- Bridge integratie-layout ---- */
.pp-bridge {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  grid-template-rows: auto auto;
  grid-template-areas:
    "lh .  rh"
    "ll hb rl";
  gap: 28px 120px;
  width: 100%;
  margin: 0 auto;
  position: relative;
}
.pp-bridge-col-header {
  margin: 0;
  font-family: var(--mono);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  line-height: 1;
  position: relative;
  z-index: 2;
}
.pp-bridge-col-header-left { grid-area: lh; justify-self: end; }
.pp-bridge-col-header-right { grid-area: rh; justify-self: start; }
.pp-bridge-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
  position: relative;
  z-index: 2;
}
.pp-bridge-list-left { grid-area: ll; align-items: flex-end; }
.pp-bridge-list-right { grid-area: rl; align-items: flex-start; }
/* Linkerkolom spiegelen: icoon aan de binnenkant (richting hub), naam naar buiten */
.pp-bridge-list-left .pp-integration-chip { flex-direction: row-reverse; }
.pp-bridge-list .pp-integration-chip {
  opacity: 1;
  position: relative;
}
.pp-bridge-list .pp-integration-mark { color: var(--emerald); }
.pp-bridge-list .pp-integration-chip .pp-integration-status {
  position: absolute;
  top: calc(100% + 3px);
  margin: 0;
  padding: 0;
  background: none;
  color: var(--ink-faded);
  font-size: 8.5px;
  white-space: nowrap;
}
/* linkerkolom is gespiegeld (naam links), dus status onder de naam = links uitlijnen */
.pp-bridge-list-left .pp-integration-chip .pp-integration-status { left: 0; }
.pp-bridge-list-right .pp-integration-chip .pp-integration-status { right: 0; }

.pp-bridge-connectors {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: visible;
}
.pp-bridge-connectors path {
  fill: none;
  stroke: rgba(10, 10, 10, 0.18);
  stroke-width: 1;
  stroke-linecap: round;
}

.pp-bridge-hub {
  grid-area: hb;
  align-self: center;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  width: 160px;
  height: 160px;
  padding: 0;
  background: var(--surface);
  border: 1px solid var(--ink-line);
  border-radius: var(--radius-md);
  box-shadow: 0 28px 64px -28px rgba(10, 10, 10, 0.22);
}

/* Siri-stijl animatie — twee bright blobs orbiten rond de hub */
.pp-bridge-hub::before {
  content: '';
  position: absolute;
  inset: -10px;
  border-radius: calc(var(--radius-md) + 10px);
  padding: 10px;
  background: conic-gradient(
    from var(--hub-angle, 0deg),
    rgba(16, 185, 129, 0.16) 0%,
    rgba(52, 211, 153, 0.28) 8%,
    rgba(110, 231, 183, 0.42) 14%,
    rgba(52, 211, 153, 0.28) 20%,
    rgba(16, 185, 129, 0.16) 28%,
    rgba(52, 211, 153, 0.26) 36%,
    rgba(110, 231, 183, 0.38) 42%,
    rgba(52, 211, 153, 0.26) 48%,
    rgba(16, 185, 129, 0.16) 56%,
    rgba(52, 211, 153, 0.26) 64%,
    rgba(110, 231, 183, 0.40) 72%,
    rgba(52, 211, 153, 0.26) 80%,
    rgba(16, 185, 129, 0.16) 88%,
    rgba(16, 185, 129, 0.16) 100%
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  animation: hubRotate 6s linear infinite;
  pointer-events: none;
  z-index: -1;
}

@property --hub-angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}

@keyframes hubRotate {
  from { --hub-angle: 0deg; }
  to { --hub-angle: 360deg; }
}

@media (prefers-reduced-motion: reduce) {
  .pp-bridge-hub::before { animation: none; }
}
.pp-bridge-hub-name {
  font-family: var(--sans);
  font-size: 30px;
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1;
  color: var(--ink);
}
.pp-bridge-hub-dots {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  height: 8px;
}
.pp-bridge-hub-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--emerald);
  display: block;
  animation: salenza-typing 2.4s infinite ease-in-out;
}
.pp-bridge-hub-dots span:nth-child(1) { animation-delay: 0s; opacity: 0.5; }
.pp-bridge-hub-dots span:nth-child(2) { animation-delay: 0.3s; opacity: 0.75; }
.pp-bridge-hub-dots span:nth-child(3) { animation-delay: 0.6s; }

.pp-bridge-note {
  max-width: 600px;
  margin: 28px auto 0;
  text-align: center;
  font-size: 12.5px;
  line-height: 1.55;
  color: var(--ink-faded);
}
.pp-bridge-note strong {
  color: var(--ink);
  font-weight: 500;
}
.pp-integration-mark {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  display: block;
}
.pp-integration-name {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.015em;
  color: var(--ink);
  white-space: nowrap;
}
.pp-integration-status {
  margin-left: 6px;
  padding: 3px 7px;
  border-radius: var(--radius-pill);
  background: var(--emerald-soft);
  color: var(--emerald-deep);
  font-family: var(--mono);
  font-size: 8.5px;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}
.pp-integrations-note {
  margin: 28px 0 0;
  max-width: 760px;
  font-size: 12.5px;
  line-height: 1.55;
  color: var(--ink-faded);
}
.pp-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 16px;
  align-items: stretch;
}
.tier-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--ink-line);
  border-radius: 18px;
  padding: 32px 28px 28px;
  transition: transform var(--duration-base), box-shadow var(--duration-base);
}
.tier-card:hover { transform: translateY(-2px); box-shadow: 0 24px 60px -28px rgba(10,10,10,0.18); }
.tier-card.featured { border: 1.5px solid var(--emerald); }
.tier-head { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; margin-bottom: 14px; }
.tier-name { font-size: 18px; font-weight: 600; letter-spacing: -0.01em; color: var(--ink); }
.tier-badge {
  font-family: var(--mono); font-size: 10px; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--emerald); background: var(--emerald-soft);
  padding: 5px 10px; border-radius: 999px; white-space: nowrap;
}
.tier-desc { font-size: 14px; line-height: 1.55; color: var(--ink-soft); margin: 0 0 28px; min-height: 64px; }
.tier-price-row { display: flex; align-items: baseline; gap: 8px; margin-bottom: 4px; flex-wrap: nowrap; }
.tier-price { font-size: 44px; font-weight: 700; letter-spacing: -0.025em; line-height: 1; color: var(--ink); white-space: nowrap; }
.tier-period { font-size: 13px; font-weight: 500; color: var(--ink-soft); white-space: nowrap; }
.tier-vat {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.08em; color: var(--ink-faded);
  text-transform: uppercase; margin-bottom: 6px;
}
.tier-billing-note {
  max-width: 36ch;
  min-height: 40px;
  margin: 6px 0 20px;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.45;
}
.tier-billing-note strong { color: var(--emerald-deep); font-weight: 600; }
.tier-bullets { list-style: none; padding: 0; margin: 0 0 28px; display: grid; gap: 11px; }
.tier-bullet {
  display: grid; grid-template-columns: 16px 1fr; gap: 10px; align-items: flex-start;
  font-size: 13.5px; line-height: 1.5; color: var(--ink);
}
.tier-bullet svg { width: 16px; height: 16px; color: var(--emerald); margin-top: 3px; flex-shrink: 0; }
.metric-help {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 15px;
  height: 15px;
  margin-left: 5px;
  vertical-align: -2px;
  font-size: 0;
  color: transparent;
  cursor: help;
  opacity: 0.7;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23a1a1aa' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Cpath d='M12 11v4.5'/%3E%3Cpath d='M12 7.75h.01'/%3E%3C/svg%3E") center / contain no-repeat;
  transition: opacity var(--duration-base);
}
.metric-help:hover,
.metric-help:focus,
.metric-help:focus-within { opacity: 1; }
.metric-tooltip {
  position: absolute;
  left: 50%;
  bottom: calc(100% + 9px);
  z-index: 20;
  width: min(260px, 72vw);
  padding: 10px 12px;
  border: 1px solid var(--ink-line);
  border-radius: var(--radius-sm);
  background: var(--ink);
  color: #fff;
  box-shadow: 0 16px 34px -18px rgba(10,10,10,0.34);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 400;
  line-height: 1.45;
  opacity: 0;
  pointer-events: none;
  text-align: left;
  transform: translate(-50%, 4px);
  transition: opacity var(--duration-base), transform var(--duration-base);
}
.metric-help:hover .metric-tooltip,
.metric-help:focus .metric-tooltip,
.metric-help:focus-within .metric-tooltip {
  opacity: 1;
  transform: translate(-50%, 0);
}
.tier-cta {
  display: inline-flex; align-items: center; justify-content: center; margin-top: auto;
  width: 100%; padding: 13px var(--space-5); border-radius: var(--radius-pill);
  font-family: var(--sans); font-size: 14px; font-weight: 500; text-decoration: none;
  border: 1px solid var(--ink-stroke); background: var(--surface); color: var(--ink);
  transition: background-color var(--duration-base), border-color var(--duration-base), color var(--duration-base); cursor: pointer;
}
.tier-cta:hover { background: var(--bg-warm); border-color: var(--ink); }
.tier-card.featured .tier-cta { background: var(--emerald); border-color: var(--emerald); color: #fff; }
.tier-card.featured .tier-cta:hover { background: var(--emerald-deep); border-color: var(--emerald-deep); }

/* ---- Altijd inbegrepen ---- */
.pp-included {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 7px;
  margin: 28px 0 24px;
}
.pp-included-label {
  margin: 0 6px 0 0;
  font-size: 12.5px;
  color: var(--ink-faded);
  white-space: nowrap;
}
.pp-included-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: var(--radius-pill);
  background: var(--bg-warm);
  color: var(--ink);
  font-size: 11.5px;
  font-weight: 500;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  transition: background var(--duration-base), color var(--duration-base);
}
.pp-included-link:hover {
  background: var(--emerald-soft);
  color: var(--emerald-deep);
}
.pp-included-link svg {
  width: 13px;
  height: 13px;
  color: var(--emerald);
  flex-shrink: 0;
}

/* ---- Enterprise band ---- */
.tier-enterprise {
  background: var(--surface); border: 1px solid var(--ink-line); border-radius: 18px;
  padding: 24px 28px; display: grid; grid-template-columns: 1fr auto; gap: 32px; align-items: center;
}
.tier-enterprise-left { display: flex; align-items: center; gap: 24px; }
.tier-enterprise-name { font-size: 15px; font-weight: 600; color: var(--ink); white-space: nowrap; }
.tier-enterprise-name::after {
  content: ''; display: inline-block; width: 1px; height: 16px; background: var(--ink-line);
  margin-left: 24px; vertical-align: middle;
}
.tier-enterprise-desc { font-size: 14px; color: var(--ink-soft); line-height: 1.5; }
.tier-enterprise-cta {
  font-size: 13px; font-weight: 500; color: var(--ink); text-decoration: none;
  display: inline-flex; align-items: center; gap: 6px; padding: 10px 18px;
  border: 1px solid var(--ink-stroke); border-radius: var(--radius-pill); white-space: nowrap;
  transition: background-color var(--duration-base), border-color var(--duration-base), color var(--duration-base);
}
.tier-enterprise-cta:hover { background: var(--ink); color: #fff; border-color: var(--ink); }

/* ---- Vergelijkingstabel ---- */
.pp-compare {
  background: var(--bg-warm);
  border-top: 1px solid var(--ink-line);
  padding: 140px 0;
}
.pp-compare-overline {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--emerald-deep);
  margin: 0 0 14px;
}
.pp-compare .pp-h2-sub { margin-bottom: 64px; }

.cmp-scroll {
  position: relative;
  overflow: visible;
  background: var(--surface);
  border: 1px solid var(--ink-line);
  border-radius: var(--radius-lg);
  box-shadow: 0 32px 64px -32px rgba(10, 10, 10, 0.12);
}
@media (max-width: 900px) {
  .cmp-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }
}
.cmp-table { width: 100%; border-collapse: separate; border-spacing: 0; min-width: 640px; }

/* Header row — plakt onder de nav bij scrollen */
.cmp-table thead th {
  position: sticky;
  top: 66px;
  z-index: 4;
  text-align: center;
  padding: 24px 18px 20px;
  vertical-align: bottom;
  background: var(--surface);
  border-bottom: 1px solid var(--ink-line);
}
.cmp-table thead th:last-child { border-top-right-radius: var(--radius-lg); }
.cmp-table thead th.cmp-feat-col {
  text-align: left;
  padding-left: 28px;
  padding-right: 14px;
  border-top-left-radius: var(--radius-lg);
}

/* Eerste-kolom kop */
.cmp-feat-eyebrow {
  margin: 0 0 7px;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--emerald-deep);
}
.cmp-feat-title {
  margin: 0;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.3;
  color: var(--ink);
}

/* Featured Growth-kolom — zachte tint-band, geen borders */
.cmp-table thead th.cmp-col-feat {
  background: linear-gradient(180deg, rgba(4,120,87,0.10) 0%, rgba(4,120,87,0.06) 100%), var(--surface);
}
.cmp-table thead th.cmp-col-feat::before {
  content: attr(data-featured-label);
  display: inline-block;
  margin-bottom: 8px;
  font-family: var(--mono);
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--emerald-deep);
  background: var(--emerald-soft);
  padding: 4px 9px;
  border-radius: var(--radius-pill);
  line-height: 1;
  white-space: nowrap;
}
.cmp-tier-name {
  display: block;
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.018em;
  line-height: 1.1;
}
.cmp-tier-name.is-feat { color: var(--emerald-deep); }
.cmp-tier-price {
  display: block;
  margin-top: 10px;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--ink);
}
.cmp-tier-price.is-feat { color: var(--emerald-deep); }
.cmp-tier-per {
  display: block;
  margin-top: 5px;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-faded);
}
.cmp-tier-cta {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 14px;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--ink-soft);
  text-decoration: none;
  transition: color var(--duration-base), gap var(--duration-base);
}
.cmp-tier-cta:hover { color: var(--ink); gap: 6px; }
.cmp-tier-cta.is-feat { color: var(--emerald-deep); }
.cmp-tier-cta.is-feat:hover { color: var(--emerald); }

/* Featured column body cells — doorlopende randen + afgeronde voet */
.cmp-table tbody td.is-feat-col {
  background: rgba(4,120,87,0.06);
}

/* Body cells — alleen onderranden (geen dubbele lijnen bij separate) */
.cmp-table tbody td, .cmp-table tbody th {
  padding: 16px 18px;
  border-bottom: 1px solid rgba(10,10,10,0.05);
  transition: background var(--duration-base);
}
.cmp-table tbody th {
  text-align: left;
  font-weight: 500;
  font-size: 14.5px;
  color: var(--ink);
  padding-left: 28px;
}
.cmp-table tbody td {
  text-align: center;
  font-size: 13.5px;
  color: var(--ink-soft);
}
.cmp-table tbody tr:first-child td { border-top: none; }
.cmp-table tbody tr:last-child th { border-bottom: none; border-bottom-left-radius: var(--radius-lg); }
.cmp-table tbody tr:last-child td { border-bottom: none; }
.cmp-table tbody tr:last-child td:last-child { border-bottom-right-radius: var(--radius-lg); }

/* Row hover */
.cmp-table tbody tr:not(.cmp-group):hover th,
.cmp-table tbody tr:not(.cmp-group):hover td {
  background: rgba(10,10,10,0.02);
}
.cmp-table tbody tr:not(.cmp-group):hover td.is-feat-col {
  background: rgba(4,120,87,0.08);
}

/* Section group rows */
.cmp-table .cmp-group td {
  text-align: left;
  background: var(--bg-warm);
  border-bottom: 1px solid var(--ink-line);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  padding: 20px 28px;
}
.cmp-table tbody tr.cmp-group:not(:first-child) td { border-top: 1px solid var(--ink-line); }

/* Yes / No icons — circle chips */
.cmp-table td[data-yes],
.cmp-table td[data-no] { line-height: 0; }
.cmp-table td[data-yes]::before,
.cmp-table td[data-no]::before {
  content: '';
  display: inline-block;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  vertical-align: middle;
}
.cmp-table td[data-yes]::before {
  background: var(--emerald-soft) url("data:image/svg+xml,%3Csvg viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%23035E45' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 10.5l3.2 3.2 6.8-8'/%3E%3C/svg%3E") center / 14px 14px no-repeat;
}
.cmp-table td[data-no]::before {
  background: rgba(10,10,10,0.03) url("data:image/svg+xml,%3Csvg viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%23A1A1AA' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='M7 10 H13'/%3E%3C/svg%3E") center / 14px 14px no-repeat;
  border: 1px solid var(--ink-line);
}

/* Old icon classes kept for backwards compat (unused) */
.cmp-check { color: var(--emerald); display: inline-flex; }
.cmp-check svg { width: 17px; height: 17px; }
.cmp-dash { color: var(--ink-faded); opacity: 0.5; }

/* ---- Top-ups ---- */
.pp-topups { background: var(--bg); padding: 112px 0; }
.topup-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.topup-card {
  background: var(--surface); border: 1px solid var(--ink-line); border-radius: var(--radius-md);
  padding: 22px 20px; text-align: left;
}
.topup-amount { font-size: 24px; font-weight: 700; letter-spacing: -0.02em; color: var(--ink); }
.topup-label { font-size: 13px; color: var(--ink-soft); margin: 2px 0 16px; }
.topup-price { font-size: 15px; font-weight: 600; color: var(--emerald-deep); }
.topup-price span { font-family: var(--mono); font-size: 10px; color: var(--ink-faded); text-transform: uppercase; letter-spacing: 0.06em; margin-left: 6px; }
.pp-upgrade-advice {
  display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr); gap: 36px;
  margin-top: 20px; padding: 30px; border: 1px solid rgba(3, 94, 69, 0.16);
  border-radius: var(--radius-lg); background: linear-gradient(135deg, rgba(236, 253, 245, 0.9), rgba(255, 255, 255, 0.96));
  box-shadow: 0 18px 40px -32px rgba(3, 94, 69, 0.42);
}
.pp-upgrade-kicker { margin: 0 0 8px; font-family: var(--mono); font-size: 10px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--emerald-deep); }
.pp-upgrade-intro h3 { margin: 0 0 10px; max-width: 440px; font-size: 22px; line-height: 1.15; letter-spacing: -0.025em; color: var(--ink); }
.pp-upgrade-intro > p:last-child { margin: 0; max-width: 520px; font-size: 14px; line-height: 1.65; color: var(--ink-soft); }
.pp-upgrade-options { display: grid; gap: 10px; align-content: center; }
.pp-upgrade-option { display: grid; gap: 5px; padding: 15px 17px; border: 1px solid rgba(3, 94, 69, 0.1); border-radius: var(--radius-md); background: rgba(255, 255, 255, 0.78); }
.pp-upgrade-option strong { font-size: 14px; color: var(--ink); }
.pp-upgrade-option span { font-size: 13px; line-height: 1.5; color: var(--ink-soft); }
.pp-topups-note { font-size: 13px; color: var(--ink-faded); margin-top: 22px; }

/* ---- FAQ ---- */
.pp-faq { background: var(--bg-warm); border-top: 1px solid var(--ink-line); padding: 112px 0; }
.pp-faq .pp-compare-overline { text-align: center; }
.pp-faq .pp-h2 { text-align: center; }
.pp-faq .pp-h2-sub { text-align: center; margin-left: auto; margin-right: auto; }

/* FAQ-items — gelijk aan de homepage */
.faq-grid {
  max-width: 820px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  align-items: stretch;
}
.pp-q { display: flex; flex-direction: column; }
.pp-q {
  position: relative;
  background: rgba(255, 255, 255, 0.92);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
          backdrop-filter: blur(20px) saturate(160%);
  border: 1px solid rgba(10, 10, 10, 0.07);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow:
    0 1px 2px rgba(10, 10, 10, 0.025),
    0 12px 32px -16px rgba(10, 10, 10, 0.08);
  transition: border-color 0.35s cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 0.35s cubic-bezier(0.22, 1, 0.36, 1),
              background 0.35s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.pp-q:hover {
  border-color: rgba(10, 10, 10, 0.12);
  background: rgba(255, 255, 255, 0.97);
  box-shadow:
    0 1px 2px rgba(10, 10, 10, 0.03),
    0 20px 44px -16px rgba(10, 10, 10, 0.14);
  transform: translateY(-1px);
}
.pp-q[open] {
  background: linear-gradient(180deg, #FFFFFF 0%, #FAFAF8 100%);
  border-color: rgba(10, 10, 10, 0.14);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.95),
    0 1px 2px rgba(10, 10, 10, 0.04),
    0 24px 56px -18px rgba(10, 10, 10, 0.18);
}
.pp-q summary {
  list-style: none;
  cursor: pointer;
  flex: 1;
  display: flex;
  align-items: center;
  gap: var(--space-4);
  padding: 26px 28px;
  font-size: 17px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1.35;
  transition: color 0.2s ease;
}
.pp-q summary::-webkit-details-marker { display: none; }
.pp-q summary::marker { content: ""; }
.pp-q summary:hover { color: var(--emerald); }
.pp-q .faq-q-text { flex: 1; min-width: 0; }
.pp-q .ic {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(10, 10, 10, 0.045);
  color: var(--ink-soft);
  flex-shrink: 0;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
              background 0.3s ease,
              color 0.3s ease;
}
.pp-q .ic svg { width: 13px; height: 13px; }
.pp-q:hover .ic { background: rgba(10, 10, 10, 0.07); color: var(--ink); }
.pp-q[open] .ic { transform: rotate(45deg); background: var(--emerald-soft); color: var(--emerald); }
.pp-q .ans {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.pp-q[open] .ans { grid-template-rows: 1fr; }
.pp-q .ans > * {
  overflow: hidden;
  min-height: 0;
}
.pp-q .ans-inner {
  padding: 0 28px 24px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-soft);
}

/* ---- CTA ---- */
.pp-cta {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #161311 0%, #0E0E0C 100%);
  padding: 140px 0;
  text-align: center;
}
.pp-cta::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 340px;
  background: radial-gradient(ellipse 80% 100% at 50% 0%, rgba(16,185,129,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.pp-cta-inner { position: relative; z-index: 1; max-width: 600px; margin: 0 auto; padding: 0 var(--space-6); }
.pp-cta-eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin: 0 0 var(--space-4);
}
.pp-cta h2 {
  font-size: 46px;
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.04;
  color: #fff;
  margin: 0 0 18px;
}
.pp-cta h2 em { color: var(--emerald-light, #10B981); font-style: normal; font-weight: 400; }
.pp-cta p {
  font-size: 17px;
  line-height: 1.55;
  color: rgba(255,255,255,0.66);
  margin: 0 auto 34px;
  max-width: 470px;
}
.pp-cta-actions {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-5);
  flex-wrap: wrap;
}
.pp-cta-secondary {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.72);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.22);
  padding-bottom: 1px;
  transition: color var(--duration-base), border-color var(--duration-base);
}
.pp-cta-secondary:hover { color: #fff; border-bottom-color: rgba(255,255,255,0.6); }
.pp-cta-trust {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px 28px;
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.pp-cta-trust-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.62);
  white-space: nowrap;
}
.pp-cta-trust-item svg { width: 15px; height: 15px; color: var(--emerald-light, #10B981); flex-shrink: 0; }

/* ---- Demo-modal (Formspree -> Cal embed) ---- */
.pp-demo-modal {
  position: fixed;
  inset: 0;
  z-index: 9500;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.pp-demo-modal.is-open { display: flex; }
.pp-demo-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.55);
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
}
.pp-demo-box {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 520px;
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  background: var(--surface);
  border: 1px solid var(--ink-line);
  border-radius: var(--radius-lg);
  box-shadow: 0 40px 100px -24px rgba(10, 10, 10, 0.4);
  padding: 38px 38px 32px;
  transition: max-width var(--duration-slow) var(--ease-default);
}
.pp-demo-box.is-calendar { max-width: 940px; padding-bottom: 24px; }
.pp-demo-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 50%;
  background: var(--bg-warm);
  color: var(--ink-soft);
  cursor: pointer;
  transition: background var(--duration-base), color var(--duration-base);
}
.pp-demo-close:hover { background: var(--ink-line); color: var(--ink); }
.pp-demo-close svg { width: 16px; height: 16px; }
.pp-demo-eyebrow {
  font-family: var(--mono);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--emerald-deep);
  margin: 0 0 10px;
}
.pp-demo-title { font-size: 24px; font-weight: 700; letter-spacing: -0.02em; color: var(--ink); margin: 0 0 8px; }
.pp-demo-sub { font-size: 14px; line-height: 1.55; color: var(--ink-soft); margin: 0 0 26px; max-width: 420px; }

.pp-demo-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.pp-demo-group { display: flex; flex-direction: column; gap: 6px; }
.pp-demo-group label { font-size: 12.5px; font-weight: 500; color: var(--ink-soft); }
.pp-demo-group input {
  width: 100%;
  font-family: var(--sans);
  font-size: 14px;
  color: var(--ink);
  background: var(--bg-warm);
  border: 1px solid var(--ink-stroke);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  transition: border-color var(--duration-base), background var(--duration-base);
}
@media (max-width: 640px) { .pp-demo-group input { font-size: 16px; } }
.pp-demo-group input::placeholder { color: var(--ink-faded); }
.pp-demo-group input:hover { border-color: var(--ink); }
.pp-demo-group input:focus { outline: 2px solid color-mix(in srgb, var(--emerald) 24%, transparent); outline-offset: 1px; border-color: var(--emerald); background: var(--surface); }
.pp-demo-group.has-error input { border-color: #DC2626; background: rgba(220,38,38,0.04); }
.pp-demo-form .btn { width: 100%; margin-top: 6px; }
.pp-demo-footer { font-size: 12px; line-height: 1.5; color: var(--ink-faded); margin: 14px 0 0; text-align: center; }
.pp-demo-cal { padding-top: 4px; }
.pp-demo-cal #pp-cal-inline { width: 100%; min-height: 640px; }

/* ---- Klantverhaal ---- */
.pp-testimonial {
  position: relative;
  overflow: hidden;
  background: var(--bg-warm);
  padding: 140px 0;
}
.pp-testimonial::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 300px;
  background: radial-gradient(ellipse 70% 100% at 50% 0%, rgba(255,255,255,0.7) 0%, transparent 72%);
  pointer-events: none;
}
.pp-testimonial-overline {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--emerald-deep);
  margin: 0 0 20px;
}
.pp-testimonial-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: 80px;
  align-items: center;
  max-width: 1120px;
  margin: 0 auto;
}
.pp-testimonial-photo {
  display: block;
  width: 100%;
  height: auto;
  min-height: 0;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: 52% 30%;
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 64px -28px rgba(10, 10, 10, 0.3);
}
.pp-testimonial-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.pp-testimonial-quote {
  margin: 0;
  font-size: 26px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.pp-testimonial-quote em {
  color: var(--emerald-deep);
  font-style: normal;
  font-weight: 500;
}
.pp-testimonial-meta {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
  margin: var(--space-6) 0 0;
}
.pp-testimonial-meta strong {
  font-size: 14px;
  color: var(--ink);
  font-weight: 500;
}
.pp-testimonial-meta span {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--ink-faded);
}
.info-inline {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.info-inline .metric-help { margin-left: 0; }
.tier-rec-note { font-size: 12.5px; line-height: 1.45; font-weight: 500; color: var(--emerald-deep); margin: 0 0 18px; }

/* ---- Tabel: pakket-kiezer (alleen mobiel) ---- */
.cmp-plan-switch { display: none; }
.cmp-plan-switch {
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  padding: 5px;
  margin: 0 0 14px;
  background: var(--bg-warm);
  border: 1px solid var(--ink-line);
  border-radius: 16px;
  -webkit-backdrop-filter: blur(10px) saturate(150%);
          backdrop-filter: blur(10px) saturate(150%);
}
.cmp-plan-opt {
  appearance: none;
  -webkit-appearance: none;
  border: none;
  background: transparent;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  font-family: var(--sans);
  padding: 9px 6px;
  border-radius: 12px;
  cursor: pointer;
  white-space: nowrap;
  transition: background var(--duration-base), box-shadow var(--duration-base);
}
.cmp-plan-name {
  font-size: 13px;
  font-weight: 550;
  letter-spacing: -0.01em;
  color: var(--ink-soft);
  transition: color var(--duration-base);
}
.cmp-plan-price {
  font-size: 12px;
  font-weight: 500;
  color: var(--ink-faded);
  transition: color var(--duration-base);
}
.cmp-plan-opt.is-active {
  background: var(--surface);
  box-shadow: 0 1px 3px rgba(10,10,10,0.07), 0 6px 16px -8px rgba(10,10,10,0.16);
}
.cmp-plan-opt.is-active .cmp-plan-name { color: var(--ink); }
.cmp-plan-opt.is-active .cmp-plan-price { color: var(--ink-soft); }
.cmp-plan-opt.is-active[data-plan="growth"] .cmp-plan-name,
.cmp-plan-opt.is-active[data-plan="growth"] .cmp-plan-price { color: var(--emerald-deep); }

@keyframes cmpColFade {
  from { opacity: 0; transform: translateY(3px); }
  to { opacity: 1; transform: none; }
}

/* ---- Vergelijking inklapbaar (alleen mobiel) ---- */
.cmp-toggle { display: none; }
.cmp-toggle {
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 20px;
  background: var(--surface);
  border: 1px solid var(--ink-line);
  border-radius: var(--radius-md);
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 550;
  letter-spacing: -0.01em;
  color: var(--ink);
  cursor: pointer;
  box-shadow: 0 1px 2px rgba(10,10,10,0.03), 0 12px 32px -20px rgba(10,10,10,0.12);
  transition: border-color var(--duration-base), background var(--duration-base);
}
.cmp-toggle:hover { border-color: var(--ink-stroke); }
.cmp-toggle-ic {
  width: 18px;
  height: 18px;
  color: var(--ink-soft);
  flex-shrink: 0;
  transition: transform var(--duration-base) var(--ease-default);
}
.cmp-toggle.is-open .cmp-toggle-ic { transform: rotate(180deg); }

/* ---- Tabel: swipe-hint + a11y ---- */
.cmp-swipe-hint { display: none; }
.cmp-swipe-hint.show {
  display: block; text-align: center; font-family: var(--mono);
  font-size: 10.5px; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--ink-faded); margin-bottom: 14px;
}
.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ---- Mid-page CTA ---- */
.pp-midcta { text-align: center; margin-top: 44px; }
.pp-midcta .ln { font-size: 13px; color: var(--ink-faded); margin-top: 14px; }

/* ============================================================= */
/* RESPONSIVE                                                    */
/* ============================================================= */
@media (max-width: 1024px) {
  .pp-title { font-size: 44px; }
}
@media (min-width: 721px) and (max-width: 1024px) {
  .tier-card { padding: 26px 22px 24px; }
  .tier-price { font-size: 36px; }
  .tier-billing-note { min-height: 42px; }
  .tier-head { min-height: 58px; align-content: flex-start; }
  .tier-desc { min-height: 90px; }
}
@media (max-width: 840px) {
  .pp-included-label { flex-basis: 100%; margin-bottom: 2px; }
  .tier-enterprise { grid-template-columns: 1fr; text-align: left; gap: 18px; }
  .tier-enterprise-left { flex-direction: column; align-items: flex-start; gap: 8px; }
  .tier-enterprise-name::after { display: none; }
  .tier-enterprise-cta { justify-self: start; }
  .topup-grid { grid-template-columns: repeat(2, 1fr); }
  .pp-upgrade-advice { grid-template-columns: 1fr; gap: 22px; }
  .pp-testimonial-inner { gap: 42px; }
  .pp-testimonial-quote { font-size: 23px; }
}

/* Integraties: bridge -> verticale flow op tablet & mobiel */
/* Integraties: op tablet/mobiel -> "kloppend hart" (hub centraal + zachte glow) */
@media (max-width: 900px) {
  .pp-bridge-card { position: relative; overflow: hidden; padding: 56px 28px; }
  .pp-bridge-card::before {
    content: '';
    position: absolute;
    left: 50%; top: 48%;
    transform: translate(-50%, -50%);
    width: 360px; height: 360px;
    background: radial-gradient(circle, rgba(16,185,129,0.10) 0%, rgba(4,120,87,0.04) 38%, transparent 68%);
    pointer-events: none;
    z-index: 0;
  }
  .pp-bridge {
    position: relative;
    z-index: 1;
    grid-template-columns: 1fr;
    grid-template-areas: "lh" "ll" "hb" "rh" "rl";
    gap: 16px;
    max-width: 460px;
    margin: 0 auto;
    width: 100%;
  }
  .pp-bridge-connectors { display: none; }
  .pp-bridge-col-header { justify-self: center; text-align: center; margin-bottom: 2px; }
  .pp-bridge-list {
    display: grid;
    grid-template-columns: repeat(2, auto);
    justify-content: center;
    justify-items: start;
    align-items: start;
    gap: 20px 32px;
  }
  .pp-bridge-list-left .pp-integration-chip,
  .pp-bridge-list-right .pp-integration-chip { flex-direction: row; flex-wrap: wrap; }
  .pp-bridge-list .pp-integration-chip .pp-integration-status {
    position: static;
    flex-basis: 100%;
    margin: 1px 0 0 25px;
    background: none;
    padding: 0;
    color: var(--ink-faded);
  }
  .pp-bridge-hub {
    width: 132px;
    height: 132px;
    margin: 26px auto;
    align-self: center;
  }
  .pp-bridge-hub-name { font-size: 26px; }
  /* Subtle connector stubs above/below the hub that stop just before the ring. */
  .pp-bridge-hub::after {
    content: '';
    position: absolute;
    left: 50%;
    top: -30px;
    bottom: -30px;
    width: 1px;
    transform: translateX(-50%);
    background: linear-gradient(180deg,
      transparent 0, rgba(4,120,87,0.5) 16px,
      transparent 16px, transparent calc(100% - 16px),
      rgba(4,120,87,0.5) calc(100% - 16px), transparent 100%);
    pointer-events: none;
  }
}
@media (max-width: 520px) {
  .nav-cta-row .nav-login { display: none; }
  .nav-cta-row .btn-sm { white-space: nowrap; }
}
@media (max-width: 720px) {
  .pp-cards { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
}
@media (max-width: 640px) {
  .pp-hero { padding: 78px 0 26px; }
  .pp-title { font-size: 31px; }
  .pp-sub { margin-bottom: 24px; }
  .pp-h2 { font-size: 30px; }
  .pp-demo-modal { padding: 0; align-items: flex-end; }
  .pp-demo-box { max-width: none; max-height: 92vh; border-radius: var(--radius-lg) var(--radius-lg) 0 0; padding: 30px 22px 24px; }
  .pp-demo-box.is-calendar { max-width: none; }
  .pp-demo-form-row { grid-template-columns: 1fr; gap: 14px; }
  .pp-demo-cal #pp-cal-inline { min-height: 560px; }
  .pp-cta { padding: 88px 0; }
  .pp-cta h2 { font-size: 32px; }
  .pp-cta-actions { flex-direction: column; gap: var(--space-4); }
  .faq-grid { grid-template-columns: 1fr; gap: 12px; }
  .pp-q { border-radius: 14px; }
  .pp-q summary { font-size: 15px; padding: 20px 20px; gap: 12px; }
  .pp-q .ic { width: 32px; height: 32px; }
  .pp-q .ic svg { width: 12px; height: 12px; }
  .pp-q .ans-inner { padding: 0 22px 20px; font-size: 14px; }
  .pp-compare, .pp-topups, .pp-faq { padding: 72px 0; }
  .pp-cards-section { padding-bottom: 52px; }
  .pp-integrations-section { padding: 72px 0; }
  /* fijn-afstemming telefoon (kern-visual zit in het 900px-blok) */
  .pp-bridge-card { padding: 36px 20px; }
  .pp-bridge { max-width: none; }
  .pp-bridge-list { gap: 14px 22px; }
  .pp-bridge-hub { width: 128px; height: 128px; }
  .pp-bridge-note { max-width: none; text-align: center; }
  .pp-included { gap: 7px; margin-top: 24px; }
  .pp-included-link { width: 100%; justify-content: flex-start; }
  .pp-testimonial { padding: 72px 0; }
  .pp-testimonial-inner { grid-template-columns: 1fr; gap: 32px; }
  .pp-testimonial-photo { height: auto; min-height: 0; aspect-ratio: 5 / 4; object-position: 52% 26%; border-radius: 18px; }
  .pp-testimonial-quote { font-size: 17px; line-height: 1.5; letter-spacing: -0.01em; }
  .pp-testimonial-meta span { white-space: normal; }
  .metric-help { width: 16px; height: 16px; }
  .metric-tooltip {
    left: auto;
    right: -12px;
    transform: translate(0, 4px);
  }
  .metric-help:hover .metric-tooltip,
  .metric-help:focus .metric-tooltip,
  .metric-help:focus-within .metric-tooltip {
    transform: translate(0, 0);
  }
  /* Vergelijking standaard ingeklapt achter een knop */
  .pp-compare .pp-h2-sub { margin-bottom: 26px; }
  .cmp-toggle { display: flex; }
  .cmp-collapse { display: none; }
  .cmp-collapse.is-open { display: block; }

  /* Pakket-kiezer: toon één pakket tegelijk, geen horizontaal scrollen */
  .cmp-plan-switch {
    display: grid;
    position: sticky;
    top: 68px;
    z-index: 20;
    box-shadow: 0 10px 24px -16px rgba(10,10,10,0.35);
  }
  .cmp-swipe-hint.show { display: none; }
  .cmp-scroll { overflow-x: visible; }
  .cmp-table { min-width: 0; width: 100%; table-layout: auto; }

  /* header vervalt op mobiel — de sticky kiezer is de koptekst */
  .cmp-table thead { display: none; }

  /* functiekolom krijgt de ruimte, waardekolom compact */
  .cmp-table tbody th {
    width: auto;
    font-size: 13.5px;
    padding: 15px 12px 15px 14px;
    line-height: 1.35;
    white-space: normal;
  }
  .cmp-table tbody td {
    width: 104px;
    padding: 15px 8px;
    font-size: 13.5px;
  }
  .cmp-table .cmp-group td { background: var(--bg-warm); padding: 15px 14px; }
  .cmp-table tbody tr:not(.cmp-group):hover th { background: transparent; }

  /* nette afgeronde hoeken nu de thead weg is */
  .cmp-table tbody tr:first-child td {
    border-top-left-radius: var(--radius-lg);
    border-top-right-radius: var(--radius-lg);
  }
  .cmp-table[data-active="core"]   tbody tr:last-child td:nth-child(2),
  .cmp-table[data-active="growth"] tbody tr:last-child td:nth-child(3),
  .cmp-table[data-active="pro"]    tbody tr:last-child td:nth-child(4) {
    border-bottom-right-radius: var(--radius-lg);
  }

  /* verberg de niet-gekozen pakketkolommen (kolom 2=Core, 3=Growth, 4=Pro) */
  .cmp-table[data-active="core"]   tbody tr:not(.cmp-group) > td:nth-child(3),
  .cmp-table[data-active="core"]   tbody tr:not(.cmp-group) > td:nth-child(4),
  .cmp-table[data-active="growth"] tbody tr:not(.cmp-group) > td:nth-child(2),
  .cmp-table[data-active="growth"] tbody tr:not(.cmp-group) > td:nth-child(4),
  .cmp-table[data-active="pro"]    tbody tr:not(.cmp-group) > td:nth-child(2),
  .cmp-table[data-active="pro"]    tbody tr:not(.cmp-group) > td:nth-child(3) {
    display: none;
  }

  /* zichtbare featured-kolom houdt z'n zachte tint */
  .cmp-table[data-active="growth"] tbody td.is-feat-col { background: rgba(4,120,87,0.06); }

  /* zachte fade bij het wisselen van pakket */
  .cmp-scroll.is-switching .cmp-table tbody tr:not(.cmp-group) > td {
    animation: cmpColFade 0.28s var(--ease-default, ease) both;
  }

  .sln-cookie-fab { display: none !important; }
}
