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

  :root {
    --ink: #1a1a18;
    --cream: #f5f2eb;
    --warm: #f0ead8;
    --gold: #b8935a;
    --gold-light: #d4b07a;
    --green: #2d4a3e;
    --green-mid: #3d6355;
    --green-light: #eaf0ed;
    --muted: #6b6860;
    --border: rgba(26,26,24,0.12);
    --serif: 'Playfair Display', Georgia, serif;
    --sans: 'DM Sans', sans-serif;
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: var(--sans);
    background: var(--cream);
    color: var(--ink);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
  }

  /* NAV */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    padding: 20px 48px;
    display: flex; align-items: center; justify-content: space-between;
    background: rgba(245,242,235,0.97);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 1px 0 rgba(26,26,24,0.08);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
  }
  .nav-logo {
    font-family: var(--serif);
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--ink);
    text-decoration: none;
  }
  .nav-logo span { color: var(--gold); }
  .nav-links { display: flex; gap: 32px; list-style: none; }
  .nav-links a {
    font-size: 14px; font-weight: 400; color: var(--muted);
    text-decoration: none; letter-spacing: 0.02em;
    transition: color 0.2s;
  }
  .nav-links a:hover { color: var(--ink); }
  .nav-cta {
    background: var(--green); color: #fff;
    padding: 10px 22px; border-radius: 2px;
    font-size: 13px; font-weight: 500; text-decoration: none;
    letter-spacing: 0.04em; text-transform: uppercase;
    transition: background 0.2s;
  }
  .nav-cta:hover { background: var(--green-mid); }

  /* HERO */
  .hero {
    min-height: auto;
    display: grid;
    grid-template-columns: 1fr;
    padding-top: 80px;
  }
  .hero-left {
    padding: 80px 64px 80px 80px;
    display: flex; flex-direction: column; justify-content: center;
    position: relative;
  }
  .hero-eyebrow {
    font-size: 11px; font-weight: 500; letter-spacing: 0.14em;
    text-transform: uppercase; color: var(--gold);
    margin-bottom: 24px;
    display: flex; align-items: center; gap: 10px;
  }
  .hero-eyebrow::before {
    content: ''; display: block; width: 32px; height: 1px; background: var(--gold);
  }
  .hero h1 {
    font-family: var(--serif);
    font-size: clamp(44px, 5vw, 68px);
    line-height: 1.08;
    letter-spacing: -0.02em;
    font-weight: 700;
    margin-bottom: 28px;
    color: var(--ink);
  }
  .hero h1 em { font-style: italic; color: var(--green); }
  .hero-sub {
    font-size: 17px; color: var(--muted); line-height: 1.7;
    max-width: 420px; margin-bottom: 44px; font-weight: 300;
  }
  .hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; }
  .btn-primary {
    background: var(--green); color: #fff;
    padding: 16px 32px; border-radius: 2px;
    font-size: 14px; font-weight: 500; text-decoration: none;
    letter-spacing: 0.05em; text-transform: uppercase;
    transition: background 0.2s, transform 0.15s;
    display: inline-block;
  }
  .btn-primary:hover { background: var(--green-mid); transform: translateY(-1px); }
  .btn-secondary {
    border: 1px solid var(--ink); color: var(--ink);
    padding: 16px 32px; border-radius: 2px;
    font-size: 14px; font-weight: 500; text-decoration: none;
    letter-spacing: 0.05em; text-transform: uppercase;
    transition: background 0.2s;
    display: inline-block;
  }
  .btn-secondary:hover { background: var(--warm); }

  .hero-stats {
    margin-top: 56px; display: flex; gap: 40px;
    padding-top: 40px; border-top: 1px solid var(--border);
  }
  .stat-num {
    font-family: var(--serif); font-size: 36px; font-weight: 700;
    color: var(--ink); line-height: 1;
  }
  .stat-label { font-size: 12px; color: var(--muted); margin-top: 4px; font-weight: 400; }

  .hero-right {
    background: var(--green);
    position: relative;
    overflow: hidden;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    padding: 48px 80px;
  }
  .hero-right::before {
    content: '';
    position: absolute; inset: 0;
    background: repeating-linear-gradient(
      45deg, transparent, transparent 40px,
      rgba(255,255,255,0.02) 40px, rgba(255,255,255,0.02) 41px
    );
  }
  .hero-card {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 4px;
    padding: 24px;
    position: relative; z-index: 1;
    backdrop-filter: blur(4px);
    max-width: 520px;
    width: 100%;
  }
  .hero-card-label {
    font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
    color: rgba(255,255,255,0.5); margin-bottom: 14px;
  }
  .roi-row {
    display: flex; justify-content: space-between; align-items: baseline;
    padding: 9px 0; border-bottom: 1px solid rgba(255,255,255,0.1);
  }
  .roi-row:last-child { border-bottom: none; }
  .roi-label { font-size: 14px; color: rgba(255,255,255,0.90); }
  .roi-val { font-family: var(--serif); font-size: 19px; color: #fff; font-weight: 700; }
  .roi-val.gold { color: var(--gold-light); }
  .hero-tag {
    position: absolute; top: 24px; right: 24px;
    background: var(--gold); color: #fff;
    font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
    padding: 8px 16px; border-radius: 2px; font-weight: 500;
    transform: rotate(2deg);
  }

  /* DIVIDER */
  .section-divider {
    border: none; border-top: 1px solid var(--border); margin: 0;
  }

  /* SECTION BASE */
  section { padding: 100px 80px; }
  .section-label {
    font-size: 11px; font-weight: 500; letter-spacing: 0.14em;
    text-transform: uppercase; color: var(--gold); margin-bottom: 16px;
  }
  .section-title {
    font-family: var(--serif); font-size: clamp(32px, 4vw, 48px);
    line-height: 1.12; letter-spacing: -0.02em; font-weight: 700;
    margin-bottom: 20px;
  }
  .section-intro {
    font-size: 17px; color: var(--ink); line-height: 1.7;
    max-width: 560px; font-weight: 300;
  }

  /* HOW IT WORKS */
  .how {
    background: var(--warm);
  }
  .how-grid {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 0; margin-top: 64px;
    border: 1px solid var(--border);
  }
  .how-step {
    padding: 36px 32px;
    border-right: 1px solid var(--border);
    position: relative;
    transition: background 0.2s;
  }
  .how-step:last-child { border-right: none; }
  .how-step:hover { background: rgba(255,255,255,0.5); }
  .step-num {
    font-family: var(--serif); font-size: 48px; font-weight: 700;
    color: var(--border); line-height: 1; margin-bottom: 20px;
  }
  .step-title { font-size: 16px; font-weight: 500; margin-bottom: 10px; }
  .step-desc { font-size: 14px; color: var(--ink); line-height: 1.6; }

  /* BEFORE / AFTER */
  .beforeafter {
    padding: 100px 80px;
    background: var(--cream);
  }
  .beforeafter-header { margin-bottom: 56px; }
  .ba-container {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    border-radius: 4px;
    overflow: hidden;
    user-select: none;
    cursor: col-resize;
    box-shadow: 0 4px 40px rgba(26,26,24,0.12);
  }
  .ba-after {
    width: 100%;
    display: block;
    height: auto;
  }
  .ba-before-wrap {
    position: absolute;
    top: 0; left: 0; bottom: 0;
    width: 50%;
    overflow: hidden;
  }
  .ba-before-img {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0; left: 0;
  }
  .ba-handle {
    position: absolute;
    top: 0; bottom: 0;
    left: 50%;
    width: 3px;
    background: #fff;
    transform: translateX(-50%);
    cursor: col-resize;
  }
  .ba-handle::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 44px; height: 44px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 2px 12px rgba(0,0,0,0.18);
  }
  .ba-handle::after {
    content: '◀ ▶';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    font-size: 11px;
    color: var(--green);
    letter-spacing: -2px;
    line-height: 1;
    z-index: 1;
    pointer-events: none;
  }
  .ba-label {
    position: absolute;
    bottom: 16px;
    font-size: 11px; font-weight: 500; letter-spacing: 0.1em;
    text-transform: uppercase; padding: 6px 14px;
    border-radius: 2px;
  }
  .ba-label-before {
    left: 16px;
    background: rgba(26,26,24,0.65); color: #fff;
  }
  .ba-label-after {
    right: 16px;
    background: var(--green); color: #fff;
  }
  .ba-caption {
    text-align: center; margin-top: 20px;
    font-size: 13px; color: var(--muted);
  }

  /* DUAL AUDIENCE */
  .audience {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 0; padding: 0;
  }
  .audience-panel {
    padding: 80px;
    display: flex; flex-direction: column; justify-content: space-between;
    min-height: 600px;
  }
  .audience-panel.for-makelaar {
    background: var(--green); color: #fff;
  }
  .audience-panel.for-verkoper {
    background: var(--cream);
  }
  .audience-eyebrow {
    font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
    margin-bottom: 24px; font-weight: 500;
    opacity: 0.6;
  }
  .audience-title {
    font-family: var(--serif); font-size: clamp(28px, 3.5vw, 44px);
    line-height: 1.1; letter-spacing: -0.02em; font-weight: 700;
    margin-bottom: 24px;
  }
  .audience-panel.for-makelaar .audience-title { color: #fff; }
  .audience-panel.for-makelaar .audience-eyebrow { color: var(--gold-light); }
  .audience-body {
    font-size: 16px; line-height: 1.7; font-weight: 300;
    margin-bottom: 36px;
  }
  .audience-panel.for-makelaar .audience-body { color: rgba(255,255,255,0.92); }
  .audience-panel.for-verkoper .audience-body { color: var(--muted); }

  .benefits-list { list-style: none; margin-bottom: 44px; }
  .benefits-list li {
    font-size: 15px; padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    display: flex; align-items: flex-start; gap: 12px;
  }
  .audience-panel.for-verkoper .benefits-list li {
    border-bottom-color: var(--border);
  }
  .benefits-list li::before {
    content: '→'; font-size: 13px; margin-top: 2px; flex-shrink: 0;
    color: var(--gold-light);
  }
  .audience-panel.for-verkoper .benefits-list li::before { color: var(--green); }
  .audience-panel.for-makelaar .benefits-list li { color: rgba(255,255,255,0.8); }

  .btn-makelaar {
    background: var(--gold); color: #fff;
    padding: 16px 32px; border-radius: 2px;
    font-size: 13px; font-weight: 500; text-decoration: none;
    letter-spacing: 0.05em; text-transform: uppercase;
    transition: background 0.2s; display: inline-block;
  }
  .btn-makelaar:hover { background: var(--gold-light); }

  /* PACKAGES */
  .packages { background: var(--ink); color: #fff; }
  .packages .section-title { color: #fff; }
  .packages .section-intro { color: rgba(255,255,255,0.88); }
  .packages-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 1px; background: rgba(255,255,255,0.1);
    margin-top: 64px;
    border: 1px solid rgba(255,255,255,0.1);
  }
  .package {
    background: var(--ink);
    padding: 48px 36px;
    position: relative;
    transition: background 0.2s;
    display: flex;
    flex-direction: column;
  }
  .package:hover { background: #222220; }
  .package.featured {
    background: var(--green);
  }
  .package.featured:hover { background: var(--green-mid); }
  .pkg-badge {
    display: inline-block;
    font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase;
    background: var(--gold); color: #fff;
    padding: 4px 12px; border-radius: 2px; margin-bottom: 20px;
    font-weight: 500;
  }
  .pkg-name {
    font-family: var(--serif); font-size: 26px; font-weight: 700;
    margin-bottom: 6px;
  }
  .pkg-tagline { font-size: 13px; color: rgba(255,255,255,0.88); margin-bottom: 32px;   min-height: 52px;
  }
  .pkg-price {
    font-family: var(--serif); font-size: 48px; font-weight: 700;
    line-height: 1; margin-bottom: 4px;
    margin-top: 24px;
  }
  .pkg-duration {
    font-size: 13px; color: rgba(255,255,255,0.88);
    margin-bottom: 36px; padding-bottom: 36px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
  .pkg-items { list-style: none;   flex-grow: 1;
  }
  .pkg-items li {
    font-size: 14px; color: rgba(255,255,255,0.90);
    padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,0.06);
    display: flex; gap: 10px; align-items: flex-start;
  }
  .pkg-items li::before { content: '—'; color: var(--gold-light); flex-shrink: 0; }
  .pkg-items li:last-child { border-bottom: none; }
  .pkg-roi {
    margin-top: 32px; padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 13px; color: var(--gold-light);
  }
  .pkg-roi strong { display: block; font-size: 18px; font-family: var(--serif); margin-top: 2px; }

  /* GUARANTEE */
  .guarantee {
    background: var(--green-light);
    display: grid; grid-template-columns: 1fr 1fr;
    padding: 0;
  }
  .guarantee-left {
    padding: 80px;
    border-right: 1px solid var(--border);
  }
  .guarantee-right {
    padding: 80px;
    display: flex; flex-direction: column; gap: 32px;
  }
  .guarantee-item {
    padding-bottom: 32px;
    border-bottom: 1px solid var(--border);
  }
  .guarantee-item:last-child { border-bottom: none; padding-bottom: 0; }
  .guarantee-item-title {
    font-size: 15px; font-weight: 500; margin-bottom: 6px;
    display: flex; align-items: center; gap: 10px;
  }
  .guarantee-item-title::before {
    content: ''; width: 8px; height: 8px; border-radius: 50%;
    background: var(--green); flex-shrink: 0;
  }
  .guarantee-item-body { font-size: 14px; color: var(--ink); line-height: 1.6; padding-left: 18px; }

  /* CONTACT */
  .contact {
    background: var(--cream);
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 80px; padding: 100px 80px;
  }
  .contact-form { display: flex; flex-direction: column; gap: 16px; }
  .form-group { display: flex; flex-direction: column; gap: 6px; }
  .form-group label { font-size: 12px; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); }
  .form-group input, .form-group select, .form-group textarea {
    background: #fff; border: 1px solid var(--border);
    padding: 13px 16px; border-radius: 2px;
    font-family: var(--sans); font-size: 15px; color: var(--ink);
    outline: none; transition: border-color 0.2s;
  }
  .form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    border-color: var(--green);
  }
  .form-group textarea { resize: vertical; min-height: 100px; }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  .form-submit {
    background: var(--green); color: #fff;
    border: none; padding: 16px 32px; border-radius: 2px;
    font-family: var(--sans); font-size: 13px; font-weight: 500;
    letter-spacing: 0.06em; text-transform: uppercase;
    cursor: pointer; transition: background 0.2s;
    margin-top: 8px;
  }
  .form-submit:hover { background: var(--green-mid); }

  /* FOOTER */
  footer {
    background: var(--ink); color: rgba(255,255,255,0.75);
    padding: 32px 80px;
    display: flex; justify-content: space-between; align-items: center;
    font-size: 13px;
  }
  .footer-logo {
    font-family: var(--serif); font-size: 18px; color: #fff; font-weight: 700;
  }
  .footer-logo span { color: var(--gold); }

  /* ANIMATIONS */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  .hero-left > * {
    animation: fadeUp 0.7s ease both;
  }
  .hero-left > *:nth-child(1) { animation-delay: 0.1s; }
  .hero-left > *:nth-child(2) { animation-delay: 0.2s; }
  .hero-left > *:nth-child(3) { animation-delay: 0.3s; }
  .hero-left > *:nth-child(4) { animation-delay: 0.4s; }
  .hero-left > *:nth-child(5) { animation-delay: 0.5s; }

  /* MOBILE */
  @media (max-width: 900px) {
    nav { padding: 16px 24px; }
    .nav-links { display: none; }
    .hero { grid-template-columns: 1fr; }
    .hero-left { padding: 60px 24px 48px; }
    .hero-right { min-height: 400px; padding: 32px 24px; }
    section { padding: 64px 24px; }
    .how-grid { grid-template-columns: 1fr 1fr; }
    .how-step { border-bottom: 1px solid var(--border); }
    .audience { grid-template-columns: 1fr; }
    .audience-panel { padding: 64px 24px; min-height: auto; }
    .packages-grid { grid-template-columns: 1fr; }
    .guarantee { grid-template-columns: 1fr; }
    .guarantee-left { padding: 64px 24px; border-right: none; border-bottom: 1px solid var(--border); }
    .guarantee-right { padding: 64px 24px; }
    .contact { grid-template-columns: 1fr; padding: 64px 24px; gap: 48px; }
    .form-row { grid-template-columns: 1fr; }
    footer { flex-direction: column; gap: 12px; padding: 24px; text-align: center; }
  }

  /* ROI CALCULATOR */
  .calculator {
    background: var(--ink);
    padding: 100px 80px;
    color: #fff;
  }
  .calc-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
  }
  .calc-form-side {}
  .calc-title { font-family: var(--serif); font-size: clamp(32px,4vw,48px); line-height:1.1; letter-spacing:-0.02em; font-weight:700; margin-bottom:16px; }
  .calc-intro { font-size:16px; color:rgba(255,255,255,0.88); line-height:1.7; font-weight:300; margin-bottom:40px; }
  .calc-fields { display:flex; flex-direction:column; gap:20px; }
  .calc-field { display:flex; flex-direction:column; gap:6px; }
  .calc-field label { font-size:11px; font-weight:500; letter-spacing:0.1em; text-transform:uppercase; color:rgba(255,255,255,0.78); }
  .calc-field input, .calc-field select {
    background: rgba(255,255,255,0.10);
    border: 1px solid rgba(255,255,255,0.28);
    padding: 14px 16px; border-radius:2px;
    font-family: var(--sans); font-size:16px; color:#fff;
    outline:none; transition: border-color 0.2s;
  }
  .calc-field input::placeholder { color:rgba(255,255,255,0.45); }
  .calc-field input:focus, .calc-field select:focus { border-color: var(--gold); }
  .calc-field select option { background:#1a1a18; color:#fff; }
  .calc-field-row { display:grid; grid-template-columns:1fr 1fr; gap:16px; }
  .calc-btn {
    margin-top:8px;
    background: var(--gold); color:#fff;
    border:none; padding:16px 32px; border-radius:2px;
    font-family:var(--sans); font-size:13px; font-weight:500;
    letter-spacing:0.06em; text-transform:uppercase;
    cursor:pointer; transition:background 0.2s; width:100%;
  }
  .calc-btn:hover { background:var(--gold-light); }

  /* results panel */
  .calc-result-side {
    position:sticky; top:100px;
  }
  .calc-result-box {
    background: #f5f2eb;
    border: 1px solid rgba(26,26,24,0.12);
    border-radius:4px;
    padding:36px;
    transition: opacity 0.4s;
    color: var(--ink);
  }
  .calc-result-box.hidden { opacity:0.25; pointer-events:none; }
  .calc-result-label { color: var(--ink) !important;
    font-size:11px; letter-spacing:0.12em; text-transform:uppercase;
    color:rgba(255,255,255,0.75); margin-bottom:24px;
  }
  .calc-woz-display {
    font-family:var(--serif); font-size:15px; color: var(--ink);
    margin-bottom:28px; padding-bottom:20px;
    border-bottom:1px solid rgba(255,255,255,0.20);
  }
  .calc-woz-display span { color:#fff; font-weight:500; }
  .calc-pkg-result {
    padding:16px 0;
    border-bottom:1px solid rgba(255,255,255,0.20);
  }
  .calc-pkg-result:last-of-type { border-bottom:none; }
  .calc-pkg-header {
    display:flex; justify-content:space-between; align-items:baseline;
    margin-bottom:6px;
  }
  .calc-pkg-name { font-size:14px; font-weight:500; }
  .calc-pkg-cost { font-size:12px; color:rgba(255,255,255,0.72); }
  .calc-pkg-meerwaarde {
    font-family:var(--serif); font-size:28px; font-weight:700;
    color: var(--ink); line-height:1;
  }
  .calc-pkg-meerwaarde.top { color: #7ecfa0; }
  .calc-pkg-sub {
    font-size:12px; color:rgba(255,255,255,0.75); margin-top:4px;
  }
  .calc-roi-pill {
    display:inline-block;
    background:rgba(184,147,90,0.30); color:var(--gold-light);
    font-size:11px; font-weight:500; letter-spacing:0.08em;
    padding:3px 10px; border-radius:12px; margin-top:6px;
  }
  .calc-roi-pill.top { background:rgba(126,207,160,0.28); color:#7ecfa0; }
  .calc-disclaimer { color: var(--ink) !important;
    font-size:11px; color:rgba(255,255,255,0.45); margin-top:24px;
    line-height:1.6; padding-top:16px;
    border-top:1px solid rgba(255,255,255,0.18);
  }
  .calc-cta-row {
    margin-top:24px;
  }
  .calc-cta-btn {
    background:var(--green); color:#fff;
    border:none; padding:14px 28px; border-radius:2px;
    font-family:var(--sans); font-size:13px; font-weight:500;
    letter-spacing:0.05em; text-transform:uppercase;
    cursor:pointer; text-decoration:none; display:inline-block;
    transition:background 0.2s;
  }
  .calc-cta-btn:hover { background:var(--green-mid); }

  @media(max-width:900px){
    .calculator { padding:64px 24px; }
    .calc-inner { grid-template-columns:1fr; gap:48px; }
    .calc-result-side { position:static; }
    .calc-field-row { grid-template-columns:1fr; }
  }


  /* VERKOOPSCAN BADGE */
  .scan-badge {
    display: inline-flex; align-items: center; gap: 10px;
    background: var(--warm); border: 1px solid var(--border);
    border-radius: 2px; padding: 10px 16px;
    font-size: 13px; color: var(--ink); margin-bottom: 32px;
    font-weight: 400;
  }
  .scan-badge strong { font-weight: 500; }
  .scan-badge .scan-price {
    background: var(--gold); color: #fff;
    font-size: 12px; font-weight: 500; padding: 2px 8px;
    border-radius: 2px; letter-spacing: 0.04em;
  }
  .scan-badge .scan-verrekend {
    font-size: 11px; color: var(--muted);
  }


  .calc-source-note {
    display:flex; align-items:flex-start; gap:10px;
    background:rgba(255,255,255,0.08);
    border:1px solid rgba(255,255,255,0.18);
    border-radius:2px; padding:12px 14px;
    font-size:12px; color:rgba(255,255,255,0.80);
    line-height:1.5;
  }
  .calc-source-note strong { color:#fff; }
  .calc-source-icon { flex-shrink:0; font-size:14px; margin-top:1px; }


  /* TESTIMONIALS */
  .testimonials {
    background: var(--warm);
    padding: 100px 80px;
  }
  .testimonials-header { margin-bottom: 64px; }
  .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border: 1px solid var(--border);
  }
  .testimonial {
    padding: 44px 40px;
    border-right: 1px solid var(--border);
    background: var(--cream);
    display: flex; flex-direction: column; justify-content: space-between;
    position: relative;
    transition: background 0.2s;
  }
  .testimonial:last-child { border-right: none; }
  .testimonial:hover { background: #fff; }
  .testimonial-quote-mark {
    font-family: var(--serif);
    font-size: 80px;
    line-height: 0.6;
    color: var(--gold);
    opacity: 0.35;
    margin-bottom: 16px;
    display: block;
    font-weight: 700;
  }
  .testimonial-text {
    font-family: var(--serif);
    font-size: 17px;
    line-height: 1.65;
    color: var(--ink);
    font-style: italic;
    font-weight: 400;
    flex: 1;
    margin-bottom: 36px;
  }
  .testimonial-footer {
    display: flex; align-items: center; gap: 16px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
  }
  .testimonial-avatar {
    width: 44px; height: 44px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--serif); font-size: 16px; font-weight: 700;
    color: #fff; flex-shrink: 0;
  }
  .testimonial-avatar.erfgenaam { background: var(--green); }
  .testimonial-avatar.doorstromer { background: var(--gold); }
  .testimonial-avatar.makelaar { background: var(--ink); }
  .testimonial-name {
    font-size: 14px; font-weight: 500; color: var(--ink);
    margin-bottom: 2px;
  }
  .testimonial-type {
    font-size: 11px; font-weight: 500; letter-spacing: 0.1em;
    text-transform: uppercase;
  }
  .testimonial-type.erfgenaam { color: var(--green); }
  .testimonial-type.doorstromer { color: var(--gold); }
  .testimonial-type.makelaar { color: var(--muted); }

  @media(max-width:900px) {
    .testimonials { padding: 64px 24px; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .testimonial { border-right: none; border-bottom: 1px solid var(--border); }
    .testimonial:last-child { border-bottom: none; }
  }


  /* STYLING DIENST */
  .styling-section {
    background: var(--cream);
    padding: 100px 80px;
  }
  .styling-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 72px;
  }
  .styling-tagline {
    font-family: var(--serif);
    font-size: clamp(28px, 3.5vw, 44px);
    line-height: 1.12;
    letter-spacing: -0.02em;
    font-weight: 700;
    margin-bottom: 20px;
  }
  .styling-tagline em { font-style: italic; color: var(--green); }
  .styling-body {
    font-size: 16px; color: var(--muted); line-height: 1.75;
    font-weight: 300; margin-bottom: 28px;
  }
  .styling-method {
    display: flex; flex-direction: column; gap: 16px;
  }
  .styling-method-item {
    display: flex; gap: 16px; align-items: flex-start;
  }
  .styling-method-num {
    font-family: var(--serif); font-size: 22px; font-weight: 700;
    color: var(--gold); line-height: 1; flex-shrink: 0; width: 28px;
  }
  .styling-method-text { font-size: 14px; color: var(--ink); line-height: 1.6; }
  .styling-method-text strong { font-weight: 500; display: block; margin-bottom: 2px; }

  /* visual: drie zones */
  .styling-zones {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border: 1px solid var(--border);
    margin-bottom: 72px;
  }
  .styling-zone {
    padding: 36px 32px;
    border-right: 1px solid var(--border);
    background: var(--warm);
    transition: background 0.2s;
  }
  .styling-zone:last-child { border-right: none; }
  .styling-zone:hover { background: #fff; }
  .styling-zone-icon {
    font-size: 28px; margin-bottom: 14px; display: block; line-height: 1;
  }
  .styling-zone-title {
    font-size: 15px; font-weight: 500; margin-bottom: 8px; color: var(--ink);
  }
  .styling-zone-desc {
    font-size: 13px; color: var(--muted); line-height: 1.6;
  }

  /* pakketten */
  .styling-pakketten {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border: 1px solid var(--border);
  }
  .styling-pakket {
    padding: 44px 36px;
    border-right: 1px solid var(--border);
    background: #fff;
    display: flex; flex-direction: column;
    transition: background 0.2s;
  }
  .styling-pakket:last-child { border-right: none; }
  .styling-pakket:hover { background: var(--green-light); }
  .styling-pakket.featured-s {
    background: var(--green); color: #fff;
  }
  .styling-pakket.featured-s:hover { background: var(--green-mid); }
  .sp-label {
    font-size: 10px; font-weight: 500; letter-spacing: 0.12em;
    text-transform: uppercase;
    background: var(--gold); color: #fff;
    padding: 3px 10px; border-radius: 2px;
    display: inline-block; margin-bottom: 16px; align-self: flex-start;
  }
  .sp-name {
    font-family: var(--serif); font-size: 22px; font-weight: 700;
    margin-bottom: 4px;
  }
  .styling-pakket.featured-s .sp-name { color: #fff; }
  .sp-tagline {
    font-size: 13px; margin-bottom: 24px;
  }
  .styling-pakket:not(.featured-s) .sp-tagline { color: var(--muted); }
  .styling-pakket.featured-s .sp-tagline { color: rgba(255,255,255,0.90); }
  .sp-price {
    font-family: var(--serif); font-size: 38px; font-weight: 700;
    line-height: 1; margin-bottom: 4px;
  }
  .sp-price-note {
    font-size: 12px; margin-bottom: 28px; padding-bottom: 24px;
    border-bottom: 1px solid var(--border);
  }
  .styling-pakket.featured-s .sp-price-note { 
    color: rgba(255,255,255,0.85);
    border-bottom-color: rgba(255,255,255,0.15);
  }
  .styling-pakket:not(.featured-s) .sp-price-note { color: var(--muted); }
  .sp-items { list-style: none; flex: 1; }
  .sp-items li {
    font-size: 13px; padding: 7px 0;
    border-bottom: 1px solid var(--border);
    display: flex; gap: 10px; align-items: flex-start; line-height: 1.5;
  }
  .styling-pakket.featured-s .sp-items li {
    color: rgba(255,255,255,0.85);
    border-bottom-color: rgba(255,255,255,0.12);
  }
  .styling-pakket:not(.featured-s) .sp-items li { color: var(--ink); }
  .sp-items li:last-child { border-bottom: none; }
  .sp-items li::before {
    content: '—'; flex-shrink: 0;
  }
  .styling-pakket.featured-s .sp-items li::before { color: var(--gold-light); }
  .styling-pakket:not(.featured-s) .sp-items li::before { color: var(--green); }
  .sp-meerwaarde {
    margin-top: 24px; padding-top: 18px;
    border-top: 1px solid var(--border);
    font-size: 12px;
  }
  .styling-pakket.featured-s .sp-meerwaarde {
    border-top-color: rgba(255,255,255,0.15);
    color: var(--gold-light);
  }
  .styling-pakket:not(.featured-s) .sp-meerwaarde { color: var(--green); }
  .sp-meerwaarde strong {
    display: block; font-size: 18px;
    font-family: var(--serif); margin-top: 2px;
  }

  .styling-combine-note {
    margin-top: 28px;
    background: var(--green-light);
    border: 1px solid var(--border);
    border-radius: 2px;
    padding: 20px 28px;
    font-size: 14px; color: var(--ink); line-height: 1.6;
    display: flex; gap: 14px; align-items: flex-start;
  }
  .styling-combine-note::before {
    content: '💡'; font-size: 20px; flex-shrink: 0;
  }

  @media(max-width:900px) {
    .styling-section { padding: 64px 24px; }
    .styling-intro-grid { grid-template-columns: 1fr; gap: 40px; }
    .styling-zones { grid-template-columns: 1fr; }
    .styling-zone { border-right: none; border-bottom: 1px solid var(--border); }
    .styling-zone:last-child { border-bottom: none; }
    .styling-pakketten { grid-template-columns: 1fr; }
    .styling-pakket { border-right: none; border-bottom: 1px solid var(--border); }
    .styling-pakket:last-child { border-bottom: none; }
  }


  /* ── QUIZ SECTION ─────────────────────────────────────────── */
  .quiz-section {
    background: var(--green);
    padding: 100px 80px;
    position: relative;
    overflow: hidden;
  }
  .quiz-section::before {
    content: '';
    position: absolute; inset: 0;
    background: repeating-linear-gradient(
      -45deg, transparent, transparent 50px,
      rgba(255,255,255,0.02) 50px, rgba(255,255,255,0.02) 51px
    );
  }
  .quiz-inner {
    position: relative; z-index: 1;
    max-width: 680px; margin: 0 auto;
  }
  .quiz-section .section-label { color: var(--gold-light); }
  .quiz-section .section-title { color: #fff; margin-bottom: 12px; }
  .quiz-section .section-intro { color: rgba(255,255,255,0.92); margin-bottom: 48px; }

  /* progress */
  .quiz-progress-bar {
    height: 3px; background: rgba(255,255,255,0.15);
    border-radius: 2px; margin-bottom: 40px; overflow: hidden;
  }
  .quiz-progress-fill {
    height: 100%; background: var(--gold);
    border-radius: 2px; transition: width 0.4s ease;
  }
  .quiz-step-label {
    font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
    color: rgba(255,255,255,0.45); margin-bottom: 10px;
  }

  /* card */
  .quiz-card {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 4px; padding: 44px;
    display: none;
  }
  .quiz-card.active { display: block; animation: fadeUp 0.35s ease both; }
  .quiz-question {
    font-family: var(--serif); font-size: clamp(20px, 2.5vw, 28px);
    font-weight: 700; color: #fff; line-height: 1.25;
    margin-bottom: 8px;
  }
  .quiz-sub {
    font-size: 14px; color: rgba(255,255,255,0.88);
    margin-bottom: 32px; line-height: 1.5;
  }

  /* options */
  .quiz-options {
    display: flex; flex-direction: column; gap: 10px;
  }
  .quiz-option {
    display: flex; align-items: flex-start; gap: 14px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 3px; padding: 16px 18px;
    cursor: pointer; transition: background 0.15s, border-color 0.15s;
    text-align: left; width: 100%;
    font-family: var(--sans); font-size: 15px;
    color: rgba(255,255,255,0.9);
  }
  .quiz-option:hover {
    background: rgba(255,255,255,0.13);
    border-color: rgba(255,255,255,0.3);
  }
  .quiz-option.selected {
    background: rgba(184,147,90,0.25);
    border-color: var(--gold);
    color: #fff;
  }
  .quiz-option-icon {
    font-size: 20px; flex-shrink: 0; line-height: 1; margin-top: 1px;
  }
  .quiz-option-text { flex: 1; }
  .quiz-option-label { font-weight: 500; display: block; margin-bottom: 2px; }
  .quiz-option-sub { font-size: 12px; color: rgba(255,255,255,0.82); }
  .quiz-option.selected .quiz-option-sub { color: rgba(255,255,255,0.7); }

  /* input field in quiz */
  .quiz-input {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 14px 18px; border-radius: 3px;
    font-family: var(--sans); font-size: 16px;
    color: #fff; outline: none; width: 100%;
    transition: border-color 0.2s;
  }
  .quiz-input::placeholder { color: rgba(255,255,255,0.65); }
  .quiz-input:focus { border-color: var(--gold); }

  /* nav buttons */
  .quiz-nav {
    display: flex; justify-content: space-between; align-items: center;
    margin-top: 28px;
  }
  .quiz-btn-next {
    background: var(--gold); color: #fff;
    border: none; padding: 14px 32px; border-radius: 2px;
    font-family: var(--sans); font-size: 13px; font-weight: 500;
    letter-spacing: 0.06em; text-transform: uppercase;
    cursor: pointer; transition: background 0.2s;
    margin-left: auto;
  }
  .quiz-btn-next:hover { background: var(--gold-light); }
  .quiz-btn-next:disabled { opacity: 0.4; cursor: not-allowed; }
  .quiz-btn-back {
    background: none; border: none;
    color: rgba(255,255,255,0.75); font-family: var(--sans);
    font-size: 13px; cursor: pointer; padding: 0;
    transition: color 0.2s;
  }
  .quiz-btn-back:hover { color: rgba(255,255,255,0.8); }

  /* email gate */
  .quiz-email-row {
    display: flex; gap: 10px; flex-wrap: wrap;
  }
  .quiz-email-row .quiz-input { flex: 1; min-width: 200px; }
  .quiz-email-row .quiz-btn-next { flex-shrink: 0; }

  /* outcome */
  .quiz-outcome { display: none; }
  .quiz-outcome.active {
    display: block; animation: fadeUp 0.5s ease both;
  }
  .outcome-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--gold); color: #fff;
    font-size: 11px; font-weight: 500; letter-spacing: 0.1em;
    text-transform: uppercase; padding: 6px 14px;
    border-radius: 2px; margin-bottom: 20px;
  }
  .outcome-title {
    font-family: var(--serif); font-size: clamp(24px, 3vw, 38px);
    font-weight: 700; color: #fff; line-height: 1.15;
    margin-bottom: 16px;
  }
  .outcome-body {
    font-size: 15px; color: rgba(255,255,255,0.75);
    line-height: 1.7; margin-bottom: 32px;
  }
  .outcome-package {
    background: rgba(255,255,255,0.09);
    border: 1px solid rgba(255,255,255,0.16);
    border-radius: 3px; padding: 28px 32px;
    margin-bottom: 28px;
  }
  .outcome-pkg-label {
    font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--gold-light); margin-bottom: 8px;
  }
  .outcome-pkg-name {
    font-family: var(--serif); font-size: 22px; font-weight: 700;
    color: #fff; margin-bottom: 4px;
  }
  .outcome-pkg-price {
    font-size: 28px; font-family: var(--serif); font-weight: 700;
    color: var(--gold-light); margin-bottom: 16px;
  }
  .outcome-pkg-items {
    list-style: none; display: flex; flex-direction: column; gap: 6px;
  }
  .outcome-pkg-items li {
    font-size: 13px; color: rgba(255,255,255,0.78);
    display: flex; gap: 8px;
  }
  .outcome-pkg-items li::before { content: '✓'; color: var(--gold-light); flex-shrink: 0; }
  .outcome-actions {
    display: flex; gap: 12px; flex-wrap: wrap;
  }
  .outcome-cta-primary {
    background: var(--gold); color: #fff;
    border: none; padding: 16px 32px; border-radius: 2px;
    font-family: var(--sans); font-size: 13px; font-weight: 500;
    letter-spacing: 0.06em; text-transform: uppercase;
    cursor: pointer; text-decoration: none; display: inline-block;
    transition: background 0.2s;
  }
  .outcome-cta-primary:hover { background: var(--gold-light); }
  .outcome-cta-secondary {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.25); color: rgba(255,255,255,0.8);
    padding: 16px 28px; border-radius: 2px;
    font-family: var(--sans); font-size: 13px; font-weight: 400;
    letter-spacing: 0.04em; cursor: pointer; text-decoration: none;
    display: inline-block; transition: border-color 0.2s, color 0.2s;
  }
  .outcome-cta-secondary:hover { border-color: rgba(255,255,255,0.5); color: #fff; }
  .quiz-restart {
    display: block; text-align: center;
    font-size: 12px; color: rgba(255,255,255,0.65);
    margin-top: 24px; cursor: pointer; text-decoration: underline;
    background: none; border: none; font-family: var(--sans); width: 100%;
  }
  .quiz-restart:hover { color: rgba(255,255,255,0.6); }

  @media(max-width:900px) {
    .quiz-section { padding: 64px 24px; }
    .quiz-card { padding: 28px 22px; }
  }


  /* PRICE STICKER */
  .price-sticker-wrap {
    display: flex; align-items: flex-start; gap: 20px;
    margin-bottom: 20px; flex-wrap: wrap;
  }
  .price-sticker {
    position: relative;
    background: var(--gold);
    color: #fff;
    border-radius: 50%;
    width: 110px; height: 110px;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 20px rgba(184,147,90,0.45);
    transform: rotate(-6deg);
    text-align: center;
    line-height: 1;
  }
  .price-sticker::before {
    content: '';
    position: absolute; inset: -4px;
    border-radius: 50%;
    border: 2px dashed rgba(255,255,255,0.4);
  }
  .price-sticker-from {
    font-size: 10px; font-weight: 500;
    letter-spacing: 0.08em; text-transform: uppercase;
    opacity: 0.85; margin-bottom: 2px;
  }
  .price-sticker-amount {
    font-family: var(--serif);
    font-size: 28px; font-weight: 700; line-height: 1;
  }
  .price-sticker-amount.large { font-size: 22px; }
  .price-sticker-incl {
    font-size: 9px; opacity: 0.75; margin-top: 3px; letter-spacing: 0.05em;
  }
  .price-sticker-maatwerk {
    background: var(--green-mid);
  }
  .price-sticker-meta {
    flex: 1; min-width: 160px;
    display: flex; flex-direction: column; justify-content: center;
  }
  .price-sticker-meta .outcome-pkg-name {
    margin-bottom: 6px;
  }
  .price-sticker-note {
    font-size: 12px; color: rgba(255,255,255,0.88); line-height: 1.5;
  }
  .price-sticker-roi {
    display: inline-flex; align-items: center; gap: 6px;
    background: rgba(126,207,160,0.18); color: #7ecfa0;
    font-size: 11px; font-weight: 500; padding: 4px 10px;
    border-radius: 12px; margin-top: 8px; align-self: flex-start;
    letter-spacing: 0.04em;
  }


  /* BRONNEN SECTIE */
  .sources-section {
    background: var(--ink);
    padding: 80px 80px;
    color: #fff;
  }
  .sources-section .section-label { color: var(--gold-light); }
  .sources-section .section-title { color: #fff; margin-bottom: 8px; }
  .sources-intro {
    font-size: 15px; color: rgba(255,255,255,0.88); line-height: 1.7;
    max-width: 600px; margin-bottom: 48px; font-weight: 300;
  }
  .sources-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 40px;
  }
  .source-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: 3px;
    padding: 28px 32px;
    transition: background 0.2s;
  }
  .source-card:hover { background: rgba(255,255,255,0.08); }
  .source-card.direct {
    border-left: 3px solid var(--gold);
  }
  .source-card.indirect {
    border-left: 3px solid rgba(255,255,255,0.25);
  }
  .source-tag {
    display: inline-block;
    font-size: 10px; font-weight: 500; letter-spacing: 0.1em;
    text-transform: uppercase; padding: 3px 9px; border-radius: 2px;
    margin-bottom: 12px;
  }
  .source-tag.direct { background: rgba(184,147,90,0.2); color: var(--gold-light); }
  .source-tag.indirect { background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.5); }
  .source-title {
    font-size: 14px; font-weight: 500; color: #fff;
    margin-bottom: 6px; line-height: 1.4;
  }
  .source-org {
    font-size: 12px; color: var(--gold-light); margin-bottom: 10px;
    font-weight: 400;
  }
  .source-finding {
    font-size: 13px; color: rgba(255,255,255,0.88); line-height: 1.6;
    margin-bottom: 12px;
  }
  .source-caveat {
    font-size: 11px; color: rgba(255,255,255,0.65); line-height: 1.5;
    font-style: italic;
  }
  .source-link {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 11px; color: rgba(255,255,255,0.65);
    text-decoration: none; margin-top: 10px;
    transition: color 0.2s; letter-spacing: 0.03em;
  }
  .source-link:hover { color: rgba(255,255,255,0.7); }
  .source-link::before { content: '↗'; font-size: 10px; }

  .sources-disclaimer {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 3px;
    padding: 20px 28px;
    font-size: 13px; color: rgba(255,255,255,0.45);
    line-height: 1.65;
    display: flex; gap: 14px; align-items: flex-start;
  }
  .sources-disclaimer::before {
    content: '⚠';
    font-size: 16px; flex-shrink: 0; opacity: 0.6;
  }

  @media(max-width:900px) {
    .sources-section { padding: 64px 24px; }
    .sources-grid { grid-template-columns: 1fr; }
  }


  /* WORD CLOUD */
  .wordcloud-section {
    background: var(--cream);
    padding: 80px 80px;
    text-align: center;
  }
  .wordcloud-section .section-label { color: var(--green); }
  .wordcloud-section .section-title { color: var(--ink); margin-bottom: 8px; }
  .wordcloud-section .section-intro {
    color: var(--ink); max-width: 560px; margin: 0 auto 56px;
    font-size: 15px; line-height: 1.7;
  }
  .wordcloud-wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 14px 20px;
    max-width: 860px;
    margin: 0 auto;
  }
  .wc-item {
    font-family: var(--sans);
    font-weight: 500;
    color: var(--ink);
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 100px;
    padding: 0.35em 1.1em;
    line-height: 1.4;
    transition: background 0.2s, color 0.2s, transform 0.15s;
    cursor: default;
  }
  .wc-item:hover {
    background: var(--green);
    color: #fff;
    border-color: var(--green);
    transform: scale(1.06);
  }
  /* Size scale — xs through xl */
  .wc-xs { font-size: 13px; opacity: 0.75; }
  .wc-s  { font-size: 15px; opacity: 0.82; }
  .wc-m  { font-size: 18px; }
  .wc-l  { font-size: 22px; }
  .wc-xl { font-size: 27px; font-weight: 600; color: var(--green); }

  @media (max-width: 900px) {
    .wordcloud-section { padding: 64px 24px; }
    .wc-xl { font-size: 22px; }
    .wc-l  { font-size: 18px; }
  }


  /* EXPLICIT CONTRAST: force dark text on all light-background sections */
  .guarantee,
  .guarantee-left,
  .guarantee-right,
  .guarantee-item-title,
  .guarantee-item-body { color: var(--ink); }

  .testimonials .section-title,
  .testimonials .section-intro,
  .testimonials-header,
  .testimonial-text,
  .testimonial-author { color: var(--ink); }

  .styling-section .section-label,
  .styling-section .section-title,
  .styling-section .styling-tagline,
  .styling-section .styling-body,
  .styling-method-text { color: var(--ink); }

  /* Non-featured styling cards on white/cream bg */
  .styling-pakket:not(.featured-s) .sp-name,
  .styling-pakket:not(.featured-s) .sp-tagline,
  .styling-pakket:not(.featured-s) .sp-price,
  .styling-pakket:not(.featured-s) .sp-price-note,
  .styling-pakket:not(.featured-s) .sp-items li { color: var(--ink); }

  .wordcloud-section .section-title,
  .wordcloud-section .section-intro { color: var(--ink); }


  /* Section labels on light backgrounds: use green instead of gold for contrast */
  .guarantee .section-label,
  .testimonials .section-label,
  .styling-section .section-label,
  .wordcloud-section .section-label { color: var(--green); }


  .pkg-result {
    font-size: 13px;
    color: rgba(255,255,255,0.75);
    font-style: italic;
    margin: 0 0 16px;
    line-height: 1.5;
    min-height: 60px;
  }

  .source-card-link {
    display: block;
    text-decoration: none;
    cursor: pointer;
  }
  .source-card-link:hover {
    background: rgba(255,255,255,0.10);
    transform: translateY(-2px);
    transition: background 0.2s, transform 0.15s;
  }
  .source-card-link .source-title { color: #fff; }


  .lang-toggle {
    display: flex; align-items: center; gap: 6px;
    font-size: 12px; font-weight: 600; letter-spacing: 0.10em;
    margin-left: 20px;
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 5px 10px;
    background: rgba(255,255,255,0.6);
  }
  .lang-active { color: var(--ink); font-weight: 800; }
  .lang-sep { color: var(--muted); }
  .lang-link { color: var(--muted); text-decoration: none; transition: color 0.2s; }
  .lang-link:hover { color: var(--green); }


  .how-photo {
    margin: 0;
    overflow: hidden;
    max-height: 480px;
  }
  .how-photo img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    object-position: center 30%;
    display: block;
  }
  @media (max-width: 900px) {
    .how-photo img { height: 280px; }
  }


  .contact-photo {
    display: flex; flex-direction: column; align-items: center;
    margin-bottom: 32px;
  }
  .contact-photo img {
    width: 96px; height: 96px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--green);
    margin-bottom: 10px;
    box-shadow: 0 4px 16px rgba(26,26,24,0.15);
  }
  .contact-photo-name {
    font-family: var(--serif); font-size: 17px; font-weight: 700;
    color: var(--ink); margin-bottom: 2px;
  }
  .contact-photo-title {
    font-size: 12px; color: var(--muted); letter-spacing: 0.08em;
    text-transform: uppercase;
  }


  .contact-photo {
    display: flex; flex-direction: column; align-items: flex-start;
    margin-bottom: 28px;
    flex-direction: row; align-items: center; gap: 16px;
  }
  .contact-photo img {
    width: 88px; height: 88px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--green);
    flex-shrink: 0;
    box-shadow: 0 4px 16px rgba(26,26,24,0.15);
  }
  .contact-photo-text { display: flex; flex-direction: column; }
  .contact-photo-name {
    font-family: var(--serif); font-size: 18px; font-weight: 700;
    color: var(--ink); margin-bottom: 3px;
  }
  .contact-photo-title {
    font-size: 11px; color: var(--muted); letter-spacing: 0.08em;
    text-transform: uppercase;
  }


  /* PARTNERS */
  .partners-bar {
    background: #ffffff;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 32px 80px;
    text-align: center;
  }
  .partners-label {
    font-size: 13px; font-weight: 500; letter-spacing: 0.12em;
    text-transform: uppercase; color: var(--muted);
    margin-bottom: 32px;
  }
  .partners-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    flex-wrap: nowrap;
  }
  .partners-logos img {
    height: 56px;
    width: auto;
    object-fit: contain;
    opacity: 0.85;
    filter: grayscale(10%);
    transition: opacity 0.2s, filter 0.2s;
  }
  .partners-logos img:hover {
    opacity: 1;
    filter: grayscale(0%);
  }
  @media (max-width: 900px) {
    .partners-bar { padding: 40px 24px; }
    .partners-logos { gap: 40px; }
    .partners-logos img { height: 44px; width: auto; }
  }


  .calc-result-box * { color: var(--ink); }
  .calc-result-box .calc-pkg-meerwaarde { color: var(--green) !important; font-weight: 700; }
  .calc-result-box a.calc-cta,
  .calc-result-box button.calc-cta {
    background: var(--green);
    color: #fff !important;
    display: inline-block;
    padding: 14px 28px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 16px;
    border: none;
    cursor: pointer;
  }
  .calc-result-box a.calc-cta:hover,
  .calc-result-box button.calc-cta:hover {
    background: var(--green-mid);
  }

