/* =====================
   HERO
   ===================== */
.biz-hero {
    padding: 60px 0 90px;
    background: linear-gradient(160deg, #ffffff 0%, #e2f1f3 60%, #c3e6ea 100%);
    position: relative;
    overflow: hidden;
}

.biz-hero-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.biz-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.5;
}

.biz-shape-1 {
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, #b7dde3, transparent);
    top: -100px;
    right: -60px;
}

.biz-shape-2 {
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, #ddd6fe, transparent);
    bottom: -40px;
    left: 8%;
}

.biz-hero-inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 48px;
}

.biz-hero-text {
    flex: 1;
}

.biz-hero-text h1 {
    font-size: 3.6rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
}

.biz-hero-text > p {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 500px;
    line-height: 1.75;
    margin-bottom: 36px;
}

.biz-hero-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

/* Phone mockup */
.biz-hero-visual {
    flex: 0 0 auto;
    display: flex;
    justify-content: center;
}

.biz-phone-mockup {
    width: 300px;
    background: #1e293b;
    border-radius: 36px;
    padding: 14px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.2);
}

.biz-phone-screen {
    background: #f8fafc;
    border-radius: 24px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.biz-phone-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 4px;
}

.biz-phone-dot {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    display: inline-block;
}

.biz-phone-title {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--text-dark);
}

.biz-feed {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.biz-feed-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 12px;
}

.biz-feed-news { background: #fff7ed; }
.biz-feed-event { background: #f0fdf4; }

.biz-feed-icon {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    flex-shrink: 0;
}

.biz-feed-news .biz-feed-icon { background: #fed7aa; color: #c2410c; }
.biz-feed-event .biz-feed-icon { background: #bbf7d0; color: #15803d; }

.biz-feed-label {
    font-size: 0.65rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 2px;
}

.biz-feed-title {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.3;
}

.biz-phone-badge {
    background: #dcfce7;
    color: #15803d;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 6px 10px;
    border-radius: 8px;
    text-align: center;
    margin-top: 4px;
}

/* =====================
   PERKS STRIP
   ===================== */
.biz-perks-strip {
    background: #fff;
    border-top: 1px solid #f1f5f9;
    border-bottom: 1px solid #f1f5f9;
    padding: 18px 0;
}

.biz-perks-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0;
}

.biz-perk {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 28px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
}

.biz-perk i {
    color: var(--secondary);
    font-size: 1rem;
}

.biz-perk-divider {
    width: 1px;
    height: 28px;
    background: #e2e8f0;
}

/* =====================
   SECTIONS
   ===================== */
.biz-section {
    padding: 80px 0;
}

.biz-section-alt {
    background: #f8fafc;
}

/* =====================
   VOOR WIE
   ===================== */
.biz-who-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}

.biz-who-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 28px 24px;
    border: 1px solid #f1f5f9;
    box-shadow: var(--shadow);
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.biz-who-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(29,110,128,0.1);
    border-color: #b7dde3;
}

.biz-who-icon {
    width: 52px;
    height: 52px;
    background: #e2f1f3;
    color: var(--secondary);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 16px;
}

.biz-who-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.biz-who-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* =====================
   STAPPEN
   ===================== */
.biz-steps {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
}

.biz-step {
    flex: 1;
    min-width: 180px;
    max-width: 240px;
    text-align: center;
    padding: 28px 20px;
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    position: relative;
}

.biz-step-num {
    font-size: 3rem;
    font-weight: 900;
    color: #b7dde3;
    line-height: 1;
    margin-bottom: 6px;
}

.biz-step-icon {
    width: 48px;
    height: 48px;
    background: var(--secondary);
    color: #fff;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin: 0 auto 14px;
}

.biz-step h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.biz-step p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* =====================
   TABS (content types)
   ===================== */
.biz-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 28px;
    border-bottom: 2px solid #f1f5f9;
    padding-bottom: 0;
}

.biz-tab {
    padding: 12px 24px;
    border: none;
    background: none;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-muted);
    cursor: pointer;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
    transition: color 0.2s, border-color 0.2s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.biz-tab:hover {
    color: var(--text-dark);
}

