/* ============================================================
   Landing page - intsys.nl/index.html
   Laadt NA intsys.css (design tokens + reset zitten daar)
   ============================================================ */

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  overscroll-behavior-x: none;
}
body {
  font-family: "Barlow", sans-serif;
  color: var(--text);
  line-height: 1.6;
  font-size: 17px;
  overflow-x: hidden;
  overscroll-behavior-x: none;
}
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 36px;
}
.brand-logo span {
  color: var(--accent);
}
.eyebrow {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  display: block;
  width: 24px;
  height: 2px;
  background: currentColor;
}
.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 13px;
  border-radius: 99px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.tag-blue {
  background: var(--blue-xlt);
  color: var(--blue);
}
.tag-orange {
  background: var(--accent-lt);
  color: var(--accent);
}
.tag-green {
  background: var(--green-lt);
  color: var(--green);
}

/* NAV */
nav {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  height: 64px;
  display: flex;
  align-items: center;
  padding: 0 40px;
  justify-content: space-between;
  transition:
    box-shadow 0.3s,
    border-color 0.3s,
    background 0.3s;
}
body {
  padding-top: 64px;
}
nav.scrolled {
  box-shadow: 0 2px 24px rgba(0, 57, 128, 0.1);
  border-bottom-color: var(--border);
  background: rgba(255, 255, 255, 0.98);
}
.nav-logo {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 28px;
  font-weight: 900;
  color: var(--blue-deep);
  letter-spacing: -0.3px;
  text-decoration: none;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.nav-logo span {
  color: var(--accent);
}
.nav-links {
  display: flex;
  gap: 6px;
  list-style: none;
}
.nav-links a {
  color: var(--text-mid);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 8px;
  transition:
    color 0.2s,
    background 0.2s;
  position: relative;
}
.nav-links a:hover {
  color: var(--blue);
  background: var(--blue-xlt);
}
.nav-links a.active {
  color: var(--blue);
  background: var(--blue-xlt);
}
.nav-divider {
  width: 1px;
  height: 24px;
  background: var(--border);
  margin: 0 12px;
  flex-shrink: 0;
}
.nav-portal {
  color: var(--blue);
  text-decoration: none;
  padding: 9px 18px;
  border-radius: var(--r);
  font-size: 14px;
  font-weight: 600;
  border: 1.5px solid var(--blue);
  transition:
    background 0.2s,
    transform 0.15s,
    color 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-right: 8px;
  flex-shrink: 0;
}
.nav-portal:hover {
  background: var(--blue);
  color: white;
  transform: translateY(-1px);
}
.nav-portal svg {
  width: 16px;
  height: 16px;
}
.nav-cta {
  background: var(--blue);
  color: white;
  text-decoration: none;
  padding: 9px 22px;
  border-radius: var(--r);
  font-size: 14px;
  font-weight: 700;
  transition:
    background 0.2s,
    transform 0.15s,
    box-shadow 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  box-shadow: 0 2px 8px rgba(0, 87, 184, 0.18);
}
.nav-cta:hover {
  background: var(--blue-deep);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0, 87, 184, 0.25);
}
.nav-cta.nav-cta-resume {
  background: var(--accent);
  box-shadow: 0 2px 8px rgba(255, 107, 0, 0.22);
  animation: cta-pulse 2s ease-in-out infinite;
}
.nav-cta.nav-cta-resume:hover {
  background: #e05e00;
  box-shadow: 0 4px 16px rgba(255, 107, 0, 0.3);
}
@keyframes cta-pulse {
  0%,
  100% {
    box-shadow: 0 2px 8px rgba(255, 107, 0, 0.22);
  }
  50% {
    box-shadow: 0 2px 16px rgba(255, 107, 0, 0.4);
  }
}
.nav-cta svg {
  width: 16px;
  height: 16px;
}
.nav-hamburger {
  display: none;
  width: 40px;
  height: 40px;
  border: none;
  background: none;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  padding: 0;
  flex-shrink: 0;
}
.nav-hamburger svg {
  width: 24px;
  height: 24px;
  stroke: var(--blue-deep);
  stroke-width: 2.5;
}
.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(0, 13, 30, 0.65);
  backdrop-filter: blur(6px);
  z-index: 199;
  display: none;
  align-items: flex-start;
  justify-content: flex-start;
}
.mobile-menu.open {
  display: flex;
}
.mobile-menu-panel {
  background: white;
  width: 280px;
  height: 100%;
  box-shadow: -4px 0 24px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  padding: 20px 0;
  overflow-y: auto;
}
.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px 16px;
  border-bottom: 1px solid var(--border);
}
.mobile-menu-close {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  border: none;
  background: var(--bg);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mobile-menu-close:hover {
  background: var(--border);
}
.mobile-menu-links {
  list-style: none;
  padding: 12px 0;
  display: flex;
  flex-direction: column;
}
.mobile-menu-links a {
  display: block;
  padding: 12px 24px;
  color: var(--text-mid);
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  transition:
    background 0.15s,
    color 0.15s;
}
.mobile-menu-links a:hover,
.mobile-menu-links a.active {
  color: var(--blue);
  background: var(--blue-xlt);
}
.mobile-menu-cta {
  margin: 8px 24px 0;
  text-align: center;
}

/* HERO - light gradient */
.s-hero {
  background: linear-gradient(
    155deg,
    #eef5ff 0%,
    #f8faff 50%,
    #fff7f2 100%
  );
  padding: 88px 0 80px;
  position: relative;
  overflow: hidden;
}
.s-hero::after {
  content: "";
  position: absolute;
  top: -160px;
  right: -180px;
  width: 640px;
  height: 640px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(0, 87, 184, 0.07) 0%,
    transparent 68%
  );
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 410px;
  gap: 56px;
  align-items: center;
}
.hero-h1 {
  font-size: clamp(44px, 5.2vw, 70px);
  font-weight: 900;
  color: var(--blue-deep);
  letter-spacing: -0.4px;
  margin-bottom: 22px;
}
.hero-h1 em {
  font-style: normal;
  background: linear-gradient(118deg, var(--blue) 0%, #0099ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-sub {
  font-size: 19px;
  color: var(--text-mid);
  max-width: 510px;
  line-height: 1.68;
  margin-bottom: 18px;
}
.hero-quote {
  border-left: 3px solid var(--accent);
  padding: 10px 18px;
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  background: rgba(255, 107, 0, 0.06);
  border-radius: 0 var(--r) var(--r) 0;
  margin-bottom: 32px;
  font-style: italic;
}
.btn-row {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}
.btn-primary {
  background: var(--blue);
  color: white;
  text-decoration: none;
  padding: 14px 28px;
  border-radius: var(--r);
  font-size: 16px;
  font-weight: 700;
  box-shadow: 0 4px 18px rgba(0, 87, 184, 0.3);
  transition:
    background 0.2s,
    transform 0.15s,
    box-shadow 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-primary:hover {
  background: var(--blue-deep);
  transform: translateY(-2px);
  box-shadow: 0 8px 26px rgba(0, 87, 184, 0.38);
}
.btn-ghost {
  color: var(--text-mid);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  transition:
    color 0.2s,
    gap 0.2s;
}
.btn-ghost:hover {
  color: var(--blue);
  gap: 10px;
}
.hero-visual {
  position: relative;
  z-index: 1;
}
.dash {
  background: white;
  border-radius: var(--r-lg);
  box-shadow:
    var(--shadow-lg),
    0 0 0 1px var(--border);
  overflow: hidden;
  transform: perspective(900px) rotateY(-5deg) rotateX(2deg);
  transition: transform 0.5s ease;
}
.dash:hover {
  transform: perspective(900px) rotateY(-1deg) rotateX(0deg);
}
.dash-bar {
  background: var(--blue-deep);
  padding: 11px 16px;
  display: flex;
  align-items: center;
  gap: 7px;
}
.dash-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
}
.dash-url {
  font-family: "DM Mono", monospace;
  font-size: 10px;
  color: rgba(255, 255, 255, 0.45);
  margin-left: 8px;
}
.dash-body {
  padding: 14px;
  background: var(--bg);
}
.d-kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 10px;
}
.d-kpi {
  background: white;
  border-radius: 8px;
  padding: 10px 12px;
  border: 1px solid var(--border);
}
.d-kl {
  font-size: 9px;
  font-weight: 800;
  color: var(--text-mute);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 3px;
}
.d-kv {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 20px;
  font-weight: 900;
}
.d-ks {
  font-size: 9px;
  margin-top: 1px;
  font-weight: 600;
}
.d-chart {
  background: white;
  border-radius: 8px;
  padding: 12px;
  border: 1px solid var(--border);
  margin-bottom: 10px;
}
.d-cl {
  font-size: 9px;
  font-weight: 800;
  color: var(--text-mute);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 8px;
}
.d-bars {
  display: flex;
  gap: 5px;
  align-items: flex-end;
  height: 52px;
}
.d-b {
  flex: 1;
  border-radius: 3px 3px 0 0;
}
.d-alert {
  background: #fff8e6;
  border: 1px solid #ffd77a;
  border-radius: 8px;
  padding: 9px 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}
