/* ─── Oplossingen pagina ──────────────────────────────────────────── */

/* Hero */
.opls-hero {
  padding: 72px 0 80px;
  border-bottom: 1px solid var(--line);
}
.opls-hero .eyebrow { margin-bottom: 16px; display: inline-block; }
.opls-hero h1 {
  font-size: clamp(42px, 5.8vw, 76px);
  margin: 14px 0 24px;
  line-height: 1.06;
  font-weight: 700;
  letter-spacing: -.028em;
  max-width: 760px;
}
.opls-hero h1 em { font-style: normal; color: var(--accent-ink); }
.opls-hero-sub {
  font-size: 18px;
  color: var(--ink-2);
  max-width: 600px;
  line-height: 1.6;
  margin: 0 0 32px;
}
.opls-hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }

/* Module mini-nav */
.module-nav {
  position: sticky;
  top: 72px;
  z-index: 40;
  background: rgba(247, 243, 236, .88);
  backdrop-filter: saturate(160%) blur(12px);
  -webkit-backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid var(--line);
  padding: 0;
  opacity: 1;
  pointer-events: auto;
  transition: opacity .25s ease;
}
.module-nav.mnav-hidden {
  opacity: 0;
  pointer-events: none;
}
.module-nav-inner {
  display: flex;
  gap: 4px;
  overflow-x: auto;
  scrollbar-width: none;
  padding: 10px 0;
}
.module-nav-inner::-webkit-scrollbar { display: none; }
.mnav-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-2);
  white-space: nowrap;
  transition: background .15s ease, color .15s ease;
  cursor: pointer;
  text-decoration: none;
}
.mnav-item:hover { background: rgba(28,37,32,.05); color: var(--ink); }
.mnav-item.active { background: var(--accent-tint); color: var(--primary); }
.mnav-num {
  font-family: var(--font-mono);
  font-size: 10.5px;
  opacity: .55;
  letter-spacing: .06em;
}

/* Module detail sections */
.opls-section {
  padding: 96px 0;
  border-bottom: 1px solid var(--line);
}
.opls-section:last-of-type { border-bottom: none; }
@media (max-width: 768px) { .opls-section { padding: 64px 0; } }

.opls-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.opls-grid.reverse { direction: rtl; }
.opls-grid.reverse > * { direction: ltr; }
@media (max-width: 900px) {
  .opls-grid { grid-template-columns: 1fr; gap: 40px; }
  .opls-grid.reverse { direction: ltr; }
}

/* Text column */
.opls-text .eyebrow { margin-bottom: 12px; display: inline-block; }
.opls-text h2 {
  font-size: clamp(30px, 3.8vw, 44px);
  margin: 12px 0 18px;
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: -.022em;
}
.opls-text h2 em { font-style: normal; color: var(--accent-ink); }
.opls-text .lead {
  font-size: 16.5px;
  color: var(--ink-2);
  line-height: 1.6;
  margin: 0 0 28px;
}
.opls-features {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.opls-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--ink);
  line-height: 1.45;
}
.opls-features li::before {
  content: "";
  flex: none;
  width: 18px;
  height: 18px;
  border-radius: 99px;
  background: var(--accent-tint);
  border: 1.5px solid var(--accent);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2 6l3 3 5-5' stroke='%235BAE93' stroke-width='1.6' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: 12px;
  background-repeat: no-repeat;
  background-position: center;
  margin-top: 2px;
}
.opls-text .cta-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* Visual column */
.opls-visual { position: static; }
.opls-stage { position: relative; }
.opls-caption {
  margin: 20px 2px 0;
  font-family: var(--font-mono);
  font-size: 12.5px;
  line-height: 1.7;
  letter-spacing: .005em;
  color: var(--ink-2);
  text-wrap: pretty;
  max-width: 46em;
}
.opls-desktop-frame {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 10px;
  box-shadow: var(--shadow-lg);
}
.opls-desktop-frame img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 10px;
}
.opls-phones {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 16px;
}
.opls-phone {
  background: var(--ink);
  border-radius: 32px;
  padding: 8px;
  box-shadow: var(--shadow-lg);
  flex: none;
}
.opls-phone-screen {
  border-radius: 26px;
  overflow: hidden;
  background: var(--paper);
}
.opls-phone-screen img {
  display: block;
  width: 100%;
  height: auto;
}
.opls-phone.primary { width: 180px; }
.opls-phone.secondary { width: 155px; transform: translateY(20px); opacity: .82; }

