  :root {
    --bg: #FAFAF8;
    --bg2: #F2F2EE;
    --ink: #0C0C0A;
    --ink2: #4A4A44;
    --ink3: #9A9A92;
    --accent: #1A1A1A;
    --green: #2D6A4F;
    --green-light: #E8F4EE;
    --border: #E4E4DC;
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; }

  body {
    font-family: 'DM Sans', sans-serif;
    background: var(--bg);
    color: var(--ink);
    overflow-x: hidden;
  }

  /* ── NAV ── */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 20px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(250,250,248,0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    transition: box-shadow 0.3s;
  }

  .logo {
    font-family: 'DM Serif Display', serif;
    font-size: 22px;
    color: var(--ink);
    text-decoration: none;
    letter-spacing: -0.5px;
  }

  .logo span { color: var(--green); }

  .nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
  }

  .nav-links a {
    font-size: 14px;
    font-weight: 500;
    color: var(--ink2);
    text-decoration: none;
    transition: color 0.2s;
  }

  .nav-links a:hover { color: var(--ink); }

  .nav-cta {
    background: var(--ink);
    color: white !important;
    padding: 10px 22px;
    font-size: 14px !important;
    font-weight: 500 !important;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
    display: inline-block;
  }

  .nav-cta:hover {
    background: var(--green) !important;
    transform: translateY(-1px);
  }

  /* ── HERO ── */
  .hero {
    min-height: 100vh;
    padding: 140px 60px 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1300px;
    margin: 0 auto;
  }

  .hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: 28px;
  }

  .hero-tag::before {
    content: '';
    width: 24px;
    height: 2px;
    background: var(--green);
  }

  .hero h1 {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(42px, 5vw, 68px);
    line-height: 1.08;
    letter-spacing: -2px;
    color: var(--ink);
    margin-bottom: 28px;
  }

  .hero h1 em {
    font-style: italic;
    color: var(--green);
  }

  .hero p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--ink2);
    max-width: 480px;
    margin-bottom: 40px;
    font-weight: 300;
  }

  .hero-buttons {
    display: flex;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
  }

  .btn-primary {
    background: var(--ink);
    color: white;
    padding: 14px 32px;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
    font-family: 'DM Sans', sans-serif;
    display: inline-block;
  }

  .btn-primary:hover {
    background: var(--green);
    transform: translateY(-2px);
  }

  .btn-secondary {
    font-size: 15px;
    font-weight: 500;
    color: var(--ink2);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.2s;
  }

  .btn-secondary:hover { color: var(--ink); }
  .btn-secondary svg { transition: transform 0.2s; }
  .btn-secondary:hover svg { transform: translateX(4px); }

  .hero-visual { position: relative; }

  .hero-card {
    background: white;
    border: 1px solid var(--border);
    padding: 28px;
    margin-bottom: 16px;
    position: relative;
    animation: fadeUp 0.6s ease both;
    transition: box-shadow 0.3s, transform 0.3s;
  }

  .hero-card:hover {
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
    transform: translateY(-2px);
  }

  .hero-card:nth-child(1) { animation-delay: 0.1s; }
  .hero-card:nth-child(2) { animation-delay: 0.2s; margin-left: 30px; }
  .hero-card:nth-child(3) { animation-delay: 0.3s; }

  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .card-icon {
    width: 36px;
    height: 36px;
    background: var(--green-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    font-size: 18px;
  }

  .hero-card h3 {
    font-size: 15px;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 6px;
  }

  .hero-card p {
    font-size: 13px;
    color: var(--ink3);
    line-height: 1.5;
    margin: 0;
  }

  .card-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--green);
    color: white;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 10px;
    letter-spacing: 0.5px;
  }

  /* ── STATS BAR ── */
  .stats-bar {
    background: var(--ink);
    padding: 40px 60px;
  }

  .stats-inner {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
  }

  .stat-item {
    text-align: center;
    border-right: 1px solid rgba(255,255,255,0.1);
  }

  .stat-item:last-child { border-right: none; }

  .stat-number {
    font-family: 'DM Serif Display', serif;
    font-size: 42px;
    color: white;
    display: block;
    letter-spacing: -1px;
  }

  .stat-label {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    margin-top: 4px;
    letter-spacing: 0.5px;
  }

  /* ── SECTIONS ── */
  .section {
    padding: 100px 60px;
    max-width: 1300px;
    margin: 0 auto;
  }

  .section-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .section-label::before {
    content: '';
    width: 20px;
    height: 2px;
    background: var(--green);
  }

  .section h2 {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(32px, 4vw, 52px);
    letter-spacing: -1.5px;
    line-height: 1.1;
    color: var(--ink);
    margin-bottom: 16px;
  }

  .section-intro {
    font-size: 17px;
    color: var(--ink2);
    max-width: 580px;
    line-height: 1.7;
    font-weight: 300;
    margin-bottom: 60px;
  }

  /* ── DIENSTEN ── */
  .diensten-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    background: var(--border);
  }

  .dienst-card {
    background: var(--bg);
    padding: 48px 40px;
    position: relative;
    overflow: hidden;
    transition: background 0.3s;
    cursor: default;
  }

  .dienst-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 3px;
    background: var(--green);
    transition: width 0.4s ease;
  }

  .dienst-card:hover { background: white; }
  .dienst-card:hover::after { width: 100%; }

  .dienst-number {
    font-family: 'DM Serif Display', serif;
    font-size: 64px;
    color: var(--border);
    line-height: 1;
    margin-bottom: 24px;
    letter-spacing: -2px;
    transition: color 0.3s;
  }

  .dienst-card:hover .dienst-number { color: var(--green-light); }

  .dienst-icon {
    width: 48px;
    height: 48px;
    background: var(--green-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 20px;
  }

  .dienst-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 12px;
    letter-spacing: -0.3px;
  }

  .dienst-card p {
    font-size: 14px;
    color: var(--ink2);
    line-height: 1.7;
    margin-bottom: 24px;
    font-weight: 300;
  }

  .dienst-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .dienst-features li {
    font-size: 13px;
    color: var(--ink2);
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .dienst-features li::before {
    content: '→';
    color: var(--green);
    font-size: 12px;
  }

  .dienst-price {
    margin-top: 28px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
    font-size: 13px;
    color: var(--ink3);
  }

  .dienst-price strong {
    font-size: 22px;
    color: var(--ink);
    font-weight: 600;
    letter-spacing: -0.5px;
    display: block;
    margin-bottom: 2px;
  }

  /* ── HOE HET WERKT ── */
  .how-section {
    background: var(--bg2);
    padding: 100px 60px;
  }

  .how-inner { max-width: 1300px; margin: 0 auto; }

  .steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin-top: 60px;
    position: relative;
  }

  .steps-grid::before {
    content: '';
    position: absolute;
    top: 28px;
    left: 10%;
    right: 10%;
    height: 1px;
    background: var(--border);
    z-index: 0;
  }

  .step {
    text-align: center;
    padding: 0 24px;
    position: relative;
    z-index: 1;
  }

  .step-dot {
    width: 56px;
    height: 56px;
    background: white;
    border: 2px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 28px;
    font-family: 'DM Serif Display', serif;
    font-size: 20px;
    color: var(--ink);
    transition: background 0.3s, border-color 0.3s, color 0.3s;
  }

  .step:hover .step-dot {
    background: var(--green);
    border-color: var(--green);
    color: white;
  }

  .step h4 {
    font-size: 15px;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 10px;
  }

  .step p {
    font-size: 13px;
    color: var(--ink2);
    line-height: 1.6;
    font-weight: 300;
  }

  /* ── WAAROM ── */
  .why-section {
    padding: 100px 60px;
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
  }

  .why-left h2 {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(32px, 4vw, 48px);
    letter-spacing: -1.5px;
    line-height: 1.1;
    margin-bottom: 24px;
  }

  .why-left p {
    font-size: 16px;
    color: var(--ink2);
    line-height: 1.8;
    font-weight: 300;
    margin-bottom: 36px;
  }

  .why-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .why-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
  }

  .why-item-icon {
    width: 40px;
    height: 40px;
    background: var(--green-light);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 18px;
  }

  .why-item h4 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 4px;
  }

  .why-item p {
    font-size: 13px;
    color: var(--ink2);
    line-height: 1.6;
    margin: 0;
  }

  .why-right {
    background: var(--ink);
    padding: 52px;
    position: relative;
  }

  .why-right::before {
    content: '"';
    font-family: 'DM Serif Display', serif;
    font-size: 180px;
    color: rgba(255,255,255,0.05);
    position: absolute;
    top: -20px;
    left: 30px;
    line-height: 1;
  }

  .testimonial-text {
    font-family: 'DM Serif Display', serif;
    font-size: 22px;
    color: white;
    line-height: 1.5;
    margin-bottom: 32px;
    position: relative;
    z-index: 1;
    font-style: italic;
  }

  .testimonial-author { display: flex; align-items: center; gap: 16px; }

  .author-avatar {
    width: 44px;
    height: 44px;
    background: var(--green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'DM Serif Display', serif;
    font-size: 18px;
    color: white;
  }

  .author-name { font-size: 14px; font-weight: 600; color: white; }
  .author-title { font-size: 12px; color: rgba(255,255,255,0.5); margin-top: 2px; }

  .why-metrics {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: rgba(255,255,255,0.1);
    margin-top: 40px;
  }

  .metric {
    background: rgba(255,255,255,0.03);
    padding: 20px;
    text-align: center;
  }

  .metric-value {
    font-family: 'DM Serif Display', serif;
    font-size: 32px;
    color: white;
    letter-spacing: -1px;
    display: block;
  }

  .metric-label { font-size: 11px; color: rgba(255,255,255,0.4); margin-top: 4px; }

  /* ── TARIEVEN ── */
  .tarieven-section {
    background: var(--bg2);
    padding: 100px 60px;
  }

  .tarieven-inner { max-width: 1300px; margin: 0 auto; }

  .tarieven-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    background: var(--border);
    margin-top: 60px;
  }

  .tarief-card {
    background: white;
    padding: 44px 36px;
    position: relative;
  }

  .tarief-card.featured { background: var(--ink); color: white; }

  .tarief-badge {
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--green);
    color: white;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 5px 16px;
    white-space: nowrap;
  }

  .tarief-name {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--ink3);
    margin-bottom: 16px;
  }

  .featured .tarief-name { color: rgba(255,255,255,0.4); }

  .tarief-price {
    font-family: 'DM Serif Display', serif;
    font-size: 52px;
    letter-spacing: -2px;
    color: var(--ink);
    line-height: 1;
    margin-bottom: 6px;
  }

  .featured .tarief-price { color: white; }

  .tarief-period {
    font-size: 13px;
    color: var(--ink3);
    margin-bottom: 32px;
  }

  .featured .tarief-period { color: rgba(255,255,255,0.4); }

  .tarief-desc {
    font-size: 14px;
    color: var(--ink2);
    line-height: 1.6;
    margin-bottom: 28px;
    font-weight: 300;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--border);
  }

  .featured .tarief-desc {
    color: rgba(255,255,255,0.6);
    border-bottom-color: rgba(255,255,255,0.1);
  }

  .tarief-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 36px;
  }

  .tarief-features li {
    font-size: 14px;
    color: var(--ink2);
    display: flex;
    gap: 12px;
    align-items: flex-start;
  }

  .featured .tarief-features li { color: rgba(255,255,255,0.75); }

  .tarief-features li::before {
    content: '✓';
    color: var(--green);
    font-weight: 700;
    flex-shrink: 0;
  }

  .tarief-btn {
    display: block;
    text-align: center;
    padding: 14px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
    font-family: 'DM Sans', sans-serif;
  }

  .tarief-btn-outline { border: 2px solid var(--ink); color: var(--ink); }
  .tarief-btn-outline:hover { background: var(--ink); color: white; transform: translateY(-2px); }
  .tarief-btn-filled { background: var(--green); color: white; border: 2px solid var(--green); }
  .tarief-btn-filled:hover { background: #235C42; transform: translateY(-2px); }
  .tarief-btn-white { background: white; color: var(--ink); border: 2px solid white; }
  .tarief-btn-white:hover { background: var(--green-light); transform: translateY(-2px); }

  /* ── FAQ ── */
  .faq-section {
    padding: 100px 60px;
    max-width: 1300px;
    margin: 0 auto;
  }

  .faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    background: var(--border);
    margin-top: 60px;
  }

  .faq-item {
    background: var(--bg);
    padding: 32px 36px;
    transition: background 0.2s;
  }

  .faq-item:hover { background: white; }

  .faq-item h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 10px;
    letter-spacing: -0.2px;
  }

  .faq-item p {
    font-size: 14px;
    color: var(--ink2);
    line-height: 1.7;
    font-weight: 300;
  }

  /* ── CTA ── */
  .cta-section {
    background: var(--ink);
    padding: 100px 60px;
    text-align: center;
  }

  .cta-inner {
    max-width: 700px;
    margin: 0 auto;
  }

  .cta-section .section-label { justify-content: center; color: rgba(255,255,255,0.4); }
  .cta-section .section-label::before { background: rgba(255,255,255,0.2); }

  .cta-section h2 {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(32px, 4vw, 52px);
    letter-spacing: -1.5px;
    line-height: 1.1;
    color: white;
    margin-bottom: 20px;
  }

  .cta-section h2 em { font-style: italic; color: #6FCF97; }

  .cta-section p {
    font-size: 17px;
    color: rgba(255,255,255,0.6);
    line-height: 1.7;
    font-weight: 300;
    margin-bottom: 44px;
  }

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

  .btn-white {
    background: white;
    color: var(--ink);
    padding: 16px 36px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
    font-family: 'DM Sans', sans-serif;
    display: inline-block;
  }

  .btn-white:hover { background: #6FCF97; transform: translateY(-2px); }

  .btn-ghost {
    border: 2px solid rgba(255,255,255,0.3);
    color: white;
    padding: 16px 36px;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    transition: border-color 0.2s, transform 0.2s;
    font-family: 'DM Sans', sans-serif;
    display: inline-block;
  }

  .btn-ghost:hover { border-color: white; transform: translateY(-2px); }

  /* ── FOOTER ── */
  footer {
    background: #080808;
    padding: 60px;
  }

  .footer-inner {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    margin-bottom: 32px;
  }

  .footer-brand .logo { color: white; display: block; margin-bottom: 16px; }

  .footer-brand p {
    font-size: 13px;
    color: rgba(255,255,255,0.35);
    line-height: 1.7;
    font-weight: 300;
    max-width: 260px;
  }

  .footer-col h4 {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.25);
    margin-bottom: 20px;
  }

  .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }

  .footer-col ul a {
    font-size: 14px;
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    transition: color 0.2s;
  }

  .footer-col ul a:hover { color: white; }

  .footer-bottom {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.25); }

  .footer-bottom a {
    color: rgba(255,255,255,0.25);
    text-decoration: none;
    transition: color 0.2s;
  }

  .footer-bottom a:hover { color: white; }

  /* ── ANIMATIONS ── */
  .fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }

  .fade-in.visible { opacity: 1; transform: translateY(0); }

  /* ── RESPONSIVE ── */
  @media (max-width: 1024px) {
    nav { padding: 20px 30px; }
    .hero { padding: 120px 30px 60px; gap: 40px; }
    .section, .faq-section { padding: 70px 30px; }
    .why-section { padding: 70px 30px; grid-template-columns: 1fr; gap: 40px; }
    .how-section, .tarieven-section, .cta-section { padding: 70px 30px; }
    footer { padding: 60px 30px; }
    .stats-bar { padding: 40px 30px; }
  }

  @media (max-width: 768px) {
    .hero { grid-template-columns: 1fr; }
    .hero-visual { display: none; }
    .stats-inner { grid-template-columns: repeat(2, 1fr); }
    .diensten-grid { grid-template-columns: 1fr; }
    .steps-grid { grid-template-columns: 1fr 1fr; }
    .steps-grid::before { display: none; }
    .tarieven-grid { grid-template-columns: 1fr; }
    .faq-grid { grid-template-columns: 1fr; }
    .footer-inner { grid-template-columns: 1fr 1fr; }
    .nav-links { display: none; }
  }