.d-at {
  font-size: 10px;
  font-weight: 700;
  color: #7a4800;
}
.d-roles {
  display: flex;
  gap: 5px;
}
.d-rp {
  font-size: 9px;
  font-weight: 800;
  padding: 4px 9px;
  border-radius: 99px;
  background: var(--bg);
  color: var(--text-mute);
  border: 1px solid var(--border);
}
.d-rp.on {
  background: var(--blue);
  color: white;
  border-color: var(--blue);
}

/* STATS - deep dark blue */
.s-stats {
  background: var(--blue-darker);
  padding: 40px 0;
}
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat {
  text-align: center;
  padding: 8px 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}
.stat:last-child {
  border-right: none;
}
.stat-n {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 46px;
  font-weight: 900;
  color: white;
  line-height: 1;
}
.stat-n span {
  color: var(--accent);
}
.stat-l {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 500;
  margin-top: 4px;
}

/* WHITE sections */
.s-white {
  background: var(--white);
  padding: 96px 0;
}
.sh {
  text-align: center;
  margin-bottom: 60px;
}
.sh h2 {
  font-size: clamp(32px, 3.5vw, 50px);
  font-weight: 900;
  color: var(--blue-deep);
  margin-bottom: 14px;
}
.sh p {
  font-size: 18px;
  color: var(--text-mid);
  max-width: 580px;
  margin: 0 auto;
}

.pain-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  background: white;
}
.pain {
  border-bottom: 1px solid var(--border);
  cursor: pointer;
  transition: background 0.15s;
}
.pain:nth-child(odd) {
  border-right: 1px solid var(--border);
}
.pain:nth-last-child(-n + 2) {
  border-bottom: none;
}
.pain:hover {
  background: var(--blue-xlt);
}
.pain-head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  font-size: 15px;
  font-weight: 700;
  color: var(--blue-deep);
}
.pain-head svg:first-child {
  flex-shrink: 0;
}
.pain-head span {
  flex: 1;
}
.pain-chev {
  flex-shrink: 0;
  transition: transform 0.2s;
  opacity: 0.4;
}
.pain.open .pain-chev {
  transform: rotate(180deg);
  opacity: 0.7;
}
.pain-body {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.3s ease,
    padding 0.3s ease;
  padding: 0 20px 0 52px;
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.65;
}
.pain.open .pain-body {
  max-height: 200px;
  padding: 0 20px 16px 52px;
}

/* DARK BLUE sections */
.s-dark {
  background: var(--blue-deep);
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}
.s-dark::before {
  content: "";
  position: absolute;
  top: -200px;
  left: -200px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.04) 0%,
    transparent 65%
  );
}
.aanpak-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.steps {
  display: flex;
  flex-direction: column;
}
.step {
  display: flex;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.step:last-child {
  border-bottom: none;
}
.step-n {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--accent);
  color: white;
  flex-shrink: 0;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 17px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
}
.step h3 {
  font-size: 19px;
  font-weight: 800;
  color: white;
  margin-bottom: 5px;
}
.step p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.6;
}
.cockpit-card {
  background: white;
  border-radius: var(--r-lg);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  position: sticky;
  top: 80px;
}
.cc-top {
  background: var(--blue-darker);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cc-top-t {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 16px;
  font-weight: 800;
  color: white;
}
.cc-top-badge {
  background: var(--accent);
  color: white;
  font-size: 9px;
  font-weight: 900;
  padding: 3px 9px;
  border-radius: 99px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.cc-tabs {
  display: flex;
  gap: 6px;
  padding: 14px 18px 0;
}
.cc-tab {
  padding: 6px 13px;
  border-radius: 99px;
  font-size: 12px;
  font-weight: 800;
  border: 1.5px solid var(--border);
  color: var(--text-mute);
  cursor: pointer;
  transition: all 0.2s;
  background: var(--bg);
}
.cc-tab.on {
  background: var(--blue);
  color: white;
  border-color: var(--blue);
}
.cc-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 14px 18px;
}
.cc-m {
  background: var(--bg);
  border-radius: 10px;
  padding: 12px 14px;
  border: 1px solid var(--border);
}
.cc-ml {
  font-size: 10px;
  font-weight: 800;
  color: var(--text-mute);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 3px;
}
.cc-mv {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 26px;
  font-weight: 900;
}
.cc-ms {
  font-size: 10px;
  color: var(--text-mute);
  margin-top: 1px;
}
.cc-advice {
  margin: 0 18px 18px;
  background: var(--blue-xlt);
  border: 1px solid rgba(0, 87, 184, 0.18);
  border-radius: var(--r);
  padding: 14px 16px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.cc-advice-text {
  font-size: 13px;
  color: var(--blue-deep);
  font-weight: 500;
  line-height: 1.55;
}
.cc-advice-text strong {
  font-weight: 800;
}

/* LIGHT sections */
.s-light {
  background: var(--bg);
  padding: 96px 0;
}
.prescriptief-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.prescriptief-grid h2 {
  font-size: clamp(30px, 3vw, 46px);
  font-weight: 900;
  color: var(--blue-deep);
  margin-bottom: 18px;
}
.prescriptief-grid p {
  font-size: 16px;
  color: var(--text-mid);
  line-height: 1.72;
  margin-bottom: 14px;
}
.pull-quote {
  background: white;
  border-left: 4px solid var(--accent);
  border-radius: 0 var(--r) var(--r) 0;
  padding: 16px 20px;
  margin: 24px 0 0;
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  font-style: italic;
  box-shadow: var(--shadow);
}
.scenario-card {
  background: white;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  overflow: hidden;
}
.sc-top {
  background: var(--blue-deep);
  padding: 16px 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.sc-top-t {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 17px;
  font-weight: 800;
  color: white;
  display: flex;
  align-items: center;
  gap: 8px;
}
.sc-badge {
  background: var(--accent);
  color: white;
  font-size: 9px;
  font-weight: 900;
  padding: 4px 10px;
  border-radius: 99px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.sc-body {
  padding: 20px 22px;
}
.sc-lbl {
  font-size: 10px;
  font-weight: 800;
  color: var(--text-mute);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
}
.sc-alert {
  background: #fff3e8;
  border: 1px solid #ffb882;
  border-radius: 9px;
  padding: 11px 14px;
  font-size: 13px;
  color: #7a3a00;
  font-weight: 600;
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 18px;
}
.sc-options {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}
.sc-opt {
  border: 1.5px solid var(--border);
  border-radius: 9px;
  padding: 11px 14px;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--bg);
}
.sc-opt:hover {
  border-color: var(--blue);
  background: var(--blue-xlt);
}
.sc-opt.rec {
  border-color: var(--green);
  background: var(--green-lt);
}
.sc-ob {
  font-size: 9px;
  font-weight: 900;
  padding: 3px 9px;
  border-radius: 99px;
  flex-shrink: 0;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.sc-ob.g {
  background: var(--green);
  color: white;
}
.sc-ob.b {
  background: var(--blue-xlt);
  color: var(--blue);
}
.sc-opt-txt {
  flex: 1;
  font-weight: 600;
  color: var(--text);
}
.sc-impact {
  font-size: 11px;
  font-weight: 800;
  flex-shrink: 0;
}
.sc-rec {
  background: linear-gradient(135deg, var(--blue-xlt), #eef5ff);
  border-radius: var(--r);
  padding: 14px 16px;
  border: 1px solid rgba(0, 87, 184, 0.15);
}
.sc-rl {
  font-size: 10px;
  font-weight: 900;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 5px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.sc-rt {
  font-size: 13px;
  color: var(--blue-deep);
  line-height: 1.55;
}

/* CASES */
.cases-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.case {
  background: white;
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition:
    box-shadow 0.25s,
    transform 0.25s;
}
.case:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.case-head {
  padding: 28px 28px 22px;
  border-bottom: 1px solid var(--border);
  display: flex;
  gap: 16px;
  align-items: center;
}
.case-logo {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 18px;
  font-weight: 900;
}
.case-logo.t9 {
  background: var(--blue-deep);
  color: white;
}
.case-logo.pp {
  background: var(--accent);
  color: white;
}
.case-meta h3 {
  font-size: 22px;
  font-weight: 900;
  color: var(--blue-deep);
}
.case-meta .sub {
  font-size: 13px;
  color: var(--text-mute);
  font-weight: 600;
  margin-top: 2px;
}
.case-body {
  padding: 22px 28px;
  flex: 1;
}
.case-body p {
  font-size: 14px;
  color: var(--text-mid);
  margin-bottom: 16px;
  line-height: 1.65;
}
.case-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.case-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
}
.ci {
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: var(--green-lt);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.case-foot {
  padding: 16px 28px;
  border-top: 1px solid var(--border);
  background: var(--bg);
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

/* BLOG */
.blog-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.blog-card {
  background: white;
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  transition:
    box-shadow 0.25s,
    transform 0.25s;
  display: flex;
  flex-direction: column;
  cursor: pointer;
}
.blog-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.blog-card-img {
  height: 200px;
  background: linear-gradient(
    135deg,
    var(--blue-deep) 0%,
    #0077cc 50%,
    var(--accent) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.blog-card-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.blog-card-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}
.blog-card-body {
  padding: 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.blog-card-date {
  font-size: 11px;
  font-weight: 800;
  color: var(--text-mute);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}
.blog-card-body h3 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 22px;
  font-weight: 900;
  color: var(--blue-deep);
  margin-bottom: 10px;
  line-height: 1.2;
}
.blog-card-body p {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.65;
  margin-bottom: 18px;
  flex: 1;
}
.blog-card-link {
  font-size: 14px;
  font-weight: 700;
  color: var(--blue);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition:
    gap 0.2s,
    color 0.2s;
}
.blog-card-link:hover {
  gap: 10px;
  color: var(--blue-deep);
}
@media (max-width: 900px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
}

/* OWNERSHIP - darkest blue */
.s-ownership {
  background: linear-gradient(
    140deg,
    #001e50 0%,
    #003a80 60%,
    #004ea0 100%
  );
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}
.s-ownership::before {
  content: "";
  position: absolute;
  bottom: -200px;
  right: -100px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.05) 0%,
    transparent 65%
  );
}
.own-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 64px;
  align-items: center;
}
.own-eyebrow {
  color: rgba(255, 255, 255, 0.45);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.own-eyebrow::before {
  content: "";
  display: block;
  width: 24px;
  height: 2px;
  background: rgba(255, 255, 255, 0.3);
}
.own-h2 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(32px, 3.5vw, 52px);
  font-weight: 900;
  color: white;
  line-height: 1.05;
  margin-bottom: 20px;
}
.own-p {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.72;
  max-width: 540px;
  margin-bottom: 16px;
}
.own-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 12px;
}
.own-tag {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.88);
  padding: 8px 16px;
  border-radius: 99px;
  font-size: 12px;
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, 0.18);
  display: flex;
  align-items: center;
  gap: 7px;
}
.own-callout {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--r-lg);
  padding: 36px 40px;
  min-width: 270px;
  text-align: center;
}
.own-callout-big {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 24px;
  font-weight: 900;
  color: white;
  line-height: 1.2;
  margin-bottom: 10px;
}
.own-callout-sub {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.5;
}

/* PROCESS */
.process-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
}
.process-row::before {
  content: "";
  position: absolute;
  top: 34px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: var(--border);
  z-index: 0;
}
.ps {
  text-align: center;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}