.biz-tab-active {
    color: var(--primary);
    border-bottom-color: var(--primary);
}

.biz-tab-panel-hidden {
    display: none;
}

.biz-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: start;
}

.biz-content-info h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.biz-content-info > p {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 24px;
}

.biz-field-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.biz-field-group {
    background: #f8fafc;
    border-radius: 12px;
    padding: 16px;
}

.biz-field-label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.biz-required { color: #22c55e; }
.biz-optional { color: #94a3b8; }

.biz-field-group ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.biz-field-group ul li {
    font-size: 0.88rem;
    color: var(--text-muted);
    padding: 4px 0;
    border-bottom: 1px solid #f1f5f9;
    line-height: 1.5;
}

.biz-field-group ul li:last-child {
    border-bottom: none;
}

.biz-note {
    background: #e2f1f3;
    border: 1px solid #b7dde3;
    border-radius: 10px;
    padding: 12px 14px;
    font-size: 0.88rem;
    color: #123f4a;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    line-height: 1.5;
}

/* Example cards */
.biz-example-card {
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    position: sticky;
    top: 100px;
}

.biz-example-news { background: #f3ecfd; }
.biz-example-event { background: #f0fdf4; }

.biz-example-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.biz-example-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 999px;
}

.biz-badge-news { background: #fed7aa; color: #c2410c; }
.biz-badge-event { background: #bbf7d0; color: #15803d; }

.biz-example-prov {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-muted);
    background: rgba(255,255,255,0.7);
    padding: 3px 8px;
    border-radius: 999px;
}

.biz-example-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
    line-height: 1.35;
}

.biz-example-body {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 14px;
}

.biz-example-meta {
    display: flex;
    gap: 14px;
    font-size: 0.78rem;
    color: var(--text-muted);
    font-weight: 500;
}

.biz-example-meta span {
    display: flex;
    align-items: center;
    gap: 4px;
}

/* =====================
   METHODE
   ===================== */
.biz-method-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 0;
}

.biz-method-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 32px;
    border: 2px solid #f1f5f9;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
}

.biz-method-card-featured {
    border-color: var(--secondary);
    box-shadow: 0 8px 30px rgba(29,110,128,0.12);
}

.biz-method-badge-featured {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--secondary);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 999px;
    white-space: nowrap;
}

.biz-method-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
}

.biz-method-icon-primary { background: #f3ecfd; color: var(--primary); }
.biz-method-icon-secondary { background: #e2f1f3; color: var(--secondary); }

.biz-method-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0;
}

.biz-method-card > p {
    color: var(--text-muted);
    line-height: 1.65;
    margin: 0;
}

.biz-method-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.biz-method-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--text-dark);
}

.biz-method-list li i {
    color: #22c55e;
    font-size: 0.8rem;
    flex-shrink: 0;
}

.biz-method-footer {
    margin-top: auto;
}

.biz-method-tag {
    display: inline-block;
    background: #f3ecfd;
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 999px;
    border: 1px solid #ddd6fe;
}

.biz-api-toggle {
    width: 100%;
    justify-content: center;
    gap: 8px;
}

/* API docs panel */
.biz-api-docs {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.4s ease;
    margin-top: 0;
}

.biz-api-docs.open {
    max-height: 3000px;
    margin-top: 24px;
}

.biz-api-inner {
    background: #fff;
    border-radius: var(--radius);
    border: 1px solid #e2e8f0;
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.biz-api-section h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-dark);
}

.biz-api-section h4 i {
    color: var(--secondary);
}

.biz-api-steps {
    list-style: none;
    padding: 0;
    counter-reset: step;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.biz-api-steps li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--text-muted);
    counter-increment: step;
}

.biz-api-steps li::before {
    content: counter(step);
    min-width: 26px;
    height: 26px;
    background: var(--secondary);
    color: #fff;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 1px;
}

