:root{
  --bg:#0f1220;
  --panel:#151a2f;
  --card:#ffffff;
  --text:#101221;
  --muted:#606785;
  --accent:#5a67ff;
  --accent2:#2bd4bd;
  --border:rgba(16,18,33,.10);
  --shadow: 0 14px 40px rgba(0,0,0,.14);
  --radius:18px;
}

*{box-sizing:border-box}
html,body{margin:0;padding:0;font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial; color:var(--text); background: #f6f7fb;}
a{color:inherit}
.container{max-width:1120px;margin:0 auto;padding:0 20px}
.nav{
  position:sticky; top:0; z-index:50;
  backdrop-filter: blur(10px);
  background: rgba(246,247,251,.85);
  border-bottom:1px solid var(--border);
}
.nav-inner{display:flex; align-items:center; justify-content:space-between; padding:14px 0; gap:18px}
.brand{display:flex; align-items:center; gap:12px; text-decoration:none}
.brand img{height:40px; width:auto}
.navlinks{display:flex; gap:14px; flex-wrap:wrap; justify-content:flex-end}
.navlinks a{
  text-decoration:none; padding:10px 12px; border-radius:12px;
  color:#202544;
}
.navlinks a:hover{background: rgba(90,103,255,.10)}
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:12px 16px; border-radius:14px;
  border:1px solid rgba(90,103,255,.25);
  background: rgba(90,103,255,.10);
  text-decoration:none;
  font-weight:600;
}
.btn.primary{
  background: var(--accent);
  color:white;
  border-color: transparent;
  box-shadow: 0 10px 22px rgba(90,103,255,.25);
}
.btn.secondary{
  background: rgba(43,212,189,.12);
  border-color: rgba(43,212,189,.25);
}
.hero{
  padding:56px 0 28px 0;
}
.hero-grid{
  display:grid;
  grid-template-columns: 1.25fr .75fr;
  gap:28px;
  align-items:stretch;
}
.hero-card{
  background: white;
  border:1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding:28px;
}
.hero h1{margin:0 0 12px 0; font-size:44px; line-height:1.05; letter-spacing:-.02em}
.hero p{margin:0 0 18px 0; color:var(--muted); font-size:18px; line-height:1.6}
.pills{display:flex; gap:10px; flex-wrap:wrap; margin-top:14px}
.pill{
  padding:8px 10px;
  border-radius: 999px;
  border: 1px solid var(--border);
  color:#2b3152;
  background: #fbfbff;
  font-size:13px;
}
.placeholder{
  width:100%;
  aspect-ratio: 16 / 11.5;
object-position: center 60%;
  border-radius: var(--radius);
  border: 1px dashed rgba(16,18,33,.22);
  background: #ffffff;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#8890b2;
  font-weight:600;
}
.grid3{display:grid; grid-template-columns: repeat(3, 1fr); gap:18px; margin:22px 0 0 0}
.card{
  background: white;
  border:1px solid var(--border);
  border-radius: var(--radius);
  padding:18px;
  box-shadow: 0 10px 26px rgba(0,0,0,.06);
}
.card h3{margin:0 0 8px 0}
.card p{margin:0; color:var(--muted); line-height:1.6}
.section{padding:22px 0 56px 0}
.section h2{margin:0 0 10px 0; font-size:28px}
.section p{margin:0 0 16px 0; color:var(--muted); line-height:1.7}

.form{
  display:grid; gap:12px;
}
label{font-weight:650; font-size:14px; color:#242a48}
input, select, textarea{
  width:100%;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid rgba(16,18,33,.14);
  background:white;
  outline:none;
  font-size:15px;
}
textarea{min-height:120px; resize:vertical}
input:focus, select:focus, textarea:focus{
  border-color: rgba(90,103,255,.55);
  box-shadow: 0 0 0 4px rgba(90,103,255,.12);
}
.notice{
  padding:12px 14px;
  border-radius:14px;
  border:1px solid rgba(16,18,33,.12);
  background: #fbfbff;
  color:#2b3152;
}
.notice.good{border-color: rgba(43,212,189,.35); background: rgba(43,212,189,.10)}
.notice.bad{border-color: rgba(255,77,105,.35); background: rgba(255,77,105,.08)}
.small{font-size:13px; color:var(--muted); line-height:1.6}
.footer{
  padding:22px 0;
  border-top:1px solid var(--border);
  color:var(--muted);
  font-size:13px;
}
.table{
  width:100%;
  border-collapse:separate;
  border-spacing:0;
  overflow:hidden;
  border-radius: var(--radius);
  border:1px solid var(--border);
  background:white;
}
.table th, .table td{
  text-align:left;
  padding:14px 14px;
  border-bottom:1px solid var(--border);
}
.table th{background:#fbfbff; font-weight:700; color:#23294a}
.table tr:last-child td{border-bottom:none}

.video-wrap{
  border:1px solid var(--border);
  border-radius: var(--radius);
  overflow:hidden;
  background:white;
}
.video-wrap video{
  width:100%;
  display:block;
  background:#0b0e18;
}

@media (max-width: 920px){
  .hero-grid{grid-template-columns: 1fr}
  .grid3{grid-template-columns: 1fr}
  .hero h1{font-size:36px}
}
/* Portrait video: limit height so it stays fully visible on laptop */
.video-wrap{
  display:flex;
  justify-content:center;
  align-items:center;
}

.video-wrap video{
  width: auto;          /* niet forceren op 100% breed */
  max-width: 100%;      /* wel nooit buiten de container */
  height: auto;
  max-height: 70vh;     /* belangrijkste: begrens de hoogte */
}

.placeholder{
  overflow: hidden;
}

.placeholder-img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