.ps-ring {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: white;
  border: 2px solid var(--border);
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 0 4px 14px rgba(0, 87, 184, 0.1);
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
}
.ps:hover .ps-ring {
  border-color: var(--blue);
  box-shadow: 0 4px 20px rgba(0, 87, 184, 0.2);
}
.ps-n {
  position: absolute;
  top: -5px;
  right: -5px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--accent);
  color: white;
  font-size: 10px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ps h4 {
  font-size: 17px;
  font-weight: 800;
  color: var(--blue-deep);
  margin-bottom: 8px;
}
.ps p {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.6;
}

/* CTA - orange */
.s-cta {
  background: linear-gradient(135deg, #ff6b00 0%, #e85500 100%);
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}
.s-cta::before {
  content: "";
  position: absolute;
  top: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.08) 0%,
    transparent 65%
  );
}
.cta-inner {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.cta-inner h2 {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 900;
  color: white;
  margin-bottom: 16px;
}
.cta-inner p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 36px;
  line-height: 1.65;
}
.cta-form {
  display: flex;
  gap: 10px;
  max-width: 460px;
  margin: 0 auto 14px;
}
.cta-input {
  flex: 1;
  padding: 13px 18px;
  border-radius: var(--r);
  border: none;
  font-family: "Barlow", sans-serif;
  font-size: 15px;
  color: var(--text);
  background: white;
  outline: none;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.12);
}
.btn-white {
  background: white;
  color: var(--accent);
  padding: 13px 24px;
  border-radius: var(--r);
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
  transition:
    transform 0.15s,
    box-shadow 0.2s;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.12);
}
.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.18);
}
.cta-note {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
}

/* FOOTER (simpele variant niet meer nodig, zie expanded footer hieronder) */
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-tagline {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 3px;
}
.footer-links {
  display: flex;
  gap: 22px;
}
.footer-links a {
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  transition: color 0.2s;
}
.footer-links a:hover {
  color: white;
}

/* FEEDBACK OPTIONS */
.qs-feedback-block {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.qs-feedback-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.qs-feedback-opt {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  border-radius: var(--r);
  border: 1.5px solid var(--border);
  background: var(--bg);
  cursor: pointer;
  text-align: left;
  font-family: "Barlow", sans-serif;
  transition: all 0.2s;
}
.qs-feedback-opt:hover {
  border-color: var(--blue);
  background: var(--blue-xlt);
}
.qs-feedback-opt strong {
  display: block;
  font-size: 14px;
  font-weight: 800;
  color: var(--blue-deep);
  margin-bottom: 2px;
}
.qs-feedback-opt span:last-child {
  font-size: 12px;
  color: var(--text-mid);
  line-height: 1.45;
}

/* PROTOTYPE */
.proto-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 48px;
  align-items: start;
}
.proto-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 24px;
}
.proto-feat {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 14px 16px;
  border-radius: var(--r);
  border: 1px solid var(--border);
  background: white;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
}
.proto-feat:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow);
}
.proto-feat-icon {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: var(--blue-xlt);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.proto-feat h4 {
  font-size: 15px;
  font-weight: 800;
  color: var(--blue-deep);
  margin-bottom: 3px;
}
.proto-feat p {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.5;
}
.proto-mockup {
  background: white;
  border-radius: var(--r-lg);
  box-shadow:
    var(--shadow-lg),
    0 0 0 1px var(--border);
  overflow: hidden;
  position: sticky;
  top: 80px;
}
.pm-bar {
  background: var(--blue-deep);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 7px;
}
.pm-url {
  font-family: "DM Mono", monospace;
  font-size: 10px;
  color: rgba(255, 255, 255, 0.45);
  margin-left: 8px;
}
.pm-body {
  display: grid;
  grid-template-columns: 180px 1fr;
  min-height: 360px;
}
.pm-sidebar {
  background: #f0f4fa;
  border-right: 1px solid var(--border);
  padding: 12px 0;
}
.pm-nav-title {
  font-size: 9px;
  font-weight: 800;
  color: var(--text-mute);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 8px 14px 6px;
}
.pm-nav-item {
  padding: 7px 14px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-mid);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 7px;
  transition: all 0.15s;
}
.pm-nav-item:hover {
  background: rgba(0, 87, 184, 0.06);
  color: var(--blue);
}
.pm-nav-item.active {
  background: var(--blue-xlt);
  color: var(--blue);
  border-right: 2px solid var(--blue);
}
.pm-nav-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}
.pm-main {
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pm-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.pm-screen-title {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 16px;
  font-weight: 800;
  color: var(--blue-deep);
}
.pm-role-switch {
  display: flex;
  gap: 4px;
}
.pm-role {
  font-size: 9px;
  font-weight: 800;
  padding: 4px 9px;
  border-radius: 99px;
  background: var(--bg);
  color: var(--text-mute);
  border: 1px solid var(--border);
}
.pm-role.on {
  background: var(--accent);
  color: white;
  border-color: var(--accent);
}
.pm-content {
  background: var(--bg);
  border-radius: 8px;
  border: 1px solid var(--border);
  padding: 10px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.pm-row {
  display: flex;
  gap: 6px;
  align-items: center;
  font-size: 11px;
  padding: 5px 8px;
  background: white;
  border-radius: 5px;
  border: 1px solid var(--border);
}
.pm-row-name {
  font-weight: 700;
  color: var(--text);
  flex: 1;
}
.pm-row-status {
  font-size: 9px;
  font-weight: 800;
  padding: 2px 7px;
  border-radius: 99px;
}
.pm-row-badge {
  font-size: 9px;
  font-weight: 700;
  color: var(--text-mute);
}
.pm-feedback-bar {
  background: var(--accent-lt);
  border: 1px solid rgba(255, 107, 0, 0.2);
  border-radius: 8px;
  padding: 10px 12px;
  display: flex;
  gap: 8px;
  align-items: flex-start;
}
.pm-fb-icon {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.pm-fb-text {
  font-size: 11px;
  color: #7a3a00;
  line-height: 1.45;
}
.pm-fb-text strong {
  font-weight: 800;
}
.pm-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 14px;
  border-top: 1px solid var(--border);
  background: #fafcff;
}
.pm-perm {
  display: flex;
  gap: 4px;
  align-items: center;
}
.pm-perm-dot {
  width: 8px;
  height: 8px;
  border-radius: 2px;
}
.pm-perm-label {
  font-size: 9px;
  font-weight: 700;
  color: var(--text-mute);
}
.pm-accept-btn {
  font-size: 10px;
  font-weight: 800;
  padding: 5px 12px;
  border-radius: 6px;
  background: var(--green);
  color: white;
  letter-spacing: 0.03em;
}

/* SERVICES - on dark bg */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.svc {
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--r);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 22px 20px;
  transition:
    background 0.25s,
    transform 0.25s,
    border-color 0.25s;
}
.svc:hover {
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.2);
}
.svc-icon {
  width: 40px;
  height: 40px;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}
