:root{
  --bg: #ffffff;
  --text: #1b2630;
  --muted: #556773;
  --line: #e6edf3;

  --orange: #f29a1a;
  --orange-2: #ffb24a;
  --slate: #5b7680;
  --navy: #1f3b4a;
  --teal: #2aa6a2;

  --shadow: 0 14px 36px rgba(16,24,40,.10);
  --shadow2: 0 10px 22px rgba(16,24,40,.08);
  --radius: 16px;

  --container: 1120px;
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  color: var(--text);
  background: radial-gradient(1200px 500px at 70% -10%, rgba(242,154,26,.12), transparent 65%),
              radial-gradient(900px 420px at 10% 20%, rgba(42,166,162,.10), transparent 60%),
              var(--bg);
}

a{ color: inherit; text-decoration:none; }
.container{
  width: min(var(--container), calc(100% - 40px));
  margin-inline:auto;
}

/* Header */
.header{
  position: sticky;
  top: 0;
  z-index: 50;
  background: #ffffff;     /* 100% wit */
  backdrop-filter: none;   /* blur uit */
  border-bottom: 1px solid var(--line);
}

.header__inner{
  display:flex;
  align-items:center;
  gap: 18px;
  padding: 14px 0;
}
.brand__logo{
  height: 72px;
  width:auto;
  display:block;
}
.nav{
  display:flex;
  gap: 16px;
  margin-left: 6px;
  flex: 1;
  justify-content: center;
}
.nav__link{
  padding: 10px 10px;
  color: #2b3b45;
  font-weight: 650;
  border-bottom: 2px solid transparent;
}
.nav__link:hover{ color:#0e151b; }
.nav__link--active{ border-bottom-color: var(--orange); }

.header__actions{
  display:flex;
  gap: 10px;
  align-items:center;
}

.burger{
  display:none;
  border: 1px solid #dbe6ee;
  background:#fff;
  border-radius: 14px;
  padding: 10px 10px;
  box-shadow: 0 8px 16px rgba(16,24,40,.06);
  cursor:pointer;
}
.burger span{
  display:block;
  width: 18px;
  height: 2px;
  background:#2b3b45;
  margin: 4px 0;
  border-radius: 2px;
}

.mobile{
  border-top: 1px solid var(--line);
  padding: 10px 0 14px;
  background: rgba(255,255,255,.92);
}
.mobile a{
  display:block;
  padding: 10px 20px;
  color:#2b3b45;
  font-weight: 650;
}
.mobile a:hover{ background:#f6f9fc; }
.mobile__cta{
  margin: 8px 20px 0;
  border-radius: 14px;
  background: var(--orange);
  color:#fff !important;
  box-shadow: 0 10px 20px rgba(242,154,26,.25);
}

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 8px;
  border-radius: 14px;
  padding: 11px 16px;
  font-weight: 800;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .08s ease, filter .12s ease, box-shadow .12s ease;
}
.btn:active{ transform: translateY(1px); }
.btn--sm{ padding: 9px 12px; border-radius: 12px; font-weight: 800; }
.btn--lg{ padding: 12px 18px; border-radius: 16px; }

.btn--primary{
  background: linear-gradient(135deg, var(--orange), var(--orange-2));
  color:#fff;
  box-shadow: 0 14px 26px rgba(242,154,26,.28);
}
.btn--primary:hover{ filter: brightness(.99); box-shadow: 0 16px 32px rgba(242,154,26,.33); }

.btn--outline{
  background:#fff;
  border-color: #d7e4ee;
  color:#23323b;
}
.btn--outline:hover{ border-color: #c3d6e5; box-shadow: 0 10px 20px rgba(16,24,40,.06); }

.btn--ghost{
  background: rgba(31,59,74,.06);
  border-color: rgba(31,59,74,.10);
  color: #21333f;
}
.btn--ghost:hover{ background: rgba(31,59,74,.08); }

.w-100{ width:100%; }

/* Hero */
.hero{
  position: relative;
  min-height: 560px;
  display:flex;
  align-items:center;
  overflow:hidden;
  border-bottom: 1px solid var(--line);
}
.hero__bg{
  position:absolute;
  inset:0;
  background: url("images/hero.jpg");
  background-size: cover;
  background-position: center;
  filter: saturate(1.05);
  transform: scale(1.02);
}
.hero__overlay{
  position:absolute;
  inset:0;
  background:
    radial-gradient(900px 420px at 68% 30%, rgba(255,255,255,.78), rgba(255,255,255,.45) 45%, rgba(255,255,255,.05) 70%),
    linear-gradient(90deg, rgba(255,255,255,.08) 0%, rgba(255,255,255,.55) 45%, rgba(255,255,255,.92) 72%);
}
.hero__inner{
  position: relative;
  padding: 78px 0;
  display:flex;
  justify-content:flex-end;
}
.hero__card{
  width: min(620px, 100%);
  background: rgba(255,255,255,.74);
  border: 1px solid rgba(230,237,243,.95);
  border-radius: 22px;
  padding: 26px 26px 22px;
  box-shadow: var(--shadow);
}
.badge{
  display:inline-flex;
  align-items:center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(31,59,74,.06);
  border: 1px solid rgba(31,59,74,.10);
  color:#2c3f4d;
  font-weight: 750;
  font-size: 13px;
  margin-bottom: 12px;
}
.badge__dot{
  width: 10px; height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--orange-2));
  box-shadow: 0 8px 14px rgba(242,154,26,.25);
}

