:root {
  --ink: #10131a;
  --muted: #5b6472;
  --paper: #fbfaf7;
  --surface: #ffffff;
  --line: #d9dee5;
  --cyan: #12c8d7;
  --red: #ff3d67;
  --green: #1fbf75;
  --yellow: #f7c948;
  --navy: #102331;
  --logo-blue: #5ac7ff;
  --pale-blue: #eaf8fb;
  --shadow: 0 20px 60px rgba(16, 19, 26, 0.16);
  --radius: 8px;
  font-family: "IBM Plex Sans", "Inter", "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

[id] {
  scroll-margin-top: 104px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

.logo-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 18px clamp(20px, 5vw, 72px);
  color: #fff;
  transition: background 180ms ease, box-shadow 180ms ease, padding 180ms ease;
}

.site-header.is-scrolled {
  padding-top: 12px;
  padding-bottom: 12px;
  color: #fff;
  background: rgba(16, 35, 49, 0.9);
  box-shadow: 0 8px 30px rgba(16, 19, 26, 0.18);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  width: clamp(178px, 16vw, 258px);
  min-width: 178px;
  align-items: center;
  padding: 0;
  border-radius: 0;
  background: transparent;
}

.brand .logo-svg {
  width: 100%;
  height: auto;
}

.nav {
  display: flex;
  justify-content: center;
  gap: clamp(16px, 3vw, 34px);
  font-size: 14px;
  font-weight: 700;
}

.nav a {
  opacity: 0.9;
}

.header-cta {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
}

.hero {
  position: relative;
  min-height: 84svh;
  overflow: hidden;
  color: #fff;
}

.hero-bg,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-bg {
  object-fit: cover;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(7, 10, 15, 0.92) 0%, rgba(7, 10, 15, 0.72) 48%, rgba(7, 10, 15, 0.34) 100%),
    linear-gradient(0deg, rgba(7, 10, 15, 0.76) 0%, rgba(7, 10, 15, 0.08) 42%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 84svh;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 132px 0 42px;
  flex-direction: column;
  justify-content: flex-end;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--cyan);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: "IBM Plex Sans Condensed", "Arial Narrow", Arial, sans-serif;
  letter-spacing: 0;
}

h1 {
  max-width: 850px;
  margin-bottom: 22px;
  font-size: clamp(46px, 8vw, 92px);
  line-height: 0.95;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(34px, 5vw, 62px);
  line-height: 1.02;
}

h3 {
  margin-bottom: 12px;
  font-size: 22px;
  line-height: 1.15;
}

.hero-copy {
  max-width: 690px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.55;
}

.hero-actions,
.final-cta .button {
  margin-bottom: 34px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 900;
  line-height: 1;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button::after {
  content: ">";
  font-weight: 900;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: #081016;
  background: var(--cyan);
  box-shadow: 0 14px 34px rgba(18, 200, 215, 0.28);
}

.button-secondary {
  margin-left: 12px;
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.3);
}

.button-dark {
  color: #fff;
  background: var(--ink);
}

.button-form {
  width: 100%;
  color: #081016;
  background: var(--yellow);
  box-shadow: 0 12px 28px rgba(247, 201, 72, 0.24);
}

.proof-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  width: 100%;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(12px);
}

.proof-row div {
  padding: 18px;
  background: rgba(9, 12, 18, 0.28);
}

.proof-row dt {
  margin-bottom: 6px;
  color: #fff;
  font-size: 18px;
  font-weight: 900;
}

.proof-row dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
  line-height: 1.4;
}

.lead-band {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(360px, 1fr);
  gap: clamp(24px, 4vw, 56px);
  width: min(1180px, calc(100% - 40px));
  margin: -26px auto 0;
  padding: clamp(28px, 4vw, 46px);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
  position: relative;
  z-index: 2;
}

.lead-copy h2 {
  font-size: clamp(34px, 3.9vw, 48px);
  line-height: 1.04;
}

.lead-copy p:not(.section-kicker),
.section-heading p,
.comparison-copy p,
.image-copy p,
.event-panel p,
.final-cta p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.event-meter {
  display: grid;
  gap: 4px;
  margin-top: 26px;
  padding: 18px;
  border-left: 4px solid var(--red);
  background: #f5f7f9;
}