.svc-icon svg {
  stroke: rgba(255, 255, 255, 0.75);
}
.svc h3 {
  font-size: 16px;
  font-weight: 800;
  color: white;
  margin-bottom: 6px;
}
.svc p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.55;
}
.svc-highlight {
  border-color: var(--accent);
  background: rgba(255, 107, 0, 0.12);
}
.svc-highlight:hover {
  background: rgba(255, 107, 0, 0.18);
  border-color: var(--accent);
}
.svc-highlight .svc-icon {
  background: var(--accent);
}
.svc-highlight .svc-icon svg {
  stroke: white;
}
.svc-highlight h3 {
  color: var(--accent);
}
.s-light .svc {
  background: white;
  border-color: var(--border);
}
.s-light .svc:hover {
  background: var(--blue-xlt);
  border-color: var(--blue);
  transform: translateY(-3px);
}
.s-light .svc-icon {
  background: var(--blue-xlt);
}
.s-light .svc-icon svg {
  stroke: var(--blue) !important;
}
.s-light .svc h3 {
  color: var(--text);
}
.s-light .svc p {
  color: var(--text-mid);
}
.s-light .svc-highlight {
  border-color: var(--accent);
  background: var(--accent-lt);
}
.s-light .svc-highlight:hover {
  background: rgba(255, 107, 0, 0.15);
  border-color: var(--accent);
}
.s-light .svc-highlight .svc-icon {
  background: var(--accent);
}
.s-light .svc-highlight .svc-icon svg {
  stroke: white !important;
}
.s-light .svc-highlight h3 {
  color: var(--accent);
}

/* PRICING */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}
.price-card {
  background: var(--white);
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
  padding: 32px 28px;
  position: relative;
  transition:
    box-shadow 0.25s,
    transform 0.25s;
  display: flex;
  flex-direction: column;
}
.price-card > .btn-primary {
  margin-top: auto;
  white-space: nowrap;
  font-size: 13px;
}
.price-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.price-card.featured {
  border-color: var(--blue);
  box-shadow:
    var(--shadow-lg),
    0 0 0 1px var(--blue);
}
.price-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--blue);
  color: white;
  font-size: 10px;
  font-weight: 900;
  padding: 5px 14px;
  border-radius: 99px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}
.price-eyebrow {
  font-size: 11px;
  font-weight: 800;
  color: var(--text-mute);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 6px;
}
.price-label {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: var(--blue-deep);
  margin-bottom: 14px;
  line-height: 1.2;
}
.price-range {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 32px;
  font-weight: 900;
  color: var(--blue);
  margin-bottom: 14px;
}
.price-desc {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.6;
  margin-bottom: 20px;
}
.price-includes {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}
.price-includes li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
}
.pricing-note {
  background: var(--blue-xlt);
  border: 1px solid rgba(0, 87, 184, 0.15);
  border-radius: var(--r);
  padding: 18px 22px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.6;
}
.pricing-note strong {
  color: var(--blue-deep);
  font-weight: 800;
}

/* FOOTER - expanded */
footer {
  background: var(--blue-darker);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-brand .footer-logo {
  display: block;
  margin-bottom: 14px;
}
.footer-brand .footer-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.65;
  margin-bottom: 16px;
  max-width: 280px;
}
.footer-col-title {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 14px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}
.footer-col-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col-links a {
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}
.footer-col-links a:hover {
  color: white;
}
.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 10px;
}
.footer-contact-item a {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-contact-item a:hover {
  color: white;
}
.footer-bottom {
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.3);
}
.footer-legal {
  display: flex;
  gap: 20px;
}
.footer-legal a {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.3);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-legal a:hover {
  color: rgba(255, 255, 255, 0.6);
}
.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}
.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.65);
  transition:
    background 0.2s,
    color 0.2s;
}
.footer-social a:hover {
  background: rgba(255, 255, 255, 0.16);
  color: white;
}

/* TEASER MODAL */
.teaser-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 13, 30, 0.65);
  backdrop-filter: blur(6px);
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  cursor: pointer;
}
.teaser-overlay.open {
  display: flex;
}
.teaser-overlay img {
  max-width: 90vw;
  max-height: 90vh;
  border-radius: var(--r-lg);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
  cursor: default;
}
.teaser-close {
  position: fixed;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.15);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
  z-index: 201;
}
.teaser-close:hover {
  background: rgba(255, 255, 255, 0.3);
}

/* LEGAL MODAL */
.legal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 13, 30, 0.65);
  backdrop-filter: blur(6px);
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.legal-overlay.open {
  display: flex;
}
.legal-modal {
  background: white;
  border-radius: var(--r-lg);
  width: 100%;
  max-width: 720px;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
  overflow: hidden;
  position: relative;
}
.legal-header {
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
}
.legal-header-title {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: var(--blue-deep);
}
.legal-close {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  border: none;
  background: var(--bg);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
}
.legal-close:hover {
  background: var(--border);
}
.legal-body {
  padding: 28px 32px;
  overflow-y: auto;
  flex: 1;
}
.legal-body h2 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--blue-deep);
  margin: 28px 0 10px;
}
.legal-body h2:first-child {
  margin-top: 0;
}
.legal-body p {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 12px;
}
.legal-body ul,
.legal-body ol {
  margin: 0 0 12px 22px;
  color: var(--text-mid);
}
.legal-body li {
  margin-bottom: 5px;
  font-size: 15px;
  line-height: 1.7;
}
.legal-body strong {
  color: var(--text);
  font-weight: 700;
}
.legal-body a {
  color: var(--blue);
  text-decoration: none;
  font-weight: 600;
}
.legal-body a:hover {
  text-decoration: underline;
}

/* QUICKSCAN MODAL */
.qs-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 13, 30, 0.65);
  backdrop-filter: blur(6px);
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.qs-overlay.open {
  display: flex;
}
.qs-modal {
  background: white;
  border-radius: var(--r-lg);
  width: 100%;
  max-width: 680px;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
  overflow: hidden;
  position: relative;
}
.qs-header {
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
}
.qs-header-title {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: var(--blue-deep);
}
.qs-close {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  border: none;
  background: var(--bg);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
}
.qs-close:hover {
  background: var(--border);
}
.qs-steps {
  display: flex;
  gap: 0;
  padding: 0 24px;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}