.hero__title{
  margin: 0 0 10px;
  font-size: clamp(30px, 3.3vw, 46px);
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: #20303a;
}
.hero__title strong{ color:#101a21; }
.accent{
  background: linear-gradient(135deg, rgba(242,154,26,.22), rgba(42,166,162,.16));
  padding: 0 .22em;
  border-radius: 10px;
}
.hero__lead{
  margin: 0 0 18px;
  color: #334652;
  font-size: 16.8px;
  line-height: 1.65;
}
.hero__actions{
  display:flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero__stats{
  margin-top: 18px;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.stat{
  border-radius: 16px;
  border: 1px solid rgba(31,59,74,.10);
  background: rgba(255,255,255,.62);
  padding: 12px 12px;
}
.stat__num{
  font-weight: 900;
  color:#1d2d38;
  margin-bottom: 2px;
}
.stat__label{
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.35;
}

.hero__wave{
  position:absolute;
  left:-10%;
  right:-10%;
  bottom:-2px;
  height: 120px;
  background:
    radial-gradient(120px 60px at 10% 40%, rgba(242,154,26,.28), transparent 60%),
    radial-gradient(160px 90px at 30% 60%, rgba(42,166,162,.18), transparent 62%),
    radial-gradient(120px 70px at 70% 35%, rgba(91,118,128,.18), transparent 60%),
    linear-gradient(#fff, #fff);
  clip-path: polygon(0 60%, 12% 70%, 26% 62%, 38% 78%, 52% 64%, 64% 76%, 78% 62%, 90% 72%, 100% 58%, 100% 100%, 0 100%);
  border-top: 1px solid rgba(230,237,243,.9);
}

/* Sections */
.section{ padding: 70px 0; }
.section--light{
  background: linear-gradient(180deg, rgba(246,249,252,.92), rgba(246,249,252,.65));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.section__title{
  text-align:center;
  margin:0;
  font-size: 30px;
  letter-spacing: -0.02em;
}
.section__subtitle{
  text-align:center;
  margin: 10px auto 28px;
  color: var(--muted);
  max-width: 860px;
  line-height: 1.7;
}

/* Cards */
.cards{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 18px;
}
.card{
  display:flex;
  gap: 14px;
  align-items:flex-start;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(227,233,239,.95);
  border-radius: var(--radius);
  padding: 18px 18px;
  box-shadow: var(--shadow2);
}
.card__icon{
  width: 46px;
  height: 46px;
  display:grid;
  place-items:center;
  border-radius: 14px;
  font-size: 20px;
  flex: 0 0 auto;
  border: 1px solid rgba(16,24,40,.06);
}
.card__icon--orange{ background: rgba(242,154,26,.16); }
.card__icon--blue{ background: rgba(91,118,128,.16); }
.card__icon--teal{ background: rgba(42,166,162,.16); }

.card__title{ margin: 0 0 4px; font-size: 18px; }
.card__text{ margin:0 0 10px; color: var(--muted); line-height: 1.55; }

.mini{
  margin: 0;
  padding-left: 18px;
  color: #4b5e6a;
}
.mini li{ margin: 7px 0; }

.cta-strip{
  margin-top: 22px;
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 14px;
  padding: 16px 16px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(31,59,74,.05), rgba(242,154,26,.10));
  border: 1px solid rgba(31,59,74,.10);
}
.cta-strip__text{ color:#2b3b45; }

/* Werkwijze */
.split-head{
  display:flex;
  align-items:flex-end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}
.chip-row{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content:flex-end;
}
.chip{
  display:inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(242,154,26,.12);
  border: 1px solid rgba(242,154,26,.18);
  font-weight: 800;
  font-size: 13px;
  color:#2a3a44;
}

.steps{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.step{
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(227,233,239,.95);
  border-radius: 18px;
  padding: 16px 14px;
  box-shadow: var(--shadow2);
}
.step__top{
  display:flex;
  align-items:center;
  gap: 10px;
  font-weight: 900;
  color:#1d2d38;
  margin-bottom: 8px;
}
.step__num{
  display:inline-grid;
  place-items:center;
  width: 28px; height: 28px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(91,118,128,.22), rgba(42,166,162,.18));
  border: 1px solid rgba(31,59,74,.10);
  font-size: 13px;
}
.step__text{
  margin:0;
  color: var(--muted);
  line-height: 1.55;
}

/* Over */
.section--gradient{
  background:
    radial-gradient(900px 420px at 15% 30%, rgba(42,166,162,.10), transparent 60%),
    radial-gradient(900px 420px at 85% 10%, rgba(242,154,26,.12), transparent 60%),
    rgba(255,255,255,.2);
  border-top: 1px solid var(--line);
}
.two-col{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 18px;
  align-items:start;
}
.panel{
  border-radius: 18px;
  padding: 18px;
  box-shadow: var(--shadow2);
}
.panel--glass{
  padding: 26px 28px;
  box-shadow: 0 24px 48px rgba(16,24,40,.12);
}
.panel--solid{
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(227,233,239,.95);
}
.ticks{ margin-top: 14px; display:grid; gap: 10px; }
.tick{ font-weight: 750; color:#243540; }
.divider{ height:1px; background: var(--line); margin: 16px 0; }

.muted{ color: var(--muted); }
.small{ font-size: 14px; line-height: 1.6; }

/* Footer */
.footer{
  border-top: 1px solid var(--line);
  padding: 18px 0;
  background: rgba(255,255,255,.85);
}
.footer__inner{
  display:flex;
  justify-content: space-between;
  align-items:center;
  gap: 14px;
  color: var(--muted);
}
.footer__left{
  display:flex;
  align-items:center;
  gap: 10px;
}
.footer__logo{
  height: 34px;
  width:auto;
  border-radius: 10px;
  border: 1px solid rgba(230,237,243,.95);
  background:#fff;
}
.footer__right{
  display:flex;
  gap: 14px;
  align-items:center;
}
.footer__link{
  font-weight: 800;
  color:#2b3b45;
}
.footer__link:hover{ text-decoration: underline; }

/* Responsive */
@media (max-width: 980px){
  .nav{ display:none; }
  .header__actions{ display:none; }
  .burger{ display:block; margin-left:auto; }
  .hero__inner{ justify-content: center; }
  .hero__stats{ grid-template-columns: 1fr; }
  .cards{ grid-template-columns: 1fr; }
  .steps{ grid-template-columns: 1fr; }
  .two-col{ grid-template-columns: 1fr; }
  .split-head{ flex-direction: column; align-items:flex-start; }
  .chip-row{ justify-content:flex-start; }
  .cta-strip{ flex-direction: column; align-items:flex-start; }
}

.panel--wide{
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
}

.over-actions{
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin: 18px 0 10px;
  margin-top: 22px;
}

@media (max-width: 980px){
  .panel--wide{
    max-width: 100%;
  }
}

.nav__link--linkedin{
  font-weight: 800;
  color: #1f3b4a;
}

.nav__link--linkedin::after{
  content: "↗";
  font-size: 12px;
  margin-left: 4px;
  opacity: .6;
}

