/* Hover-states, sticky footer en menu/drawer-gedrag. */

/* Sticky footer: de inhoud vult minimaal de viewport, de footer zakt naar onderen. */
body { min-height: 100vh; display: flex; flex-direction: column; }
.ov-main { flex: 1 0 auto; }
footer { flex-shrink: 0; }

/* Hover-states */
.hov-smoke:hover { background: var(--white-smoke); }
.hov-choc:hover { background: var(--chocolate); color: var(--white); }
.hov-slate:hover { background: var(--slate-500); color: var(--white); }
.hov-lift { transition: transform .2s cubic-bezier(0.22,1,0.36,1); }
.hov-lift:hover { transform: translateY(-4px); }
.hov-cadet:hover { border-color: var(--cadet-blue); }
.hov-dark:hover { background: var(--dark-slate-grey) !important; color: var(--white); }
.hov-orange50:hover { background: var(--orange-50); }
.hov-neutral200:hover { background: var(--neutral-200); }
.hov-alice:hover { background: var(--alice-blue); color: var(--dark-slate-grey); }
.hov-orange300:hover { color: var(--orange-300); }

/* mega-menu (open/dicht via site.js door max-height/opacity) */
.ov-megamenu { overflow: hidden; max-height: 0; opacity: 0; transition: max-height 320ms cubic-bezier(0.22,1,0.36,1), opacity 240ms ease; }

/* mobiele drawer-accordion */
.ov-acc { display: none; }
.ov-acc.acc-open { display: flex; flex-direction: column; }
[data-acc] svg { transition: transform .2s; }
[data-acc].acc-active svg { transform: rotate(180deg); }

/* hero-woord fade */
#hero-word { transition: opacity 300ms ease; display: inline-block; }

/* Techniek: top-scrim achter de zwevende header. Content die omhoog scrollt vervaagt
   in de paginakleur vóór/rond de pill, i.p.v. rommelig langs de randen te blijven staan. */
.ov-topscrim { position: fixed; top: 0; left: 0; right: 0; height: 82px; z-index: 40; pointer-events: none;
  background: linear-gradient(180deg, var(--white-smoke) 0%, var(--white-smoke) 54%, rgba(244,244,246,0) 100%); }

/* Klantverhaal-body: 70/30 op desktop (leesbare tekst + sticky CTA), volle breedte op mobiel */
.kv-body-layout { display: grid; grid-template-columns: minmax(0, 7fr) minmax(0, 3fr); gap: 56px; align-items: start; }
.kv-side { position: sticky; top: 132px; }
@media (max-width: 900px) {
  .kv-body-layout { grid-template-columns: 1fr; gap: 40px; }
  .kv-side { position: static; }
}
/* Subtitel onder de klantverhaal-titel: duidelijk anders dan bodytekst */
.kv-subtitle { font-size: 19px; font-weight: 500; line-height: 1.6; color: var(--slate-600); margin: 0 0 20px; max-width: 46ch; }
.kv-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; }
.kv-meta .kv-date { background: var(--white); border: 1px solid var(--neutral-200); color: var(--slate-600); font-size: 12.5px; font-weight: 700; padding: 6px 14px; border-radius: 999px; }
.kv-meta .kv-tag { background: var(--alice-blue); color: var(--dark-slate-grey); font-size: 12.5px; font-weight: 700; padding: 6px 14px; border-radius: 999px; }