.event-meter-label {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.event-meter strong {
  font-size: 22px;
}

.lead-form {
  display: grid;
  gap: 18px;
  margin-top: 30px;
}

.choice-set {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin: 0;
  padding: 0;
  border: 0;
}

.choice-set legend {
  grid-column: 1 / -1;
  margin-bottom: 2px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}

.choice-set label {
  position: relative;
}

.choice-set input {
  position: absolute;
  opacity: 0;
}

.choice-set span {
  display: flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}

.choice-set input:checked + span {
  color: #081016;
  border-color: var(--cyan);
  background: rgba(18, 200, 215, 0.16);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.lead-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--ink);
  background: #fff;
  padding: 11px 12px;
  outline: 0;
}

.lead-form input,
.lead-form select {
  height: 46px;
}

.lead-form textarea {
  min-height: 104px;
  resize: vertical;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 4px rgba(18, 200, 215, 0.12);
}

.form-note,
.form-status {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.form-status {
  min-height: 18px;
  color: var(--green);
  font-weight: 900;
}

.form-status[data-type="error"] {
  color: var(--red);
}

.form-status[data-type="success"] {
  color: var(--green);
}

.button:disabled {
  cursor: progress;
  opacity: 0.72;
  transform: none;
}

.section,
.comparison,
.image-section,
.event-section,
.final-cta {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.section {
  padding: clamp(74px, 9vw, 118px) 0 0;
}

.section-heading {
  max-width: 830px;
  margin-bottom: 36px;
}

#waarom .section-heading {
  max-width: 1120px;
}

.section-heading.compact {
  max-width: 920px;
}

.reason-grid,
.proof-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.reason-card,
.proof-cards article {
  min-height: 0;
  padding: 26px 26px 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.reason-card {
  padding-bottom: 20px;
}

.reason-card span {
  display: inline-flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  margin-bottom: 26px;
  border-radius: 50%;
  color: #081016;
  font-size: 18px;
  font-weight: 900;
  line-height: 1;
}

.step-blue-1 span {
  background: #d9f5fb;
}

.step-blue-2 span {
  background: var(--logo-blue);
}

.step-blue-3 span {
  background: #0e74a5;
  color: #fff;
}

.reason-card p,
.proof-cards p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.65;
}

.comparison {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(420px, 1fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: start;
  padding: clamp(82px, 10vw, 128px) 0 0;
}

.comparison-copy h2 {
  font-size: clamp(34px, 4.25vw, 54px);
}

.comparison-table {
  margin-top: 43px;
  overflow: hidden;
  border: 1px solid #c8dce4;
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  box-shadow: 0 18px 50px rgba(16, 35, 49, 0.08);
}

.table-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.table-row span {
  min-height: 74px;
  position: relative;
  padding: 18px;
  border-top: 1px solid #d7e7ee;
  line-height: 1.45;
}

.table-row span + span {
  border-left: 1px solid #d7e7ee;
}

.table-head span {
  min-height: auto;
  border-top: 0;
  color: #081016;
  background: var(--pale-blue);
  font-weight: 900;
}

.table-head span:nth-child(2) {
  background: #d9f5fb;
}

.table-row:not(.table-head) span:first-child {
  background: #f8fbfd;
}

.table-row:not(.table-head) span:nth-child(2) {
  background: #f0fbfd;
}

.table-row:not(.table-head) span {
  padding-left: 54px;
}

.table-row:not(.table-head) span::before {
  position: absolute;
  left: 18px;
  top: 20px;
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 50%;
  font-size: 15px;
  font-weight: 900;
  line-height: 1;
}

.table-row:not(.table-head) span:first-child::before {
  content: "×";
  color: #6f7782;
  background: #e5e9ee;
}

.table-row:not(.table-head) span:nth-child(2)::before {
  content: "✓";
  color: #fff;
  background: var(--green);
}

.image-section {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(420px, 1fr);
  column-gap: clamp(28px, 5vw, 70px);
  row-gap: 18px;
  align-items: start;
  padding: clamp(82px, 10vw, 132px) 0 0;
}

.image-heading {
  grid-column: 1 / -1;
  max-width: 1120px;
}

.image-heading h2 {
  margin-bottom: 0;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 24px 0 30px;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 32px;
  color: var(--ink);
  line-height: 1.5;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--green);
}

.check-list li::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 7px;
  width: 10px;
  height: 8px;
  background: #fff;
  clip-path: polygon(39% 70%, 86% 8%, 100% 22%, 42% 94%, 0 53%, 14% 38%);
}