.qs-step-tab {
  padding: 12px 16px;
  font-size: 12px;
  font-weight: 800;
  color: var(--text-mute);
  position: relative;
  display: flex;
  align-items: center;
  gap: 6px;
}
.qs-step-tab.active {
  color: var(--blue);
}
.qs-step-tab.active::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--blue);
}
.qs-step-tab.done {
  color: var(--green);
  cursor: pointer;
}
.qs-step-tab.done:hover {
  opacity: .8;
}
.qs-step-num {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  font-size: 10px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid currentColor;
}
.qs-step-tab.active .qs-step-num {
  background: var(--blue);
  color: white;
  border-color: var(--blue);
}
.qs-step-tab.done .qs-step-num {
  background: var(--green);
  color: white;
  border-color: var(--green);
}
.qs-body {
  flex: 1;
  overflow-y: auto;
  padding: 24px;
  display: flex;
  flex-direction: column;
}
.qs-body.qs-body-chat {
  padding: 0;
  overflow: hidden;
}
.qs-form-group {
  margin-bottom: 18px;
}
.qs-label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}
.qs-label span {
  font-weight: 500;
  color: var(--text-mute);
}
.qs-input {
  width: 100%;
  padding: 11px 14px;
  border-radius: 8px;
  border: 1.5px solid var(--border);
  font-family: "Barlow", sans-serif;
  font-size: 15px;
  color: var(--text);
  outline: none;
  transition: border-color 0.15s;
}
.qs-input:focus {
  border-color: var(--blue);
}
.qs-checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  background: var(--bg);
  border-radius: 8px;
  cursor: pointer;
  font-size: 14px;
  color: var(--text-mid);
  font-weight: 500;
}
.qs-checkbox input {
  width: 18px;
  height: 18px;
  accent-color: var(--blue);
}
.qs-btn {
  background: var(--blue);
  color: white;
  border: none;
  padding: 13px 28px;
  border-radius: var(--r);
  font-family: "Barlow", sans-serif;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition:
    background 0.15s,
    transform 0.1s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  justify-content: center;
}
.qs-btn:hover {
  background: var(--blue-deep);
  transform: translateY(-1px);
}
.qs-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}
.qs-resume-inline {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
  margin-right: 8px;
  background: var(--accent-lt);
  border-radius: 6px;
  padding: 4px 10px;
}
.qs-resume-label {
  font-size: 12px;
  color: var(--text-mid);
  white-space: nowrap;
}
.qs-resume-btn-sm {
  background: var(--accent);
  color: white;
  border: none;
  padding: 3px 10px;
  border-radius: 6px;
  font-family: "Barlow", sans-serif;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.15s;
}
.qs-resume-btn-sm:hover {
  background: #e85500;
}
/* Progress bar */
.qs-progress {
  padding: 12px 24px 0;
  background: white;
  flex-shrink: 0;
}
.qs-progress-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
}
.qs-progress-phase {
  font-size: 12px;
  font-weight: 700;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.qs-progress-step {
  font-size: 11px;
  color: var(--text-mute);
  font-weight: 600;
}
.qs-progress-track {
  height: 4px;
  background: var(--bg);
  border-radius: 4px;
  overflow: hidden;
}
.qs-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--blue), var(--accent));
  border-radius: 4px;
  transition: width 0.5s ease;
  width: 0%;
}
/* Chat */
.qs-chat {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
  overflow-y: auto;
  padding: 20px 24px 12px;
}
.qs-msg {
  max-width: 88%;
  padding: 12px 16px;
  border-radius: 14px;
  font-size: 14px;
  line-height: 1.6;
  animation: fadeUp 0.3s ease;
  flex-shrink: 0;
}
.qs-msg-ai {
  background: var(--blue-xlt);
  color: var(--blue-deep);
  align-self: flex-start;
  border-bottom-left-radius: 4px;
}
.qs-msg-user {
  background: var(--blue);
  color: white;
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}
.qs-msg-typing {
  background: var(--blue-xlt);
  color: var(--blue);
  align-self: flex-start;
  border-bottom-left-radius: 4px;
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 14px 20px;
  flex-shrink: 0;
}
.qs-typing-dots {
  display: flex;
  gap: 4px;
}
.qs-typing-dots span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue);
  animation: blink 1.4s infinite;
}
.qs-typing-dots span:nth-child(2) {
  animation-delay: 0.2s;
}
.qs-typing-dots span:nth-child(3) {
  animation-delay: 0.4s;
}
.qs-typing-status {
  font-size: 12px;
  color: var(--blue-deep);
  opacity: 1;
  margin-top: 5px;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 240px;
  transition: opacity 0.3s;
}
.qs-typing-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 3px;
}
.qs-typing-timer {
  font-size: 11px;
  color: var(--blue);
  opacity: 0.55;
  font-weight: 500;
  font-variant-numeric: tabular-nums;
  flex-shrink: 0;
}
@keyframes blink {
  0%,
  80%,
  100% {
    opacity: 0.3;
  }
  40% {
    opacity: 1;
  }
}
.qs-input-row {
  display: flex;
  gap: 8px;
  padding: 12px 24px 20px;
  border-top: 1px solid var(--border);
  background: white;
  flex-shrink: 0;
}
.qs-input-row.hidden {
  display: none;
}
.qs-choices {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-self: flex-start;
  max-width: 92%;
  flex-shrink: 0;
}
.qs-choice {
  background: white;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 10px 16px;
  font-family: "Barlow", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--blue-deep);
  cursor: pointer;
  text-align: left;
  transition: all 0.15s;
  display: flex;
  align-items: center;
  gap: 10px;
}
.qs-choice:hover {
  border-color: var(--blue);
  background: var(--blue-xlt);
  transform: translateX(4px);
}
.qs-choice-letter {
  width: 24px;
  height: 24px;
  border-radius: 6px;
  background: var(--bg);
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 900;
  color: var(--blue);
  flex-shrink: 0;
}
.qs-choice:hover .qs-choice-letter {
  background: var(--blue);
  color: white;
  border-color: var(--blue);
}
.qs-choice.selected {
  border-color: var(--blue);
  background: var(--blue-xlt);
}
.qs-choice.selected .qs-choice-letter {
  background: var(--blue);
  color: white;
  border-color: var(--blue);
}
.qs-chat-input {
  flex: 1;
  padding: 11px 14px;
  border-radius: 8px;
  border: 1.5px solid var(--border);
  font-family: "Barlow", sans-serif;
  font-size: 14px;
  color: var(--text);
  outline: none;
  resize: none;
  min-height: 44px;
  max-height: 100px;
}
.qs-chat-input:focus {
  border-color: var(--blue);
}
.qs-send {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  border: none;
  background: var(--blue);
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.15s;
}
.qs-send:hover {
  background: var(--blue-deep);
}
.qs-send:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}
.qs-upload {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  border: 1.5px solid var(--border);
  background: white;
  color: var(--text-mute);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.15s;
}
.qs-upload:hover {
  border-color: var(--blue);
  color: var(--blue);
  background: var(--blue-xlt);
}
.qs-back {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  border: 1.5px solid var(--border);
  background: white;
  color: var(--text-mute);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.15s;
}
.qs-back:hover {
  border-color: var(--blue);
  color: var(--blue);
  background: var(--blue-xlt);
}
.qs-back:disabled {
  opacity: 0.3;
  cursor: not-allowed;
  pointer-events: none;
}
.qs-upload-input {
  display: none;
}
.qs-file-preview {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  background: var(--blue-xlt);
  border: 1px solid var(--blue);
  border-radius: 8px;
  font-size: 13px;
  color: var(--blue-deep);
  font-weight: 600;
  margin-bottom: 0;
}
.qs-file-preview button {
  background: none;
  border: none;
  color: var(--text-mute);
  cursor: pointer;
  font-size: 16px;
  padding: 0 2px;
  line-height: 1;
}
.qs-file-preview button:hover {
  color: var(--red, #e53e3e);
}
.qs-files-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 4px 24px 0;
  background: white;
}
.qs-files-bar:empty {
  display: none;
}
.qs-upload-notice {
  font-size: 11px;
  color: var(--text-mute);
  padding: 0 24px 4px;
  background: white;
  line-height: 1.4;
}
.qs-upload-notice a {
  color: var(--blue);
  text-decoration: none;
}
/* Proposal */
.qs-proposal {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px;
  margin-bottom: 20px;
}
.qs-proposal h3 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--blue-deep);
  margin-bottom: 16px;
}
.qs-proposal-section {
  margin-bottom: 18px;
}
.qs-proposal-section h4 {
  font-size: 14px;
  font-weight: 800;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}
.qs-proposal-section p,
.qs-proposal-section li {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.65;
}
.qs-proposal-section ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 0;
}
.qs-proposal-section li::before {
  content: "→ ";
  color: var(--blue);
  font-weight: 700;
}
.qs-proposal-price {
  background: white;
  border: 2px solid var(--blue);
  border-radius: var(--r);
  padding: 20px;
  text-align: center;
  margin: 20px 0;
}
.qs-proposal-price .amount {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 36px;
  font-weight: 900;
  color: var(--blue);
}
.qs-proposal-price .note {
  font-size: 13px;
  color: var(--text-mute);
  margin-top: 4px;
}
.qs-proposal-actions {
  display: flex;
  gap: 10px;
}
.qs-proposal-actions .qs-btn {
  flex: 1;
}
.qs-btn-outline {
  background: white;
  color: var(--blue);
  border: 1.5px solid var(--blue);
  padding: 13px 28px;
  border-radius: var(--r);
  font-family: "Barlow", sans-serif;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  flex: 1;
  text-align: center;
  transition: background 0.15s;
}
.qs-btn-outline:hover {
  background: var(--blue-xlt);
}
.qs-success {
  text-align: center;
  padding: 40px 20px;
}
.qs-success h3 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 26px;
  font-weight: 800;
  color: var(--blue-deep);
  margin-bottom: 12px;
}
.qs-success p {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.65;
}

