@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Plus+Jakarta+Sans:wght@600;700;800&display=swap");



:root {
  --navy-980: #081a42;
  --navy-950: #0c2c67;
  --navy-900: #123f8d;
  --navy-700: #2f68c7;
  --green-600: #59b72f;
  --green-500: #6acb3f;
  --ink-900: #15233b;
  --ink-700: #41526d;
  --ink-500: #6e7c92;
  --line: #d9e1ec;
  --surface: #ffffff;
  --surface-soft: #f4f7fb;
  --surface-alt: #edf3fb;
  --shadow-md: 0 10px 28px rgba(8, 26, 66, 0.08);
  --radius-xl: 28px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--ink-900);
  background: var(--surface-soft);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, .brand, .btn, .eyebrow, .kicker, .dashboard-shell-label,
.floating-label, .floating-value, .cta-kicker, .cta-note, .footer-title,
.lang-switch a, .nav-links a {
  font-family: "Plus Jakarta Sans", "Inter", "Segoe UI", Roboto, Arial, sans-serif;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.container {
  width: min(calc(100% - 40px), var(--container));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(12,44,103,0.08);
}

.nav {
  min-height: 96px;
  display: grid;
  grid-template-columns: minmax(180px, 240px) 1fr minmax(260px, auto);
  align-items: center;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  color: var(--navy-950);
  line-height: 0;
}

.brand-logo {
  display: block;
  height: 56px;
  width: auto;
  max-width: min(38vw, 240px);
  object-fit: contain;
}

.nav-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  color: var(--ink-700);
  font-size: 0.97rem;
  font-weight: 700;
}

.nav-section-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 10px;
  border-radius: 999px;
  transition: background .18s ease, color .18s ease;
}

.nav-links a:hover {
  background: rgba(12,44,103,0.06);
  color: var(--navy-950);
}

.nav-right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 16px;
}

.lang-switch {
  /*display: inline-flex;*/
  display: none;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border-radius: 999px;
  background: rgba(12, 44, 103, 0.06);
  border: 1px solid rgba(12, 44, 103, 0.08);
}

.lang-switch a {
  min-width: 40px;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.84rem;
  font-weight: 800;
  color: var(--ink-700);
}

.lang-switch a.active {
  background: #fff;
  color: var(--navy-950);
  box-shadow: 0 6px 18px rgba(8, 26, 66, 0.08);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
  white-space: nowrap;
  border: 0;
  cursor: pointer;
}

.btn:hover { transform: translateY(-1px); }

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--green-600), var(--green-500));
  box-shadow: 0 14px 28px rgba(89, 183, 47, 0.24);
}

.btn-ghost {
  color: var(--navy-950);
  background: rgba(12,44,103,0.06);
  border: 1px solid rgba(12,44,103,0.08);
}

.hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(8,26,66,0.92) 0%, rgba(8,26,66,0.82) 42%, rgba(8,26,66,0.60) 72%, rgba(8,26,66,0.42) 100%),
    linear-gradient(180deg, rgba(7,20,50,0.26), rgba(7,20,50,0.16)),
    url('../images/argusmeta-hero-bg.jpg') center 56% / cover no-repeat;
}

.hero::before {

  position: absolute;
  inset: auto auto -160px -120px;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(255,255,255,0.16), rgba(255,255,255,0));
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 52px;
  align-items: center;
  min-height: 720px;
  padding: 72px 0 84px;
}

.hero-copy {
  max-width: 640px;
  padding: 10px 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: .02em;
  margin-bottom: 22px;
}

h1 {
  margin: 0;
  max-width: 12ch;
  font-size: clamp(2.2rem, 4.2vw, 3.95rem);
  line-height: 1;
  letter-spacing: -0.01em;
  font-weight: 800;
}

.lead {
  margin: 0;
  max-width: 56ch;
  font-size: 1.08rem;
  font-weight: 500;
  color: rgba(255,255,255,0.88);
  line-height: 1.65;
}