/* Accent pill on visual */
.opls-tag {
  position: absolute;
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  border-radius: 12px;
  padding: 10px 14px;
  font-size: 12.5px;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 9px;
  font-weight: 500;
  white-space: nowrap;
  z-index: 2;
}
.opls-tag .dot {
  width: 8px;
  height: 8px;
  border-radius: 99px;
  flex: none;
}
.opls-tag.dot-mint .dot { background: var(--accent); }
.opls-tag.dot-navy .dot { background: var(--primary); }
.opls-tag-tl { top: -16px; left: -16px; }
.opls-tag-br { bottom: -16px; right: -16px; }
@media (max-width: 900px) {
  .opls-tag-tl { top: -8px; left: 8px; }
  .opls-tag-br { bottom: -8px; right: 8px; }
}

/* ─── Vergelijktabel ──────────────────────────────────────────────── */
.vergelijk {
  padding: 96px 0;
  background: var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
@media (max-width: 768px) { .vergelijk { padding: 64px 0; } }
.vergelijk-head { margin-bottom: 48px; }
.vergelijk-head h2 {
  font-size: clamp(30px, 3.8vw, 44px);
  margin: 12px 0 14px;
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: -.022em;
}
.vergelijk-head p { font-size: 16px; color: var(--ink-2); max-width: 540px; }

.vt {
  width: 100%;
  border-collapse: collapse;
  font-size: 14.5px;
}
.vt thead th {
  padding: 12px 16px;
  text-align: left;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ink);
  border-bottom: 2px solid var(--line);
  white-space: nowrap;
}
.vt thead th:first-child { color: var(--ink-3); font-weight: 400; }
.vt thead .th-module {
  text-align: center;
  padding: 12px 20px;
}
.vt thead .th-num {
  display: block;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 400;
  color: var(--ink-3);
  letter-spacing: .08em;
  margin-bottom: 3px;
}
.vt tbody tr { border-bottom: 1px solid var(--line); }
.vt tbody tr:last-child { border-bottom: none; }
.vt tbody tr:hover { background: rgba(28,37,32,.025); }
.vt tbody td {
  padding: 13px 16px;
  color: var(--ink-2);
  line-height: 1.4;
}
.vt tbody td:not(:first-child) { text-align: center; }
.vt tbody td:first-child { color: var(--ink); font-weight: 500; }
.vt .check {
  text-align: center;
  color: var(--accent-ink);
  font-size: 16px;
  font-weight: 700;
}
.vt .dash {
  text-align: center;
  color: var(--ink-3);
  font-size: 18px;
}
.vt .cat-row td {
  padding: 10px 16px 8px;
  font-size: 11px;
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--primary);
  font-weight: 600;
  border-bottom: 1px solid var(--line);
  background: var(--primary-tint);
}
.vt .cat-row:first-child td { border-top: none; }
.vt .cat-row:hover { background: var(--primary-tint); }

@media (max-width: 700px) {
  .vt thead .th-module { padding: 10px 12px; font-size: 11.5px; }
  .vt tbody td { padding: 10px 12px; font-size: 13.5px; }
}

/* ─── Closing CTA (Oplossingen variant) ─────────────────────────── */
.opls-closer {
  text-align: center;
  padding: 100px 0;
}
.opls-closer .eyebrow { justify-content: center; display: inline-flex; margin-bottom: 16px; }
.opls-closer h2 {
  font-size: clamp(36px, 5vw, 60px);
  margin: 0 0 22px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: -.025em;
}
.opls-closer h2 em { font-style: normal; color: var(--accent-ink); }
.opls-closer p {
  font-size: 17px;
  color: var(--ink-2);
  max-width: 480px;
  margin: 0 auto 32px;
  line-height: 1.6;
}
.opls-closer .ctas { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.opls-closer .reassure {
  margin-top: 22px;
  font-size: 13px;
  color: var(--ink-3);
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
}
.opls-closer .reassure>span::before {
  content: "✓";
  color: var(--primary);
  margin-right: 6px;
  font-weight: 600;
}