.ops-figure {
  margin: 0;
}

.ops-figure img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.ops-figure figcaption {
  margin-top: 12px;
  color: var(--muted);
  font-size: 13px;
}

.event-section {
  padding: clamp(82px, 10vw, 132px) 0 0;
}

.event-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(360px, 1fr);
  gap: clamp(24px, 5vw, 60px);
  padding: clamp(30px, 5vw, 60px);
  border-radius: var(--radius);
  color: #fff;
  background:
    linear-gradient(135deg, rgba(16, 35, 49, 0.98), rgba(14, 19, 27, 0.96)),
    var(--navy);
}

.event-panel h2 {
  font-size: clamp(34px, 4.35vw, 56px);
  line-height: 1.04;
}

.agenda {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: agenda;
}

.agenda li {
  position: relative;
  padding: 16px 16px 14px 56px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  counter-increment: agenda;
}

.agenda li::before {
  content: counter(agenda);
  position: absolute;
  left: 18px;
  top: 18px;
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 50%;
  color: #081016;
  background: var(--logo-blue);
  font-weight: 900;
}

.agenda strong,
.proof-cards strong {
  display: block;
  margin-bottom: 6px;
  font-size: 18px;
}

.agenda span {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.5;
}

.proof-section {
  padding-bottom: clamp(72px, 8vw, 104px);
}

.proof-section .section-heading {
  max-width: 1120px;
}

.proof-section h2 {
  font-size: clamp(34px, 4.35vw, 56px);
  line-height: 1.04;
}

.proof-cards article {
  min-height: 0;
  padding-top: 24px;
  padding-bottom: 22px;
}

.final-cta {
  display: grid;
  grid-template-columns: minmax(360px, 0.95fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
  margin-bottom: clamp(62px, 8vw, 96px);
  padding: clamp(24px, 4vw, 38px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.final-cta img {
  width: 100%;
  border-radius: var(--radius);
}

.final-cta h2 {
  font-size: clamp(34px, 3.85vw, 48px);
  line-height: 1.04;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px clamp(20px, 5vw, 72px);
  color: var(--muted);
  background: #fff;
}

.footer-logo {
  display: inline-flex;
  width: 170px;
  align-items: center;
  padding: 0;
  border-radius: 0;
  background: transparent;
}

.footer-logo .logo-svg {
  width: 100%;
  height: auto;
}

.site-footer p {
  margin: 0;
  font-size: 13px;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto 1fr;
  }

  .nav {
    display: none;
  }

  .header-cta {
    justify-self: end;
  }

  .proof-row,
  .lead-band,
  .comparison,
  .image-section,
  .event-panel,
  .final-cta {
    grid-template-columns: 1fr;
  }

  .proof-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lead-form {
    margin-top: 0;
  }

  .reason-grid,
  .proof-cards {
    grid-template-columns: 1fr;
  }

  .comparison,
  .image-section,
  .event-section {
    padding-top: 84px;
  }

  .comparison-table {
    margin-top: 0;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 12px 16px;
    gap: 12px;
  }

  .brand {
    width: 162px;
    min-width: 162px;
  }

  .header-cta {
    min-height: 38px;
    padding: 0 13px;
    font-size: 12px;
  }

  .hero,
  .hero-inner {
    min-height: 88svh;
  }

  .hero-inner {
    width: min(100% - 32px, 1180px);
    padding-top: 108px;
  }

  .hero-actions {
    display: grid;
    gap: 12px;
  }

  .button-secondary {
    margin-left: 0;
  }

  .proof-row,
  .choice-set,
  .form-grid,
  .table-row {
    grid-template-columns: 1fr;
  }

  .table-row span + span {
    border-left: 0;
  }

  .lead-band,
  .section,
  .comparison,
  .image-section,
  .event-section,
  .final-cta {
    width: min(100% - 28px, 1180px);
  }

  .lead-band {
    margin-top: -18px;
    padding: 22px;
  }

  .site-footer {
    display: grid;
    justify-items: start;
  }
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}