.hero-line {
  width: 112px;
  height: 2px;
  background: rgba(255,255,255,0.74);
  margin: 26px 0 22px;
}

.hero-support-line {
  margin: 18px 0 0;
  color: rgba(255,255,255,0.82);
  font-size: 0.98rem;
  line-height: 1.65;
  max-width: 54ch;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 18px 0 0;
}

.hero-points span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.16);
  font-weight: 600;
  color: rgba(255,255,255,0.94);
}

.hero-visual {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  align-self: center;
}
.hero-dashboard-preview { position: relative; display: flex; justify-content: flex-end; align-items: center; width: 100%; min-height: 520px; }
.hero-dashboard-glow {
  position: absolute; right: 18px; top: 50%; width: 500px; height: 500px; transform: translateY(-50%);
  border-radius: 50%; background: radial-gradient(circle, rgba(80, 180, 255, 0.22) 0%, rgba(80, 180, 255, 0.1) 34%, rgba(80, 180, 255, 0) 72%);
  filter: blur(10px); pointer-events: none;
}
.dashboard-shell {
  position: relative; width: min(100%, 600px); border-radius: 28px; border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.08); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 30px 80px rgba(2,6,23,0.35), inset 0 1px 0 rgba(255,255,255,0.08); padding: 14px;
}
.dashboard-shell-top { display:flex; align-items:center; justify-content:space-between; gap:16px; padding:6px 8px 14px; }
.dashboard-dots { display:flex; gap:6px; }
.dashboard-dots span { width:10px; height:10px; border-radius:50%; background: rgba(255,255,255,0.28); }
.dashboard-shell-label { font-size:12px; font-weight:700; letter-spacing:.14em; text-transform:uppercase; color: rgba(219,234,254,0.78); }
.dashboard-image-wrap { overflow:hidden; border-radius:20px; border:1px solid rgba(255,255,255,0.08); background: rgba(255,255,255,0.96); box-shadow: inset 0 1px 0 rgba(255,255,255,0.72); }
.dashboard-image { display:block; width:100%; height:auto; }
.dashboard-floating-card {
  position:absolute; max-width:220px; border-radius:18px; border:1px solid rgba(255,255,255,0.14); background: rgba(9,25,62,0.84);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); box-shadow: 0 16px 40px rgba(2,6,23,0.28); padding:14px 16px; color:#fff;
}
.dashboard-floating-card-top { top:68px; right:-24px; }
.dashboard-floating-card-bottom { left:-28px; bottom:26px; }
.floating-label { font-size:10px; font-weight:800; letter-spacing:.16em; text-transform:uppercase; color: rgba(191,219,254,0.76); }
.floating-value { margin-top:8px; font-size:30px; line-height:1.02; font-weight:800; letter-spacing:-0.04em; font-variant-numeric: tabular-nums; color:#fff; }
.floating-value.small { font-size:19px; line-height:1.28; letter-spacing:-0.025em; font-weight:700; }
.floating-meta { margin-top:9px; font-size:12.5px; font-weight:500; line-height:1.55; color: rgba(239,246,255,0.82); }

.section {
  padding: 88px 0;
}

.section-white {
  background: #fbfcfe;
  border-top: 1px solid rgba(12,44,103,0.05);
}

.section-tint {
  background: var(--surface-soft);
}

.section-flow {
  border-top: 1px solid rgba(12,44,103,0.05);
}
.section-tight {
  padding: 88px 0;
}
.band {
  transform: none;
  position: relative;
  z-index: 2;
  margin-top: 0;
}
.band-grid, .grid-3, .footer-grid { display: grid; }
.band-grid { grid-template-columns: repeat(3, 1fr); gap: 18px; }
.band-card, .card {
  background: var(--surface);
  border: 1px solid rgba(12,44,103,0.06);
  box-shadow: var(--shadow-md);
}

.section-white .card,
.section-white .band-card {
    background: #fff;
  border: 1px solid rgba(12,44,103,0.08);
  box-shadow: 0 12px 24px rgba(8, 26, 66, 0.06);
}

.section-tint .card,
.section-tint .band-card {
  box-shadow: 0 10px 28px rgba(8, 26, 66, 0.08);
}
.band-card { padding: 24px 24px 22px; border-radius: 22px; }
.band-card small { display:block; margin-bottom:8px; color: var(--navy-700); font-weight:800; letter-spacing:.04em; text-transform:uppercase; font-size:.74rem; }
.band-card p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink-900);
  font-weight: 600;
}
.section-head { display:grid; grid-template-columns: 0.92fr 1.08fr; gap:42px; align-items:start; margin-bottom:36px; }
.section-head:not(.section-head-impact) { align-items: center; }
.kicker { display:inline-block; margin-bottom:14px; color: var(--navy-700); font-size:.82rem; text-transform:uppercase; letter-spacing:.08em; font-weight:800; }
h2.section-title { margin:0; font-size: clamp(2rem, 3.6vw, 3.1rem); line-height:1.04; letter-spacing:-0.045em; color: var(--navy-950); font-weight:800; }
.section-intro { margin:0; color: var(--ink-700); font-size:1.06rem; line-height:1.7; }
.section-head-impact { grid-template-columns: 1fr; justify-items:center; text-align:center; max-width:860px; margin: 0 auto 36px; }
.section-head-impact .section-title {
  max-width: 24ch;
  margin-inline: auto;
}