/* COMPARE TABLE */
.compare {
  margin-top: 56px;
}
.compare-title {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--blue-deep);
  text-align: center;
  margin-bottom: 24px;
}
.compare-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  background: white;
  font-size: 14px;
}
.compare-table thead th {
  background: var(--bg);
  padding: 13px 18px;
  font-size: 12px;
  font-weight: 800;
  color: var(--text-mute);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-align: left;
  border-bottom: 1px solid var(--border);
}
.compare-table thead th:first-child {
  color: var(--text-mid);
}
.compare-table thead th:last-child {
  color: var(--blue);
  background: var(--blue-xlt);
}
.compare-table tbody td {
  padding: 12px 18px;
  border-bottom: 1px solid var(--border);
  color: var(--text-mid);
  font-weight: 500;
  vertical-align: top;
}
.compare-table tbody tr:last-child td {
  border-bottom: none;
}
.compare-table tbody td:first-child {
  font-weight: 700;
  color: var(--text);
}
.compare-table tbody td:last-child {
  background: rgba(232, 241, 252, 0.35);
  color: var(--blue-deep);
  font-weight: 700;
}
.compare-table .cmp-no {
  color: var(--text-mute);
  display: flex;
  align-items: center;
  gap: 6px;
}
.compare-table .cmp-no::before {
  content: "";
  display: block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--border);
  flex-shrink: 0;
}
.compare-table .cmp-mid {
  color: var(--text-mid);
  display: flex;
  align-items: center;
  gap: 6px;
}
.compare-table .cmp-mid::before {
  content: "";
  display: block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ffd77a;
  flex-shrink: 0;
}
.compare-table .cmp-yes {
  color: var(--blue-deep);
  display: flex;
  align-items: center;
  gap: 6px;
}
.compare-table .cmp-yes::before {
  content: "";
  display: block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
}
@media (max-width: 600px) {
  .compare-table {
    font-size: 12px;
  }
  .compare-table thead th,
  .compare-table tbody td {
    padding: 10px 10px;
  }
  .compare-table thead th {
    font-size: 10px;
    letter-spacing: 0.04em;
  }
  .compare-table tbody td:first-child {
    font-size: 12px;
    min-width: 0;
    max-width: 120px;
  }
  .compare-table .cmp-no,
  .compare-table .cmp-mid,
  .compare-table .cmp-yes {
    font-size: 0;
  }
  .compare-table .cmp-no::after,
  .compare-table .cmp-mid::after,
  .compare-table .cmp-yes::after {
    content: attr(data-short);
    font-size: 11px;
    font-weight: 700;
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.fu {
  animation: fadeUp 0.55s ease both;
}
.d1 {
  animation-delay: 0.1s;
}
.d2 {
  animation-delay: 0.2s;
}
.d3 {
  animation-delay: 0.3s;
}

@media (max-width: 960px) {
  .hero-grid,
  .aanpak-grid,
  .prescriptief-grid,
  .cases-grid,
  .own-grid,
  .proto-grid {
    grid-template-columns: 1fr;
  }
  .hero-visual {
    display: none;
  }
  .stats-row {
    grid-template-columns: 1fr 1fr;
  }
  .stat {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 16px;
  }
  .pain-list {
    grid-template-columns: 1fr 1fr;
  }
  .pain:nth-child(odd) {
    border-right: 1px solid var(--border);
  }
  .services-grid {
    grid-template-columns: 1fr 1fr;
  }
  .process-row {
    grid-template-columns: 1fr 1fr;
  }
  .process-row::before {
    display: none;
  }
  .pricing-grid {
    grid-template-columns: 1fr 1fr;
  }
  .price-card.featured {
    order: -1;
  }
  nav {
    padding: 0 16px;
  }
  nav .nav-links {
    display: none;
  }
  .nav-divider {
    display: none;
  }
  .nav-portal {
    display: none;
  }
  .nav-hamburger {
    display: flex;
  }
  .nav-logo {
    flex: 1;
  }
  .own-callout {
    display: none;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 600px) {
  .container {
    padding: 0 20px;
  }
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  .pain-list,
  .process-row,
  .services-grid {
    grid-template-columns: 1fr;
  }
  .pain:nth-child(odd) {
    border-right: none;
  }
  .s-white,
  .s-dark,
  .s-light,
  .s-ownership,
  .s-cta {
    padding: 64px 0;
  }
  .cta-form {
    flex-direction: column;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* GO TO TOP */
.go-top {
  position: fixed;
  right: 28px;
  bottom: 28px;
  width: 52px;
  height: 52px;
  border-radius: var(--r);
  border: none;
  background: var(--blue-deep);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 90;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  box-shadow: 0 4px 18px rgba(0, 57, 128, 0.35);
  transition:
    opacity 0.3s,
    transform 0.3s,
    background 0.2s,
    box-shadow 0.2s;
}
.go-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.go-top:hover {
  background: var(--blue);
  box-shadow: 0 6px 24px rgba(0, 87, 184, 0.45);
  transform: translateY(-2px);
}
.go-top svg {
  width: 22px;
  height: 22px;
  stroke: white;
  stroke-width: 2.5;
  fill: none;
}

/* ═══════ COOKIE CONSENT ═══════ */
.cookie-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 500;
  padding: 0 20px 0;
  pointer-events: none;
  transform: translateY(110%);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
.cookie-bar.visible {
  transform: translateY(0);
  pointer-events: auto;
}
.cookie-bar-inner {
  background: white;
  border-radius: var(--r-lg) var(--r-lg) 0 0;
  box-shadow: 0 -4px 40px rgba(0, 57, 128, 0.15);
  padding: 22px 28px;
  max-width: 1060px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
  border-top: 3px solid var(--blue);
}
.cookie-bar-icon {
  flex-shrink: 0;
  color: var(--blue);
}
.cookie-bar-text {
  flex: 1;
}
.cookie-bar-text strong {
  display: block;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 17px;
  font-weight: 800;
  color: var(--blue-deep);
  margin-bottom: 3px;
}
.cookie-bar-text span {
  font-size: 13.5px;
  color: var(--text-mid);
  line-height: 1.5;
}
.cookie-bar-text a {
  color: var(--blue);
  text-decoration: underline;
  cursor: pointer;
}
.cookie-bar-actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}
.ck-btn-outline {
  padding: 9px 16px;
  border-radius: 8px;
  border: 1.5px solid var(--border);
  background: white;
  color: var(--text-mid);
  font-family: "Barlow", sans-serif;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.15s;
}
.ck-btn-outline:hover {
  border-color: var(--blue);
  color: var(--blue);
}
.ck-btn-primary-outline {
  padding: 9px 16px;
  border-radius: 8px;
  border: 1.5px solid var(--blue);
  background: white;
  color: var(--blue);
  font-family: "Barlow", sans-serif;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.15s;
}
.ck-btn-primary-outline:hover {
  background: var(--blue-xlt);
}
.ck-btn-primary {
  padding: 9px 18px;
  border-radius: 8px;
  border: none;
  background: var(--blue);
  color: white;
  font-family: "Barlow", sans-serif;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.15s;
}
.ck-btn-primary:hover {
  background: var(--blue-lt);
}
/* Cookie settings modal */
.ck-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 13, 30, 0.65);
  backdrop-filter: blur(6px);
  z-index: 600;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.ck-overlay.open {
  display: flex;
}
.ck-modal {
  background: white;
  border-radius: var(--r-lg);
  width: 100%;
  max-width: 560px;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
  overflow: hidden;
}
.ck-header {
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
}
.ck-header-title {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: var(--blue-deep);
}
.ck-close-btn {
  width: 32px;
  height: 32px;
  border: none;
  background: none;
  cursor: pointer;
  color: var(--text-mute);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  transition: 0.15s;
}
.ck-close-btn:hover {
  background: var(--bg);
  color: var(--text);
}
.ck-body {
  flex: 1;
  overflow-y: auto;
  padding: 8px 0;
}
.ck-category {
  padding: 18px 24px;
  border-bottom: 1px solid var(--border);
}
.ck-category:last-child {
  border-bottom: none;
}
.ck-cat-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 7px;
}
.ck-cat-icon {
  color: var(--blue);
  flex-shrink: 0;
}
.ck-cat-name {
  font-weight: 700;
  font-size: 15px;
  color: var(--text);
  flex: 1;
}
.ck-cat-badge {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 99px;
  background: var(--green-lt);
  color: var(--green);
}
.ck-cat-desc {
  font-size: 13.5px;
  color: var(--text-mid);
  line-height: 1.55;
  margin-left: 30px;
}
.ck-toggle {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 24px;
  flex-shrink: 0;
}
.ck-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
  position: absolute;
}
.ck-toggle-slider {
  position: absolute;
  inset: 0;
  background: #d0dff0;
  border-radius: 99px;
  transition: 0.2s;
  cursor: pointer;
}
.ck-toggle-slider::before {
  content: "";
  position: absolute;
  left: 3px;
  bottom: 3px;
  width: 18px;
  height: 18px;
  background: white;
  border-radius: 50%;
  transition: 0.2s;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.18);
}
.ck-toggle input:checked + .ck-toggle-slider {
  background: var(--blue);
}
.ck-toggle input:checked + .ck-toggle-slider::before {
  transform: translateX(20px);
}
.ck-toggle input:disabled + .ck-toggle-slider {
  background: var(--blue);
  opacity: 0.55;
  cursor: not-allowed;
}
.ck-toggle input:disabled + .ck-toggle-slider::before {
  transform: translateX(20px);
}
.ck-modal-footer {
  padding: 16px 24px;
  border-top: 1px solid var(--border);
  display: flex;
  gap: 8px;
  justify-content: flex-end;
  flex-shrink: 0;
}
@media (max-width: 640px) {
  .cookie-bar-inner {
    flex-direction: column;
    align-items: flex-start;
    border-radius: var(--r-lg);
  }
  .cookie-bar-actions {
    width: 100%;
    flex-direction: column;
  }
  .ck-btn-outline,
  .ck-btn-primary-outline,
  .ck-btn-primary {
    width: 100%;
    text-align: center;
    padding: 11px;
  }
}

