  :root {
    --pine: #06231d;
    --pine-2: #0a352c;
    --brand: #0b4a3f;
    --mint: #1fce8f;
    --ink: #14181d;
    --ink-soft: #4c565f;
    --surface: #f0f4f2;
    --hairline: #dde4e1;
    --card-shadow: 0 1px 2px rgba(6, 35, 29, 0.08), 0 12px 32px rgba(6, 35, 29, 0.14);
  }

  * { box-sizing: border-box; }

  body {
    margin: 0;
    font-family: "Hanken Grotesk", system-ui, sans-serif;
    font-size: 1.125rem;
    line-height: 1.65;
    color: var(--ink);
    background: #fff;
  }

  h1, h2, h3 {
    font-family: "Figtree", "Hanken Grotesk", system-ui, sans-serif;
    line-height: 1.06;
    letter-spacing: -0.02em;
    margin: 0;
  }

  a:focus-visible {
    outline: 3px solid var(--brand);
    outline-offset: 3px;
    border-radius: 6px;
  }
  .dark a:focus-visible { outline-color: var(--mint); }

  .wrap { max-width: 68rem; margin: 0 auto; padding: 0 1.5rem; }

  .btn {
    display: inline-block;
    font-weight: 700;
    font-size: 1.0625rem;
    padding: 1.05rem 2.1rem;
    border-radius: 999px;
    text-decoration: none;
    background: linear-gradient(180deg, #0e6152, #0a4237);
    color: #fff;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18), 0 2px 4px rgba(6, 35, 29, 0.28), 0 10px 24px rgba(6, 35, 29, 0.30);
    transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  }
  .btn:hover {
    background: linear-gradient(180deg, #11705f, #0c4c3f);
    transform: translateY(-2px);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18), 0 4px 8px rgba(6, 35, 29, 0.3), 0 14px 32px rgba(6, 35, 29, 0.35);
  }
  .btn-mint {
    background: linear-gradient(180deg, #38e3a8, #17c183);
    color: var(--pine);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4), 0 2px 5px rgba(6, 35, 29, 0.35), 0 10px 26px rgba(31, 206, 143, 0.35);
  }
  .btn-mint:hover {
    background: linear-gradient(180deg, #4aeab2, #1fce8f);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4), 0 4px 9px rgba(6, 35, 29, 0.35), 0 14px 34px rgba(31, 206, 143, 0.45);
  }

  /* ================= donkere hero ================= */

  .dark {
    position: relative;
    background: var(--pine);
    color: #fff;
    overflow: hidden;
  }
  .dark::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
      radial-gradient(55% 45% at 50% -5%, rgba(31, 206, 143, 0.22), transparent 70%),
      radial-gradient(40% 35% at 88% 80%, rgba(31, 206, 143, 0.10), transparent 70%),
      radial-gradient(35% 30% at 8% 90%, rgba(13, 92, 78, 0.35), transparent 70%);
    pointer-events: none;
  }
  .dark::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='140'%20height='140'%3E%3Cfilter%20id='n'%3E%3CfeTurbulence%20type='fractalNoise'%20baseFrequency='0.9'%20numOctaves='2'/%3E%3C/filter%3E%3Crect%20width='140'%20height='140'%20filter='url(%23n)'%20opacity='0.05'/%3E%3C/svg%3E");
    pointer-events: none;
  }
  .dark > * { position: relative; z-index: 1; }

  .hero-blok {
    border-radius: 0 0 36px 36px;
    box-shadow: 0 26px 60px rgba(6, 35, 29, 0.28);
  }
  .hero-blok::before {
    background:
      radial-gradient(55% 45% at 50% -5%, rgba(31, 206, 143, 0.22), transparent 70%),
      radial-gradient(40% 35% at 88% 80%, rgba(31, 206, 143, 0.10), transparent 70%),
      radial-gradient(35% 30% at 8% 90%, rgba(13, 92, 78, 0.35), transparent 70%),
      linear-gradient(rgba(6, 35, 29, 0.86), rgba(6, 35, 29, 0.94)),
      url("/static/img/hero-werkplekken.jpg") center 40% / cover no-repeat;
  }

  .topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.7rem 0;
  }
  .wordmark {
    font-family: "Figtree", sans-serif;
    font-weight: 800;
    font-size: 1.3125rem;
    letter-spacing: -0.01em;
    color: #fff;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    text-shadow: 0 2px 6px rgba(2, 14, 11, 0.85), 0 6px 16px rgba(2, 14, 11, 0.6), 0 12px 32px rgba(2, 14, 11, 0.45);
  }
  .wordmark svg {
    flex: none;
    border-radius: 7px;
    box-shadow: 0 3px 10px rgba(2, 14, 11, 0.8), 0 10px 26px 4px rgba(2, 14, 11, 0.55);
  }
  .topbar .btn {
    font-size: 0.9375rem;
    padding: 0.7rem 1.4rem;
    white-space: nowrap;
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(8px);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.22), 0 4px 14px rgba(0, 0, 0, 0.28);
  }
  .cta-kort { display: none; }
  .topbar .btn:hover {
    background: rgba(255, 255, 255, 0.18);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.22), 0 6px 18px rgba(0, 0, 0, 0.32);
  }

  .hero {
    text-align: center;
    padding: 5.5rem 0 8.5rem;
  }
  .hero h1 {
    font-weight: 800;
    font-size: clamp(2.5rem, 7vw, 5rem);
    max-width: 21ch;
    margin: 0 auto;
    text-wrap: balance;
  }
  .hero h1 em {
    font-style: normal;
    color: var(--mint);
  }
  .hero .sub {
    font-size: clamp(1.125rem, 2vw, 1.3125rem);
    color: #b7cdc4;
    max-width: 46ch;
    margin: 1.75rem auto 2.6rem;
  }
  .hero .sub strong { color: #fff; }
  .hero .belofte {
    margin: 1.6rem 0 0;
    font-size: 1rem;
    color: #8fb0a4;
  }

  /* zwevende interface-kaarten */

  .ui-card {
    position: absolute;
    background: #fff;
    color: var(--ink);
    border-radius: 18px;
    box-shadow: var(--card-shadow);
    text-align: left;
    font-size: 0.875rem;
    line-height: 1.45;
    transform: rotate(var(--r, 0deg));
  }
  .float { animation: float 6s ease-in-out infinite alternate; }
  .float-b { animation-duration: 7.5s; animation-delay: 0.8s; }
  .float-c { animation-duration: 6.8s; animation-delay: 1.6s; }
  @keyframes float {
    from { transform: rotate(var(--r, 0deg)) translateY(0); }
    to   { transform: rotate(var(--r, 0deg)) translateY(-14px); }
  }

  .card-call {
    --r: -4deg;
    left: max(2rem, calc(50% - 38rem));
    top: 23rem;
    width: 15.5rem;
    padding: 1.1rem 1.2rem 1.2rem;
  }
  .card-call .label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--ink-soft);
    font-size: 0.8125rem;
    font-weight: 600;
  }
  .card-call .label .ring {
    width: 1.75rem;
    height: 1.75rem;
    border-radius: 50%;
    background: rgba(31, 206, 143, 0.15);
    display: grid;
    place-items: center;
    color: var(--brand);
    flex: none;
  }
  .card-call .naam {
    font-family: "Figtree", sans-serif;
    font-weight: 700;
    font-size: 1.1875rem;
    margin: 0.6rem 0 0.1rem;
  }
  .card-call .nummer { color: var(--ink-soft); font-size: 0.8125rem; }
  .card-call .knoppen {
    display: flex;
    gap: 0.75rem;
    margin-top: 0.9rem;
  }
  .card-call .knop {
    width: 2.6rem;
    height: 2.6rem;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #fff;
  }
  .knop-aan { background: var(--mint); color: var(--pine); }
  .knop-af { background: #e5484d; }

  .card-chat {
    --r: 3deg;
    right: max(2rem, calc(50% - 38rem));
    top: 24rem;
    width: 17rem;
    padding: 1.1rem;
    display: grid;
    gap: 0.6rem;
  }
  .bubbel {
    padding: 0.6rem 0.9rem;
    border-radius: 14px;
    max-width: 90%;
  }
  .bubbel-klant {
    background: var(--surface);
    border-bottom-left-radius: 4px;
    justify-self: start;
  }
  .bubbel-wij {
    background: var(--brand);
    color: #fff;
    border-bottom-right-radius: 4px;
    justify-self: end;
  }

  .card-inbox {
    --r: 2deg;
    left: max(4rem, calc(50% - 33rem));
    bottom: 3.5rem;
    padding: 0.85rem 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.7rem;
    font-weight: 600;
    font-size: 0.875rem;
  }
  .card-inbox .vink {
    width: 1.6rem;
    height: 1.6rem;
    border-radius: 50%;
    background: rgba(31, 206, 143, 0.18);
    color: var(--brand);
    display: grid;
    place-items: center;
    flex: none;
  }

  /* ================= lichte secties ================= */

  section { padding: 5.5rem 0; }
  section h2 {
    font-weight: 800;
    font-size: clamp(2.125rem, 5vw, 3.375rem);
    max-width: 22ch;
    margin-bottom: 2.75rem;
    text-wrap: balance;
  }

  .sectie-glow { position: relative; overflow: hidden; }
  .sectie-glow::before {
    content: "";
    position: absolute;
    width: 64rem;
    height: 42rem;
    left: 50%;
    top: -12rem;
    transform: translateX(-35%);
    background: radial-gradient(closest-side, rgba(31, 206, 143, 0.10), transparent);
    pointer-events: none;
  }
  .sectie-glow .wrap { position: relative; }
  .swirl-sectie { top: auto; bottom: -5rem; opacity: 0.45; }

  /* diensten */

  .tegels {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 1.25rem;
  }
  .t7 { grid-column: span 7; }
  .t5 { grid-column: span 5; }
  .tegel {
    background: #fff;
    border: 1px solid var(--hairline);
    border-radius: 22px;
    padding: 2.1rem 2.1rem 2.3rem;
    box-shadow: 0 2px 4px rgba(6, 35, 29, 0.05), 0 18px 44px rgba(6, 35, 29, 0.13);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }
  .tegel:hover {
    transform: translateY(-4px);
    box-shadow: 0 0 0 1px rgba(31, 206, 143, 0.45), 0 22px 50px rgba(6, 35, 29, 0.18), 0 0 45px rgba(31, 206, 143, 0.18);
  }
  .tegel .icoon {
    width: 3rem;
    height: 3rem;
    border-radius: 14px;
    background: var(--surface);
    color: var(--brand);
    display: grid;
    place-items: center;
    margin-bottom: 1.3rem;
  }
  .tegel h3 { font-weight: 700; font-size: 1.4375rem; margin-bottom: 0.65rem; }
  .tegel p { margin: 0; color: var(--ink-soft); }

  .tegel-donker {
    position: relative;
    overflow: hidden;
    background: linear-gradient(160deg, #0b3d31, #06231d 70%);
    border: 1px solid rgba(31, 206, 143, 0.3);
    display: flex;
    flex-direction: column;
  }
  .tegel-donker::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(75% 60% at 80% -10%, rgba(31, 206, 143, 0.25), transparent 65%);
    pointer-events: none;
  }
  .tegel-donker > * { position: relative; }
  .tegel-donker h3 { color: #fff; }
  .tegel-donker p { color: #b7cdc4; }
  .tegel-donker .icoon { background: rgba(31, 206, 143, 0.15); color: var(--mint); }

  .demo-call {
    margin-top: auto;
    padding-top: 1.6rem;
  }
  .demo-call .demo-kaart {
    background: #fff;
    color: var(--ink);
    border-radius: 16px;
    padding: 0.9rem 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.9rem;
    font-size: 0.875rem;
    line-height: 1.4;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.35);
  }
  .demo-call .demo-tekst { flex: 1; }
  .demo-call .demo-tekst strong { display: block; }
  .demo-call .demo-tekst span { color: var(--ink-soft); font-size: 0.8125rem; }
  .demo-call .knopjes { display: flex; gap: 0.55rem; }
  .demo-call .knopje {
    width: 2.3rem;
    height: 2.3rem;
    border-radius: 50%;
    display: grid;
    place-items: center;
  }
  .knopje-aan { background: var(--mint); color: var(--pine); }
  .knopje-af { background: #e5484d; color: #fff; }

  .demo-chat {
    display: grid;
    gap: 0.55rem;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
    line-height: 1.45;
  }

  .tegel-foto {
    background:
      linear-gradient(155deg, rgba(6, 35, 29, 0.72), rgba(6, 35, 29, 0.88)),
      url("/static/img/tegel-headset.jpg") center / cover no-repeat;
    border: 1px solid rgba(31, 206, 143, 0.25);
  }
  .tegel-foto h3 { color: #fff; }
  .tegel-foto p { color: #b7cdc4; }
  .tegel-foto .icoon { background: rgba(31, 206, 143, 0.15); color: var(--mint); }
  .tegel-foto-b {
    background:
      linear-gradient(155deg, rgba(6, 35, 29, 0.72), rgba(6, 35, 29, 0.88)),
      url("/static/img/tegel-pakketten.jpg") center 30% / cover no-repeat;
  }

  /* werkwijze: tijdlijn */

  .werkwijze {
    width: min(96rem, calc(100% - 3rem));
    margin: 0 auto;
    border-radius: 36px;
    box-shadow: 0 26px 60px rgba(6, 35, 29, 0.22);
  }
  .werkwijze .wrap { position: relative; }
  .werkwijze.dark::before {
    background:
      radial-gradient(55% 60% at 50% -5%, rgba(31, 206, 143, 0.18), transparent 70%),
      linear-gradient(rgba(6, 35, 29, 0.92), rgba(6, 35, 29, 0.96)),
      url("/static/img/hero-werkplekken.jpg") center 65% / cover no-repeat;
  }
  .tijdlijn {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2.5rem;
    position: relative;
  }
  .tijdlijn::before {
    content: "";
    position: absolute;
    top: 0.75rem;
    left: 1rem;
    right: 33%;
    height: 2px;
    background: linear-gradient(90deg, rgba(31, 206, 143, 0.25), var(--mint));
    box-shadow: 0 0 16px rgba(31, 206, 143, 0.45);
  }
  .stap { position: relative; padding-top: 2.1rem; }
  .stap::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0.2rem;
    width: 1.6rem;
    height: 1.6rem;
    background: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2064%2064'%3E%3Cpath%20d='M32%2012c2%2012%208%2018%2020%2020-12%202-18%208-20%2020-2-12-8-18-20-20%2012-2%2018-8%2020-20z'%20fill='%231fce8f'/%3E%3C/svg%3E") center / contain no-repeat;
    opacity: 0.55;
    filter: drop-shadow(0 0 4px rgba(31, 206, 143, 0.55));
  }
  .stap-live::before {
    opacity: 1;
    width: 1.9rem;
    height: 1.9rem;
    top: -0.15rem;
    left: 0.05rem;
    filter: drop-shadow(0 0 5px rgba(31, 206, 143, 0.85)) drop-shadow(0 0 16px rgba(31, 206, 143, 0.45)) drop-shadow(0 0 34px rgba(31, 206, 143, 0.25));
  }
  .stap .dag {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--mint);
    display: block;
    margin-bottom: 0.4rem;
  }
  .stap h3 { font-weight: 700; font-size: 1.375rem; margin-bottom: 0.55rem; color: #fff; }
  .stap p { margin: 0; color: #9dbbb0; }

  /* vergelijking */

  .vs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(6, 35, 29, 0.05), 0 24px 60px rgba(6, 35, 29, 0.16);
  }
  .vs-kolom { --pad: 2.4rem; padding: var(--pad); }
  .vs-zij { background: var(--surface); }
  .vs-wij { background: #fff; border-left: 1px solid var(--hairline); }
  .vs-kolom h3 {
    font-weight: 700;
    font-size: 1.1875rem;
    margin: calc(-1 * var(--pad)) calc(-1 * var(--pad)) 1.6rem;
    padding: 1.05rem var(--pad);
  }
  .vs-zij h3 { background: #e2e8e5; color: var(--ink-soft); }
  .vs-wij h3 { background: var(--pine); color: #fff; }
  .vs-kolom ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 1.05rem;
  }
  .vs-kolom li {
    display: flex;
    gap: 0.8rem;
    align-items: baseline;
  }
  .vs-kolom li svg { flex: none; transform: translateY(2px); }
  .vs-zij li { color: var(--ink-soft); }
  .vs-zij li svg { color: #b04a4e; }
  .vs-wij li { font-weight: 600; }
  .vs-wij li svg { color: var(--mint); }

  /* ================= slotpaneel ================= */

  .slot { padding: 1rem 0 6rem; }
  .slot-paneel {
    border-radius: 32px;
    padding: clamp(3rem, 7vw, 5.5rem) 2rem;
    text-align: center;
  }
  .slot-paneel h2 {
    font-weight: 800;
    font-size: clamp(2.125rem, 5.5vw, 3.5rem);
    max-width: 18ch;
    margin: 0 auto 2.25rem;
  }
  .slot-paneel .bel {
    margin: 1.75rem 0 0;
    font-size: 1.125rem;
    color: #8fb0a4;
  }
  .slot-paneel .bel a {
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    border-bottom: 2px solid rgba(31, 206, 143, 0.5);
  }
  .slot-paneel .bel a:hover { border-bottom-color: var(--mint); }
  .slot-paneel.dark {
    background:
      linear-gradient(165deg, rgba(10, 53, 44, 0.93), rgba(6, 35, 29, 0.96) 75%),
      url("/static/img/tegel-headset.jpg") center / cover no-repeat;
    border: 1px solid rgba(31, 206, 143, 0.25);
    box-shadow: 0 0 90px rgba(31, 206, 143, 0.15), 0 30px 80px rgba(0, 0, 0, 0.5);
  }
  .slot-paneel.dark::before {
    background: radial-gradient(70% 90% at 50% -10%, rgba(31, 206, 143, 0.18), transparent 65%);
  }

  /* ================= footer ================= */

  footer {
    border-top: 1px solid var(--hairline);
    padding: 2.25rem 0;
    color: var(--ink-soft);
    font-size: 0.9375rem;
  }
  footer .wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem 2.25rem;
    align-items: center;
  }
  footer a { color: var(--ink); text-decoration: none; }
  footer a:hover { text-decoration: underline; }

  /* ================= scroll-reveal ================= */

  .js-anim .reveal {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }
  .js-anim .reveal.in { opacity: 1; transform: none; }

  @media (prefers-reduced-motion: reduce) {
    .float, .float-b, .float-c { animation: none; }
    .btn, .tegel { transition: none; }
  }

  /* ================= ornamenten ================= */

  .ster {
    position: absolute;
    color: var(--mint);
    pointer-events: none;
  }
  .ster-hero {
    width: 28px;
    right: 3rem;
    top: 8rem;
    opacity: 0.9;
  }
  .ster-slot {
    width: 80px;
    right: 7%;
    top: 15%;
    opacity: 0.35;
  }
  .swirl {
    position: absolute;
    left: 50%;
    top: 44%;
    transform: translateX(-50%);
    width: min(75rem, 115vw);
    pointer-events: none;
    opacity: 0.6;
  }

  /* ================= responsive ================= */

  @media (max-width: 1120px) {
    .card-call, .card-chat, .card-inbox, .ster-hero { display: none; }
    .hero { padding: 4rem 0 3rem; }
    .hero-mobiel {
      display: grid !important;
      position: static;
      margin: 3rem auto 0;
      transform: rotate(-1.5deg);
      width: min(19rem, 100%);
    }
  }
  .hero-mobiel { display: none; }

  @media (max-width: 720px) {
    section { padding: 3.25rem 0; }
    section h2 { margin-bottom: 2rem; }
    .hero-blok { border-radius: 0 0 24px 24px; }
    .werkwijze { width: calc(100% - 1.5rem); border-radius: 24px; }
    .ster-slot { width: 52px; top: auto; bottom: 7%; right: 6%; opacity: 0.3; }
    .slot-paneel { padding-bottom: 3.75rem; }
    .tegels, .tijdlijn { grid-template-columns: 1fr; }
    .t5, .t7 { grid-column: auto; }
    .tijdlijn::before { display: none; }
    .stap { padding-top: 0; padding-left: 2rem; }
    .stap::before { top: 0.5rem; left: 0; }
    .vs { grid-template-columns: 1fr; }
    .vs-wij { border-left: none; border-top: 1px solid var(--hairline); }
    .vs-kolom { --pad: 1.6rem; }
    .slot-paneel { border-radius: 24px; }
  }

  @media (max-width: 480px) {
    .wordmark { font-size: 1.05rem; gap: 0.5rem; }
    .wordmark svg { width: 24px; height: 24px; }
    .topbar .btn { font-size: 0.8125rem; padding: 0.55rem 0.95rem; }
    .cta-vol { display: none; }
    .cta-kort { display: inline; }
  }

  /* ================= topbar-navigatie ================= */

  .topnav {
    display: flex;
    align-items: center;
    gap: 1.9rem;
    margin-left: auto;
    margin-right: 1.4rem;
  }
  .topnav a {
    color: #d7e6df;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    text-shadow: 0 2px 6px rgba(2, 14, 11, 0.7);
  }
  .topnav a:hover, .topnav a[aria-current="page"] { color: #fff; border-bottom: 2px solid var(--mint); }
  @media (max-width: 900px) { .topnav { display: none; } }

  /* ================= subpagina-kop ================= */

  .paginakop { border-radius: 0 0 36px 36px; box-shadow: 0 26px 60px rgba(6, 35, 29, 0.28); }
  .paginakop .kop-inhoud { text-align: center; padding: 3.5rem 0 5rem; }
  .paginakop h1 {
    font-weight: 800;
    font-size: clamp(2.25rem, 6vw, 4rem);
    max-width: 24ch;
    margin: 0 auto;
    text-wrap: balance;
  }
  .paginakop .sub {
    font-size: clamp(1.125rem, 2vw, 1.25rem);
    color: #b7cdc4;
    max-width: 52ch;
    margin: 1.5rem auto 0;
  }
  .paginakop .sub strong { color: #fff; }
  @media (max-width: 720px) {
    .paginakop { border-radius: 0 0 24px 24px; }
    .paginakop .kop-inhoud { padding: 2.5rem 0 3.5rem; }
  }

  /* ================= artikelen / lopende tekst ================= */

  .prose { max-width: 44rem; }
  .prose p { margin: 0 0 1.4rem; }
  .prose h2 {
    font-size: clamp(1.5rem, 3vw, 1.9rem);
    margin: 2.6rem 0 1rem;
    max-width: none;
  }
  .prose ul { margin: 0 0 1.4rem; padding-left: 1.3rem; }
  .prose li { margin-bottom: 0.55rem; }
  .prose strong { color: var(--ink); }
  .prose .intro { font-size: 1.25rem; color: var(--ink-soft); }
  .artikel-meta { color: var(--ink-soft); font-size: 0.9375rem; margin: 0 0 0.5rem; }
  .artikel-kader {
    background: var(--surface);
    border-left: 4px solid var(--mint);
    border-radius: 12px;
    padding: 1.3rem 1.6rem;
    margin: 2rem 0;
  }
  .artikel-kader p:last-child { margin-bottom: 0; }
  .artikel-cta {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--hairline);
  }

  /* ================= blogoverzicht ================= */

  .blog-lijst { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
  @media (max-width: 720px) { .blog-lijst { grid-template-columns: 1fr; } }
  .blog-kaart {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid var(--hairline);
    border-radius: 22px;
    padding: 2rem 2rem 1.9rem;
    box-shadow: 0 2px 4px rgba(6, 35, 29, 0.05), 0 18px 44px rgba(6, 35, 29, 0.13);
    text-decoration: none;
    color: var(--ink);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }
  .blog-kaart:hover {
    transform: translateY(-4px);
    box-shadow: 0 0 0 1px rgba(31, 206, 143, 0.45), 0 22px 50px rgba(6, 35, 29, 0.18), 0 0 45px rgba(31, 206, 143, 0.18);
  }
  .blog-kaart h3 { font-weight: 700; font-size: 1.375rem; margin-bottom: 0.6rem; }
  .blog-kaart p { margin: 0 0 1.2rem; color: var(--ink-soft); }
  .blog-kaart .lees {
    margin-top: auto;
    font-weight: 700;
    color: var(--brand);
  }

  /* ================= formulier ================= */

  .formulier { max-width: 40rem; display: grid; gap: 1.4rem; }
  .veld { display: grid; gap: 0.45rem; }
  .veld label { font-weight: 700; font-size: 1.0625rem; }
  .veld .hint { color: var(--ink-soft); font-weight: 400; font-size: 0.9375rem; }
  .veld input, .veld textarea {
    font: inherit;
    color: var(--ink);
    background: #fff;
    border: 2px solid #c4cfca;
    border-radius: 14px;
    padding: 0.95rem 1.1rem;
    width: 100%;
  }
  .veld input:focus-visible, .veld textarea:focus-visible {
    outline: 3px solid var(--brand);
    outline-offset: 1px;
    border-color: var(--brand);
  }
  .veld textarea { min-height: 10rem; resize: vertical; }
  .veld .fout { color: #b04a4e; font-weight: 600; font-size: 0.9375rem; display: none; }
  .veld.heeft-fout input, .veld.heeft-fout textarea { border-color: #b04a4e; }
  .veld.heeft-fout .fout { display: block; }
  .hp { position: absolute; left: -9999px; top: -9999px; }
  .btn-form { border: 0; cursor: pointer; font-family: inherit; }
  .form-status {
    display: none;
    background: var(--surface);
    border-left: 4px solid var(--mint);
    border-radius: 12px;
    padding: 1.2rem 1.5rem;
    font-weight: 600;
  }
  .form-status.fout-status { border-left-color: #b04a4e; }
  .form-status.zichtbaar { display: block; }

  .contact-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 3rem; align-items: start; }
  @media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }
  .contact-zij { display: grid; gap: 1.25rem; }
  .contact-zij .tegel h3 { font-size: 1.1875rem; margin-bottom: 0.4rem; }
  .contact-zij .tegel p { font-size: 1rem; }

  /* ================= belwidget ================= */

  /* hidden-attribuut moet ALTIJD winnen, ook van eigen display-regels
     (dit ging eerder mis: .belveld { display: grid } maakte hidden onzichtbaar
     ongedaan, waardoor de invulvelden direct in beeld stonden) */
  .belmodal [hidden] { display: none !important; }

  .belmodal[open] { display: grid; }
  .belmodal {
    border: 0;
    padding: 0;
    background: transparent;
    width: min(24rem, calc(100vw - 2rem));
  }
  .belmodal::backdrop { background: rgba(6, 35, 29, 0.72); backdrop-filter: blur(4px); }
  .beltoestel {
    position: relative;
    overflow: hidden auto;
    max-height: calc(100vh - 2rem);
    background: linear-gradient(170deg, #0b3d31, #06231d 70%);
    border: 1px solid rgba(31, 206, 143, 0.35);
    border-radius: 28px;
    color: #fff;
    padding: 2.2rem 1.8rem 1.9rem;
    text-align: center;
    box-shadow: 0 0 90px rgba(31, 206, 143, 0.2), 0 30px 80px rgba(0, 0, 0, 0.55);
    font-family: "Hanken Grotesk", system-ui, sans-serif;
  }
  .beltoestel::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(75% 60% at 50% -10%, rgba(31, 206, 143, 0.28), transparent 65%);
    pointer-events: none;
  }
  .beltoestel > * { position: relative; }
  .beltoestel .belnaam { font-family: "Figtree", sans-serif; font-weight: 800; font-size: 1.375rem; margin: 0.9rem 0 0.2rem; }
  .beltoestel .belstatus { color: #9dbbb0; font-size: 1rem; min-height: 1.6rem; margin: 0; }
  .beltoestel .belstatus strong { color: var(--mint); }
  .belavatar {
    width: 4.4rem;
    height: 4.4rem;
    margin: 0 auto;
    border-radius: 50%;
    background: rgba(31, 206, 143, 0.15);
    border: 2px solid rgba(31, 206, 143, 0.5);
    display: grid;
    place-items: center;
    color: var(--mint);
  }
  .belavatar.bezig { animation: belpuls 1.6s ease-in-out infinite; }
  @keyframes belpuls {
    0%, 100% { box-shadow: 0 0 0 0 rgba(31, 206, 143, 0.35); }
    50% { box-shadow: 0 0 0 14px rgba(31, 206, 143, 0); }
  }
  @media (prefers-reduced-motion: reduce) { .belavatar.bezig { animation: none; } }
  .beltimer { font-variant-numeric: tabular-nums; font-weight: 700; color: var(--mint); }
  .belknoppen { display: flex; justify-content: center; gap: 0.9rem; margin-top: 1.5rem; flex-wrap: wrap; }
  .belknop {
    border: 0;
    cursor: pointer;
    font: inherit;
    font-weight: 700;
    padding: 0.85rem 1.7rem;
    border-radius: 999px;
  }
  .belknop-groen { background: linear-gradient(180deg, #38e3a8, #17c183); color: var(--pine); }
  .belknop-bellen {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 1.1875rem;
    padding: 1rem 2.4rem;
    box-shadow: 0 10px 30px rgba(31, 206, 143, 0.35);
  }
  .belknop-bellen svg { flex: none; }
  .belhint {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    margin: 1.1rem 0 0;
    padding: 0.45rem 0.9rem;
    border-radius: 999px;
    background: rgba(31, 206, 143, 0.12);
    border: 1px solid rgba(31, 206, 143, 0.3);
    color: #d7e6df;
    font-size: 0.9375rem;
    font-weight: 600;
  }
  .belhint svg { flex: none; color: var(--mint); }
  .belknop-rood { background: #e5484d; color: #fff; }
  .belknop-stil { background: rgba(255, 255, 255, 0.12); color: #fff; border: 1px solid rgba(255, 255, 255, 0.25); }
  .belknop:focus-visible { outline: 3px solid var(--mint); outline-offset: 3px; }
  .bel-fallback { color: #b7cdc4; font-size: 0.9375rem; margin: 1.2rem 0 0; }
  .bel-fallback a { color: #fff; font-weight: 700; }
  .link-knop {
    background: none;
    border: 0;
    padding: 0;
    font: inherit;
    cursor: pointer;
    color: #fff;
    font-weight: 700;
    border-bottom: 2px solid rgba(31, 206, 143, 0.5);
  }
  .link-knop:hover { border-bottom-color: var(--mint); }

  /* ================= footer-uitbreiding ================= */

  footer .footer-nav { margin-left: auto; display: flex; flex-wrap: wrap; gap: 0.6rem 1.6rem; }
  footer .anydaynow { flex-basis: 100%; margin-top: 0.4rem; font-size: 0.875rem; }

  .belsluit {
    position: absolute;
    top: 0.9rem;
    right: 0.9rem;
    z-index: 2;
    width: 2.1rem;
    height: 2.1rem;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.08);
    color: #b7cdc4;
    display: grid;
    place-items: center;
    cursor: pointer;
  }
  .belsluit:hover { color: #fff; background: rgba(255, 255, 255, 0.15); }
  .belsluit:focus-visible { outline: 3px solid var(--mint); outline-offset: 2px; }
  .beltrust {
    margin: 1.4rem 0 0;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    color: #8fb0a4;
    font-size: 0.8125rem;
    line-height: 1.5;
  }

  .belveld { margin-top: 1.3rem; display: grid; gap: 0.6rem; text-align: left; }
  .belveld-kop { margin: 0 0 0.1rem; font-weight: 700; font-size: 0.9375rem; color: #d7e6df; }
  .belveld input {
    font: inherit;
    width: 100%;
    border: 2px solid rgba(31, 206, 143, 0.4);
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    border-radius: 12px;
    padding: 0.7rem 0.95rem;
    box-sizing: border-box;
  }
  .belveld input::placeholder { color: #8fb0a4; }
  .belveld input.ontbreekt { border-color: #e5484d; }
  .belveld input:focus-visible { outline: 3px solid var(--mint); outline-offset: 1px; }