/* ── UITBREIDINGEN V3 (zelfde ontwerptaal) ── */
.diensten-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.steps-grid.three { grid-template-columns: repeat(3, 1fr); }

.page-hero { padding: 170px 60px 70px; max-width: 1300px; margin: 0 auto; }
.page-hero h1 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(36px, 4.5vw, 58px);
  letter-spacing: -1.5px;
  line-height: 1.1;
  max-width: 18em;
  margin-bottom: 22px;
}
.page-hero h1 em { font-style: italic; color: var(--green); }
.page-hero .lead {
  font-size: 17px; color: var(--ink2); line-height: 1.7;
  font-weight: 300; max-width: 620px; margin-bottom: 36px;
}

.check-list { list-style: none; display: flex; flex-direction: column; gap: 14px; max-width: 640px; }
.check-list li { display: flex; gap: 14px; align-items: flex-start; font-size: 15px; color: var(--ink2); line-height: 1.6; }
.check-list li::before { content: '✓'; color: var(--green); font-weight: 700; flex-shrink: 0; }

.note-line {
  margin-top: 32px; padding: 20px 24px; background: var(--green-light);
  font-size: 14px; color: var(--ink); max-width: 640px; line-height: 1.6;
}

.panel-cta {
  background: white; border: 1px solid var(--border); padding: 48px;
  display: flex; justify-content: space-between; align-items: center; gap: 32px; flex-wrap: wrap;
}
.panel-cta h3 { font-family: 'DM Serif Display', serif; font-size: 26px; letter-spacing: -0.5px; margin-bottom: 8px; }
.panel-cta p { font-size: 14px; color: var(--ink2); font-weight: 300; max-width: 480px; line-height: 1.7; }