.biz-error-table {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.biz-error-row {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 0.9rem;
    color: var(--text-muted);
    padding: 8px 0;
    border-bottom: 1px solid #f1f5f9;
}

.biz-error-row:last-child { border-bottom: none; }

.biz-error-code {
    font-weight: 700;
    font-size: 0.85rem;
    padding: 3px 10px;
    border-radius: 6px;
    min-width: 46px;
    text-align: center;
    font-family: monospace;
}

.biz-code-ok   { background: #dcfce7; color: #15803d; }
.biz-code-warn { background: #fef9c3; color: #92400e; }
.biz-code-err  { background: #fee2e2; color: #b91c1c; }

.biz-rules {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.biz-rules li {
    font-size: 0.9rem;
    color: var(--text-muted);
    padding-left: 20px;
    position: relative;
    line-height: 1.5;
}

.biz-rules li::before {
    content: "·";
    position: absolute;
    left: 6px;
    color: var(--primary);
    font-weight: 700;
    font-size: 1.1rem;
    top: -1px;
}

/* =====================
   TARIEVEN (voortgekomen uit prijzen.css)
   ===================== */
/* Quick-glance tegels */
.pv-quick-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
  margin-bottom: 24px;
}
.pv-quicktile {
  display: flex; flex-direction: column; align-items: flex-start; gap: 4px;
  background: #fff; border: 1.5px solid #e2e8f0; border-radius: var(--radius);
  padding: 20px 22px; text-align: left; cursor: pointer;
  font-family: inherit; transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.pv-quicktile:hover { border-color: var(--primary); box-shadow: var(--shadow); transform: translateY(-2px); }
.pv-quicktile-active { border-color: var(--primary); background: #f0f9ff; }
.pv-quicktile-icon {
  width: 40px; height: 40px; border-radius: 11px; margin-bottom: 8px;
  display: flex; align-items: center; justify-content: center; font-size: 1rem;
}
.pv-quicktile-icon--news    { background: #e0f2fe; color: #0369a1; }
.pv-quicktile-icon--event   { background: #fef9c3; color: #854d0e; }
.pv-quicktile-icon--featured { background: #f3ecfd; color: #7c3aed; }
.pv-quicktile-label { font-size: 0.85rem; font-weight: 600; color: var(--text-muted); }
.pv-quicktile-price { font-size: 1.3rem; font-weight: 800; color: var(--text-dark); }
.pv-quicktile-price--free { color: #16a34a; }
.pv-quicktile-sub { font-size: 0.78rem; color: #94a3b8; }

/* Prijzen-tabs */
.pv-tabs {
  display: flex; gap: 8px; margin-bottom: 32px;
  border-bottom: 2px solid #f1f5f9;
}
.pv-tab {
  padding: 12px 24px; border: none; background: none;
  font-family: inherit; font-size: 1rem; font-weight: 600; color: var(--text-muted);
  cursor: pointer; border-bottom: 3px solid transparent; margin-bottom: -2px;
  transition: color 0.2s, border-color 0.2s;
  display: flex; align-items: center; gap: 8px;
}
.pv-tab:hover { color: var(--text-dark); }
.pv-tab-active { color: var(--primary); border-bottom-color: var(--primary); }
.pv-tab-panel-hidden { display: none; }

.pv-vat-note {
  display: flex; align-items: center; gap: 10px;
  background: #f8fafc; border: 1px solid #e2e8f0; border-radius: 10px;
  padding: 12px 16px; margin: 0 0 32px; font-size: 0.875rem; color: #475569;
}
.pv-vat-note i { color: #94a3b8; flex-shrink: 0; }

.pv-subsection { margin-top: 0; }

.pv-section-header {
  display: flex; align-items: flex-start; gap: 16px; margin-bottom: 32px;
}
.pv-section-icon {
  width: 52px; height: 52px; border-radius: 14px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; font-size: 1.2rem;
}
.pv-section-icon--news    { background: #e0f2fe; color: #0369a1; }
.pv-section-icon--event   { background: #fef9c3; color: #854d0e; }
.pv-section-icon--featured { background: #f3ecfd; color: #7c3aed; }
.pv-section-header h3 { font-size: 1.4rem; font-weight: 800; margin-bottom: 4px; }
.pv-section-sub { color: var(--text-muted); font-size: 0.9rem; }
.pv-section-lead {
  color: #374151; font-size: 0.95rem; line-height: 1.7;
  margin: 16px 0 20px; max-width: 780px;
}

/* Nieuws gratis kaart */
.pv-news-free {
  display: flex; align-items: flex-start; gap: 24px;
  background: #f0fdf4; border: 2px solid #86efac; border-radius: var(--radius);
  padding: 32px 36px; max-width: 560px;
}
.pv-news-free-icon {
  font-size: 2rem; color: #16a34a; flex-shrink: 0; margin-top: 4px;
}
.pv-news-free-price {
  font-size: 2rem; font-weight: 800; color: #16a34a; line-height: 1; margin-bottom: 8px;
}
.pv-news-free-sub {
  color: #374151; font-size: 0.9rem; margin-bottom: 14px;
}
.pv-plan-features {
  list-style: none; padding: 0; text-align: left; font-size: 0.85rem; color: #64748b; line-height: 2.2;
}
.pv-plan-features li::before { content: '✓ '; color: #22c55e; font-weight: 700; }

/* Startersactie banner */
.pv-starter-banner {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
    border: 1px solid #6ee7b7;
    border-radius: 14px;
    padding: 20px 24px;
    margin-bottom: 28px;
}
.pv-starter-icon {
    font-size: 1.75rem;
    color: #059669;
    flex-shrink: 0;
    margin-top: 2px;
}
.pv-starter-title {
    font-weight: 700;
    font-size: 1.05rem;
    color: #065f46;
    margin-bottom: 4px;
}
.pv-starter-sub {
    font-size: 0.9rem;
    color: #047857;
    line-height: 1.5;
    margin-bottom: 10px;
}
.pv-starter-conditions {
    font-size: 0.85rem;
    font-weight: 600;
    color: #065f46;
}
.pv-starter-note {
    margin-top: 12px;
    font-size: 0.85rem;
    color: #047857;
    display: flex;
    gap: 8px;
    align-items: flex-start;
    border-top: 1px solid #a7f3d0;
    padding-top: 10px;
}

/* Stappenoverzicht: hoe wordt de prijs bepaald */
.pv-flow {
  background: #f8fafc; border: 1px solid #e2e8f0; border-radius: 14px;
  padding: 20px 22px; margin-bottom: 24px;
}
.pv-flow-title {
  font-weight: 700; font-size: 0.9rem; color: var(--text-dark);
  display: flex; align-items: center; gap: 8px; margin-bottom: 16px;
}
.pv-flow-title i { color: var(--primary); }
.pv-flow-steps { display: flex; align-items: stretch; gap: 14px; }
.pv-flow-step {
  flex: 1; min-width: 0; background: #fff; border-radius: 12px;
  border: 1.5px solid #e2e8f0; padding: 14px 16px;
  display: flex; flex-direction: column; gap: 6px;
}
.pv-flow-step--free { border-color: #bbf7d0; }
.pv-flow-step--paid { border-color: #bae6fd; }
.pv-flow-step-top { display: flex; align-items: center; gap: 10px; }
.pv-flow-step-icon {
  width: 32px; height: 32px; border-radius: 9px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; font-size: 0.9rem;
}
.pv-flow-step--free .pv-flow-step-icon { background: #dcfce7; color: #15803d; }
.pv-flow-step--paid .pv-flow-step-icon { background: #e0f2fe; color: #0369a1; }
.pv-flow-step-num {
  font-size: 0.7rem; font-weight: 700; color: #94a3b8;
  text-transform: uppercase; letter-spacing: 0.05em;
}
.pv-flow-step strong { font-size: 0.875rem; color: var(--text-dark); }
.pv-flow-step p { font-size: 0.8rem; color: #64748b; line-height: 1.5; margin: 0; flex: 1; }
.pv-flow-step-tag {
  align-self: flex-start; font-size: 0.72rem; font-weight: 700;
  padding: 2px 9px; border-radius: 20px; margin-top: 2px;
}
.pv-flow-step-tag--free { background: #dcfce7; color: #15803d; }
.pv-flow-step-tag--paid { background: #e0f2fe; color: #0369a1; }
.pv-flow-arrow { display: flex; align-items: center; color: #cbd5e1; font-size: 1rem; flex-shrink: 0; }

/* Evenementen tabel + calculator */
.pv-event-grid { display: grid; grid-template-columns: 1fr 340px; gap: 32px; align-items: start; }

.pv-table { width: 100%; border-collapse: collapse; font-size: 0.9rem; margin-bottom: 16px; }
.pv-table th {
  text-align: left; font-size: 0.75rem; font-weight: 700; color: #94a3b8;
  text-transform: uppercase; letter-spacing: 0.05em;
  padding: 0 0 10px; border-bottom: 1.5px solid #f1f5f9;
}
.pv-table td { padding: 14px 0; border-bottom: 1px solid #f8fafc; vertical-align: top; color: #374151; }
.pv-table tr:last-child td { border-bottom: none; }
.pv-row-highlight td { background: #f3ecfd; color: #5b21b6; font-weight: 600; padding: 12px 8px; border-radius: 6px; }
.pv-table-note { font-size: 0.78rem; color: #94a3b8; margin-top: 3px; }

#eventReachTierTable tr { transition: background 0.2s; }
.pv-row-highlight-active td {
  background: #f3ecfd; color: #5b21b6; font-weight: 700;
  padding: 12px 8px; border-radius: 6px;
}
.pv-row-highlight-active td:first-child { border-left: 3px solid var(--primary); padding-left: 8px; }
.pv-badge-free {
  display: inline-block; background: #dcfce7; color: #166534;
  padding: 2px 10px; border-radius: 20px; font-size: 0.78rem; font-weight: 700;
}
.pv-badge-premium {
  display: inline-block; background: #f3ecfd; color: #5b21b6;
  border: 1px solid #ddd6fe; padding: 2px 8px; border-radius: 20px;
  font-size: 0.7rem; font-weight: 700; vertical-align: middle; margin-left: 6px;
}

.pv-event-info {
  display: flex; align-items: flex-start; gap: 10px;
  background: #eff6ff; border-radius: 10px; padding: 12px 14px;
  font-size: 0.85rem; color: #1d4ed8;
}
.pv-event-info i { flex-shrink: 0; margin-top: 2px; }
.pv-event-info p { margin: 0; line-height: 1.6; color: #1e40af; }

/* Calculator */
.pv-calculator {
  background: #fff; border-radius: var(--radius); border: 1.5px solid #e2e8f0;
  padding: 24px; box-shadow: var(--shadow);
}
.pv-calc-title {
  font-weight: 700; font-size: 1rem; color: var(--text-dark);
  display: flex; align-items: center; gap: 8px; margin-bottom: 8px;
}
.pv-calc-sub { font-size: 0.83rem; color: var(--text-muted); margin-bottom: 16px; line-height: 1.5; }
.pv-calc-label { display: block; font-size: 0.85rem; font-weight: 600; color: #374151; margin-bottom: 6px; }
.pv-calc-input {
  width: 100%; padding: 10px 14px; border-radius: 10px;
  border: 1.5px solid #e2e8f0; font-family: inherit; font-size: 1rem;
  background: #f8fafc; transition: border-color 0.2s;
}
.pv-calc-input:focus { outline: none; border-color: var(--primary); }
.pv-calc-hint { font-size: 0.77rem; color: #94a3b8; margin-top: 6px; margin-bottom: 16px; }
.pv-calc-result {
  background: #f3ecfd; border-radius: 10px; padding: 16px;
  border: 1px solid #ddd6fe; text-align: center;
}
.pv-calc-formula { font-size: 0.85rem; color: #5b21b6; margin-bottom: 4px; }
.pv-calc-total { font-size: 1.8rem; font-weight: 800; color: var(--primary); line-height: 1.2; }
.pv-calc-note { font-size: 0.75rem; color: #94a3b8; margin-top: 6px; }

/* Voorbeelden (opt-in) */
.pv-examples-toggle-wrap { margin-top: 32px; }
.pv-examples-toggle-btn {
  display: flex; align-items: center; justify-content: space-between; width: 100%;
  background: #fff; border: 1.5px solid #e2e8f0; border-radius: 12px;
  padding: 14px 18px; font-family: inherit; font-size: 0.9rem; font-weight: 600;
  color: var(--text-dark); cursor: pointer; transition: border-color 0.2s;
}
.pv-examples-toggle-btn:hover { border-color: var(--primary); }
.pv-examples-toggle-btn i:first-child { color: var(--primary); margin-right: 8px; }
.pv-examples-chevron { transition: transform 0.2s; color: #94a3b8; }
.pv-examples-chevron-open { transform: rotate(180deg); }
.pv-examples { margin-top: 16px; }
.pv-examples-title {
  font-size: 0.78rem; font-weight: 700; color: #64748b;
  text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 14px;
}
.pv-examples-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.pv-example {
  background: #fff; border-radius: 12px; padding: 16px 18px;
  border: 1px solid #f1f5f9; box-shadow: var(--shadow);
}
.pv-example-scenario { font-size: 0.83rem; color: #475569; margin-bottom: 8px; line-height: 1.5; }
.pv-example-scenario small { color: #94a3b8; font-size: 0.78rem; }
.pv-example-price { font-size: 1.4rem; font-weight: 800; color: var(--text-dark); }
.pv-example-price--free { color: #22c55e; }
.pv-example-breakdown { font-size: 0.75rem; color: #94a3b8; margin-top: 2px; }

/* Lokaal bereik info-blok */
.pv-local-discount-info {
  margin-top: 24px; background: #eff6ff; border: 1px solid #bfdbfe;
  border-radius: 12px; padding: 20px 24px;
}
.pv-local-discount-title {
  font-weight: 700; font-size: 1rem; color: #1e3a8a;
  display: flex; align-items: center; gap: 8px; margin-bottom: 10px;
}
.pv-local-discount-info p { color: #1e40af; font-size: 0.9rem; line-height: 1.6; margin: 0 0 14px; }
.pv-local-discount-note { font-size: 0.82rem; color: #1d4ed8; display: flex; align-items: flex-start; gap: 8px; margin: 0; }

/* Voorbeelden lokale evenementen */
.pv-example--local { border-color: #bfdbfe; background: #eff6ff; }
.pv-example-local-badge {
  display: inline-block; background: #dbeafe; color: #1e40af;
  padding: 2px 10px; border-radius: 20px; font-size: 0.72rem; font-weight: 700;
  margin-top: 6px;
}

/* Uitgelicht evenement */
.pv-featured-type-label {
  display: inline-flex; align-items: center; gap: 8px;
  background: #f3ecfd; color: #5b21b6; border: 1px solid #ddd6fe;
  padding: 6px 14px; border-radius: 20px; font-size: 0.82rem; font-weight: 700;
  margin-bottom: 20px;
}
.pv-featured-type-label--local {
  background: #eff6ff; color: #1d4ed8; border-color: #bfdbfe;
}
.pv-featured-grid { display: grid; grid-template-columns: 1fr 280px; gap: 32px; align-items: start; }
.pv-featured-desc { color: #475569; font-size: 0.9rem; margin-bottom: 20px; line-height: 1.7; }
.pv-featured-table th:last-child, .pv-featured-table td:last-child { text-align: right; }
.pv-featured-info { display: flex; flex-direction: column; gap: 14px; }
.pv-featured-item {
  display: flex; align-items: flex-start; gap: 12px;
  background: #f3ecfd; border-radius: 12px; padding: 14px 16px;
}
.pv-featured-item > i { font-size: 1rem; color: var(--primary); margin-top: 3px; flex-shrink: 0; }
.pv-featured-item strong { display: block; font-size: 0.875rem; color: var(--text-dark); margin-bottom: 2px; }
.pv-featured-item p { font-size: 0.8rem; color: #64748b; margin: 0; line-height: 1.5; }

/* =====================
   CTA
   ===================== */
.biz-cta {
    padding: 80px 0;
}

.biz-cta-box {
    background: linear-gradient(135deg, #1d6e80 0%, #123f4a 100%);
    border-radius: var(--radius-lg);
    padding: 64px 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.biz-cta-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.biz-cta-shape-1,
.biz-cta-shape-2 {
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
}

.biz-cta-shape-1 { width: 300px; height: 300px; top: -100px; right: -60px; }
.biz-cta-shape-2 { width: 200px; height: 200px; bottom: -80px; left: 5%; }

.biz-cta-content {
    position: relative;
    z-index: 1;
}

.biz-cta-box h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 12px;
}

.biz-cta-box p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.85);
    margin-bottom: 32px;
}

.biz-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.biz-cta-login {
    border-color: rgba(255,255,255,0.5);
    color: #fff;
}

.biz-cta-login:hover {
    border-color: #fff;
    background: rgba(255,255,255,0.1);
}

/* Active nav link */
.nav-active {
    color: var(--primary) !important;
    font-weight: 700 !important;
}

/* =====================
   RESPONSIVE
   ===================== */
@media (max-width: 900px) {
    .biz-content-grid {
        grid-template-columns: 1fr;
    }

    .biz-example-card {
        position: static;
    }

    .biz-method-grid {
        grid-template-columns: 1fr;
    }

    .pv-event-grid,
    .pv-featured-grid {
        grid-template-columns: 1fr;
    }

    .pv-examples-grid {
        grid-template-columns: 1fr;
    }

    .pv-quick-grid {
        grid-template-columns: 1fr;
    }

    .pv-flow-steps {
        flex-direction: column;
    }

    .pv-flow-arrow {
        transform: rotate(90deg);
        align-self: center;
    }
}

@media (max-width: 640px) {
    .pv-tabs {
        flex-direction: column;
        border-bottom: none;
        gap: 4px;
    }

    .pv-tab {
        border: 1px solid #e2e8f0;
        border-radius: 10px;
        margin-bottom: 0;
        justify-content: center;
    }

    .pv-tab-active {
        background: #f3ecfd;
        border-color: #ddd6fe;
        border-bottom-color: #ddd6fe;
    }
}

@media (max-width: 768px) {
    .biz-hero-inner {
        flex-direction: column;
        text-align: center;
    }

    .biz-hero-text h1 {
        font-size: 2.4rem;
    }

    .biz-hero-text > p {
        margin-left: auto;
        margin-right: auto;
    }

    .biz-hero-buttons {
        justify-content: center;
    }

    .biz-phone-mockup {
        width: 260px;
    }

    .biz-perks-inner {
        gap: 0;
    }

    .biz-perk {
        padding: 8px 14px;
    }

    .biz-perk-divider {
        display: none;
    }

    .biz-steps {
        flex-direction: column;
        align-items: stretch;
    }

    .biz-step {
        max-width: 100%;
    }

    .step-divider {
        transform: rotate(90deg);
        padding: 4px 0;
        text-align: center;
    }

    .biz-field-list {
        grid-template-columns: 1fr;
    }

    .pv-subsection-alt {
        margin-left: -20px;
        margin-right: -20px;
        padding: 28px 20px;
    }

    .biz-cta-box {
        padding: 40px 24px;
    }

    .biz-cta-box h2 {
        font-size: 1.7rem;
    }
}

@media (max-width: 480px) {
    .biz-hero-text h1 {
        font-size: 2rem;
    }

    .biz-who-grid {
        grid-template-columns: 1fr;
    }

    .biz-tabs {
        flex-direction: column;
        border-bottom: none;
        gap: 4px;
    }

    .biz-tab {
        border: 1px solid #e2e8f0;
        border-radius: 10px;
        margin-bottom: 0;
        justify-content: center;
    }

    .biz-tab-active {
        background: #f3ecfd;
        border-color: #ddd6fe;
        border-bottom-color: #ddd6fe;
    }
}
