/* ============================================================
   Oplossingen > Uitzendbureaus
   Bespoke sections layered on top of the shared .mp-* / .ats-*
   scaffold. All body copy is verbatim from the source PDF.
   Accent stays Jobit-blue (inherited from .mp-page).
   ============================================================ */

/* ------------------------------------------------------------
   HERO — "unified workspace" card visual
   ------------------------------------------------------------ */
.opl-hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 420px;
}
.opl-ws {
  width: 100%;
  max-width: 480px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 24px;
  box-shadow: 0 24px 56px rgba(31, 47, 84, 0.16), 0 0 0 1px var(--mp-accent-100);
  overflow: hidden;
}
.opl-ws-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(180deg, #fff 0%, var(--mp-tint) 100%);
}
.opl-ws-mk {
  width: 34px; height: 34px;
  border-radius: 9px;
  background: var(--mp-accent);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.opl-ws-mk img { width: 22px; height: 22px; display: block; }
.opl-ws-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  color: var(--fg-strong);
  line-height: 1.1;
}
.opl-ws-sub {
  font-size: 12px;
  color: var(--fg-muted);
  margin-top: 1px;
}
.opl-ws-live {
  margin-left: auto;
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 600;
  color: var(--success);
}
.opl-ws-live::before {
  content: ""; width: 7px; height: 7px; border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 0 rgba(46, 157, 111, 0.5);
  animation: oplPulse 2.4s ease-out infinite;
}
@keyframes oplPulse {
  0%   { box-shadow: 0 0 0 0 rgba(46, 157, 111, 0.5); }
  70%  { box-shadow: 0 0 0 8px rgba(46, 157, 111, 0); }
  100% { box-shadow: 0 0 0 0 rgba(46, 157, 111, 0); }
}
.opl-ws-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding: 20px;
}
.opl-ws-mod {
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 16px;
  background: white;
  transition: transform var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out), border-color var(--dur-base) var(--ease-out);
}
.opl-hero-visual.is-revealed .opl-ws-mod {
  animation: oplModIn 560ms var(--ease-out) backwards;
}
.opl-hero-visual.is-revealed .opl-ws-mod:nth-child(1) { animation-delay: 120ms; }
.opl-hero-visual.is-revealed .opl-ws-mod:nth-child(2) { animation-delay: 220ms; }
.opl-hero-visual.is-revealed .opl-ws-mod:nth-child(3) { animation-delay: 320ms; }
.opl-hero-visual.is-revealed .opl-ws-mod:nth-child(4) { animation-delay: 420ms; }
@keyframes oplModIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}
.opl-ws-mod:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--mp-accent-200);
}
.opl-ws-mod-icon {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: var(--mp-accent-50);
  color: var(--mp-accent);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 12px;
}
.opl-ws-mod-label {
  font-weight: 700;
  font-size: 14px;
  color: var(--fg-strong);
}
.opl-ws-mod-meta {
  font-size: 12px;
  color: var(--fg-muted);
  margin-top: 2px;
}
.opl-ws-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 20px;
  border-top: 1px solid var(--border);
  background: var(--mp-tint);
}
.opl-ws-foot-l { display: flex; align-items: center; gap: 9px; font-size: 13px; color: var(--fg-muted); }
.opl-ws-foot-l svg { color: var(--mp-accent); }
.opl-ws-foot-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 20px;
  color: var(--mp-accent);
  letter-spacing: -0.02em;
}
.opl-ws-foot-num span { font-size: 12px; font-weight: 600; color: var(--fg-muted); margin-left: 4px; }

/* ------------------------------------------------------------
   HERO VISUAL — variant 2: workflow / recruitmenttraject
   ------------------------------------------------------------ */
