:root{
  --bg:#214478;
  --panel:#0f1621;
  --text:#eff3f9;
  --muted:#a8b3c4;
  --accent:#7dd3fc;
  --line:rgba(255,255,255,.10);
  --radius:16px;
  --max:1100px;
  --shadow: 0 10px 30px rgba(0,0,0,.35);
  --font: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
}

*{box-sizing:border-box}
body{
  margin:0;
  font-family:var(--font);
  background:linear-gradient(180deg, var(--bg), #070a0f);
  color:var(--text);
}
a{color:inherit}
.container{max-width:var(--max); margin:0 auto; padding:0 20px}

.topbar{
  position:sticky;
  top:0;
  z-index:10;
  background:#ffffff;
  border-bottom:1px solid #e5e7eb;
}

.topbar-inner{display:flex; align-items:center; justify-content:space-between; padding:16px 0}
.brand{font-weight:700; text-decoration:none; letter-spacing:.2px}
.brand .dot{color:var(--accent)}
.nav{display:flex; gap:14px; flex-wrap:wrap}
.nav-link{
  text-decoration:none;
  color:#214478;
  padding:8px 10px;
  border-radius:10px;
}
.nav-link:hover{background:rgba(33, 68, 120, 0.532); color:#ffffff}
.nav-link.active{color:var(--panel); background:#2144782d; border:1px solid #2144788c}

.page{padding:44px 0}
.page-header{margin-bottom:18px}
h1{font-size:40px; line-height:1.1; margin:0 0 10px}
.lead{font-size:18px; color:var(--muted); max-width:70ch; margin:0}
.content{max-width:78ch}

.hero{
  padding:72px 0 44px;
}
.hero-grid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:22px;
  align-items:start;
}
@media (max-width: 900px){
  .hero-grid{grid-template-columns: 1fr}
  h1{font-size:34px}
}
.card{
  background:rgba(255,255,255,.04);
  border:1px solid var(--line);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  padding:18px;
}
.kicker{color:var(--accent); font-weight:600; letter-spacing:.3px; text-transform:uppercase; font-size:12px}
.cta-row{display:flex; gap:12px; flex-wrap:wrap; margin-top:16px}
.btn{
  display:inline-block;
  padding:10px 14px;
  border-radius:12px;
  text-decoration:none;
  border:1px solid var(--line);
  background:rgba(255,255,255,.05);
}
.btn.primary{
  border-color:rgba(125,211,252,.35);
  background:rgba(125,211,252,.14);
}
.btn:hover{transform: translateY(-1px)}
ul{color:var(--muted)}
hr{border:0; border-top:1px solid var(--line); margin:26px 0}
.small{color:var(--muted); font-size:14px}

.figure{
  width:100%;
  border-radius:var(--radius);
  border:1px solid var(--line);
  background:rgba(255,255,255,.03);
  padding:14px;
}
.footer{
  border-top:1px solid var(--line);
  margin-top:48px;
  padding:28px 0;
  color:var(--muted);
}
.footer-inner{display:flex; justify-content:space-between; gap:18px; flex-wrap:wrap}
.footer-links{display:flex; gap:14px}
.footer a{color:var(--muted); text-decoration:none}
.footer a:hover{color:var(--text)}


.brand{
  display:flex;
  align-items:center;
  gap:10px;
  text-decoration:none;
}

.brand-logo{
  height:35px;
  width:auto;
  display:block;
}

.services-grid{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.service-card{
  background:#fff;
  color:#214478; 
  border:1px solid rgba(0,0,0,.08);
  border-radius:16px;
  padding:1.25rem 1.25rem 1.1rem 1.25rem;
  box-shadow:0 8px 20px rgba(0,0,0,.06);
  position:relative;
  overflow:hidden;
}

.service-card__icon-wrap{
  float:left;               /* zorgt voor tekst “rondom” het icoon */
  width:80px;
  height:80px;
  margin:0 .9rem .6rem 0;
}

.service-card__icon{
  width:80px;
  height:80px;
  display:block;
}

.service-card__title{
  margin:0 0 .35rem 0;
  line-height:1.2;
}

.service-card__lead{
  margin:0;
  line-height:1.55;
}

.service-card::after{
  content:"";
  display:block;
  clear:both;               /* netjes float opruimen */
}

.service-card__link{
  color:inherit;
  text-decoration:none;
  display:block;
}

.service-card__link:focus,
.service-card__link:hover{
  outline:none;
}