#hoe-het-werkt .section-title {
  max-width: 24ch;
}

#hoe-het-werkt .section-intro,
#privacy .section-intro,
#bezwaren .section-intro {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}
.grid-3 { grid-template-columns: repeat(3, 1fr); gap:22px; }
.card { border-radius:24px; padding:28px; }
.card h3 { margin:0 0 12px; font-size:1.28rem; color: var(--navy-950); line-height:1.15; font-weight:800; }
.card p { margin:0; color: var(--ink-700); }
.icon { width:44px; height:44px; border-radius:14px; display:inline-flex; align-items:center; justify-content:center; margin-bottom:18px; background: linear-gradient(135deg, rgba(47,104,199,0.14), rgba(89,183,47,0.12)); color: var(--navy-950); font-weight:800; }
.split { display:grid; grid-template-columns: 1fr 1fr; gap:22px; }
.list-card ul { list-style:none; padding:0; margin:18px 0 0; display:grid; gap:14px; }
.list-card li { padding:16px 18px; background: var(--surface-alt); border-radius:16px; color: var(--ink-900); font-weight:600; }
.cost-card { display:flex; align-items:center; justify-content:space-between; gap:24px; padding:20px 0; border-top: 1px solid var(--line); }
.cost-card:first-child { border-top:0; padding-top:0; }
.cost-card:last-child { padding-bottom:0; }
.cost-card strong { display:block; color: var(--navy-950); font-size:1.1rem; }
.cost-card span { color: var(--ink-700); }
.cost-card b { font-size:1.34rem; color: var(--navy-950); white-space:nowrap; }
.note-banner {
  margin-top: 22px;
  padding: 18px 20px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(89,183,47,0.12), rgba(47,104,199,0.08));
  color: var(--navy-950);
  font-weight: 700;
  text-align: center;
  font-size: 1.02rem;
  line-height: 1.6;
}

