:root{
  --accent:   #154273;
  --tint:     #f4f7fa;
  --soft:     #c7d6e6;
  --ink:      #1a1c1e;
  --muted:    #54595f;
  --line:     #e3e7eb;
  --bg:       #ffffff;
  --bg-alt:   #fafbfc;
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family:'Public Sans', system-ui, sans-serif;
  color:var(--ink);
  background:var(--bg);
  line-height:1.55;
  -webkit-font-smoothing:antialiased;
}
a{ color:inherit; }
img{ display:block; max-width:100%; }
.wrap{ max-width:1180px; margin:0 auto; }

/* ---- top rule + header ---- */
.toprule{ height:5px; background:var(--accent); }
header{
  display:flex; align-items:center; justify-content:space-between;
  padding:22px 56px; border-bottom:1px solid var(--line);
}
.brand{ display:flex; align-items:center; gap:12px; text-decoration:none; }
.brand .mark{
  width:30px; height:30px; background:var(--accent);
  display:flex; align-items:center; justify-content:center; flex-shrink:0;
}
.brand .mark span{ width:13px; height:13px; border:2.5px solid #fff; display:block; }
.brand .name{ font-size:19px; font-weight:700; letter-spacing:-0.01em; }
.brand .name em{ color:var(--accent); font-style:normal; }
nav{ display:flex; align-items:center; gap:30px; font-size:15px; font-weight:500; }
nav a{ text-decoration:none; color:#3a3f45; }
nav a.active{ color:var(--accent); font-weight:600; }

/* ---- hero ---- */
.hero{ padding:72px 56px 60px; }
.hero h1{
  font-size:46px; line-height:1.12; font-weight:800; letter-spacing:-0.02em;
  margin:0 0 24px; max-width:880px; text-wrap:balance;
}
.hero .lead{ font-size:19px; color:#454b52; margin:0 0 28px; max-width:760px; }
.statement{
  border-left:4px solid var(--accent); background:var(--tint);
  padding:20px 24px; max-width:760px; margin-bottom:36px;
}
.statement p{ font-size:18px; font-weight:600; margin:0; }
.actions{ display:flex; align-items:center; gap:16px; flex-wrap:wrap; }
.btn{
  display:inline-flex; align-items:center; gap:10px; text-decoration:none;
  font-size:16px; font-weight:600; padding:14px 26px; border-radius:2px; cursor:pointer;
}
.btn-primary{ background:var(--accent); color:#fff; }
.btn-ghost{ background:#fff; color:var(--accent); padding:13px 24px; border:1.5px solid #c3d0dd; }

/* ---- trust strip ---- */
.trust{ border-top:1px solid var(--line); border-bottom:1px solid var(--line); background:var(--bg-alt); }
.trust .grid{ display:grid; grid-template-columns:repeat(3,1fr); }
.trust .cell{ padding:22px 56px; display:flex; align-items:center; gap:12px; border-right:1px solid var(--line); }
.trust .cell:last-child{ border-right:none; }
.trust .dot{ color:var(--accent); font-size:18px; line-height:1; }
.trust b{ display:block; font-size:15px; }
.trust small{ font-size:13.5px; color:#6b7280; }

/* ---- sections ---- */
section.block{ padding:72px 56px 60px; }
.eyebrow{
  font-size:13px; font-weight:700; letter-spacing:0.08em; text-transform:uppercase;
  color:var(--accent); margin-bottom:14px;
}
.section-lead{ font-size:20px; color:#2b3036; max-width:820px; margin:0 0 44px; line-height:1.5; }

/* ---- wat ik doe ---- */
.cards{ display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
.card{ border:1px solid var(--line); border-top:3px solid var(--accent); padding:28px 26px; }
.card h3{ font-size:18px; font-weight:700; margin:0 0 12px; }
.card p{ font-size:15px; color:var(--muted); margin:0; }

/* ---- demo callout ---- */
.demo{
  margin-top:28px; display:flex; align-items:center; justify-content:space-between;
  gap:24px; background:var(--accent); padding:26px 32px; border-radius:2px; flex-wrap:wrap; color:#fff;
}
.demo .t{ font-size:18px; font-weight:700; margin-bottom:4px; }
.demo .s{ font-size:15px; color:var(--soft); }
.demo a{
  display:inline-flex; align-items:center; gap:10px; background:#fff; color:var(--accent);
  font-size:15px; font-weight:600; padding:12px 22px; border-radius:2px; text-decoration:none; white-space:nowrap;
}

/* ---- hoe ik werk ---- */
.howto{ border-top:1px solid var(--line); padding-top:56px; }
.principles{ max-width:760px; display:flex; flex-direction:column; }
.principle{ display:flex; gap:24px; padding:26px 0; border-top:1px solid var(--line); }
.principle:last-child{ border-bottom:1px solid var(--line); }
.principle .marker{ width:10px; height:10px; background:var(--accent); flex-shrink:0; margin-top:7px; }
.principle h3{ font-size:19px; font-weight:700; margin:0 0 8px; }
.principle p{ font-size:16px; color:var(--muted); margin:0; max-width:640px; }

/* ---- over mij ---- */
.about{ background:var(--bg-alt); border-top:1px solid var(--line); }
.about .inner{ padding:64px 56px; display:grid; grid-template-columns:220px 1fr; gap:48px; align-items:start; }
.portrait{
  width:220px; height:220px; border-radius:50%; overflow:hidden;
  border:4px solid #fff; box-shadow:0 0 0 1px var(--line); flex-shrink:0;
}
.portrait img{ width:100%; height:100%; object-fit:cover; }
.about p{ font-size:18px; color:#2b3036; margin:0 0 18px; max-width:640px; }
.about a.link{
  font-size:15px; font-weight:600; color:var(--accent); text-decoration:none;
  border-bottom:1.5px solid var(--accent); padding-bottom:2px;
}

/* ---- contact ---- */
.contact{ background:var(--accent); color:#fff; }
.contact .inner{ padding:72px 56px; }
.contact .eyebrow{ color:var(--soft); }
.contact h2{ font-size:32px; font-weight:800; letter-spacing:-0.01em; margin:0 0 14px; max-width:640px; }
.contact .who{ font-size:17px; color:var(--soft); margin:0 0 32px; }
.contact .actions a.btn-primary{ background:#fff; color:var(--accent); }
.contact .actions a.btn-out{
  background:transparent; color:#fff; border:1.5px solid rgba(255,255,255,0.4);
  display:inline-flex; align-items:center; gap:10px; text-decoration:none;
  font-size:16px; font-weight:600; padding:13px 24px; border-radius:2px;
}

/* ---- footer ---- */
footer{ background:var(--bg-alt); border-top:1px solid var(--line); }
footer .inner{
  padding:26px 56px; display:flex; align-items:center; justify-content:space-between;
  font-size:13.5px; color:#7a8088;
}

/* ============== RESPONSIVE ============== */
@media (max-width:860px){
  header{ padding:18px 24px; flex-wrap:wrap; gap:14px; }
  nav{ gap:20px; font-size:14px; }
  .hero{ padding:48px 24px 40px; }
  .hero h1{ font-size:34px; }
  .hero .lead{ font-size:17px; }
  .trust .grid{ grid-template-columns:1fr; }
  .trust .cell{ border-right:none; border-bottom:1px solid var(--line); padding:18px 24px; }
  .trust .cell:last-child{ border-bottom:none; }
  section.block{ padding:48px 24px 40px; }
  .cards{ grid-template-columns:1fr; }
  .demo{ padding:22px 24px; }
  .about .inner{ padding:48px 24px; grid-template-columns:1fr; gap:28px; }
  .contact .inner{ padding:48px 24px; }
  .contact h2{ font-size:26px; }
  footer .inner{ padding:22px 24px; flex-direction:column; gap:8px; text-align:center; }
}
