:root{
  --red:#ff231a;           /* Kage rood */
  --ink:#121417;           /* tekst */
  --muted:#5a6472;         /* secundair */
  --line:#e9edf2;          /* borders */
  --bg:#ffffff;            /* achtergrond */
  --soft:#f7f9fc;          /* soft section */
  --max:1100px;
  --r:16px;
  --shadow: 0 10px 28px rgba(18,20,23,.06);
}

*{box-sizing:border-box}
html,body{margin:0;padding:0;background:var(--bg);color:var(--ink)}
body{
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial;
  line-height:1.5;
}

a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}
.container{max-width:var(--max);margin:0 auto;padding:0 20px}
.section{padding:64px 0}

.h1{font-size:44px;line-height:1.05;margin:0;letter-spacing:-.02em}
.h2{font-size:28px;margin:0;letter-spacing:-.01em}
.small{color:var(--muted);font-size:14px}

.grid{display:grid;gap:16px}
.grid.cols-3{grid-template-columns:repeat(3,1fr)}
@media (max-width:900px){
  .h1{font-size:36px}
  .grid.cols-3{grid-template-columns:1fr}
}
.card{
  border:1px solid var(--line);
  border-radius:var(--r);
  background:#fff;
  box-shadow:var(--shadow);
  transition:
    transform .18s ease,
    box-shadow .18s ease,
    border-color .18s ease,
    background .18s ease;
}

.card:hover{
  transform:translateY(-3px);
  box-shadow:0 16px 38px rgba(18,20,23,.10);
  border-color:rgba(255,35,26,.28);
}

.reveal{
  opacity:0;
  transform:translateY(18px);
  transition:opacity .55s ease, transform .55s ease;
}

.reveal.is-visible{
  opacity:1;
  transform:translateY(0);
}

.card.reveal.is-visible:hover{
  transform:translateY(-3px);
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:.5rem;
  padding:12px 16px;
  border-radius:12px;
  border:1px solid var(--line);
  background:#fff;
  transition:transform .15s ease, box-shadow .15s ease, border-color .15s ease;
  white-space:nowrap;
}
.btn:hover{transform:translateY(-1px); box-shadow:0 12px 30px rgba(18,20,23,.09)}
.btn.primary{
  background:var(--red);
  border-color:var(--red);
  color:#fff;
}
.btn.primary:hover{border-color:#d91a13}

.badge{
  display:inline-flex;
  gap:.5rem;
  align-items:center;
  border:1px solid var(--line);
  background:rgba(247,249,252,.9);
  padding:8px 10px;
  border-radius:999px;
  font-size:13px;
}

/* Header */
.sitebar{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(255,255,255,.85);
  backdrop-filter:saturate(160%) blur(10px);
  border-bottom:1px solid var(--line);
}
.navwrap{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:12px 0;
}
.brand{
  display:flex;
  align-items:center;
  gap:10px;
  min-width:0;
}

.brand-logo{
  display:block;
  height:64px;
  width:auto;
  max-width:320px;
  object-fit:contain;
}

.nav{
  display:flex;
  align-items:center;
  gap:14px;
  flex-wrap:wrap;
}
.nav a{
  padding:8px 10px;
  border-radius:10px;
  color:var(--muted);
}
.nav a:hover{background:var(--soft); color:var(--ink)}
.is-active{color:var(--red) !important; font-weight:700}

/* Hero with subtle modern background */
.hero{
  position:relative;
  padding:86px 0 56px 0;
  overflow:hidden;
  border-bottom:1px solid var(--line);
  background:
    radial-gradient(700px 280px at 12% 18%, rgba(255,35,26,.08), transparent 62%),
    radial-gradient(720px 300px at 88% 8%, rgba(18,20,23,.045), transparent 62%),
    linear-gradient(180deg, #fff 0%, #f8fafc 100%);
}

.hero .container{
  position:relative;
  z-index:1;
}

.hero::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(90deg, rgba(18,20,23,.045) 1px, transparent 1px),
    linear-gradient(0deg, rgba(18,20,23,.035) 1px, transparent 1px);
  background-size:58px 58px;
  opacity:.42;
  pointer-events:none;
  mask-image:radial-gradient(circle at 28% 18%, rgba(0,0,0,1), rgba(0,0,0,0) 68%);
}

.hero::after{
  content:"";
  position:absolute;
  width:420px;
  height:420px;
  right:-160px;
  top:-180px;
  border-radius:50%;
  background:rgba(255,35,26,.075);
  filter:blur(18px);
  pointer-events:none;
}

@media (prefers-reduced-motion: reduce){
  .hero::after,
  .reveal,
  .card,
  .btn{
    animation:none !important;
    transition:none !important;
  }
}


/* Footer */
.footer{
  border-top:1px solid var(--line);
  background:#fff;
}
.footergrid{
  display:grid;
  gap:18px;
  grid-template-columns: 1.2fr 1fr 1fr;
  padding:34px 0;
}
@media (max-width:900px){
  .footergrid{grid-template-columns:1fr}
}
.footer a{color:var(--muted)}
.footer a:hover{color:var(--ink)}
.kv{
  display:flex; gap:10px; flex-wrap:wrap;
  color:var(--muted); font-size:13px;
}
@media (max-width:700px){
  .brand-logo{
    height:48px;
    max-width:240px;
  }

  .navwrap{
    align-items:flex-start;
  }
}