.opl-fc {
  width: 100%;
  max-width: 480px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 24px;
  box-shadow: 0 24px 56px rgba(31, 47, 84, 0.16), 0 0 0 1px var(--mp-accent-100);
  overflow: hidden;
}
.opl-fc-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(180deg, #fff 0%, var(--mp-tint) 100%);
}
.opl-fc-steps { padding: 22px 22px 24px; }
.opl-fc-step { display: flex; gap: 16px; }
.opl-fc-rail {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}
.opl-fc-node {
  width: 34px; height: 34px;
  border-radius: 10px;
  background: var(--mp-accent);
  color: white;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 15px;
  box-shadow: 0 6px 14px rgba(67, 100, 173, 0.30);
}
.opl-fc-step.is-done .opl-fc-node { background: var(--success); box-shadow: 0 6px 14px rgba(46, 157, 111, 0.32); }
.opl-fc-line {
  width: 2px;
  flex: 1;
  min-height: 22px;
  margin: 4px 0;
  background: repeating-linear-gradient(180deg, var(--mp-accent-200) 0 5px, transparent 5px 10px);
}
.opl-fc-card {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 12px;
  padding: 13px 15px;
  border: 1px solid var(--border);
  border-radius: 13px;
  background: white;
  transition: transform var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out), border-color var(--dur-base) var(--ease-out);
}
.opl-fc-step.is-done .opl-fc-card { border-color: rgba(46, 157, 111, 0.35); background: var(--success-bg, #EAF6F0); }
.opl-hero-visual.is-revealed .opl-fc-card { animation: oplModIn 520ms var(--ease-out) backwards; }
.opl-hero-visual.is-revealed .opl-fc-step:nth-child(1) .opl-fc-card { animation-delay: 120ms; }
.opl-hero-visual.is-revealed .opl-fc-step:nth-child(2) .opl-fc-card { animation-delay: 220ms; }
.opl-hero-visual.is-revealed .opl-fc-step:nth-child(3) .opl-fc-card { animation-delay: 320ms; }
.opl-hero-visual.is-revealed .opl-fc-step:nth-child(4) .opl-fc-card { animation-delay: 420ms; }
.opl-fc-card:hover { transform: translateX(2px); box-shadow: var(--shadow-md); border-color: var(--mp-accent-200); }
.opl-fc-ico {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: var(--mp-accent-50);
  color: var(--mp-accent);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.opl-fc-step.is-done .opl-fc-ico { background: rgba(46, 157, 111, 0.12); color: var(--success); }
.opl-fc-txt { flex: 1; min-width: 0; }
.opl-fc-label { font-weight: 700; font-size: 14px; color: var(--fg-strong); }
.opl-fc-meta { font-size: 12px; color: var(--fg-muted); margin-top: 1px; }
.opl-fc-check { color: var(--success); flex-shrink: 0; }

/* ------------------------------------------------------------
   HERO VISUAL — variant 3: bereik / vacaturedistributie
   ------------------------------------------------------------ */
.opl-bc {
  width: 100%;
  max-width: 480px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 24px;
  box-shadow: 0 24px 56px rgba(31, 47, 84, 0.16), 0 0 0 1px var(--mp-accent-100);
  overflow: hidden;
  padding: 22px;
}
.opl-bc-vac {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 15px 16px;
  border: 1px solid var(--mp-accent-100);
  border-radius: 14px;
  background: linear-gradient(180deg, #fff 0%, var(--mp-tint) 100%);
}
.opl-bc-vac-mk {
  width: 40px; height: 40px;
  border-radius: 11px;
  background: var(--mp-accent);
  color: white;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.opl-bc-vac-txt { flex: 1; min-width: 0; }
.opl-bc-vac-title { font-weight: 700; font-size: 15px; color: var(--fg-strong); }
.opl-bc-vac-meta { font-size: 12px; color: var(--fg-muted); margin-top: 1px; }
.opl-bc-tag {
  flex-shrink: 0;
  display: inline-flex; align-items: center;
  font-size: 11px; font-weight: 700;
  color: var(--success);
  background: rgba(46, 157, 111, 0.12);
  padding: 5px 10px;
  border-radius: var(--r-pill);
}
.opl-bc-split {
  display: flex; align-items: center; gap: 12px;
  margin: 14px 4px;
  font-size: 12px; font-weight: 600;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.opl-bc-split::before,
.opl-bc-split::after {
  content: ""; height: 1px; flex: 1;
  background: var(--border);
}
.opl-bc-channels { display: flex; flex-direction: column; gap: 9px; }
.opl-bc-ch {
  display: flex; align-items: center; gap: 12px;
  padding: 11px 14px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: white;
  transition: transform var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out), border-color var(--dur-base) var(--ease-out);
}
.opl-hero-visual.is-revealed .opl-bc-ch { animation: oplBcIn 520ms var(--ease-out) backwards; animation-delay: var(--d, 0s); }
@keyframes oplBcIn { from { opacity: 0; transform: translateX(14px); } to { opacity: 1; transform: translateX(0); } }
.opl-bc-ch:hover { transform: translateX(2px); box-shadow: var(--shadow-md); border-color: var(--mp-accent-200); }
.opl-bc-ch-mk {
  width: 30px; height: 30px;
  border-radius: 8px;
  color: white;
  font-size: 11px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.opl-bc-ch-name { flex: 1; font-weight: 600; font-size: 14px; color: var(--fg-strong); }
.opl-bc-ch-ok { color: var(--success); flex-shrink: 0; }
.opl-bc-foot {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  margin-top: 18px; padding-top: 16px;
  border-top: 1px solid var(--border);
}
.opl-bc-foot-l { display: flex; align-items: center; gap: 9px; font-size: 13px; color: var(--fg-muted); }
.opl-bc-foot-l svg { color: var(--mp-accent); }

/* ------------------------------------------------------------
   HERO VISUAL — variant 4: "match" kandidaat × vacature
   ------------------------------------------------------------ */
.opl-mt, .opl-pl, .opl-og {
  width: 100%;
  max-width: 480px;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--r-2xl);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
}
.opl-mt-body { padding: 20px 22px; }
.opl-mt-card {
  display: flex;
  align-items: center;
  gap: 14px;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 14px 16px;
  background: white;
}
.opl-hero-visual.is-revealed .opl-mt-card { animation: oplModIn 520ms var(--ease-out) backwards; }
.opl-hero-visual.is-revealed .opl-mt-cand { animation-delay: 120ms; }
.opl-hero-visual.is-revealed .opl-mt-vac { animation-delay: 320ms; }
.opl-mt-card:hover { box-shadow: var(--shadow-md); border-color: var(--mp-accent-200); }
.opl-mt-avatar {
  width: 46px; height: 46px;
  border-radius: 13px;
  background: linear-gradient(160deg, var(--mp-accent), var(--jobit-blue-600));
  color: white;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 16px;
  flex-shrink: 0;
}
.opl-mt-logo {
  width: 46px; height: 46px;
  border-radius: 13px;
  background: var(--mp-accent-50);
  color: var(--mp-accent);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.opl-mt-card-txt { flex: 1; min-width: 0; }
.opl-mt-name { font-family: var(--font-display); font-weight: 700; font-size: 15px; color: var(--fg-strong); letter-spacing: -0.01em; }
.opl-mt-role { font-size: 12.5px; color: var(--fg-muted); margin-top: 1px; }
.opl-mt-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 9px; }
.opl-mt-tag {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 11px; font-weight: 600;
  color: var(--fg-muted);
  background: var(--bg-subtle);
  border: 1px solid var(--border);
  border-radius: var(--r-pill);
  padding: 3px 9px;
}
.opl-mt-tag svg { width: 12px; height: 12px; }
.opl-mt-tag-blue { color: var(--mp-accent-700); background: var(--mp-accent-50); border-color: var(--mp-accent-100); }
.opl-mt-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 6px 2px;
}
.opl-mt-line { flex: 1; height: 2px; background: repeating-linear-gradient(90deg, var(--mp-accent-200) 0 6px, transparent 6px 12px); }
.opl-mt-score {
  flex-shrink: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--mp-accent);
  color: white;
  box-shadow: var(--shadow-brand);
}
.opl-hero-visual.is-revealed .opl-mt-score { animation: oplScorePop 600ms var(--ease-spring) 0.42s backwards; }
@keyframes oplScorePop { from { opacity: 0; transform: scale(0.5); } to { opacity: 1; transform: scale(1); } }
.opl-mt-score strong { font-family: var(--font-display); font-weight: 800; font-size: 19px; line-height: 1; }
.opl-mt-score small { font-size: 10px; font-weight: 600; opacity: 0.86; margin-top: 1px; }

/* ------------------------------------------------------------
   HERO VISUAL — variant 5: "pipeline" kandidatenpijplijn
   ------------------------------------------------------------ */
.opl-pl-board {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  padding: 20px 18px;
}
.opl-pl-col {
  background: var(--bg-subtle);
  border: 1px solid var(--border);
  border-radius: 13px;
  padding: 12px 10px 13px;
  display: flex;
  flex-direction: column;
  min-height: 132px;
}
.opl-hero-visual.is-revealed .opl-pl-col { animation: oplModIn 520ms var(--ease-out) backwards; animation-delay: var(--d, 0s); }
.opl-pl-col.is-done { background: var(--success-bg, #EAF6F0); border-color: rgba(46, 157, 111, 0.30); }
.opl-pl-col-head { display: flex; align-items: center; gap: 6px; }
.opl-pl-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.opl-pl-col-label { font-size: 11px; font-weight: 700; color: var(--fg-muted); letter-spacing: -0.01em; }
.opl-pl-col-count { font-family: var(--font-display); font-weight: 800; font-size: 26px; color: var(--fg-strong); letter-spacing: -0.02em; margin: 6px 0 10px; line-height: 1; }
.opl-pl-col.is-done .opl-pl-col-count { color: var(--success); }
.opl-pl-col-people { display: flex; flex-direction: column; gap: 6px; margin-top: auto; }
.opl-pl-chip {
  display: flex; align-items: center; gap: 6px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 9px;
  padding: 4px 5px;
}
.opl-pl-chip-av {
  width: 22px; height: 22px;
  border-radius: 7px;
  background: var(--mp-accent-50);
  color: var(--mp-accent-700);
  display: flex; align-items: center; justify-content: center;
  font-size: 9.5px; font-weight: 800;
  flex-shrink: 0;
}
.opl-pl-chip-ok { margin-left: auto; margin-right: 2px; color: var(--success); display: flex; }
.opl-pl-col.is-done .opl-pl-chip-av { background: rgba(46, 157, 111, 0.14); color: var(--success); }

/* ------------------------------------------------------------
   HERO VISUAL — variant 6: "clients" opdrachtgevers
   ------------------------------------------------------------ */
.opl-og-list { display: flex; flex-direction: column; gap: 10px; padding: 20px 22px; }
.opl-og-row {
  display: flex;
  align-items: center;
  gap: 13px;
  border: 1px solid var(--border);
  border-radius: 13px;
  padding: 13px 15px;
  background: white;
  transition: transform var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out), border-color var(--dur-base) var(--ease-out);
}
.opl-hero-visual.is-revealed .opl-og-row { animation: oplBcIn 520ms var(--ease-out) backwards; animation-delay: var(--d, 0s); }
.opl-og-row:hover { transform: translateX(2px); box-shadow: var(--shadow-md); border-color: var(--mp-accent-200); }
.opl-og-mk {
  width: 42px; height: 42px;
  border-radius: 12px;
  background: linear-gradient(160deg, var(--mp-accent), var(--jobit-blue-600));
  color: white;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 14px;
  flex-shrink: 0;
}
.opl-og-txt { flex: 1; min-width: 0; }
.opl-og-name { font-family: var(--font-display); font-weight: 700; font-size: 15px; color: var(--fg-strong); letter-spacing: -0.01em; }
.opl-og-sector { font-size: 12px; color: var(--fg-muted); margin-top: 1px; }
.opl-og-meta { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.opl-og-open {
  font-size: 11.5px; font-weight: 700;
  color: var(--mp-accent-700);
  background: var(--mp-accent-50);
  border: 1px solid var(--mp-accent-100);
  border-radius: var(--r-pill);
  padding: 4px 10px;
}
.opl-og-rec {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--bg-subtle);
  border: 1px solid var(--border);
  color: var(--fg-muted);
  display: flex; align-items: center; justify-content: center;
  font-size: 10.5px; font-weight: 800;
  flex-shrink: 0;
}

/* ------------------------------------------------------------
   HERO VISUAL — opdrachtgever-profiel (company record card)
   Reuses .ats-card + .ats-profile-* header/tabs; adds row styles.
   ------------------------------------------------------------ */
.opl-cp { max-width: 442px; padding: 22px 22px 18px; }
.opl-cp-body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 16px;
  min-height: 214px;
}
.opl-cp-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 13px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: white;
  animation: oplCpRowIn 420ms var(--ease-out) backwards;
  animation-delay: calc(var(--i, 0) * 70ms);
  transition: box-shadow var(--dur-base) var(--ease-out), border-color var(--dur-base) var(--ease-out), transform var(--dur-base) var(--ease-out);
}
@keyframes oplCpRowIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
.opl-cp-row:hover { box-shadow: var(--shadow-sm); border-color: var(--mp-accent-200); transform: translateX(2px); }
.opl-cp-ico {
  width: 38px; height: 38px;
  border-radius: 11px;
  background: var(--mp-accent-50);
  color: var(--mp-accent);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.opl-cp-av {
  width: 38px; height: 38px;
  border-radius: 11px;
  display: flex; align-items: center; justify-content: center;
  color: white;
  font-size: 13px; font-weight: 800;
  flex-shrink: 0;
}
.opl-cp-row-txt { flex: 1; min-width: 0; }
.opl-cp-row-title { font-size: 13.5px; font-weight: 700; color: var(--fg-strong); letter-spacing: -0.01em; }
.opl-cp-row-meta { font-size: 12px; color: var(--fg-muted); margin-top: 1px; }
.opl-cp-pill {
  flex-shrink: 0;
  font-size: 10.5px; font-weight: 800;
  border-radius: var(--r-pill);
  padding: 4px 11px;
}
.opl-cp-pill-ok { color: var(--success); background: var(--success-bg, #EAF6F0); }
.opl-cp-pill-amber { color: #9A6B12; background: rgba(232, 165, 59, 0.16); }
.opl-cp-match {
  flex-shrink: 0;
  font-size: 12px; font-weight: 800;
  color: var(--success);
  background: var(--success-bg, #EAF6F0);
  border-radius: var(--r-pill);
  padding: 4px 11px;
}
.opl-cp-status {
  flex-shrink: 0;
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 700;
  color: var(--fg-muted);
}
.opl-cp-status-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--neutral-400); }
.opl-cp-status-on { color: var(--success); }
.opl-cp-status-on .opl-cp-status-dot { background: var(--success); box-shadow: 0 0 0 3px rgba(46, 157, 111, 0.16); }
.opl-cp-status-soon { color: #9A6B12; }
.opl-cp-status-soon .opl-cp-status-dot { background: var(--warning); }
.opl-cp-foot {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  margin-top: 15px; padding-top: 15px;
  border-top: 1px solid var(--border);
}
.opl-cp-foot-l { display: flex; align-items: center; gap: 8px; font-size: 12.5px; color: var(--fg-muted); font-weight: 600; }
.opl-cp-foot-l svg { color: var(--mp-accent); }
.opl-cp-foot-cta {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 12.5px; font-weight: 700; color: var(--mp-accent);
}

/* ------------------------------------------------------------
   HERO VISUAL — "hub": convergentie naar één dashboard
   ------------------------------------------------------------ */
.opl-hub {
  position: relative;
  width: 100%;
  max-width: 540px;
  min-height: 412px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.opl-hub-glow {
  position: absolute;
  top: 50%; left: 50%;
  width: 320px; height: 320px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(67, 100, 173, 0.20) 0%, rgba(67, 100, 173, 0.07) 42%, transparent 70%);
  z-index: 0;
  pointer-events: none;
}
@media (prefers-reduced-motion: no-preference) {
  .opl-hero-visual.is-revealed .opl-hub-glow { animation: oplHubGlow 3.4s var(--ease-out) infinite; }
}
@keyframes oplHubGlow { 0%, 100% { opacity: 0.65; transform: translate(-50%, -50%) scale(0.94); } 50% { opacity: 1; transform: translate(-50%, -50%) scale(1.04); } }

/* central dashboard */
.opl-hub-core {
  position: relative;
  z-index: 2;
  width: 344px;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--r-2xl);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
}
.opl-hero-visual.is-revealed .opl-hub-core { animation: oplModIn 560ms var(--ease-out) both; }
.opl-hub-core-bar {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 13px 15px;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(180deg, #fff 0%, var(--mp-tint) 100%);
}
.opl-hub-rows { display: flex; flex-direction: column; gap: 7px; padding: 13px; }
.opl-hub-row {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 9px 11px;
  border: 1px solid var(--border);
  border-radius: 11px;
  background: white;
}
@media (prefers-reduced-motion: no-preference) {
  .opl-hero-visual.is-revealed .opl-hub-row {
    animation: oplHubDock 520ms var(--ease-out) both;
    animation-delay: calc(0.8s + var(--i) * 0.26s);
  }
}
@keyframes oplHubDock {
  0% { opacity: 0; transform: translateY(7px) scale(0.96); }
  60% { opacity: 1; }
  100% { opacity: 1; transform: none; }
}
.opl-hub-row-ic {
  width: 32px; height: 32px;
  border-radius: 9px;
  background: var(--mp-accent-50);
  color: var(--mp-accent);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.opl-hub-row-txt { flex: 1; min-width: 0; }
.opl-hub-row-txt b { display: block; font-size: 13px; font-weight: 700; color: var(--fg-strong); letter-spacing: -0.01em; }
.opl-hub-row-txt span { font-size: 11px; color: var(--fg-muted); }
.opl-hub-row-ok {
  width: 19px; height: 19px;
  border-radius: 50%;
  background: var(--success-bg, #EAF6F0);
  color: var(--success);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.opl-hub-row-ok svg { width: 11px; height: 11px; }

/* floating source chips (hidden at rest; animate inward on reveal) */
.opl-hub-chip {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 9px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  padding: 9px 12px 9px 10px;
  opacity: 0;
  pointer-events: none;
}
.opl-hub-chip b { display: block; font-size: 12px; font-weight: 700; color: var(--fg-strong); letter-spacing: -0.01em; white-space: nowrap; }
.opl-hub-chip-txt span { font-size: 10.5px; color: var(--fg-muted); }
.opl-hub-chip-ic {
  width: 32px; height: 32px;
  border-radius: 9px;
  background: var(--mp-accent-50);
  color: var(--mp-accent);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.opl-hub-av {
  width: 32px; height: 32px;
  border-radius: 9px;
  background: linear-gradient(160deg, var(--mp-accent), var(--jobit-blue-600));
  color: white;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 800;
  flex-shrink: 0;
}
.opl-hub-logo {
  width: 32px; height: 32px;
  border-radius: 9px;
  color: white;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 800;
  flex-shrink: 0;
}
.opl-hub-chip-cand { top: 12px; left: -8px; }
.opl-hub-chip-vac  { top: 2px; right: -8px; }
.opl-hub-chip-chan { top: 45%; left: -16px; }
.opl-hub-chip-mail { top: 41%; right: -18px; }
.opl-hub-chip-site {
  bottom: 4px; left: 50%; margin-left: -68px;
  flex-direction: column;
  align-items: stretch;
  gap: 6px;
  width: 136px;
  padding: 9px 10px 10px;
}
.opl-hub-site-bar { display: flex; gap: 4px; }
.opl-hub-site-bar i { width: 6px; height: 6px; border-radius: 50%; background: var(--neutral-300); }
.opl-hub-site-body { display: flex; flex-direction: column; gap: 4px; }
.opl-hub-site-body span { height: 6px; border-radius: 3px; background: var(--mp-accent-100); }
.opl-hub-site-body span:nth-child(1) { width: 80%; }
.opl-hub-site-body span:nth-child(2) { width: 55%; }
.opl-hub-site-body em { height: 14px; width: 44px; border-radius: 5px; background: var(--mp-accent); }
.opl-hub-chip-cap { font-size: 10.5px; font-weight: 700; color: var(--fg-muted); }
@media (prefers-reduced-motion: no-preference) {
  .opl-hero-visual.is-revealed .opl-hub-chip {
    animation: oplHubConverge 2s var(--ease-out) both;
    animation-delay: var(--d, 0s);
  }
}
@keyframes oplHubConverge {
  0%   { opacity: 0; transform: translate(0, 0) scale(0.9); }
  16%  { opacity: 1; transform: translate(0, 0) scale(1); }
  70%  { opacity: 1; }
  100% { opacity: 0; transform: translate(var(--tx, 0), var(--ty, 0)) scale(0.5); }
}

/* ------------------------------------------------------------
   HERO VISUAL — "brand": employer branding / werken-bij site
   die kwalitatieve sollicitaties aantrekt
   ------------------------------------------------------------ */
.opl-eb {
  position: relative;
  width: 100%;
  max-width: 540px;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.opl-eb-glow {
  position: absolute;
  top: 46%; left: 50%;
  width: 340px; height: 340px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(67, 100, 173, 0.20) 0%, rgba(67, 100, 173, 0.06) 44%, transparent 70%);
  z-index: 0;
  pointer-events: none;
}
@media (prefers-reduced-motion: no-preference) {
  .opl-hero-visual.is-revealed .opl-eb-glow { animation: oplHubGlow 3.6s var(--ease-out) infinite; }
}

/* central werken-bij website card */
.opl-eb-site {
  position: relative;
  z-index: 2;
  width: 340px;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--r-2xl);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
}
.opl-hero-visual.is-revealed .opl-eb-site { animation: oplModIn 560ms var(--ease-out) both; }
.opl-eb-site-bar {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 11px 14px;
  border-bottom: 1px solid var(--border);
  background: var(--mp-tint);
}
.opl-eb-dots { display: flex; gap: 5px; }
.opl-eb-dots i { width: 8px; height: 8px; border-radius: 50%; background: var(--neutral-300); }
.opl-eb-url {
  display: inline-flex; align-items: center; gap: 6px;
  flex: 1;
  padding: 5px 10px;
  border-radius: var(--r-pill);
  background: white;
  border: 1px solid var(--border);
  font-size: 11.5px; font-weight: 600;
  color: var(--fg-muted);
}
.opl-eb-url svg { color: var(--mp-accent); flex-shrink: 0; }

/* branded hero band */
.opl-eb-stage {
  position: relative;
  padding: 26px 22px 24px;
  text-align: center;
  color: white;
  background:
    radial-gradient(120% 90% at 50% -20%, var(--jobit-blue-600) 0%, var(--jobit-blue) 58%, var(--jobit-blue-700) 100%);
}
.opl-eb-logo {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 auto 14px;
}
.opl-eb-logo-mark {
  width: 30px; height: 30px;
  border-radius: 9px;
  background: white;
  color: var(--jobit-blue);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 16px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.opl-eb-logo-word {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 16px;
  letter-spacing: -0.01em;
  color: white;
}
.opl-eb-logo-word i {
  font-style: normal;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
}
.opl-eb-kicker {
  font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}
.opl-eb-headline {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 23px;
  letter-spacing: -0.02em;
  margin-top: 7px;
}
.opl-eb-tagline {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.78);
  margin-top: 5px;
}
.opl-eb-cta {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 16px;
  padding: 9px 16px;
  border-radius: var(--r-pill);
  background: white;
  color: var(--mp-accent-700);
  font-size: 12.5px; font-weight: 700;
}
.opl-eb-cta svg { width: 14px; height: 14px; }

/* employer brand signals */
.opl-eb-meta {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  padding: 14px 18px;
}
.opl-eb-metric { display: flex; flex-direction: column; align-items: flex-end; line-height: 1.1; }
.opl-eb-metric b { font-family: var(--font-display); font-size: 22px; font-weight: 800; color: var(--fg-strong); letter-spacing: -0.02em; }
.opl-eb-metric span { font-size: 11px; color: var(--fg-muted); margin-top: 2px; }
.opl-eb-rate { display: flex; flex-direction: column; align-items: flex-end; gap: 3px; }
.opl-eb-stars { display: inline-flex; gap: 2px; color: var(--warning); }
.opl-eb-rate-txt { font-size: 11px; color: var(--fg-muted); }
.opl-eb-rate-txt b { color: var(--fg-strong); font-weight: 800; }

/* floating quality applications */
.opl-eb-app {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px 9px 10px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 13px;
  box-shadow: var(--shadow-lg);
  opacity: 0;
}
.opl-eb-app-1 { top: 40px; right: -22px; }
.opl-eb-app-2 { bottom: 52px; left: -26px; }
.opl-hero-visual.is-revealed .opl-eb-app {
  animation: oplEbAppIn 560ms var(--ease-out) forwards;
  animation-delay: var(--d, 0.7s);
}
@keyframes oplEbAppIn {
  from { opacity: 0; transform: translateY(12px) scale(0.94); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.opl-eb-app-av {
  width: 34px; height: 34px;
  border-radius: 9px;
  background: linear-gradient(160deg, var(--mp-accent), var(--jobit-blue-600));
  color: white;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 800;
  flex-shrink: 0;
}
.opl-eb-app-txt b { display: block; font-size: 12.5px; font-weight: 700; color: var(--fg-strong); letter-spacing: -0.01em; white-space: nowrap; }
.opl-eb-app-txt span { font-size: 10.5px; color: var(--fg-muted); }
.opl-eb-app-q {
  display: inline-flex; align-items: center; gap: 4px;
  margin-left: 4px;
  padding: 4px 9px;
  border-radius: var(--r-pill);
  background: var(--success-bg, #EAF6F0);
  color: var(--success);
  font-size: 10.5px; font-weight: 800;
  white-space: nowrap;
  flex-shrink: 0;
}
.opl-eb-app-q svg { width: 11px; height: 11px; }

/* ------------------------------------------------------------
   HERO VISUAL — "groei": meegroeien met de organisatie
   ------------------------------------------------------------ */
.opl-gr {
  position: relative;
  width: 100%;
  max-width: 540px;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.opl-gr-glow {
  position: absolute;
  top: 50%; left: 50%;
  width: 330px; height: 330px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(67, 100, 173, 0.20) 0%, rgba(67, 100, 173, 0.06) 44%, transparent 70%);
  z-index: 0;
  pointer-events: none;
}
@media (prefers-reduced-motion: no-preference) {
  .opl-hero-visual.is-revealed .opl-gr-glow { animation: oplHubGlow 3.6s var(--ease-out) infinite; }
}
.opl-gr-card {
  position: relative;
  z-index: 2;
  width: 358px;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--r-2xl);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
}
.opl-hero-visual.is-revealed .opl-gr-card { animation: oplModIn 560ms var(--ease-out) both; }
.opl-gr-cardbar {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 13px 16px;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(180deg, #fff 0%, var(--mp-tint) 100%);
}

/* bar chart */
.opl-gr-chart {
  display: flex;
  align-items: flex-end;
  gap: 14px;
  height: 168px;
  padding: 18px 22px 12px;
}
.opl-gr-col {
  flex: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  gap: 8px;
}
.opl-gr-fill {
  width: 100%;
  border-radius: 8px 8px 3px 3px;
  background: var(--mp-accent-100);
  transform-origin: bottom;
}
.opl-gr-fill.is-on { background: linear-gradient(180deg, var(--mp-accent) 0%, var(--jobit-blue-600) 100%); }
.opl-hero-visual.is-revealed .opl-gr-fill {
  animation: oplGrBar 720ms var(--ease-out) backwards;
  animation-delay: var(--d, 0s);
}
@keyframes oplGrBar {
  from { transform: scaleY(0); opacity: 0.5; }
  to   { transform: scaleY(1); opacity: 1; }
}
.opl-gr-q {
  font-size: 11px; font-weight: 700;
  color: var(--fg-muted);
}

/* footer: team groeit mee */
.opl-gr-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 18px;
  border-top: 1px solid var(--border);
  background: var(--mp-tint);
}
.opl-gr-team { display: flex; align-items: center; }
.opl-gr-av {
  width: 30px; height: 30px;
  border-radius: 50%;
  margin-left: -7px;
  border: 2px solid white;
  background: linear-gradient(160deg, var(--mp-accent), var(--jobit-blue-600));
  color: white;
  display: flex; align-items: center; justify-content: center;
  font-size: 10.5px; font-weight: 800;
}
.opl-gr-av:first-child { margin-left: 0; }
.opl-gr-add {
  width: 30px; height: 30px;
  border-radius: 50%;
  margin-left: -7px;
  border: 2px dashed var(--mp-accent-200);
  background: white;
  color: var(--mp-accent);
  display: flex; align-items: center; justify-content: center;
}
.opl-gr-metric {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 12.5px; font-weight: 600;
  color: var(--fg-muted);
}
.opl-gr-metric svg { color: var(--success); }

/* floating "nieuwe medewerker" chip */
.opl-gr-chip {
  position: absolute;
  z-index: 3;
  top: 30px; right: -20px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px 9px 10px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 13px;
  box-shadow: var(--shadow-lg);
  opacity: 0;
}
.opl-hero-visual.is-revealed .opl-gr-chip {
  animation: oplEbAppIn 560ms var(--ease-out) forwards;
  animation-delay: 0.95s;
}
.opl-gr-chip-av {
  width: 34px; height: 34px;
  border-radius: 9px;
  background: linear-gradient(160deg, var(--mp-accent), var(--jobit-blue-600));
  color: white;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 800;
  flex-shrink: 0;
}
.opl-gr-chip-txt b { display: block; font-size: 12.5px; font-weight: 700; color: var(--fg-strong); letter-spacing: -0.01em; white-space: nowrap; }
.opl-gr-chip-txt span { font-size: 10.5px; color: var(--fg-muted); }
.opl-gr-chip-ok {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--success-bg, #EAF6F0);
  color: var(--success);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.opl-gr-chip-ok svg { width: 12px; height: 12px; }

/* ------------------------------------------------------------
   HERO VISUAL — "platform": vacatureplatform / job board
   ------------------------------------------------------------ */
.opl-pf {
  position: relative;
  width: 100%;
  max-width: 540px;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.opl-pf-glow {
  position: absolute;
  top: 50%; left: 50%;
  width: 340px; height: 340px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(67, 100, 173, 0.20) 0%, rgba(67, 100, 173, 0.06) 44%, transparent 70%);
  z-index: 0;
  pointer-events: none;
}
@media (prefers-reduced-motion: no-preference) {
  .opl-hero-visual.is-revealed .opl-pf-glow { animation: oplHubGlow 3.6s var(--ease-out) infinite; }
}
.opl-pf-win {
  position: relative;
  z-index: 2;
  width: 376px;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--r-2xl);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
}
.opl-hero-visual.is-revealed .opl-pf-win { animation: oplModIn 560ms var(--ease-out) both; }
.opl-pf-winbar {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 10px 14px;
  border-bottom: 1px solid var(--border);
  background: var(--mp-tint);
}
.opl-pf-dots { display: flex; gap: 5px; }
.opl-pf-dots i { width: 8px; height: 8px; border-radius: 50%; background: var(--neutral-300); }
.opl-pf-url {
  display: inline-flex; align-items: center; gap: 6px;
  flex: 1;
  padding: 5px 10px;
  border-radius: var(--r-pill);
  background: white;
  border: 1px solid var(--border);
  font-size: 11.5px; font-weight: 600;
  color: var(--fg-muted);
}
.opl-pf-url svg { color: var(--mp-accent); flex-shrink: 0; }

/* platform header */
.opl-pf-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px 10px;
}
.opl-pf-brand {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 16px;
  letter-spacing: -0.01em;
  color: var(--fg-strong);
}
.opl-pf-brand-mk {
  width: 22px; height: 22px;
  border-radius: 7px;
  background: linear-gradient(160deg, var(--mp-accent), var(--jobit-blue-600));
}
.opl-pf-post {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 7px 12px;
  border-radius: var(--r-pill);
  background: var(--mp-accent);
  color: white;
  font-size: 11.5px; font-weight: 700;
}
.opl-pf-search {
  display: flex; align-items: center; gap: 8px;
  margin: 0 16px 12px;
  padding: 9px 13px;
  border-radius: var(--r-pill);
  background: var(--bg-subtle, var(--mp-tint));
  border: 1px solid var(--border);
  font-size: 12px;
  color: var(--fg-subtle);
}
.opl-pf-search svg { color: var(--mp-accent); flex-shrink: 0; }

/* job listing rows */
.opl-pf-list { display: flex; flex-direction: column; gap: 8px; padding: 0 16px 14px; }
.opl-pf-job {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: white;
}
.opl-hero-visual.is-revealed .opl-pf-job {
  animation: oplModIn 480ms var(--ease-out) backwards;
  animation-delay: var(--d, 0.5s);
}
.opl-pf-job-mk {
  width: 36px; height: 36px;
  border-radius: 9px;
  color: white;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 800;
  flex-shrink: 0;
}
.opl-pf-job-txt { flex: 1; min-width: 0; }
.opl-pf-job-title { font-size: 13px; font-weight: 700; color: var(--fg-strong); letter-spacing: -0.01em; }
.opl-pf-job-co { font-size: 11px; color: var(--fg-muted); margin-top: 1px; }
.opl-pf-tag {
  flex-shrink: 0;
  font-size: 10px; font-weight: 800;
  border-radius: var(--r-pill);
  padding: 4px 9px;
}
.opl-pf-tag-feat { color: var(--mp-accent-700); background: var(--mp-accent-50); }
.opl-pf-tag-new  { color: var(--success); background: var(--success-bg, #EAF6F0); }
.opl-pf-tag-paid { color: #9A6B12; background: rgba(232, 165, 59, 0.16); }

/* platform stats footer */
.opl-pf-stats {
  display: flex;
  align-items: center;
  padding: 13px 18px;
  border-top: 1px solid var(--border);
  background: var(--mp-tint);
}
.opl-pf-stat { flex: 1; display: flex; flex-direction: column; line-height: 1.1; }
.opl-pf-stat + .opl-pf-stat { border-left: 1px solid var(--border); padding-left: 16px; }
.opl-pf-stat b { font-family: var(--font-display); font-size: 17px; font-weight: 800; color: var(--fg-strong); letter-spacing: -0.02em; }
.opl-pf-stat span { font-size: 10.5px; color: var(--fg-muted); margin-top: 2px; }

/* floating facturatie chip */
.opl-pf-chip {
  position: absolute;
  z-index: 3;
  bottom: 44px; right: -22px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px 9px 10px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 13px;
  box-shadow: var(--shadow-lg);
  opacity: 0;
}
.opl-hero-visual.is-revealed .opl-pf-chip {
  animation: oplEbAppIn 560ms var(--ease-out) forwards;
  animation-delay: 1s;
}
.opl-pf-chip-ic {
  width: 34px; height: 34px;
  border-radius: 9px;
  background: var(--success-bg, #EAF6F0);
  color: var(--success);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.opl-pf-chip-txt b { display: block; font-size: 12.5px; font-weight: 700; color: var(--fg-strong); letter-spacing: -0.01em; white-space: nowrap; }
.opl-pf-chip-txt span { font-size: 10.5px; color: var(--fg-muted); }
.opl-pf-chip-ok {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--success-bg, #EAF6F0);
  color: var(--success);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.opl-pf-chip-ok svg { width: 12px; height: 12px; }

/* ------------------------------------------------------------
   HERO VISUAL — "whitelabel": software onder jouw eigen merk
   ------------------------------------------------------------ */
.opl-wl {
  position: relative;
  width: 100%;
  max-width: 540px;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.opl-wl-glow {
  position: absolute;
  top: 50%; left: 50%;
  width: 330px; height: 330px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(67, 100, 173, 0.20) 0%, rgba(67, 100, 173, 0.06) 44%, transparent 70%);
  z-index: 0;
  pointer-events: none;
}
@media (prefers-reduced-motion: no-preference) {
  .opl-hero-visual.is-revealed .opl-wl-glow { animation: oplHubGlow 3.6s var(--ease-out) infinite; }
}
.opl-wl-win {
  position: relative;
  z-index: 2;
  width: 350px;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--r-2xl);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
}
.opl-hero-visual.is-revealed .opl-wl-win { animation: oplModIn 560ms var(--ease-out) both; }
.opl-wl-bar {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
  /* agency-branded header: violet stands in for "jouw merk" */
  background: linear-gradient(180deg, #fff 0%, #F3EFFA 100%);
}
.opl-wl-mk {
  width: 34px; height: 34px;
  border-radius: 9px;
  background: linear-gradient(160deg, #7C57B8, #5B3C95);
  color: white;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 15px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.opl-wl-brand { font-family: var(--font-display); font-weight: 800; font-size: 14.5px; color: var(--fg-strong); letter-spacing: -0.01em; }
.opl-wl-sub { font-size: 11.5px; color: var(--fg-muted); margin-top: 1px; }
.opl-wl-pill {
  margin-left: auto;
  padding: 5px 11px;
  border-radius: var(--r-pill);
  background: #6D4AA8;
  color: white;
  font-size: 10.5px; font-weight: 800;
}

.opl-wl-rows { display: flex; flex-direction: column; gap: 8px; padding: 14px; }
.opl-wl-row {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: 11px;
  background: white;
}
.opl-hero-visual.is-revealed .opl-wl-row {
  animation: oplModIn 480ms var(--ease-out) backwards;
  animation-delay: var(--d, 0.5s);
}
.opl-wl-row-ic {
  width: 34px; height: 34px;
  border-radius: 9px;
  background: var(--mp-accent-50);
  color: var(--mp-accent);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.opl-wl-row-txt { flex: 1; min-width: 0; }
.opl-wl-row-txt b { display: block; font-size: 13px; font-weight: 700; color: var(--fg-strong); letter-spacing: -0.01em; }
.opl-wl-row-txt span { font-size: 11px; color: var(--fg-muted); }
.opl-wl-row-ok {
  width: 19px; height: 19px;
  border-radius: 50%;
  background: var(--success-bg, #EAF6F0);
  color: var(--success);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.opl-wl-row-ok svg { width: 11px; height: 11px; }

.opl-wl-foot {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  border-top: 1px solid var(--border);
  background: var(--mp-tint);
}
.opl-wl-foot-mk {
  width: 22px; height: 22px;
  border-radius: 6px;
  background: white;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
}
.opl-wl-foot-mk img { width: 14px; height: 14px; display: block; }
.opl-wl-foot-txt { font-size: 11.5px; font-weight: 600; color: var(--fg-muted); }

/* floating "jouw merk" brand chip */
.opl-wl-chip {
  position: absolute;
  z-index: 3;
  bottom: 40px; right: -20px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 13px 10px 10px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 13px;
  box-shadow: var(--shadow-lg);
  opacity: 0;
}
.opl-hero-visual.is-revealed .opl-wl-chip {
  animation: oplEbAppIn 560ms var(--ease-out) forwards;
  animation-delay: 0.95s;
}
.opl-wl-chip-mk {
  width: 34px; height: 34px;
  border-radius: 9px;
  background: linear-gradient(160deg, #7C57B8, #5B3C95);
  color: white;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 14px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.opl-wl-chip-txt b { display: block; font-size: 12.5px; font-weight: 700; color: var(--fg-strong); letter-spacing: -0.01em; white-space: nowrap; }
.opl-wl-swatches { display: inline-flex; gap: 4px; margin-top: 4px; }
.opl-wl-swatches i { width: 13px; height: 13px; border-radius: 4px; border: 1px solid rgba(31, 47, 84, 0.1); }

/* ------------------------------------------------------------
   GROEI SNELLER — editorial narrative
   ------------------------------------------------------------ */
.opl-grow { background: white; }
.opl-grow-inner {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 64px;
  align-items: start;
}
.opl-grow-statement {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(30px, 3.4vw, 46px);
  line-height: 1.04;
  letter-spacing: -0.025em;
  color: var(--fg-strong);
  text-wrap: balance;
}
.opl-grow-statement em { font-style: normal; color: var(--mp-accent); }
.opl-grow-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}
.opl-grow-chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px;
  border-radius: var(--r-pill);
  background: var(--mp-accent-50);
  color: var(--mp-accent-700);
  font-size: 13px;
  font-weight: 600;
}
.opl-grow-chip svg { color: var(--mp-accent); }
.opl-grow-body p {
  font-size: 18px;
  line-height: 1.66;
  color: var(--fg-muted);
  margin: 0 0 20px;
  max-width: 560px;
}
.opl-grow-body p:last-child { margin-bottom: 0; }
.opl-grow-body p.lead {
  color: var(--fg);
  font-weight: 500;
}
.opl-grow-body .opl-pull {
  margin-top: 28px;
  padding: 22px 24px;
  border-left: 3px solid var(--mp-accent);
  background: var(--mp-tint);
  border-radius: 0 14px 14px 0;
  font-size: 17px;
  line-height: 1.6;
  color: var(--fg);
}
.opl-grow-body .opl-pull strong { color: var(--fg-strong); font-weight: 700; }

/* ------------------------------------------------------------
   HOE JOBIT ONDERSTEUNT — centered intro + supporting copy
   ------------------------------------------------------------ */
.opl-support { background: var(--bg-subtle); }
.opl-support-head { text-align: center; max-width: 760px; margin: 0 auto; }
.opl-support-lead {
  font-size: 18px;
  line-height: 1.55;
  color: var(--fg);
  font-weight: 500;
  max-width: 880px;
  margin: 20px auto 0;
  text-align: center;
  text-wrap: balance;
}
.opl-support-lead em { font-style: normal; color: var(--mp-accent); font-weight: 700; }
.opl-support-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 920px;
  margin: 44px auto 0;
}
.opl-support-col {
  background: white;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 30px;
  font-size: 17px;
  line-height: 1.62;
  color: var(--fg-muted);
}
.opl-support-col strong { color: var(--fg-strong); font-weight: 700; }

/* ------------------------------------------------------------
   WORKFLOW — numbered rail
   ------------------------------------------------------------ */
.opl-flow { background: white; }
.opl-flow-head { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.opl-flow-rail {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.opl-flow-rail::before {
  content: "";
  position: absolute;
  top: 26px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--mp-accent-200) 0 8px, transparent 8px 16px);
  z-index: 0;
}
.opl-flow-step {
  position: relative;
  z-index: 1;
  text-align: left;
}
.opl-flow-num {
  width: 52px; height: 52px;
  border-radius: 15px;
  background: var(--mp-accent);
  color: white;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 20px;
  box-shadow: 0 10px 22px rgba(67, 100, 173, 0.30);
  margin-bottom: 20px;
}
.opl-flow-step-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 19px;
  color: var(--fg-strong);
  letter-spacing: -0.01em;
  margin: 0 0 10px;
}
.opl-flow-step-desc {
  font-size: 15px;
  line-height: 1.58;
  color: var(--fg-muted);
  margin: 0;
}

/* ------------------------------------------------------------
   OPLOSSINGEN — solution cards linking to product pages
   ------------------------------------------------------------ */
.opl-sol { background: var(--bg-subtle); }
.opl-sol-head { text-align: center; max-width: 720px; margin: 0 auto 48px; }
.opl-sol-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.opl-sol-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: white;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 26px 26px 24px;
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  transition: transform var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out), border-color var(--dur-base) var(--ease-out);
}
.opl-sol-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--mp-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur-base) var(--ease-out);
}
.opl-sol-card, .opl-sol-card:hover, .opl-sol-link, .opl-sol-card:hover .opl-sol-link { text-decoration: none; }
.opl-sol-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--mp-accent-200);
}
.opl-sol-card:hover::before { transform: scaleX(1); }
.opl-sol-icon {
  width: 48px; height: 48px;
  border-radius: 13px;
  background: var(--mp-accent-50);
  color: var(--mp-accent);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.opl-sol-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 19px;
  color: var(--fg-strong);
  letter-spacing: -0.01em;
  margin: 0 0 9px;
}
.opl-sol-desc {
  font-size: 15px;
  line-height: 1.58;
  color: var(--fg-muted);
  margin: 0 0 18px;
  flex: 1;
}
.opl-sol-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 14px;
  font-weight: 600;
  color: var(--mp-accent);
}
.opl-sol-link svg { transition: transform var(--dur-base) var(--ease-out); }
.opl-sol-card:hover .opl-sol-link svg { transform: translateX(4px); }

/* ------------------------------------------------------------
   WAAROM KIEZEN — split: narrative + crossed-out "Geen ..."
   ------------------------------------------------------------ */
.opl-why { background: var(--jobit-blue-700); color: white; overflow: hidden; }
.opl-why .container { position: relative; z-index: 2; }
.opl-why-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}
.opl-why-eyebrow {
  display: inline-block;
  background: rgba(255,255,255,0.14);
  color: white;
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 6px 14px;
  border-radius: var(--r-pill);
  margin-bottom: 22px;
}
.opl-why-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: white;
  margin: 0 0 22px;
  text-wrap: balance;
}
.opl-why-body {
  font-size: 17px;
  line-height: 1.66;
  color: rgba(255,255,255,0.82);
  margin: 0 0 18px;
  max-width: 520px;
}
.opl-why-body:last-child { margin-bottom: 0; }
.opl-why-body strong { color: white; font-weight: 700; }
.opl-why-nots {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.opl-why-not {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 14px;
  padding: 18px 22px;
}
.opl-why-not-x {
  width: 34px; height: 34px;
  border-radius: 9px;
  background: rgba(217, 84, 75, 0.18);
  color: #FF9C93;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.opl-why-not-x.is-pos {
  background: rgba(46, 157, 111, 0.18);
  color: #7FE0B0;
}
.opl-why-not-txt {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  color: white;
  letter-spacing: -0.01em;
}
.opl-why-watermark {
  position: absolute;
  right: -80px;
  bottom: -120px;
  width: 460px;
  opacity: 0.06;
  pointer-events: none;
  z-index: 0;
}

/* CTA sits below the dark-blue "Waarom" band — match the divider arrow */
.opl-page .ats-cta[data-divider-from]::after { background: var(--jobit-blue-700); }

/* Workflow sits below the light "Voordelen" band (--jobit-blue-50 on .ats-page) */
.opl-page .opl-flow[data-divider-from]::after { background: var(--jobit-blue-50); }

/* ------------------------------------------------------------
   WORKFLOW — selectable graphic variants (opl-wf-*)
   ------------------------------------------------------------ */
.opl-wf { position: relative; }

/* ---- Variant A: horizontal connected TRACK ---------------- */
.opl-wf-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 1fr;
  gap: 22px;
  padding-top: 6px;
}
.opl-wf-track-line {
  position: absolute;
  top: 44px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--jobit-blue-200) 0 12px, transparent 12px 20px);
  overflow: visible;
  z-index: 0;
}
.opl-wf-track-fill {
  display: none;
  position: absolute; inset: 0;
  width: 100%;
  background: linear-gradient(90deg, var(--mp-accent), var(--jobit-blue-400));
  transform-origin: left center;
  transform: scaleX(0);
  transition: transform 1.1s var(--ease-out) 0.15s;
}
.opl-wf-track.is-revealed .opl-wf-track-fill { transform: scaleX(1); }
.opl-wf-tnode {
  position: relative;
  z-index: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.opl-wf-tbadge {
  position: relative;
  width: 78px; height: 78px;
  border-radius: 22px;
  background: white;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--mp-accent);
  margin-bottom: 20px;
  transition: transform var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out), border-color var(--dur-base) var(--ease-out);
}
.opl-wf-tbadge-ico { display: flex; }
.opl-wf-tbadge-ico svg { width: 28px; height: 28px; }
.opl-wf-tnum {
  display: none;
  position: absolute;
  top: -9px; right: -9px;
  width: 27px; height: 27px;
  border-radius: 50%;
  background: var(--mp-accent);
  color: white;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 13px;
  align-items: center; justify-content: center;
  box-shadow: 0 4px 10px rgba(67, 100, 173, 0.32);
}
.opl-wf-tnode:hover .opl-wf-tbadge {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--mp-accent-200);
}
.opl-wf-tnode.is-done .opl-wf-tbadge {
  background: var(--mp-accent);
  border-color: var(--mp-accent);
  color: white;
  box-shadow: var(--shadow-brand);
}
.opl-wf-tnode.is-done .opl-wf-tnum { background: white; color: var(--mp-accent); }
.opl-wf-ttitle {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  color: var(--fg-strong);
  letter-spacing: -0.01em;
  margin: 0 0 9px;
  text-wrap: balance;
}
.opl-wf-tdesc {
  font-size: 14px;
  line-height: 1.55;
  color: var(--fg-muted);
  margin: 0;
  max-width: 220px;
  text-wrap: pretty;
}

/* ---- Variant B: vertical alternating TIMELINE ------------- */
.opl-wf-timeline {
  max-width: 920px;
  margin: 0 auto;
  padding: 4px 0;
}
.opl-wf-spine {
  position: absolute;
  top: 14px; bottom: 14px;
  left: 50%;
  width: 3px;
  transform: translateX(-50%);
  background: var(--jobit-blue-100);
  border-radius: 3px;
  overflow: hidden;
}
.opl-wf-spine::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, var(--mp-accent), var(--jobit-blue-400));
  transform-origin: top center;
  transform: scaleY(0);
  transition: transform 1.2s var(--ease-out) 0.2s;
}
.opl-wf-timeline.is-revealed .opl-wf-spine::after { transform: scaleY(1); }
.opl-wf-trow {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 64px 1fr;
  align-items: center;
  min-height: 96px;
}
.opl-wf-tlcard {
  grid-column: 1;
  display: flex;
  gap: 15px;
  align-items: flex-start;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
  padding: 18px 20px;
  text-align: left;
  transition: transform var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out), border-color var(--dur-base) var(--ease-out);
}
.opl-wf-trow[data-side="r"] .opl-wf-tlcard { grid-column: 3; }
.opl-wf-tlcard:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--mp-accent-200);
}
.opl-wf-tlico {
  flex-shrink: 0;
  width: 42px; height: 42px;
  border-radius: 12px;
  background: var(--mp-accent-50);
  color: var(--mp-accent);
  display: flex; align-items: center; justify-content: center;
}
.opl-wf-tlico svg { width: 22px; height: 22px; }
.opl-wf-tltitle {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  color: var(--fg-strong);
  letter-spacing: -0.01em;
  margin: 2px 0 7px;
}
.opl-wf-tldesc { font-size: 14px; line-height: 1.55; color: var(--fg-muted); margin: 0; text-wrap: pretty; }
.opl-wf-tldot {
  grid-column: 2;
  justify-self: center;
  position: relative;
  z-index: 2;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: white;
  border: 3px solid var(--mp-accent);
  color: var(--mp-accent);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 16px;
  box-shadow: 0 0 0 6px var(--jobit-blue-50);
}
.opl-wf-trow.is-done .opl-wf-tldot {
  background: var(--mp-accent);
  color: white;
}
.opl-wf-trow.is-done .opl-wf-tlcard { border-color: var(--mp-accent-200); }

/* ---- Variant C: editorial STACK with ghost numbers -------- */
.opl-wf-stack {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}
.opl-wf-srow {
  position: relative;
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 26px;
  padding: 22px 0;
  border-bottom: 1px solid var(--border);
}
.opl-wf-srow:last-child { border-bottom: 0; }
.opl-wf-sindex {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.opl-wf-sindex::after {
  content: "";
  position: absolute;
  top: calc(50% + 34px);
  bottom: -22px;
  left: 50%;
  width: 2px;
  transform: translateX(-50%);
  background: var(--jobit-blue-100);
}
.opl-wf-srow:last-child .opl-wf-sindex::after { display: none; }
.opl-wf-sghost {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 80px;
  line-height: 1;
  color: var(--jobit-blue-50);
  letter-spacing: -0.04em;
  user-select: none;
}
.opl-wf-sico {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 48px; height: 48px;
  border-radius: 14px;
  background: var(--mp-accent);
  color: white;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-brand);
}
.opl-wf-sico svg { width: 24px; height: 24px; }
.opl-wf-srow.is-done .opl-wf-sico { background: var(--success); box-shadow: 0 10px 22px rgba(46, 157, 111, 0.30); }
.opl-wf-sbody { align-self: center; }
.opl-wf-stitle {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  color: var(--fg-strong);
  letter-spacing: -0.01em;
  margin: 0 0 8px;
}
.opl-wf-sdesc { font-size: 15px; line-height: 1.6; color: var(--fg-muted); margin: 0; max-width: 560px; text-wrap: pretty; }

/* ------------------------------------------------------------
   Responsive
   ------------------------------------------------------------ */
@media (max-width: 1024px) {
  .opl-grow-inner { grid-template-columns: 1fr; gap: 36px; }
  .opl-flow-rail { grid-template-columns: repeat(2, 1fr); gap: 32px 24px; }
  .opl-flow-rail::before { display: none; }
  .opl-sol-grid { grid-template-columns: repeat(2, 1fr); }
  .opl-why-inner { grid-template-columns: 1fr; gap: 36px; }
  .opl-support-cols { grid-template-columns: 1fr; gap: 20px; }

  /* Workflow TRACK collapses to a connected vertical step list */
  .opl-wf-track {
    grid-auto-flow: row;
    grid-template-columns: 1fr;
    gap: 22px;
    max-width: 460px;
    margin: 0 auto;
    padding-top: 0;
    position: relative;
  }
  .opl-wf-track-line { display: none; }
  /* dashed spine through the badge centres, peeking through the card gaps */
  .opl-wf-track::before {
    content: "";
    position: absolute;
    left: 48px;
    top: 26px;
    bottom: 26px;
    width: 2px;
    background: repeating-linear-gradient(180deg, var(--jobit-blue-200) 0 7px, transparent 7px 13px);
    z-index: 0;
  }
  .opl-wf-tnode {
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: 16px;
    row-gap: 3px;
    align-items: center;
    text-align: left;
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    box-shadow: var(--shadow-sm);
    padding: 15px 18px;
  }
  .opl-wf-tbadge { grid-row: 1 / span 2; margin-bottom: 0; flex-shrink: 0; width: 58px; height: 58px; border-radius: 16px; }
  .opl-wf-tbadge-ico svg { width: 24px; height: 24px; }
  .opl-wf-ttitle { grid-column: 2; align-self: end; font-size: 16px; margin: 0; text-align: left; }
  .opl-wf-tdesc { grid-column: 2; align-self: start; max-width: none; text-align: left; }
}
@media (max-width: 640px) {
  .opl-ws-grid { grid-template-columns: 1fr 1fr; }
  .opl-flow-rail { grid-template-columns: 1fr; }
  .opl-sol-grid { grid-template-columns: 1fr; }

  /* TRACK → tighter on small phones */
  .opl-wf-track { max-width: 100%; gap: 18px; }
  .opl-wf-track::before { left: 42px; }
  .opl-wf-tnode { column-gap: 14px; padding: 14px 15px; }
  .opl-wf-tbadge { width: 52px; height: 52px; border-radius: 14px; }
  .opl-wf-tbadge-ico svg { width: 22px; height: 22px; }

  /* TIMELINE → single column, dots on the left rail */
  .opl-wf-timeline { max-width: 480px; }
  .opl-wf-spine { left: 22px; }
  .opl-wf-trow { grid-template-columns: 44px 1fr; gap: 16px; align-items: start; min-height: 0; padding-bottom: 8px; }
  .opl-wf-tldot { grid-column: 1; grid-row: 1; justify-self: center; margin-top: 4px; }
  .opl-wf-tlcard,
  .opl-wf-trow[data-side="r"] .opl-wf-tlcard { grid-column: 2; grid-row: 1; }

  /* STACK → tighter columns */
  .opl-wf-srow { grid-template-columns: 72px 1fr; gap: 18px; }
  .opl-wf-sghost { font-size: 60px; }
  .opl-wf-sico { width: 42px; height: 42px; border-radius: 12px; }
  .opl-wf-sico svg { width: 21px; height: 21px; }
  .opl-wf-sindex::after { top: calc(50% + 30px); }
}