/* ---------- cookiebanner ---------- */
.ov-cookiebar{position:fixed;left:0;right:0;bottom:0;z-index:60;padding:11px clamp(12px,4vw,24px);
  background:var(--dark-slate-grey);color:#fff;box-shadow:0 -6px 22px rgba(30,55,60,.18)}
.ov-cookiebar[hidden]{display:none}
.ov-cookiebar-inner{max-width:980px;margin:0 auto;display:flex;gap:12px 28px;align-items:center;
  justify-content:space-between;flex-wrap:wrap}
.ov-cookiebar-text{flex:1 1 420px;min-width:0}
.ov-cookiebar-text strong{display:block;font-size:13px;font-weight:800;margin-bottom:2px}
.ov-cookiebar-text p{margin:0;font-size:12px;line-height:1.5;color:rgba(255,255,255,.78)}
.ov-cookiebar-text a{color:#fff;text-decoration:underline}
.ov-cookiebar-actions{display:flex;gap:10px;flex-shrink:0;flex-wrap:wrap}
.ov-cookiebtn{font-family:var(--font-display);font-weight:700;font-size:13px;line-height:1;
  padding:9px 16px;border-radius:999px;cursor:pointer;border:1.5px solid transparent;white-space:nowrap}
.ov-cookiebtn.primary{background:var(--orange);color:#fff}
.ov-cookiebtn.primary:hover{filter:brightness(1.06)}
.ov-cookiebtn.ghost{background:transparent;color:#fff;border-color:rgba(255,255,255,.4)}
.ov-cookiebtn.ghost:hover{background:rgba(255,255,255,.1)}
@media(max-width:640px){.ov-cookiebar-actions{width:100%}.ov-cookiebtn{flex:1 1 auto;text-align:center}}

/* ---------- homepage bouwsteen-chips (klikbaar naar expertises) ---------- */
.ov-buildchip{display:inline-block;text-decoration:none;transition:filter .15s ease,transform .15s ease}
.ov-buildchip:hover{filter:brightness(1.35);transform:translateY(-1px);color:var(--white)}

/* ---------- blog: overzichtsgrid + kaarten ---------- */
.ov-blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(100%, 320px), 1fr)); gap: 26px; }
.ov-blogcard { display: flex; flex-direction: column; background: var(--white); border: 1px solid var(--neutral-200); border-radius: 24px 8px 24px 8px; overflow: hidden; transition: transform .15s ease, box-shadow .15s ease; }
.ov-blogcard:hover { transform: translateY(-3px); box-shadow: 0 14px 32px rgba(30,55,60,.10); color: inherit; }
.ov-blogcard-media { display: block; aspect-ratio: 16/9; background: var(--alice-blue); overflow: hidden; }
.ov-blogcard-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ov-blogcard-body { padding: 22px 24px 24px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.ov-blogcard-date { font-size: 12.5px; font-weight: 700; color: var(--text-faint); }
.ov-blogcard h3 { margin: 0; font-size: 18.5px; font-weight: 800; line-height: 1.3; letter-spacing: -.01em; color: var(--dark-slate-grey); }
.ov-blogcard p { margin: 0; color: var(--text-muted); font-size: 14.5px; line-height: 1.6; flex: 1; }
.ov-blogcard-link { display: inline-flex; align-items: center; gap: 4px; color: var(--cadet-blue); font-weight: 700; font-size: 14px; margin-top: 4px; }

/* ---------- Aanpak-pagina: flow-stappen met pijlen + verticale tijdlijn ---------- */
.ov-flow { display: flex; align-items: stretch; gap: 14px; }
.ov-flow > .ov-flow-step { flex: 1 1 0; min-width: 0; }
.ov-flow-arrow { display: flex; align-items: center; color: var(--cadet-blue); flex-shrink: 0; }
@media (max-width: 760px) {
  .ov-flow { flex-direction: column; gap: 8px; }
  .ov-flow-arrow { transform: rotate(90deg); align-self: center; margin: 2px 0; }
}
.ov-timeline-step { position: relative; display: flex; gap: 20px; padding-bottom: 28px; }
.ov-timeline-step:last-child { padding-bottom: 0; }
.ov-timeline-step:not(:last-child)::before { content: ""; position: absolute; left: 19px; top: 46px; bottom: 2px; width: 2px; background: var(--neutral-200); }
.ov-timeline-badge { position: relative; z-index: 1; flex-shrink: 0; width: 40px; height: 40px; border-radius: 12px 4px 12px 4px; background: var(--dark-slate-grey); color: var(--white); display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 15px; }

/* ---------- Aanpak: processtappen als kaartjes op een verbindingslijn (flow) ---------- */
.ov-steps { position: relative; display: flex; flex-direction: column; gap: 16px; }
.ov-step { position: relative; display: flex; gap: 20px; align-items: flex-start; }
.ov-step:not(:last-child)::before { content: ""; position: absolute; left: 20px; top: 48px; bottom: -16px; width: 2px; background: var(--neutral-200); }
.ov-step-num { position: relative; z-index: 1; flex-shrink: 0; width: 42px; height: 42px; border-radius: 13px 5px 13px 5px; background: var(--orange); color: var(--white); display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 15px; box-shadow: 0 4px 12px rgba(238,131,72,.28); }
.ov-step-card { flex: 1; min-width: 0; background: var(--white); border: 1px solid var(--neutral-200); border-radius: 22px 8px 22px 8px; padding: 18px 26px; }
.ov-step-card h3 { margin: 0 0 5px; font-size: 18.5px; font-weight: 800; color: var(--dark-slate-grey); letter-spacing: -.01em; }
.ov-step-card p { margin: 0; color: var(--text-muted); font-size: 15.5px; line-height: 1.6; }

/* ---------- Aanpak: kaartjes naast elkaar met flow-pijlen (rijen) ---------- */
.ov-flow { display: flex; align-items: stretch; gap: 12px; }
.ov-flow-step { flex: 1 1 0; min-width: 0; }
.ov-flow-arrow { display: flex; align-items: center; flex-shrink: 0; color: var(--cadet-blue); }
.ov-flowdown { display: flex; justify-content: center; color: var(--orange); padding: 6px 0; }
.ov-stepbox { background: var(--white); border: 1px solid var(--neutral-200); border-radius: 22px 8px 22px 8px; padding: 24px; height: 100%; box-sizing: border-box; }
.ov-stepbadge { width: 38px; height: 38px; border-radius: 13px 5px 13px 5px; background: var(--orange); color: var(--white); display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 15px; margin-bottom: 14px; box-shadow: 0 4px 12px rgba(238,131,72,.28); }
.ov-stepbox h3 { margin: 0 0 6px; font-size: 17.5px; font-weight: 800; color: var(--dark-slate-grey); letter-spacing: -.01em; }
.ov-stepbox p { margin: 0; color: var(--text-muted); font-size: 14.5px; line-height: 1.6; }
@media (max-width: 760px) {
  .ov-flow { flex-direction: column; gap: 8px; }
  .ov-flow-arrow { align-self: center; transform: rotate(90deg); margin: 0; }
  .ov-flow-step[aria-hidden="true"] { display: none; }
}

/* ---------- Aanpak: stepper met doorlopende band achter de nodes ---------- */
.ov-proc { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px 18px; }
.ov-proc-item { position: relative; text-align: center; }
.ov-proc-item.flow-link::after { content: ""; position: absolute; top: 19px; left: calc(50% + 21px); width: calc(100% - 24px); height: 3px; border-radius: 3px; background: var(--neutral-200); z-index: 0; }
.ov-proc-badge { position: relative; z-index: 1; width: 42px; height: 42px; margin: 0 auto 16px; border-radius: 50%; background: var(--orange); color: var(--white); display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 15px; box-shadow: 0 0 0 6px var(--white-smoke), 0 4px 12px rgba(238,131,72,.3); }
.ov-proc-card { background: var(--white); border: 1px solid var(--neutral-200); border-radius: 20px 6px 20px 6px; padding: 22px 24px; height: 100%; box-sizing: border-box; text-align: left; }
.ov-proc-card h3 { margin: 0 0 6px; font-size: 17.5px; font-weight: 800; color: var(--dark-slate-grey); letter-spacing: -.01em; }
.ov-proc-card p { margin: 0; color: var(--text-muted); font-size: 14.5px; line-height: 1.6; }
.ov-proc-down { display: flex; justify-content: center; padding: 4px 0; }
.ov-proc-down span { display: block; width: 3px; height: 32px; border-radius: 3px; background: linear-gradient(var(--neutral-200), var(--neutral-300, #d8dcde)); }
@media (max-width: 760px) {
  .ov-proc { grid-template-columns: 1fr; gap: 12px; }
  .ov-proc-item { text-align: left; display: flex; gap: 16px; align-items: flex-start; }
  .ov-proc-item.flow-link::after { display: none; }
  .ov-proc-badge { margin: 0; flex-shrink: 0; box-shadow: 0 4px 12px rgba(238,131,72,.3); }
}

/* ---------- Aanpak v2: dikke band ACHTER de kaarten, nummer als leaf IN de kaart ---------- */
.ov-proc { position: relative; display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; align-items: stretch; }
.ov-proc--narrow { grid-template-columns: repeat(2, 1fr); max-width: 66%; margin: 0 auto; }
.ov-proc::before { content: ""; position: absolute; left: 0; right: 0; top: 50%; transform: translateY(-50%); height: 12px; border-radius: 999px; background: var(--alice-blue); z-index: 0; }
.ov-proc-item { position: relative; z-index: 1; text-align: left; display: block; }
.ov-proc-item.flow-link::after { content: none; }
.ov-proc-card { background: var(--white); border: 1px solid var(--neutral-200); border-radius: 22px 8px 22px 8px; padding: 24px; height: 100%; box-sizing: border-box; text-align: left; }
.ov-proc-badge { width: 38px; height: 38px; margin: 0 0 14px; border-radius: 13px 5px 13px 5px; background: var(--orange); color: var(--white); display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 15px; box-shadow: none; }
.ov-proc-down { display: flex; justify-content: center; padding: 0; margin: -3px 0; }
.ov-proc-down span { display: block; width: 12px; height: 34px; border-radius: 999px; background: var(--alice-blue); }
@media (max-width: 760px) {
  .ov-proc, .ov-proc--narrow { grid-template-columns: 1fr; max-width: none; gap: 12px; }
  .ov-proc::before { display: none; }
  .ov-proc-item { display: flex; gap: 16px; align-items: flex-start; }
  .ov-proc-badge { flex-shrink: 0; margin: 4px 0 0; }
}

/* ---------- Aanpak v3: traject als snake (3 boven, 4 recht onder 3, dan 4->5 naar links) ---------- */
.ov-proc--snake { grid-template-columns: repeat(3, 1fr); max-width: none; margin: 0; }
.ov-proc--snake::before { left: calc(33.333% + 3px); right: 0; }
.ov-proc--snake .ov-proc-item:nth-child(1) { grid-column: 3; }  /* stap 4 recht onder stap 3 */
.ov-proc--snake .ov-proc-item:nth-child(2) { grid-column: 2; }  /* stap 5 links ernaast */
.ov-proc-down { display: grid; grid-template-columns: repeat(3, 1fr); margin: -4px 0; padding: 0; }
.ov-proc-down span { grid-column: 3; justify-self: center; width: 12px; height: 34px; border-radius: 999px; background: var(--alice-blue); }
@media (max-width: 760px) {
  .ov-proc--snake .ov-proc-item { grid-column: auto !important; }
  .ov-proc-down { grid-template-columns: 1fr; }
  .ov-proc-down span { grid-column: auto; }
}

/* ---------- Aanpak v4: band als segment TUSSEN opeenvolgende kaarten (kloppend, geen snake) ---------- */
.ov-proc { position: relative; display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; align-items: stretch; max-width: none; margin: 0; }
.ov-proc::before { content: none !important; }                 /* doorlopende volle band uit */
.ov-proc-down { display: none !important; }                    /* losse verticale balk uit */
.ov-proc--snake .ov-proc-item:nth-child(1),
.ov-proc--snake .ov-proc-item:nth-child(2) { grid-column: auto !important; }  /* snake uit */
.ov-proc-item { position: relative; z-index: 0; text-align: left; display: block; }
.ov-proc-item.flow-link::after { content: ""; position: absolute; z-index: 0; top: 50%; transform: translateY(-50%); left: 50%; width: calc(100% + 18px); height: 12px; border-radius: 999px; background: var(--alice-blue); }
.ov-proc-card { position: relative; z-index: 1; }
@media (max-width: 760px) {
  .ov-proc { grid-template-columns: 1fr; gap: 12px; }
  .ov-proc-item.flow-link::after { display: none; }
  .ov-proc-item { display: flex; gap: 16px; align-items: flex-start; }
  .ov-proc-badge { flex-shrink: 0; margin: 4px 0 0; }
}

/* ---------- Aanpak: 'oordeel'-regel per stap (de vraag/rem die een ander overslaat) ---------- */
.ov-proc-judge { margin-top: 14px; padding-top: 12px; border-top: 1px solid var(--neutral-200); font-size: 13.5px; line-height: 1.55; color: var(--slate-600); }
.ov-proc-judge b { display: block; color: var(--orange); font-size: 11px; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; margin-bottom: 4px; }

/* Aanpak: lichtere kaart voor het startpunt (zodat de bouw-ladder het gewicht draagt) */
.ov-proc-card--light { padding: 18px 22px; background: var(--white-smoke); }
.ov-proc-card--light h3 { font-size: 16.5px; }
.ov-proc-card--light p { font-size: 14px; }

/* ---------- Aanpak: één doorlopend traject (verbindingslijn door de fases) ---------- */
.ov-journey { position: relative; }
.ov-journey::before { content: ""; position: absolute; left: 11px; top: 14px; bottom: 14px; width: 3px; border-radius: 3px; background: var(--neutral-200); }
.ov-jphase { position: relative; padding: 0 0 44px 46px; }
.ov-jphase:last-child { padding-bottom: 0; }
.ov-jphase-label { display: flex; align-items: center; gap: 14px; margin: 0 0 22px -46px; font-weight: 800; font-size: 21px; letter-spacing: -.015em; color: var(--dark-slate-grey); }
.ov-jphase-label::before { content: ""; width: 24px; height: 24px; border-radius: 50%; background: var(--orange); box-shadow: 0 0 0 5px var(--white-smoke); flex-shrink: 0; }
@media (max-width: 600px) {
  .ov-jphase { padding-left: 32px; }
  .ov-jphase-label { margin-left: -32px; font-size: 19px; }
  .ov-journey::before { left: 9px; }
  .ov-jphase-label::before { width: 20px; height: 20px; }
}

/* ---------- Aanpak v5: officiële fase-tijdlijn (PDF), minder losse vakjes ---------- */
.ov-jrn { position: relative; padding-left: 66px; }
.ov-jrn::before { content: ""; position: absolute; left: 24px; top: 22px; bottom: 22px; width: 4px; border-radius: 4px; background: linear-gradient(var(--dark-slate-grey), var(--cadet-blue) 55%, var(--orange)); }
.ov-jstep { position: relative; margin-bottom: 18px; }
.ov-jstep:last-child { margin-bottom: 0; }
.ov-jnode { position: absolute; left: -66px; top: 4px; width: 50px; height: 50px; border-radius: 50%; background: var(--white); border: 3px solid var(--cadet-blue); color: var(--cadet-blue); display: flex; align-items: center; justify-content: center; box-shadow: 0 0 0 5px var(--white-smoke); }
.ov-jnode--loop { border-color: var(--orange); color: var(--orange); }
.ov-jcard { background: var(--white); border: 1px solid var(--neutral-200); border-radius: 26px 8px 26px 8px; padding: 26px 30px; box-shadow: 0 10px 28px rgba(30,55,60,.06); }
.ov-jcard-eyebrow { color: var(--orange); font-weight: 700; font-size: 12px; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 6px; }
.ov-jcard h3 { margin: 0 0 14px; font-size: 20px; font-weight: 800; color: var(--dark-slate-grey); letter-spacing: -.015em; }
.ov-jcard ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 9px; }
.ov-jcard li { position: relative; padding-left: 22px; color: var(--text-muted); font-size: 15px; line-height: 1.6; }
.ov-jcard li::before { content: ""; position: absolute; left: 2px; top: 8px; width: 7px; height: 7px; border-radius: 50%; background: var(--orange); }
.ov-jloop { display: flex; align-items: center; flex-wrap: wrap; gap: 8px; margin: 16px 0 2px; }
.ov-jloop .chip { background: var(--alice-blue); color: var(--dark-slate-grey); font-weight: 700; font-size: 12.5px; padding: 6px 13px; border-radius: 999px; }
.ov-jloop .arr { color: var(--cadet-blue); display: flex; align-items: center; }
.ov-jjudge { margin-top: 16px; padding: 13px 16px; background: var(--white-smoke); border-left: 3px solid var(--orange); border-radius: 4px 10px 10px 4px; font-size: 13.5px; line-height: 1.55; color: var(--dark-slate-grey); }
.ov-jjudge b { display: block; color: var(--orange); font-size: 10.5px; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; margin-bottom: 3px; }
@media (max-width: 600px) {
  .ov-jrn { padding-left: 48px; }
  .ov-jnode { left: -48px; width: 40px; height: 40px; }
  .ov-jrn::before { left: 18px; }
  .ov-jcard { padding: 22px 22px; }
}

/* ---- Aanpak: redactionele fasekaarten (vervangt de spine-balk) ---- */
.ov-phases { display:flex; flex-direction:column; gap:18px; }
.ov-phase { display:grid; grid-template-columns:170px 1fr; background:var(--white); border:1px solid var(--neutral-200); border-radius:24px 8px 24px 8px; overflow:hidden; box-shadow:0 10px 28px rgba(30,55,60,.05); }
.ov-phase-side { background:linear-gradient(160deg,var(--white-smoke),#eaeef0); padding:28px 24px; display:flex; flex-direction:column; gap:14px; align-items:flex-start; border-right:1px solid var(--neutral-200); }
.ov-phase-num { width:46px; height:46px; border-radius:15px 5px 15px 5px; background:var(--orange); color:#fff; font-weight:800; font-size:19px; display:flex; align-items:center; justify-content:center; box-shadow:0 8px 18px rgba(238,131,72,.30); }
.ov-phase-name { color:var(--dark-slate-grey); font-weight:800; font-size:15.5px; letter-spacing:-.01em; line-height:1.3; }
.ov-phase-side .tag { color:var(--cadet-blue); font-weight:700; font-size:11px; letter-spacing:.09em; text-transform:uppercase; }
.ov-phase-body { padding:28px 32px; }
.ov-phase-body h3 { margin:0 0 15px; font-size:19px; font-weight:800; color:var(--dark-slate-grey); letter-spacing:-.01em; }
.ov-phase-body ul { list-style:none; margin:0; padding:0; display:flex; flex-direction:column; gap:9px; }
.ov-phase-body li { position:relative; padding-left:22px; color:var(--slate-600); font-size:15px; line-height:1.6; }
.ov-phase-body li::before { content:""; position:absolute; left:2px; top:9px; width:7px; height:7px; border-radius:50%; background:var(--orange); }
.ov-phase-loop { display:flex; align-items:center; flex-wrap:wrap; gap:9px; margin-top:18px; padding:13px 16px; background:var(--alice-blue); border-radius:14px; }
.ov-phase-loop .chip { background:var(--white); border:1px solid rgba(78,129,145,.28); color:var(--dark-slate-grey); font-weight:700; font-size:12.5px; padding:5px 13px; border-radius:999px; }
.ov-phase-loop .arr { display:inline-flex; align-items:center; color:var(--cadet-blue); }
.ov-phase-loop .rep { color:var(--text-faint); font-size:12.5px; font-weight:600; }
.ov-phase-judge { margin-top:18px; padding:13px 17px; background:var(--white-smoke); border-left:3px solid var(--orange); border-radius:4px 12px 12px 4px; font-size:14px; line-height:1.6; color:var(--slate-600); }
.ov-phase-judge b { display:block; color:var(--orange); font-size:11.5px; letter-spacing:.08em; text-transform:uppercase; margin-bottom:3px; }
@media(max-width:640px){
  .ov-phase{ grid-template-columns:1fr; border-radius:20px 8px 20px 8px; }
  .ov-phase-side{ flex-direction:row; align-items:center; gap:14px; padding:16px 20px; border-right:none; border-bottom:1px solid var(--neutral-200); }
  .ov-phase-body{ padding:22px 22px; }
}

/* ===== Aanpak v3: aanloop-flow + gate + sprint-loop + after-rijen ===== */
.ov-caselink{ display:inline-flex; align-items:center; gap:6px; color:var(--cadet-blue); font-weight:700; font-size:14px; }
.ov-caselink:hover{ text-decoration:underline; }

.ov-aanloop{ display:flex; align-items:flex-start; justify-content:center; gap:6px; flex-wrap:wrap; margin-top:12px; }
.ov-fstep{ flex:1 1 200px; text-align:center; padding:8px 8px; }
.ov-fnode{ width:72px; height:72px; margin:0 auto 18px; border-radius:22px 8px 22px 8px; background:linear-gradient(150deg,var(--orange),#e0692c); display:flex; align-items:center; justify-content:center; box-shadow:0 12px 26px rgba(238,131,72,.32); }
.ov-fstep h3{ margin:0 0 8px; font-size:19px; font-weight:800; color:var(--dark-slate-grey); letter-spacing:-.01em; }
.ov-fstep p{ margin:0 auto; max-width:27ch; color:var(--slate-600); font-size:14.5px; line-height:1.6; }
.ov-fconn{ flex:0 0 auto; align-self:flex-start; margin-top:28px; color:var(--cadet-blue); opacity:.55; }
@media(max-width:760px){ .ov-fstep{ flex-basis:100%; } .ov-fconn{ transform:rotate(90deg); margin:4px auto; } }

.ov-gate{ display:flex; align-items:center; justify-content:center; gap:12px; flex-wrap:wrap; margin:38px auto 0; padding:15px 26px; background:var(--white-smoke); border-radius:16px; width:max-content; max-width:100%; box-sizing:border-box; }
.ov-gate span.lbl{ color:var(--slate-600); font-size:15px; font-weight:600; }
.ov-gate strong{ color:var(--dark-slate-grey); font-size:16.5px; font-weight:800; }
.ov-gate .g-ic{ color:var(--orange); display:inline-flex; }

.ov-exec{ display:grid; grid-template-columns:minmax(0,300px) 1fr; gap:48px; align-items:center; margin-top:46px; }
@media(max-width:760px){ .ov-exec{ grid-template-columns:1fr; gap:26px; } }
.ov-loop{ position:relative; width:100%; max-width:300px; aspect-ratio:1/1; margin:0 auto; }
.ov-loop .ring{ position:absolute; inset:0; width:100%; height:100%; }
.ov-lnode{ position:absolute; transform:translate(-50%,-50%); background:var(--white); border:1px solid var(--neutral-200); border-radius:15px 6px 15px 6px; box-shadow:0 8px 22px rgba(30,55,60,.10); padding:11px 6px 9px; width:98px; text-align:center; }
.ov-lnode .ic{ color:var(--orange); display:flex; justify-content:center; margin-bottom:4px; }
.ov-lnode span{ font-size:13.5px; font-weight:800; color:var(--dark-slate-grey); }
.ov-lcenter{ position:absolute; top:50%; left:50%; transform:translate(-50%,-50%); text-align:center; }
.ov-lcenter b{ display:block; font-size:11.5px; letter-spacing:.12em; text-transform:uppercase; color:var(--orange); font-weight:800; }
.ov-lcenter em{ font-style:normal; font-size:12px; color:var(--text-faint); }
.ov-exec-txt h3{ margin:0 0 12px; font-size:22px; font-weight:800; color:var(--dark-slate-grey); letter-spacing:-.015em; }
.ov-exec-txt p{ margin:0 0 16px; color:var(--slate-600); font-size:16px; line-height:1.7; max-width:46ch; }
.ov-exec-txt .judge{ padding:14px 18px; background:var(--white-smoke); border-left:3px solid var(--orange); border-radius:4px 12px 12px 4px; font-size:14.5px; line-height:1.6; color:var(--slate-600); }

.ov-after{ display:flex; flex-direction:column; gap:14px; margin-top:50px; }
.ov-after-item{ display:flex; gap:16px; align-items:flex-start; background:var(--white); border:1px solid var(--neutral-200); border-radius:16px 6px 16px 6px; padding:20px 24px; }
.ov-after-item .ai{ flex:0 0 auto; width:44px; height:44px; border-radius:13px 5px 13px 5px; background:var(--alice-blue); color:var(--cadet-blue); display:flex; align-items:center; justify-content:center; }
.ov-after-item h4{ margin:0 0 3px; font-size:16px; font-weight:800; color:var(--dark-slate-grey); }
.ov-after-item p{ margin:0; color:var(--slate-600); font-size:14.5px; line-height:1.6; }

/* ===== Blog-artikel: hero (header-image + kennismaken ernaast) ===== */
.blog-hero{ display:grid; grid-template-columns:minmax(0,1.7fr) minmax(290px,1fr); gap:24px; align-items:stretch; }
.blog-hero-img{ border-radius:36px 12px 36px 12px; overflow:hidden; min-height:340px; position:relative; }
.blog-hero-img::after{ content:""; position:absolute; inset:0; background:linear-gradient(180deg,rgba(37,69,75,0) 55%,rgba(37,69,75,.28)); }
.blog-hero-img img{ width:100%; height:100%; object-fit:cover; display:block; }
.blog-hero-cta{ display:flex; }
.blog-hero-cta > div{ width:100%; }
@media(max-width:820px){ .blog-hero{ grid-template-columns:1fr; } .blog-hero-img{ min-height:0; aspect-ratio:16/9; } }
.blog-reading{ max-width:768px; margin:0 auto; }