/* SOCIAL PROOF */
.s-proof {
  background: var(--blue-deep);
  padding: 48px 0;
}
.proof-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.proof-item {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--r-lg);
  padding: 28px;
  position: relative;
}
.proof-item::before {
  content: "\201C";
  font-family: "Barlow Condensed", sans-serif;
  font-size: 48px;
  color: var(--accent);
  line-height: 1;
  position: absolute;
  top: 16px;
  left: 20px;
  opacity: 0.6;
}
.proof-quote {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.65;
  font-style: italic;
  padding-left: 8px;
  margin-bottom: 14px;
}
.proof-author {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  padding-left: 8px;
}
.proof-author strong {
  color: rgba(255, 255, 255, 0.75);
  font-weight: 700;
}

/* AI ENTRY POINT */
.ai-entry-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.ai-entry-visual {
  position: relative;
}
.ai-entry-card {
  background: white;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  overflow: hidden;
}
.ai-card-header {
  background: linear-gradient(135deg, var(--accent), #e85500);
  padding: 16px 22px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 17px;
  font-weight: 800;
  color: white;
}
.ai-card-list {
  padding: 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.ai-card-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-mid);
  font-weight: 600;
}
.ai-card-footer {
  padding: 14px 22px;
  background: var(--bg);
  border-top: 1px solid var(--border);
  font-size: 13px;
  font-weight: 700;
  color: var(--blue-deep);
  text-align: center;
}

/* WHY STATEMENT */
.s-why {
  background: linear-gradient(135deg, var(--blue-deep) 0%, #004ea0 100%);
  padding: 64px 0;
}

/* OBJECTION HANDLING */
.objection-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.objection-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px;
  transition:
    box-shadow 0.25s,
    transform 0.25s;
}
.objection-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}
.objection-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--blue-xlt);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.objection-card h3 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 19px;
  font-weight: 800;
  color: var(--blue-deep);
  margin-bottom: 8px;
}
.objection-card p {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.65;
}

/* FOUNDER */
.founder-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 48px;
  align-items: center;
}
.founder-photo-img {
  width: 280px;
  height: 320px;
  border-radius: var(--r-lg);
  object-fit: cover;
  object-position: center top;
  box-shadow: var(--shadow-lg);
  border: 3px solid white;
}

/* CASE TESTIMONIAL */
.case-testimonial {
  padding: 16px 28px;
  background: var(--blue-xlt);
  border-top: 1px solid var(--border);
}
.case-testimonial p {
  font-size: 14px;
  color: var(--blue-deep);
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 6px;
}
.case-testimonial-author {
  font-size: 12px;
  color: var(--text-mute);
  font-weight: 600;
}

@media (max-width: 960px) {
  .proof-row,
  .ai-entry-grid,
  .objection-grid,
  .founder-grid {
    grid-template-columns: 1fr;
  }
  .founder-photo-img {
    width: 200px;
    height: 240px;
    margin: 0 auto;
  }
}
@media (max-width: 600px) {
  .objection-grid {
    grid-template-columns: 1fr;
  }
}

/* ════════════════════════════════════════════════════════════════
   MOBILE EXPERIENCE - Comprehensive mobile optimization
   ════════════════════════════════════════════════════════════════ */

/* ── Tablet (max 960px) ── */
@media (max-width: 960px) {
  /* Content tonen, niet verbergen - mobile bezoekers verdienen dezelfde inhoud */
  .case-takt { display: flex; flex-direction: column; }

  /* Blog-sectie compact tonen i.p.v. verbergen */
  #blog .blog-grid { grid-template-columns: 1fr; gap: 16px; }
  #blog .blog-tile:nth-child(n+3) { display: none; } /* max 2 op tablet */

  /* Hero: minder verticale ruimte */
  .s-hero { padding: 56px 0 48px; }

  /* Section padding verlagen */
  .s-white, .s-dark, .s-light, .s-ownership { padding: 72px 0; }
  .s-cta { padding: 56px 0; }
  .sh { margin-bottom: 40px; }

  /* Hero tekst leesbaarder */
  .hero-sub { font-size: 17px; }
  .hero-quote { font-size: 15px; padding: 8px 14px; }

  /* CTA knoppen full-width op tablet */
  .btn-row { flex-direction: column; gap: 10px; }
  .btn-row .btn-primary { width: 100%; justify-content: center; text-align: center; }

  /* Stats: kleiner */
  .stat-n { font-size: 38px; }
  .stat-l { font-size: 12px; }

  /* Section subtekst */
  .sh p { font-size: 16px; }

  /* Proof items: minder padding */
  .proof-item { padding: 20px; }

  /* Services 2-kolom met betere gap */
  .services-grid { gap: 12px; }

  /* Pricing compacter */
  .price-card { padding: 24px 20px; }

  /* Quickscan modal: betere mobile fit */
  .qs-overlay { padding: 12px; }
  .qs-modal { max-height: calc(100vh - 24px); max-height: calc(100dvh - 24px); }
  .qs-header { padding: 16px 20px; }
  .qs-body { padding: 20px; }
  .qs-step-tab { padding: 10px 12px; font-size: 11px; }

  /* Objection grid: 2 kolom op tablet */
  .objection-grid { grid-template-columns: 1fr 1fr; }
}

