:root{
  --blue:#0d2f6b;
  --blue2:#1e4ea3;
  --orange:#ff7a00;

  --bg:#f6f8fc;
  --surface:#ffffff;
  --border:#e6eef8;

  --text:#1c2430;
  --muted:#5d6b82;

  --shadow:0 10px 30px rgba(13,47,107,.08);
  --radius:16px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background:var(--bg);
  color:var(--text);
  line-height:1.55;
}
a{color:inherit}
img{max-width:100%;display:block}

/* Layout */
.cp-container{width:92%;max-width:1200px;margin:0 auto}

/* ===================== HEADER ===================== */
.cp-header{
  position:sticky;
  top:0;
  z-index:9999;
  background:rgba(255,255,255,.92);
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--border);
}
.cp-header__row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:14px 0;
}

.cp-brand{
  display:flex;
  align-items:center;
  gap:14px;
  text-decoration:none;
  min-width:240px;
}
.cp-brand__logo{height:44px;width:auto}
.cp-brand__name{
  font-size:32px;
  font-weight:900;
  letter-spacing:-.5px;
  line-height:1.05;
  color:var(--blue);
}
.cp-brand__sub{
  margin-top:2px;
  font-size:13px;
  color:var(--muted);
}

/* Desktop nav */
.cp-nav{
  display:flex;
  align-items:center;
  gap:22px;
}
.cp-nav__link{
  text-decoration:none;
  font-weight:800;
  color:var(--blue);
  padding:10px 6px;
}
.cp-nav__link:hover{color:var(--orange)}
.cp-nav__cta{
  text-decoration:none;
  font-weight:900;
  background:var(--orange);
  color:#fff;
  padding:12px 18px;
  border-radius:14px;
  box-shadow:0 12px 24px rgba(255,122,0,.22);
}
.cp-nav__cta:hover{filter:brightness(1.05)}

/* Burger button */
.cp-burger{
  display:none;                /* wordt zichtbaar op mobiel */
  width:48px;
  height:48px;
  border-radius:14px;
  border:1px solid var(--border);
  background:#fff;
  position:relative;
  cursor:pointer;
}
.cp-burger span{
  position:absolute;
  width:22px;
  height:3px;
  background:var(--blue);
  border-radius:3px;
  left:50%;
  transform:translateX(-50%);
}
.cp-burger span:nth-child(1){top:16px}
.cp-burger span:nth-child(2){top:22px}
.cp-burger span:nth-child(3){top:28px}

/* Mobile menu */
.cp-mobile{
  display:none;                /* standaard dicht */
  border-top:1px solid var(--border);
  padding:10px 0 14px;
  background:rgba(255,255,255,.98);
}
.cp-mobile.is-open{display:block}

.cp-mobile__link{
  display:block;
  padding:14px 4%;
  text-decoration:none;
  font-weight:800;
  color:var(--blue);
}
.cp-mobile__link:hover{color:var(--orange)}

.cp-mobile__cta{
  display:block;
  margin:8px 4% 0;
  text-align:center;
  padding:14px 16px;
  border-radius:16px;
  text-decoration:none;
  font-weight:900;
  background:var(--orange);
  color:#fff;
  box-shadow:0 12px 24px rgba(255,122,0,.22);
}

/* ===================== HERO ===================== */
.hero{
  background: linear-gradient(135deg, var(--blue), var(--blue2));
  color:#fff;
  padding:56px 0;
  border-bottom:1px solid rgba(255,255,255,.12);
}
.hero__grid{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap:28px;
  align-items:center;
}
.hero__kicker{
  font-weight:900;
  opacity:.95;
  letter-spacing:.2px;
  margin-bottom:10px;
}
.hero h1{
  font-size:56px;
  line-height:1.02;
  letter-spacing:-1px;
  margin:0 0 14px;
}
.hero__lead{
  margin:0 0 18px;
  font-size:18px;
  opacity:.95;
  max-width:70ch;
}
.hero__buttons{display:flex; gap:12px; flex-wrap:wrap}
.hero__badges{display:flex; gap:10px; flex-wrap:wrap; margin-top:18px}

