    :root {
      --bg-dark: #0b0c10;
      --bg-light: #f7f7f7;
      --text-main: #1f2933;
      --text-muted: #6b7280;
      --accent: #2563eb;
      --accent-dark: #1e4fb8;
      --border-soft: #e2e2e2;
      --max-width: 1120px;
      --radius: 10px;
    }

    * { box-sizing: border-box; }

    html, body {
      margin: 0;
      padding: 0;
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
      color: var(--text-main);
      background-color: #ffffff;
      scroll-behavior: smooth;
    }

    img { max-width: 100%; display: block; }

    a { color: inherit; text-decoration: none; }

    .container {
      width: 100%;
      max-width: var(--max-width);
      margin: 0 auto;
      padding: 0 24px;
    }

    section { padding: 80px 0; }

    h1, h2, h3 {
      margin-top: 0;
      letter-spacing: -0.02em;
    }

    h1 {
      font-size: 2.8rem;
      line-height: 1.1;
      margin-bottom: 16px;
    }

    h2 {
      font-size: 2rem;
      margin-bottom: 16px;
    }

    h3 {
      font-size: 1.25rem;
      margin-bottom: 8px;
    }

    p {
      margin: 0 0 14px;
      line-height: 1.6;
    }

    ul { margin: 0 0 14px; padding-left: 20px; }
    li { margin-bottom: 6px; }

    .muted {
      color: var(--text-muted);
      font-size: 0.95rem;
    }

    .badge {
      display: inline-block;
      font-size: 0.78rem;
      padding: 4px 10px;
      border-radius: 999px;
      background: rgba(37, 99, 235, 0.08);
      color: var(--accent-dark);
      text-transform: uppercase;
      letter-spacing: 0.08em;
      margin-bottom: 10px;
      font-weight: 500;
    }

    .pill {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 6px 12px;
      border-radius: 999px;
      background: rgba(15, 23, 42, 0.85);
      color: #fff;
      font-size: 0.85rem;
      margin-bottom: 14px;
    }

    .pill-dot {
      width: 8px;
      height: 8px;
      border-radius: 999px;
      background: #22c55e;
    }

    .btn-primary {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 14px 26px;
      border-radius: 999px;
      border: none;
      background: var(--accent);
      color: #fff;
      font-weight: 600;
      font-size: 1rem;
      cursor: pointer;
      box-shadow: 0 14px 30px rgba(37, 99, 235, 0.35);
      gap: 8px;
      transition: background 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
    }

    .btn-primary:hover {
      background: var(--accent-dark);
      transform: translateY(-1px);
      box-shadow: 0 18px 40px rgba(37, 99, 235, 0.45);
    }

    .btn-secondary {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 12px 22px;
      border-radius: 999px;
      border: 1px solid rgba(148, 163, 184, 0.7);
      background: transparent;
      color: #0f172a;
      font-weight: 500;
      font-size: 0.95rem;
      cursor: pointer;
      gap: 8px;
      transition: background 0.18s ease, border-color 0.18s ease;
    }

    .btn-secondary:hover {
      background: rgba(15, 23, 42, 0.05);
      border-color: rgba(148, 163, 184, 0.95);
    }

    /* HERO */

    .hero {
      position: relative;
      min-height: 90vh;
      display: flex;
      align-items: center;
      color: #fff;
      overflow: hidden;
      background-color: #000;
    }

    .hero::before {
      content: "";
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(to right, rgba(15, 23, 42, 0.92), rgba(15, 23, 42, 0.35)),
        url("images/gerwinberentschot.jpeg"); /* <-- vervang bestandsnaam */
      background-size: cover;
      background-position: center center;
      filter: grayscale(0.05);
      transform: scale(1.03);
    }

    .hero-inner {
      position: relative;
      z-index: 1;
      width: 100%;
      max-width: var(--max-width);
      margin: 0 auto;
      padding: 32px 24px 56px;
    }

    .hero-copy {
      max-width: 640px;
    }

    .hero-copy p { color: #e5e7eb; }

    .hero-bullets {
      margin-top: 10px;
      display: grid;
      gap: 4px;
      font-size: 0.95rem;
    }

    .hero-cta {
      margin-top: 22px;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 14px;
    }

    .hero-meta {
      margin-top: 10px;
      font-size: 0.86rem;
      color: #cbd5f5;
      max-width: 430px;
    }

    /* LAYOUTS */

    .split {
      display: grid;
      grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
      gap: 36px;
      align-items: flex-start;
    }

    .card {
      background: #fff;
      border-radius: var(--radius);
      padding: 24px 22px;
      border: 1px solid var(--border-soft);
      box-shadow: 0 14px 40px rgba(15, 23, 42, 0.04);
    }

    .section-muted {
      background: var(--bg-light);
    }

    .check-list,
    .cross-list {
      list-style: none;
      padding-left: 0;
    }

    .check-list li,
    .cross-list li {
      position: relative;
      padding-left: 22px;
      margin-bottom: 6px;
    }

    .check-list li::before {
      content: "✓";
      position: absolute;
      left: 0;
      top: 0;
      font-size: 0.9rem;
      color: #16a34a;
    }

    .cross-list li::before {
      content: "✕";
      position: absolute;
      left: 0;
      top: 0;
      font-size: 0.9rem;
      color: #ef4444;
    }

    .steps { display: grid; gap: 16px; }

    .step-item {
      display: grid;
      grid-template-columns: auto minmax(0, 1fr);
      gap: 14px;
      align-items: flex-start;
    }

    .step-number {
      width: 30px;
      height: 30px;
      border-radius: 999px;
      background: rgba(37, 99, 235, 0.12);
      color: var(--accent-dark);
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 600;
      font-size: 0.95rem;
      margin-top: 4px;
    }

    .faq-item {
      border-bottom: 1px solid var(--border-soft);
      padding: 14px 0;
    }

    .faq-item:last-child { border-bottom: none; }

    .faq-question {
      font-weight: 600;
      margin-bottom: 4px;
    }

    .cta-section {
      text-align: center;
    }

    .cta-section p {
      max-width: 560px;
      margin: 0 auto 18px;
    }

    form {
      max-width: 520px;
      margin: 0 auto;
      text-align: left;
    }

    label {
      display: block;
      font-size: 0.9rem;
      margin-bottom: 4px;
    }

    input, textarea {
      width: 100%;
      padding: 10px 11px;
      border-radius: 7px;
      border: 1px solid var(--border-soft);
      font-family: inherit;
      font-size: 0.95rem;
      margin-bottom: 12px;
    }

    textarea { min-height: 80px; resize: vertical; }

    footer {
      padding: 28px 24px 34px;
      text-align: center;
      font-size: 0.83rem;
      color: var(--text-muted);
      border-top: 1px solid var(--border-soft);
      background: #fff;
    }

    /* RESPONSIVE */

    @media (max-width: 960px) {
      h1 { font-size: 2.2rem; }
      .split { grid-template-columns: minmax(0, 1fr); }
    }

    @media (max-width: 640px) {
      section { padding: 56px 0; }

      .hero {
        min-height: 100vh;
      }

      .hero-inner {
        padding: 90px 20px 46px;
      }

      .hero::before {
        background-image:
          linear-gradient(to top, rgba(15, 23, 42, 0.96), rgba(15, 23, 42, 0.4)),
          url("images/gerwinberentschot.jpeg");
        background-position: 80%;
      }

      .hero-cta {
        flex-direction: column;
        align-items: flex-start;
      }
    }