/* ── Phone (max 600px) ── */
@media (max-width: 600px) {
  /* Basis typografie mobile */
  body { font-size: 15px; }

  /* Container: meer ademruimte maar niet te breed */
  .container { padding: 0 16px; }

  /* Hero: compact en pakkend */
  .s-hero { padding: 36px 0 32px; }
  .hero-h1 { font-size: 32px; margin-bottom: 16px; }
  .hero-sub { font-size: 15px; line-height: 1.6; margin-bottom: 14px; }
  .hero-quote { font-size: 14px; margin-bottom: 24px; }
  .eyebrow { font-size: 10px; margin-bottom: 10px; }

  /* Sections: compactere verticale ruimte */
  .s-white, .s-dark, .s-light, .s-ownership { padding: 48px 0; }
  .s-cta { padding: 40px 0; }
  .sh { margin-bottom: 32px; }
  .sh h2 { font-size: 28px; margin-bottom: 10px; }
  .sh p { font-size: 15px; }

  /* Stats strip compact */
  .s-stats { padding: 24px 0; }
  .stats-row { grid-template-columns: 1fr 1fr; gap: 0; }
  .stat { padding: 12px 8px; }
  .stat-n { font-size: 32px; }
  .stat-l { font-size: 11px; }

  /* Social proof */
  .s-proof { padding: 32px 0; }
  .proof-item { padding: 16px; }
  .proof-quote { font-size: 14px; }
  .proof-author { font-size: 12px; }

  /* CTA knoppen: full width, goede touch targets */
  .btn-primary { padding: 14px 24px; font-size: 15px; width: 100%; justify-content: center; }
  .btn-row { gap: 10px; }

  /* Pain items compact */
  .pain { padding: 16px; }
  .pain h3 { font-size: 14px; }
  .pain p { font-size: 13px; }

  /* Service cards */
  .svc { padding: 16px; }
  .svc h3 { font-size: 15px; }
  .svc p { font-size: 13px; }

  /* Pricing: horizontale scroll-carousel op phone */
  .pricing-grid {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-top: 16px;
    padding-bottom: 8px;
    margin: 0 -16px;
    padding-left: 16px;
    padding-right: 16px;
  }
  .price-card {
    min-width: 280px;
    max-width: 300px;
    flex-shrink: 0;
    scroll-snap-align: start;
    padding: 20px 16px;
  }
  .price-card.featured { order: -1; }
  .price-label { font-size: 17px; }
  .price-range { font-size: 26px; }
  .price-desc { font-size: 13px; margin-bottom: 14px; }
  .price-includes { gap: 6px; margin-bottom: 16px; }
  .price-includes li { font-size: 12px; }
  .pricing-note { padding: 14px 16px; font-size: 13px; }
  .pricing-note strong { font-size: 13px; }

  /* Cases: horizontale scroll-carousel, PassPoint eerst */
  .cases-grid {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 8px;
    margin: 0 -16px;
    padding-left: 16px;
    padding-right: 16px;
  }
  .cases-grid .case {
    min-width: 300px;
    max-width: 320px;
    flex-shrink: 0;
    scroll-snap-align: start;
  }
  .cases-grid .case-takt { order: 2; }
  .case-body p { font-size: 13px; }
  .case-list li { font-size: 12px; }
  .case-testimonial p { font-size: 13px; }
  .case-foot .tag { font-size: 10px; padding: 4px 10px; }

  /* AI entry section */
  .ai-entry-grid { gap: 24px; }
  .ai-card-header { padding: 12px 16px; }
  .ai-card-list { padding: 12px 16px; }
  .ai-card-footer { padding: 12px 16px; }

  /* Werkwijze: accordion op mobile */
  .process-row {
    display: flex;
    flex-direction: column;
    gap: 0;
  }
  .process-row::before { display: none; }
  .ps {
    text-align: left;
    padding: 0;
    border-bottom: 1px solid var(--border);
  }
  .ps:last-child { border-bottom: none; }
  .ps-accordion-trigger {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 0;
    cursor: pointer;
    width: 100%;
    background: none;
    border: none;
    font-family: var(--font);
  }
  .ps-accordion-trigger .ps-ring {
    width: 40px;
    height: 40px;
    margin: 0;
    flex-shrink: 0;
  }
  .ps-accordion-trigger .ps-ring svg {
    width: 18px;
    height: 18px;
  }
  .ps-accordion-trigger .ps-n {
    width: 16px;
    height: 16px;
    font-size: 9px;
    top: -3px;
    right: -3px;
  }
  .ps-accordion-trigger h4 {
    flex: 1;
    font-size: 15px;
    margin: 0;
    text-align: left;
  }
  .ps-accordion-chevron {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    stroke: var(--text-mute);
    transition: transform 0.25s ease;
  }
  .ps.ps-open .ps-accordion-chevron {
    transform: rotate(180deg);
    stroke: var(--blue);
  }
  .ps-accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding-left: 52px;
  }
  .ps.ps-open .ps-accordion-body {
    max-height: 300px;
  }
  .ps-accordion-body p {
    font-size: 13px;
    margin-bottom: 8px;
    text-align: left;
  }
  .ps-accordion-body > div {
    text-align: left;
  }
  .ps-accordion-body .ps-deliverable {
    margin-bottom: 14px;
  }

  /* Objection cards */
  .objection-grid { gap: 12px; }
  .objection-card { padding: 20px 16px; }

  /* Founder section */
  .founder-photo-img { width: 160px; height: 192px; }

  /* WHY section */
  .s-why { padding: 48px 0; }

  /* Quickscan: full-screen op phone */
  .qs-overlay { padding: 0; align-items: stretch; }
  .qs-modal {
    max-width: 100%;
    max-height: 100vh;
    max-height: 100dvh;
    border-radius: 0;
    height: 100%;
  }
  .qs-header {
    padding: 14px 16px;
    flex-wrap: wrap;
    gap: 8px;
  }
  .qs-header-title { font-size: 17px; flex: 1; min-width: 0; }
  .qs-close { flex-shrink: 0; }
  .qs-resume-inline {
    order: 1;
    width: 100%;
    margin-left: 0;
    justify-content: space-between;
  }
  .qs-resume-label { white-space: normal; }
  .qs-body { padding: 16px; }
  .qs-steps { padding: 0 16px; }
  .qs-step-tab { padding: 10px 8px; font-size: 10px; gap: 4px; }
  .qs-input-row { padding: 12px 16px 16px; }
  .qs-files-bar { padding: 4px 16px 0; }
  .qs-btn { padding: 14px 20px; font-size: 15px; }
  .qs-proposal { padding: 20px; }
  .qs-proposal h3 { font-size: 19px; }
  .qs-proposal-price .amount { font-size: 28px; }
  .qs-proposal-price { padding: 16px; }
  .qs-proposal-actions { flex-direction: column; }
  .qs-chat { padding: 16px; }
  .qs-chat-input { font-size: 16px; }
  .qs-input { font-size: 16px; }

  /* Blog sectie: compact horizontale kaarten */
  #blog .sh { margin-bottom: 20px; }
  #blog .sh p { display: none; }
  #blog .blog-grid { gap: 10px; }
  #blog .blog-card {
    display: grid;
    grid-template-columns: 100px 1fr;
    border-radius: var(--r);
  }
  #blog .blog-card-img {
    height: 100%;
    min-height: 90px;
    border-radius: var(--r) 0 0 var(--r);
  }
  #blog .blog-card-icon { display: none; }
  #blog .blog-card-body {
    padding: 12px 14px;
  }
  #blog .blog-card-date { font-size: 10px; margin-bottom: 4px; }
  #blog .blog-card-body h3 { font-size: 15px; margin-bottom: 4px; }
  #blog .blog-card-body p { display: none; }
  #blog .blog-card-link { font-size: 12px; }

  /* Footer compact */
  /* Footer: alleen brand + contact op phone, nav/oplossingen zitten in hamburger */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 0;
    padding-bottom: 24px;
  }
  .footer-grid > div:nth-child(2),
  .footer-grid > div:nth-child(3) {
    display: none;
  }
  .footer-brand { margin-bottom: 16px; }
  .footer-brand .footer-desc { font-size: 13px; margin-bottom: 12px; max-width: none; }
  .footer-col-title { font-size: 13px; }
  .footer-col-links { gap: 6px; }
  .footer-col-links a { font-size: 13px; }
  .footer-contact-item { font-size: 13px; }
  .footer-bottom { padding: 16px 0; }
  .footer-legal { gap: 12px; flex-wrap: wrap; justify-content: center; }
  .footer-legal a { font-size: 11px; }

  /* Cookie bar compact */
  .cookie-bar { padding: 0 8px; }
  .cookie-bar-inner { padding: 16px; gap: 16px; }
  .cookie-bar-text strong { font-size: 15px; }
  .cookie-bar-text span { font-size: 12px; }

  /* Go-top button: kleiner en niet in de weg */
  .go-top { right: 16px; bottom: 16px; }
}

/* ── Small phone (max 380px) ── */
@media (max-width: 380px) {
  .container { padding: 0 12px; }
  .hero-h1 { font-size: 28px; }
  .hero-sub { font-size: 14px; }
  .sh h2 { font-size: 24px; }
  .stat-n { font-size: 28px; }
  .btn-primary { font-size: 14px; padding: 12px 20px; }
  .nav-cta span { font-size: 12px; }
  .price-card { padding: 16px 12px; }
}

/* ── Touch target minimums ── */
@media (pointer: coarse) {
  /* Minimaal 44px touch targets voor alle interactieve elementen */
  .nav-cta { min-height: 44px; }
  .nav-portal { min-height: 44px; }
  .nav-hamburger { min-width: 44px; min-height: 44px; }
  .mobile-menu-links a { min-height: 44px; display: flex; align-items: center; }
  .footer-col-links a { display: inline-block; min-height: 36px; line-height: 36px; }
  .qs-close { min-width: 44px; min-height: 44px; }
  .qs-step-tab { min-height: 44px; }
  .go-top { min-width: 44px; min-height: 44px; }

  /* Tap highlight */
  a, button { -webkit-tap-highlight-color: rgba(0, 87, 184, 0.1); }
}

/* ── Reduced motion: respecteer gebruikersvoorkeur ── */
@media (prefers-reduced-motion: reduce) {
  .fu { animation: none !important; }
  html { scroll-behavior: auto; }
  .nav-cta.nav-cta-resume { animation: none; }
  * { transition-duration: 0.01ms !important; }
}

/* ── Safe area insets (notch/gesture bar) ── */
@supports (padding: env(safe-area-inset-bottom)) {
  .cookie-bar { padding-bottom: env(safe-area-inset-bottom); }
  .go-top { bottom: calc(16px + env(safe-area-inset-bottom)); }
  nav { padding-left: max(16px, env(safe-area-inset-left)); padding-right: max(16px, env(safe-area-inset-right)); }
  .qs-modal { padding-bottom: env(safe-area-inset-bottom); }
}

/* ── Landscape phone: compact hero ── */
@media (max-height: 500px) and (orientation: landscape) {
  .s-hero { padding: 24px 0 20px; }
  .hero-h1 { font-size: 28px; margin-bottom: 10px; }
  .hero-sub { font-size: 14px; margin-bottom: 8px; }
  .hero-quote { display: none; }
  .qs-modal { max-height: 100vh; max-height: 100dvh; }
}