.hero__mark{
  position:relative;
  min-height: 260px;
  border-radius: 22px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
  overflow:hidden;
}
.hero__logo{
  position:absolute;
  right:-10px;
  bottom:-30px;
  width:520px;
  max-width:92%;
  opacity:.18;
  filter:saturate(1.1);
}

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  border-radius:16px;
  padding:14px 18px;
  font-weight:900;
  text-decoration:none;
  border:1px solid transparent;
  cursor:pointer;
}
.btn-primary{
  background:var(--orange);
  color:#fff;
  box-shadow:0 14px 26px rgba(255,122,0,.22);
}
.btn-primary:hover{filter:brightness(1.05)}
.btn-outline{
  background:rgba(255,255,255,.10);
  border-color:rgba(255,255,255,.30);
  color:#fff;
}
.btn-outline:hover{background:rgba(255,255,255,.16)}

/* Badges */
.badge{
  padding:10px 12px;
  border-radius:999px;
  font-weight:900;
  font-size:13px;
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.22);
}

/* ===================== SECTIONS / CARDS ===================== */
.section{padding:54px 0}
.section--alt{
  background:#fff;
  border-top:1px solid var(--border);
  border-bottom:1px solid var(--border);
}
.section__title{
  font-size:30px;
  font-weight:900;
  letter-spacing:-.4px;
  color:var(--blue);
  margin:0 0 12px;
}
.section__lead{
  margin:0 0 22px;
  color:var(--muted);
  max-width:90ch;
}

.grid3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:18px;
}
.grid2{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:18px;
}

.card{
  background:var(--surface);
  border:1px solid var(--border);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  padding:22px;
}
.card h3{
  margin:0 0 10px;
  font-size:18px;
  font-weight:900;
  color:var(--blue);
}
.card p{margin:0; color:var(--muted)}

.muted{color:var(--muted)}
.tiny{font-size:12px}

.mini-note{
  margin-top:14px;
  padding:12px 14px;
  border-radius:14px;
  border:1px dashed rgba(255,122,0,.35);
  background: rgba(255,122,0,.08);
  color: #6a3a00;
  font-weight:700;
}

/* Contact kvs */
.kvs{
  display:grid;
  grid-template-columns: 120px 1fr;
  gap:10px 12px;
  margin-top: 10px;
}
.kvs .k{color:var(--muted); font-weight:800}
.kvs .v a{
  color:var(--blue);
  font-weight:900;
  text-decoration:none;
}
.kvs .v a:hover{color:var(--orange)}

/* Form */
.form{display:grid; gap:12px; margin-top:12px}
label{display:grid; gap:6px; font-weight:800; color:var(--text)}
input,textarea,select{
  width:100%;
  padding:14px 14px;
  border-radius:14px;
  border:1px solid var(--border);
  background:#fff;
  color:var(--text);
  outline:none;
  font:inherit;
}
textarea{min-height:120px; resize:vertical}
input:focus,textarea:focus,select:focus{
  border-color: rgba(13,47,107,.35);
  box-shadow: 0 0 0 4px rgba(13,47,107,.10);
}

/* ===================== FOOTER ===================== */
.footer{
  border-top:1px solid var(--border);
  background:#fff;
  padding:18px 0;
}
.footer__row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  flex-wrap:wrap;
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 980px){
  .hero__grid{grid-template-columns:1fr}
  .hero h1{font-size:44px}

  .grid3{grid-template-columns:1fr}
  .grid2{grid-template-columns:1fr}

  .cp-nav{display:none}
  .cp-burger{display:block}

  .cp-brand__name{font-size:26px}
  .cp-brand__sub{font-size:12px}
}

@media (max-width: 520px){
  .hero{padding:44px 0}
  .hero h1{font-size:36px}
  .btn{width:100%}
  .hero__logo{width: 440px}
}