.contact-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 60px; align-items: start; }
.contact-form { display: flex; flex-direction: column; gap: 18px; }
.contact-form label { font-size: 13px; font-weight: 600; display: block; margin-bottom: 6px; }
.contact-form input, .contact-form textarea {
  width: 100%; font-family: 'DM Sans', sans-serif; font-size: 15px;
  padding: 13px 14px; border: 1px solid var(--border); background: white; color: var(--ink);
}
.contact-form input:focus, .contact-form textarea:focus { outline: none; border-color: var(--green); }
.contact-form button { align-self: flex-start; border: none; cursor: pointer; }
.form-note { font-size: 12px; color: var(--ink3); }
.contact-aside { background: white; border: 1px solid var(--border); padding: 40px; }
.contact-aside h3 { font-family: 'DM Serif Display', serif; font-size: 24px; margin-bottom: 10px; letter-spacing: -0.5px; }
.contact-aside p { font-size: 14px; color: var(--ink2); font-weight: 300; line-height: 1.7; margin-bottom: 22px; }
.contact-aside ul { list-style: none; margin-top: 24px; display: flex; flex-direction: column; gap: 8px; }
.contact-aside li { font-size: 14px; color: var(--ink2); }
.contact-aside li a { color: var(--ink); text-decoration: none; }
.contact-aside li a:hover { color: var(--green); }