.cta { position:relative; overflow:hidden; color:#fff; background: linear-gradient(135deg, var(--navy-950), #11418f); }
.cta::after { content:""; position:absolute; inset:0; background: radial-gradient(circle at 80% 20%, rgba(255,255,255,0.14), transparent 24%); pointer-events:none; }
.cta-inner { position:relative; z-index:1; display:grid; grid-template-columns: minmax(0, 1.22fr) auto; gap:34px; align-items:center; padding:60px 0; }
.cta-copy { max-width:860px; }
.cta-kicker { display:inline-flex; align-items:center; min-height:34px; padding:0 14px; border-radius:999px; margin-bottom:16px; background: rgba(255,255,255,0.08); border:1px solid rgba(255,255,255,0.16); font-size:.76rem; font-weight:800; letter-spacing:.14em; text-transform:uppercase; color: rgba(255,255,255,0.82); }
.cta h2 { margin:0 0 14px; max-width:none; font-size: clamp(2.1rem, 3.2vw, 3rem); line-height:1.02; letter-spacing:-0.05em; font-weight:800; color:#fff; }
.cta p { margin:0; max-width:58ch; color: rgba(255,255,255,0.84); font-size:1.06rem; font-weight:500; line-height:1.7; }
.cta-note { margin-top:18px; font-size:.86rem; font-weight:700; letter-spacing:.08em; text-transform:uppercase; color: rgba(255,255,255,0.7); }
.cta-actions { display:grid; gap:12px; justify-items:end; }
.cta-actions .btn { min-width:210px; padding:0 22px; font-size:.98rem; letter-spacing:-0.01em; }

.footer-bottom-extended {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 28px;
}

.footer-bottom-left,
.footer-bottom-right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.footer-bottom-text {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.92rem;
  line-height: 1.5;
}

.footer-bottom-logo {
  display: block;
  height: 26px;
  object-fit: contain;
}

.footer-bottom-logo-argusmeta {
  height: 26px;
  display:none;
}

.footer-bottom-logo-finafit {
  height: 26px;
}

@media (max-width: 768px) {
  .footer-bottom-extended {
    flex-direction: column;
    gap: 22px;
  }
}

footer {
  background:#091a40;
  color: rgba(255,255,255,0.86);
  padding: 34px 0 44px;
}
.footer-grid {
  grid-template-columns: 1.1fr 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.footer-column { min-width: 0; }
.footer-title {
  font-size:1.05rem;
  font-weight:800;
  color:#fff;
  margin-bottom:10px;
}
.footer-copy,
.footer-links a {
  display: block;
  color: rgba(255,255,255,0.74);
  font-size: 0.99rem;
  line-height: 1.5;
}
.footer-copy {
  max-width: 24ch;
}
.footer-links {
  display:grid;
  gap:12px;
}
.footer-bottom {
  margin-top:28px;
  padding-top:18px;
  border-top:1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.62);
  font-size:.92rem;
}

.modal { position: fixed; inset: 0; z-index: 300; display:none; }
.modal.is-open { display:block; }
.modal-backdrop { position:absolute; inset:0; background: rgba(8,26,66,0.56); backdrop-filter: blur(4px); }
.modal-panel { position:relative; width:min(100% - 24px, 760px); margin:72px auto; border-radius:24px; overflow:hidden; background:#fff; box-shadow: 0 36px 100px rgba(2,6,23,0.28); }
.modal-header { display:flex; justify-content:space-between; gap:16px; padding:28px 28px 20px; border-bottom:1px solid rgba(12,44,103,0.08); }
.modal-title-wrap h3 { margin:0; font-size:1.9rem; color: var(--navy-950); }
.modal-title-wrap p { margin:8px 0 0; color: var(--ink-700); }
.modal-close { width:42px; height:42px; border:0; border-radius:999px; background: rgba(12,44,103,0.06); color: var(--navy-950); font-size:1.5rem; cursor:pointer; }
.modal-body { padding:24px 28px 28px; }
.form-field-hp { position:absolute; left:-9999px; opacity:0; pointer-events:none; }
.form-grid { display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.form-field { display:grid; gap:8px; }
.form-field.full { grid-column:1 / -1; }
.form-field label { font-size:.94rem; font-weight:700; color: var(--navy-950); }
.form-field input, .form-field textarea { width:100%; border:1px solid rgba(12,44,103,0.14); border-radius:16px; padding:14px 16px; font: inherit; color: var(--ink-900); background:#fff; outline:none; transition:border-color .18s ease, box-shadow .18s ease; }
.form-field input:focus, .form-field textarea:focus { border-color: rgba(47,104,199,0.45); box-shadow: 0 0 0 4px rgba(47,104,199,0.12); }
.form-field textarea { min-height:132px; resize:vertical; }
.form-help, .form-status { margin-top:16px; font-size:.92rem; color: var(--ink-700); }
.form-status { display:none; padding:12px 14px; border-radius:14px; background: rgba(89,183,47,0.10); color: var(--navy-950); font-weight:600; }
.form-status.is-visible { display:block; }
.form-status.is-error { background: rgba(239,68,68,0.10); color: #991b1b; }
.modal-actions { display:flex; justify-content:flex-end; gap:12px; margin-top:22px; }
.modal-actions .btn { min-width:160px; }
body.modal-open { overflow:hidden; }

#hoe-het-werkt .band-grid {
  margin-top: 4px;
}

#uitdaging .split,
#privacy .split {
  margin-top: 0;
}

@media (max-width: 1040px) {
  .hero-grid, .section-head, .grid-3, .split, .cta-inner, .footer-grid, .band-grid, .form-grid {
    grid-template-columns: 1fr;
  }
  .nav {
    grid-template-columns: auto 1fr auto;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    min-height:auto;
    padding:54px 0 72px;
    gap:28px;
  }
  .hero-copy {
    max-width: 100%;
  }
  .hero-visual { justify-self:stretch; width:100%; justify-content:center; }
  .hero-dashboard-preview { justify-content:center; min-height:auto; }
  .dashboard-shell { width:100%; max-width:620px; }
  .dashboard-floating-card-top { right:12px; top:76px; }
  .dashboard-floating-card-bottom { left:12px; bottom:16px; }
  .cta-inner { align-items:start; }
  .cta-actions { justify-items:start; }
}

@media (max-width: 860px) {
  .nav {
    min-height: 76px;
    grid-template-columns: 1fr;
    justify-items: start;
    padding: 12px 0;
  }
  .brand-logo { height:46px; max-width:200px; }
  .nav-center, .nav-right { width:100%; }
  .nav-center { justify-content:flex-start; }
  .nav-right { justify-content:space-between; gap:12px; flex-wrap:wrap; }
  .nav-links { justify-content:flex-start; gap:20px; }
  .nav-section-links {
    flex-wrap: wrap;
    gap: 16px;
  }
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section { padding:70px 0; }
  .band {
    transform: none;
  }
  h1 { max-width:14ch; }
}

@media (max-width: 640px) {
  .hero {
    background:
      linear-gradient(180deg, rgba(8,26,66,0.9) 0%, rgba(8,26,66,0.76) 50%, rgba(8,26,66,0.68) 100%),
      url('../images/argusmeta-hero-bg.jpg') center 55% / cover no-repeat;
  }
  .hero-points { flex-direction:column; align-items:stretch; }
  .btn { width:100%; }
  .cost-card { flex-direction:column; align-items:flex-start; }
  .dashboard-shell { padding:12px; border-radius:22px; }
  .dashboard-shell-top { padding:4px 4px 12px; }
  .dashboard-floating-card { position:static; max-width:100%; margin-top:12px; }
  .hero-dashboard-glow { width:320px; height:320px; right:50%; transform: translate(50%, -50%); }
  .lang-switch { order:1; }
  .nav-right .btn { width:auto; order:2; flex:1 1 auto; }
  .modal-panel { margin-top:24px; }
  .modal-header, .modal-body { padding-left:20px; padding-right:20px; }
  .modal-actions { flex-direction:column-reverse; }
}
.section-objections-unique {
  background: var(--surface);
}

.objections-head {
  max-width: 900px;
}

.objections-intro {
  max-width: 760px;
  margin: 16px auto 0;
  text-align: center;
}

.objections-panel {
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(12, 44, 103, 0.08);
  box-shadow: 0 12px 28px rgba(8, 26, 66, 0.06);
  overflow: hidden;
  max-width: 960px;
  margin: 0 auto;
}

.objection-row {
  display: grid;
  grid-template-columns: 72px 1fr;
  align-items: stretch;
}

.objection-row + .objection-row {
  border-top: 1px solid rgba(12, 44, 103, 0.08);
}

.objection-row-index {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 24px 18px;
  background: linear-gradient(
    180deg,
    rgba(47, 104, 199, 0.08) 0%,
    rgba(47, 104, 199, 0.02) 100%
  );
}

.objection-row-index::before {
  content: "";
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(89,183,47,0.18), rgba(47,104,199,0.12));
  box-shadow: inset 0 0 0 1px rgba(12,44,103,0.08);
}

.objection-row-body {
  padding: 22px 24px;
}

.objection-row-body h3 {
  margin: 0 0 8px;
  font-size: 1.08rem;
  line-height: 1.3;
  color: var(--navy-950);
}

.objection-row-body p {
  margin: 0;
  color: var(--ink-700);
  line-height: 1.65;
  font-size: 0.98rem;
}

.objections-summary-bar {
  margin-top: 18px;
  padding: 18px 22px;
  border-radius: 18px;
  background: linear-gradient(
    135deg,
    rgba(89, 183, 47, 0.12),
    rgba(47, 104, 199, 0.08)
  );
  border: 1px solid rgba(89, 183, 47, 0.1);
  color: var(--navy-950);
  font-weight: 700;
  line-height: 1.6;
  text-align: center;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 860px) {
  .objection-row {
    grid-template-columns: 56px 1fr;
  }

  .objection-row-index {
    padding: 20px 12px;
  }

  .objection-row-body {
    padding: 18px 18px;
  }
}

@media (max-width: 640px) {
  .objection-row {
    grid-template-columns: 1fr;
  }

  .objection-row-index {
    justify-content: flex-start;
    padding: 14px 18px 0;
    background: transparent;
  }

  .objection-row-body {
    padding: 10px 18px 18px;
  }

  .objections-summary-bar {
    text-align: left;
  }
}

.am-card-icon {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  background: rgba(20, 83, 190, 0.08);
  color: #1453be;
}

.am-card-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.am-card-icon--blue {
  background: rgba(20, 83, 190, 0.08);
  color: #1453be;
}

.am-card-icon--green {
  background: rgba(22, 128, 65, 0.09);
  color: #168041;
}

.am-card-icon--orange {
  background: rgba(242, 91, 36, 0.10);
  color: #f25b24;
}

.am-card-icon--purple {
  background: rgba(91, 61, 173, 0.09);
  color: #5b3dad;
}

/* Mooiere bullets in de 'Voor wie'-kaarten */
#aanpak .card ul {
  list-style: none;
  padding: 0;
  margin: 22px 0 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

#aanpak .card ul li {
  position: relative;
  padding-left: 30px;
  font-size: 16px;
  line-height: 1.5;
  color: #14213d;
}

#aanpak .card ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 2px;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: #1453be;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Kleur per kaart */
#aanpak .grid-3 .card:nth-child(1) ul li::before {
  background: #1453be;
}

#aanpak .grid-3 .card:nth-child(2) ul li::before {
  background: #168041;
}

#aanpak .grid-3 .card:nth-child(3) ul li::before {
  background: #f25b24;
}

/* Demo-popup scrollbaar maken op mobiel */
@media (max-width: 680px) {
  .modal {
    align-items: flex-start;
    justify-content: center;
    padding: 16px 12px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .modal-panel {
    width: 100%;
    max-width: 480px;
    max-height: calc(100dvh - 32px);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border-radius: 22px;
  }

  .modal-body {
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 20px;
  }

  .modal-actions {
    position: sticky;
    bottom: 0;
    background: #fff;
    padding-top: 14px;
  }
}