.kb-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; background: var(--border); }
.kb-card { background: var(--bg); padding: 40px 36px; text-decoration: none; display: block; transition: background 0.2s; }
.kb-card:hover { background: white; }
.kb-date { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--ink3); margin-bottom: 14px; }
.kb-card h3 { font-family: 'DM Serif Display', serif; font-size: 22px; letter-spacing: -0.5px; color: var(--ink); margin-bottom: 10px; line-height: 1.25; }
.kb-card p { font-size: 14px; color: var(--ink2); font-weight: 300; line-height: 1.7; }
.kb-card .kb-more { display: inline-block; margin-top: 18px; font-size: 13px; font-weight: 600; color: var(--green); }

.article { max-width: 720px; margin: 0 auto; padding: 0 60px 100px; }
.article p { font-size: 16px; color: var(--ink2); line-height: 1.85; font-weight: 300; margin-bottom: 22px; }
.article h2 { font-family: 'DM Serif Display', serif; font-size: 26px; letter-spacing: -0.5px; margin: 40px 0 14px; }
.article .check-list { margin: 24px 0; }
.article-meta { font-size: 13px; color: var(--ink3); margin-bottom: 36px; }

.portrait { width: 260px; aspect-ratio: 4/5; background: var(--green-light); display: flex; align-items: center; justify-content: center; }
.portrait span { font-family: 'DM Serif Display', serif; font-size: 84px; color: var(--green); }
.over-grid { display: grid; grid-template-columns: 260px 1fr; gap: 70px; align-items: start; }
.over-grid p { font-size: 16px; color: var(--ink2); line-height: 1.85; font-weight: 300; margin-bottom: 20px; max-width: 560px; }

.legal-wrap { max-width: 760px; margin: 0 auto; padding: 170px 60px 100px; }
.legal-wrap h1 { font-family: 'DM Serif Display', serif; font-size: 42px; letter-spacing: -1.5px; margin-bottom: 8px; }
.legal-wrap .updated { font-size: 14px; color: var(--ink3); margin-bottom: 44px; }
.legal-wrap h2 { font-size: 18px; font-weight: 600; margin: 34px 0 10px; letter-spacing: -0.3px; }
.legal-wrap p { font-size: 15px; color: var(--ink2); line-height: 1.8; font-weight: 300; margin-bottom: 12px; }

.why-item-icon { font-family: 'DM Serif Display', serif; font-size: 13px; color: var(--green); letter-spacing: -0.3px; }

@media (max-width: 1024px) {
  .page-hero { padding: 140px 30px 50px; }
  .article { padding: 0 30px 70px; }
  .legal-wrap { padding: 140px 30px 70px; }
}
@media (max-width: 768px) {
  .diensten-grid.cols-2, .kb-grid, .contact-grid, .over-grid { grid-template-columns: 1fr; }
  .steps-grid.three { grid-template-columns: 1fr; }
  .contact-grid { gap: 40px; }
  .over-grid { gap: 36px; }
}
