/* ============================================================
   HEROX Mission Control — offerte-cockpit (preview /missie)
   Donkere console in de site-huisstijl: navy + goud, mono-accenten.
   ============================================================ */
:root {
    --bg: #020617; --bg2: #0a1430; --panel: #0a1226; --panel2: #0e1832;
    --line: rgba(148, 163, 184, .16); --line2: rgba(148, 163, 184, .28);
    --text: #e6ecf7; --muted: #94a3b8; --muted2: #cbd5e1;
    --gold: #f0a800; --gold2: #ffc233; --ok: #34d399; --err: #f87171;
    --blue: #7cc4ff; --mono: 'JetBrains Mono', ui-monospace, monospace;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
[hidden] { display: none !important; }
html, body { height: 100%; }
body {
    background: radial-gradient(ellipse 120% 90% at 50% -20%, var(--bg2) 0%, var(--bg) 55%);
    color: var(--text); font-family: Inter, system-ui, sans-serif;
    -webkit-font-smoothing: antialiased; line-height: 1.5; overflow-x: hidden;
}
button { font-family: inherit; color: inherit; }

/* ---------- achtergrond ---------- */
.mc-bg { position: fixed; inset: 0; pointer-events: none; z-index: 0; }
.mc-grid { position: absolute; left: -20%; right: -20%; bottom: -12%; height: 46%;
    background:
        linear-gradient(transparent 0, rgba(2,6,23,.9) 90%),
        repeating-linear-gradient(90deg, rgba(240,168,0,.10) 0 1px, transparent 1px 72px),
        repeating-linear-gradient(0deg, rgba(240,168,0,.09) 0 1px, transparent 1px 46px);
    transform: perspective(520px) rotateX(58deg); transform-origin: 50% 100%; opacity: .55; }
/* ---------- topbar ---------- */
.mc-top { position: sticky; top: 0; z-index: 50; display: flex; align-items: center; gap: 18px;
    padding: 14px 22px; background: rgba(4, 9, 24, .82); backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--line); }
.mc-brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; color: var(--text); }
.mc-brand b { font-weight: 900; letter-spacing: .5px; font-size: 17px; }
.mc-brand i { width: 1px; height: 16px; background: var(--line2); }
.mc-brand span { font-family: var(--mono); font-size: 10.5px; font-weight: 700; letter-spacing: 2.4px;
    text-transform: uppercase; color: var(--gold2); }
.mc-ready { margin-left: auto; display: flex; align-items: center; gap: 10px; }
.mc-ready .lbl { font-family: var(--mono); font-size: 9.5px; letter-spacing: 1.8px; text-transform: uppercase; color: var(--muted); }
.mc-ready .segs { display: inline-flex; gap: 4px; }
.mc-ready .segs i { width: 26px; height: 6px; border-radius: 2px; background: rgba(148,163,184,.18); transition: background .35s, box-shadow .35s; }
.mc-ready .segs i.on { background: var(--gold); box-shadow: 0 0 10px rgba(240,168,0,.55); }
.mc-ready b { font-family: var(--mono); font-size: 12px; color: var(--gold2); min-width: 38px; text-align: right; }
.mc-exit { color: var(--muted); text-decoration: none; font-size: 12.5px; font-weight: 600; padding: 7px 13px;
    border: 1px solid var(--line); border-radius: 99px; }
.mc-exit:hover { color: var(--text); border-color: var(--line2); }

/* ---------- layout ---------- */
.mc-main { position: relative; z-index: 1; display: grid; grid-template-columns: 292px minmax(0, 1fr) 288px;
    gap: 20px; max-width: 1360px; margin: 0 auto; padding: 26px 22px 90px; align-items: start; }

/* ---------- linker rail ---------- */
.mc-rail { position: sticky; top: 76px; display: flex; flex-direction: column; gap: 14px; min-width: 0; }
.mc-patch { display: flex; align-items: center; gap: 12px; padding: 13px 15px; border: 1px solid var(--line);
    border-radius: 12px; background: linear-gradient(160deg, var(--panel2), var(--panel)); color: var(--gold2); }
.mc-patch svg { width: 38px; height: 38px; }
.mc-patch small { display: block; font-family: var(--mono); font-size: 9px; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); }
.mc-patch b { font-family: var(--mono); font-size: 15px; letter-spacing: 1px; color: var(--text); }
.mc-checks { list-style: none; display: flex; flex-direction: column; gap: 6px; }
.mc-checks button { width: 100%; display: flex; align-items: center; gap: 11px; text-align: left; padding: 11px 13px;
    background: rgba(10, 18, 38, .6); border: 1px solid var(--line); border-radius: 11px; cursor: pointer;
    transition: border-color .2s, background .2s; }
.mc-checks button:hover { border-color: var(--line2); }
.mc-checks li.on button { border-color: rgba(240,168,0,.55); background: rgba(240,168,0,.07); }
.mc-checks .led { width: 9px; height: 9px; border-radius: 99px; background: rgba(148,163,184,.35); flex-shrink: 0; transition: background .3s, box-shadow .3s; }
.mc-checks li.on .led { background: var(--gold); box-shadow: 0 0 9px rgba(240,168,0,.8); animation: mcPulse 1.6s ease-in-out infinite; }
.mc-checks li.done .led { background: var(--ok); box-shadow: 0 0 7px rgba(52,211,153,.6); animation: none; }
@keyframes mcPulse { 50% { opacity: .45; } }
.mc-checks .nr { font-family: var(--mono); font-size: 10px; color: var(--muted); width: 20px; }
.mc-checks .nm { font-size: 13px; font-weight: 750; letter-spacing: .3px; flex: 1; }
.mc-checks .st { font-family: var(--mono); font-size: 9px; letter-spacing: 1px; color: var(--muted); text-transform: uppercase; }
.mc-checks li.done .st { color: var(--ok); }
.mc-log { border: 1px solid var(--line); border-radius: 12px; background: rgba(6, 11, 26, .72); overflow: hidden; }
.mc-log .hd { display: flex; align-items: center; gap: 8px; padding: 9px 13px; border-bottom: 1px solid var(--line);
    font-family: var(--mono); font-size: 9.5px; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); }
.mc-log .hd i { width: 7px; height: 7px; border-radius: 99px; background: var(--ok); animation: mcPulse 2.2s infinite; }
.mc-log ul { list-style: none; padding: 9px 13px 11px; display: flex; flex-direction: column; gap: 5px; min-height: 88px; }
.mc-log li { font-family: var(--mono); font-size: 10px; line-height: 1.5; color: var(--muted2); animation: mcLogIn .3s ease; }
.mc-log li b { color: var(--gold2); font-weight: 700; }
.mc-log li.err { color: var(--err); }
.mc-log li:nth-child(n+7) { opacity: .45; }
@keyframes mcLogIn { from { opacity: 0; transform: translateY(-3px); } }

/* ---------- podium / modules ---------- */
.mc-stage { min-height: 480px; min-width: 0; }
.mc-mod { border: 1px solid var(--line); border-radius: 16px; background: linear-gradient(165deg, rgba(14,24,50,.92), rgba(8,14,32,.94));
    padding: 26px 28px 24px; animation: mcModIn .38s cubic-bezier(.22,.61,.36,1); box-shadow: 0 30px 80px rgba(0,0,0,.4); }
@keyframes mcModIn { from { opacity: 0; transform: translateY(10px); } }
.mc-mod .eyebrow { display: flex; align-items: center; gap: 9px; font-family: var(--mono); font-size: 10px;
    letter-spacing: 2.6px; text-transform: uppercase; color: var(--gold2); margin-bottom: 8px; }
.mc-mod .eyebrow::before { content: ""; width: 18px; height: 2px; background: var(--gold); }
.mc-mod h1 { font-size: clamp(21px, 2.6vw, 27px); font-weight: 850; letter-spacing: -.4px; margin-bottom: 4px; }
.mc-mod .sub { font-size: 13.5px; color: var(--muted); margin-bottom: 20px; }

/* cargo-kaarten */
.mc-cargo { display: grid; grid-template-columns: repeat(auto-fill, minmax(210px, 1fr)); gap: 12px; }
.mc-ccard { position: relative; border: 1px solid var(--line); border-radius: 13px; background: rgba(2,6,23,.5);
    padding: 12px; transition: border-color .25s, box-shadow .25s, transform .2s; }
.mc-ccard.sel { border-color: rgba(240,168,0,.65); box-shadow: 0 0 0 1px rgba(240,168,0,.35), 0 14px 40px rgba(0,0,0,.35); }
.mc-ccard img { width: 100%; height: 92px; object-fit: contain; filter: drop-shadow(0 10px 18px rgba(0,0,0,.5)); }
.mc-ccard .nm { font-size: 12.5px; font-weight: 800; letter-spacing: .6px; text-transform: uppercase; margin: 8px 0 1px; }
.mc-ccard .pr { font-family: var(--mono); font-size: 11.5px; color: var(--muted2); }
.mc-ccard .pr b { color: var(--gold2); }
.mc-ccard .led { position: absolute; top: 10px; right: 10px; width: 8px; height: 8px; border-radius: 99px; background: rgba(148,163,184,.3); }
.mc-ccard.sel .led { background: var(--gold); box-shadow: 0 0 8px rgba(240,168,0,.8); }
.mc-qty { display: flex; align-items: center; gap: 8px; margin-top: 10px; }
.mc-qty button { width: 34px; height: 34px; border-radius: 9px; border: 1px solid var(--line2); background: rgba(148,163,184,.08);
    font-size: 17px; font-weight: 800; cursor: pointer; transition: border-color .15s, background .15s; }
.mc-qty button:hover { border-color: var(--gold); background: rgba(240,168,0,.12); }
.mc-qty output { flex: 1; text-align: center; font-family: var(--mono); font-size: 16px; font-weight: 700; }

/* spec-regels */
.mc-line { border: 1px solid var(--line); border-radius: 13px; padding: 15px 16px; margin-bottom: 12px; background: rgba(2,6,23,.45); }
.mc-line .hd { display: flex; align-items: baseline; gap: 10px; margin-bottom: 11px; }
.mc-line .hd b { font-size: 14px; font-weight: 800; letter-spacing: .4px; text-transform: uppercase; }
.mc-line .hd span { font-family: var(--mono); font-size: 11px; color: var(--muted); }
.mc-line .hd .lp { margin-left: auto; font-family: var(--mono); font-size: 12.5px; color: var(--gold2); font-weight: 700; }
.mc-grades { display: flex; gap: 5px; background: rgba(148,163,184,.06); border: 1px solid var(--line); border-radius: 10px; padding: 4px; margin-bottom: 10px; }
.mc-grades button { position: relative; flex: 1; padding: 9px 4px 7px; border: 0; border-radius: 7px; background: transparent;
    cursor: pointer; transition: background .18s; }
.mc-grades button .g { display: block; font-size: 12px; font-weight: 800; }
.mc-grades button .d { display: block; font-family: var(--mono); font-size: 9.5px; color: var(--muted); margin-top: 1px; }
.mc-grades button.on { background: rgba(240,168,0,.16); }
.mc-grades button.on .g { color: var(--gold2); }
.mc-grades .rec { position: absolute; top: -9px; left: 50%; transform: translateX(-50%); font-size: 8px; font-weight: 800;
    letter-spacing: .6px; text-transform: uppercase; background: linear-gradient(160deg, var(--gold2), var(--gold));
    color: #231800; padding: 2px 7px; border-radius: 99px; white-space: nowrap; }
.mc-mods { display: flex; flex-wrap: wrap; gap: 7px; }
.mc-mods button { display: inline-flex; align-items: center; gap: 7px; padding: 7px 12px; border-radius: 99px;
    border: 1px solid var(--line2); background: transparent; font-size: 12px; font-weight: 650; cursor: pointer;
    color: var(--muted2); transition: all .18s; }
.mc-mods button em { font-style: normal; font-family: var(--mono); font-size: 10.5px; color: var(--muted); }
.mc-mods button.on { border-color: var(--gold); color: var(--text); background: rgba(240,168,0,.12); }
.mc-mods button.on em { color: var(--gold2); }

/* drop zone */
.mc-form { display: grid; gap: 14px; }
.mc-form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.mc-field label { display: block; font-family: var(--mono); font-size: 9.5px; letter-spacing: 1.6px; text-transform: uppercase;
    color: var(--muted); margin-bottom: 6px; }
.mc-field input, .mc-field textarea { width: 100%; padding: 12px 14px; border-radius: 10px; border: 1px solid var(--line2);
    background: rgba(2,6,23,.6); color: var(--text); font-size: 15px; font-family: inherit; outline: none; transition: border-color .2s, box-shadow .2s; }
.mc-field input:focus, .mc-field textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(240,168,0,.14); }
.mc-field input::placeholder, .mc-field textarea::placeholder { color: rgba(148,163,184,.5); }
#mc-postcode.pc-ok { border-color: #2ecc71; }
#mc-postcode.pc-none { border-color: #f0a800; }
.mc-est { display: flex; align-items: center; gap: 10px; min-height: 40px; padding: 9px 13px; border-radius: 10px;
    border: 1px dashed var(--line2); font-family: var(--mono); font-size: 11.5px; color: var(--muted2); }
.mc-est.on { border-style: solid; border-color: rgba(52,211,153,.5); color: var(--text); }
.mc-est .radar { width: 15px; height: 15px; border: 1.6px solid var(--blue); border-radius: 99px; position: relative; flex-shrink: 0; }
.mc-est .radar::after { content: ""; position: absolute; inset: 1px; border-radius: 99px;
    background: conic-gradient(from 0deg, rgba(124,196,255,.9), transparent 90deg); animation: mcSpin 1.1s linear infinite; }
@keyframes mcSpin { to { transform: rotate(360deg); } }
.mc-toggle { display: flex; align-items: center; gap: 12px; cursor: pointer; user-select: none; }
.mc-toggle .sw { width: 46px; height: 26px; border-radius: 99px; background: rgba(148,163,184,.22); position: relative; transition: background .2s; flex-shrink: 0; }
.mc-toggle .sw::after { content: ""; position: absolute; top: 3px; left: 3px; width: 20px; height: 20px; border-radius: 99px;
    background: #fff; transition: transform .2s; }
.mc-toggle.on .sw { background: var(--gold); }
.mc-toggle.on .sw::after { transform: translateX(20px); }
.mc-toggle span { font-size: 13.5px; font-weight: 600; color: var(--muted2); }

/* samenvatting + launch */
.mc-sum { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 22px; }
.mc-sum .chip { font-family: var(--mono); font-size: 11px; padding: 7px 12px; border-radius: 99px;
    border: 1px solid var(--line2); color: var(--muted2); }
.mc-sum .chip b { color: var(--text); }
.mc-launchzone { display: flex; flex-direction: column; align-items: center; gap: 14px; padding: 12px 0 6px; }
/* transportprijs in de leverstap: het bedrag is waar het om draait */
.mc-est.on { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 15px 18px;
    border: 1px solid rgba(240,168,0,.28); border-radius: 12px; background: rgba(240,168,0,.05); }
.mc-est.on.wacht { border-color: rgba(255,255,255,.1); background: rgba(255,255,255,.025); }
.mc-est .tx { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.mc-est .tx .k { font-size: 14.5px; font-weight: 700; color: var(--text); }
.mc-est .tx .s { font-family: var(--mono); font-size: 11px; color: var(--muted); }
.mc-est .pr { flex: 0 0 auto; font-size: 22px; font-weight: 800; color: var(--gold2, #f0a800); font-variant-numeric: tabular-nums; }
.mc-hold { position: relative; width: 168px; height: 168px; border-radius: 999px; border: 0; cursor: pointer;
    background: radial-gradient(circle at 50% 42%, #182647, #0a1226 70%); touch-action: none;
    box-shadow: 0 24px 60px rgba(0,0,0,.55), inset 0 1px 0 rgba(255,255,255,.07); }
.mc-hold::before { content: ""; position: absolute; inset: -7px; border-radius: 999px;
    background: conic-gradient(var(--gold) calc(var(--p, 0) * 1%), rgba(148,163,184,.16) 0); z-index: -1; transition: none; }
.mc-hold .in { display: flex; flex-direction: column; gap: 4px; align-items: center; }
.mc-hold .in svg { width: 30px; height: 30px; color: var(--gold2); }
.mc-hold .in b { font-size: 14px; font-weight: 900; letter-spacing: 1.5px; }
.mc-hold .in small { font-family: var(--mono); font-size: 8.5px; letter-spacing: 1.6px; text-transform: uppercase; color: var(--muted); }
.mc-hold:disabled { opacity: .45; cursor: not-allowed; }
.mc-send { display: inline-flex; align-items: center; gap: 10px; padding: 13px 22px; border: 0; border-radius: 12px;
    cursor: pointer; font: inherit; font-size: 14.5px; font-weight: 800; color: #0a1428;
    background: linear-gradient(180deg, var(--gold2, #f0a800), var(--gold, #d99400));
    box-shadow: 0 6px 18px rgba(240,168,0,.2); transition: transform .12s ease, box-shadow .2s ease, opacity .2s ease; }
.mc-send svg { width: 19px; height: 19px; }
.mc-send .ic-vink { display: none; }
.mc-send.klaar .ic-vlieg { display: none; }
.mc-send.klaar .ic-vink { display: block; }
.mc-send.klaar { animation: mcVraagKlik 1.9s ease-in-out infinite; }
.mc-send:hover { transform: translateY(-1px); box-shadow: 0 10px 24px rgba(240,168,0,.3); }
.mc-send:active { transform: translateY(0); }
.mc-send:disabled { opacity: .38; cursor: not-allowed; transform: none; box-shadow: none; animation: none;
    background: rgba(255,255,255,.13); color: var(--muted); }
@keyframes mcVraagKlik {
    0%, 100% { box-shadow: 0 6px 18px rgba(240,168,0,.2); }
    50% { box-shadow: 0 6px 26px rgba(240,168,0,.55); }
}
@media (prefers-reduced-motion: reduce) { .mc-send.klaar { animation: none; } }
@media (max-width: 560px) {
    /* op een telefoon pakt de hoofdknop de volle breedte, de terugknop blijft compact */
    .mc-nav { flex-wrap: wrap; gap: 10px; }
    .mc-nav .hint { display: none; }
    .mc-nav .mc-btn.ghost { flex: 0 0 auto; }
    .mc-nav .mc-btn:not(.ghost), .mc-nav .mc-send { flex: 1 1 auto; justify-content: center; }
}
/* laatste stap past zonder scrollen: prijsbalk weg en alles een maatje krapper */
.mc-mod.mc-krap h1 { font-size: clamp(21px, 4.4vw, 30px); margin-bottom: 6px; }
.mc-mod.mc-krap .sub { margin-bottom: 14px; }
.mc-mod.mc-krap .mc-field { margin-bottom: 10px; }
.mc-mod.mc-krap .mc-field label { margin-bottom: 4px; }
.mc-mod.mc-krap .mc-field input,
.mc-mod.mc-krap .mc-field textarea { padding: 11px 13px; }
.mc-mod.mc-krap .mc-field textarea { min-height: 62px; }
.mc-mod.mc-krap .mc-nav { margin-top: 14px; }
@media (max-width: 720px) {
    .mc-mod.mc-krap .sub { display: none; }
    .mc-mod.mc-krap .mc-nav .hint { display: none; }
    .mc-mod.mc-krap .mc-field textarea { min-height: 52px; }
    body.mc-laatste .mc-rail { display: none; }
    body.mc-laatste .mc-side { display: none; }
    body.mc-laatste .mc-main { padding-bottom: 0; }
}
.mc-prijs { margin: 4px 0 20px; padding: 16px 18px; border: 1px solid rgba(255,255,255,.09); border-radius: 12px;
    background: rgba(255,255,255,.025); }
.mc-prijs .r { display: flex; justify-content: space-between; align-items: baseline; gap: 16px; padding: 5px 0; font-size: 14px; }
.mc-prijs .r span { color: var(--muted); }
.mc-prijs .r b { font-variant-numeric: tabular-nums; }
.mc-prijs .r b.soft { color: var(--muted); font-weight: 500; font-size: 13px; }
.mc-prijs .r.tot { margin-top: 6px; padding-top: 11px; border-top: 1px solid rgba(255,255,255,.09); font-size: 16px; }
.mc-prijs .r.tot b { font-weight: 800; }
.mc-prijs p { margin: 10px 0 0; font-size: 11.5px; color: var(--muted); }
.mc-hold.arm { animation: mcArm .5s ease infinite alternate; }
@keyframes mcArm { to { transform: scale(1.015); } }
.mc-launcherr { font-size: 12.5px; color: var(--err); min-height: 18px; font-family: var(--mono); }

/* module-navigatie */
.mc-nav { display: flex; align-items: center; gap: 12px; margin-top: 22px; }
.mc-btn { display: inline-flex; align-items: center; gap: 9px; padding: 13px 24px; border-radius: 11px; border: 0;
    background: linear-gradient(160deg, var(--gold2), var(--gold)); color: #231800; font-size: 14px; font-weight: 850;
    letter-spacing: .3px; cursor: pointer; text-decoration: none; transition: filter .2s, transform .15s; }
.mc-btn:hover { filter: brightness(1.07); transform: translateY(-1px); }
.mc-btn.ghost { background: transparent; border: 1px solid var(--line2); color: var(--muted2); font-weight: 700; }
.mc-btn.ghost:hover { color: var(--text); border-color: var(--gold); }
.mc-nav .hint { margin-left: auto; font-family: var(--mono); font-size: 10.5px; color: var(--muted); }

/* ---------- telemetrie rechts ---------- */
.mc-tele { position: sticky; top: 76px; display: flex; flex-direction: column; gap: 12px; }
.mc-tl { border: 1px solid var(--line); border-radius: 13px; padding: 14px 16px; background: rgba(8, 14, 32, .7); }
.mc-tl .k { display: block; font-family: var(--mono); font-size: 9.5px; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); margin-bottom: 7px; }
.mc-tl .v { font-size: 13px; color: var(--muted2); line-height: 1.7; }
.mc-tl .v.mono { font-family: var(--mono); font-size: 11.5px; }
.mc-price b { display: block; font-size: 31px; font-weight: 900; letter-spacing: -.5px; font-variant-numeric: tabular-nums; }
.mc-price small { display: block; margin-top: 3px; font-size: 11px; color: var(--muted); }
.mc-price.bump b { animation: mcBump .4s ease; }
@keyframes mcBump { 30% { transform: scale(1.05); color: var(--gold2); } }
.mc-trust { display: flex; flex-direction: column; gap: 6px; }
.mc-trust span { font-size: 11.5px; color: var(--muted); }
.mc-trust span::before { content: "✓ "; color: var(--ok); font-weight: 800; }
.mc-trust span:first-child::before { content: ""; }

/* ---------- mobiele balk ---------- */
.mc-mobilebar { display: none; }

/* ---------- launch overlay ---------- */
.mc-overlay { position: fixed; inset: 0; z-index: 90; background: rgba(2, 4, 14, .94); backdrop-filter: blur(10px);
    display: flex; align-items: center; justify-content: center; }
.mc-sending { display: flex; flex-direction: column; align-items: center; gap: 16px; }
.mc-sending .ring { width: 52px; height: 52px; border-radius: 999px; border: 3px solid rgba(240,168,0,.2); border-top-color: var(--gold); animation: mcSpin .9s linear infinite; }
.mc-sending small { font-family: var(--mono); font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--muted2); }
.mc-success { text-align: center; max-width: 420px; padding: 30px; animation: mcModIn .5s ease; }
.mc-success .ok-ring { width: 74px; height: 74px; margin: 0 auto 18px; border-radius: 999px; color: var(--ok);
    border: 2px solid rgba(52,211,153,.55); display: flex; align-items: center; justify-content: center;
    box-shadow: 0 0 40px rgba(52,211,153,.25); }
.mc-success .ok-ring svg { width: 34px; height: 34px; }
.mc-success small { font-family: var(--mono); font-size: 10px; letter-spacing: 2.6px; text-transform: uppercase; color: var(--ok); }
.mc-success b { display: block; font-family: var(--mono); font-size: 30px; margin: 8px 0 12px; letter-spacing: 1px; }
.mc-success p { font-size: 14px; color: var(--muted2); margin-bottom: 22px; }

/* ---------- responsive ---------- */
@media (max-width: 1120px) {
    .mc-main { grid-template-columns: 250px minmax(0, 1fr); }
    .mc-tele { display: none; }
    .mc-mobilebar { display: flex; position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
        align-items: center; justify-content: space-between; padding: 10px 18px calc(10px + env(safe-area-inset-bottom, 0));
        background: rgba(4, 9, 24, .92); backdrop-filter: blur(12px); border-top: 1px solid var(--line); }
    .mc-mobilebar .stap { font-family: var(--mono); font-size: 12px; letter-spacing: 1.2px; color: var(--text); text-transform: uppercase; }
    .mc-mobilebar .pct { font-family: var(--mono); font-size: 12px; color: var(--gold2); }
    .mc-mobilebar .p small { display: block; font-family: var(--mono); font-size: 8.5px; letter-spacing: 1.6px;
        text-transform: uppercase; color: var(--muted); }
    .mc-mobilebar .p b { font-size: 19px; font-weight: 900; }
    .mc-mobilebar .r { font-family: var(--mono); font-size: 12px; color: var(--gold2); }
}
@media (max-width: 800px) {
    .mc-top { padding: 11px 14px; gap: 10px; }
    .mc-ready .lbl, .mc-ready .segs { display: none; }
    .mc-brand span { font-size: 9px; letter-spacing: 1.4px; white-space: nowrap; }
    .mc-exit { padding: 6px 10px; font-size: 11.5px; }
    .mc-main { grid-template-columns: minmax(0, 1fr); padding: 16px 14px 120px; gap: 14px; }
    .mc-rail { position: static; }
    .mc-checks { flex-direction: row; overflow-x: auto; scrollbar-width: none; gap: 7px; padding-bottom: 2px; max-width: 100%; }
    .mc-checks::-webkit-scrollbar { display: none; }
    .mc-checks li { flex-shrink: 0; }
    .mc-checks button { padding: 9px 12px; }
    .mc-checks .nr, .mc-checks .st { display: none; }
    .mc-log { display: none; }
    .mc-mod { padding: 20px 16px; }
    .mc-form .row { grid-template-columns: 1fr; }
    .mc-hold { width: 148px; height: 148px; }
}
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation: none !important; transition: none !important; }
}

/* ---------- embed (console-in-modal op de productpagina) ---------- */
.mc-embed .mc-exit { display: none; }
.mc-embed .mc-top { padding: 11px 18px; }
.mc-embed .mc-main { padding: 20px 18px 80px; }

/* ---------- doel-tabs (kopen / huren / financiering) ---------- */
.mc-mid { min-width: 0; display: flex; flex-direction: column; gap: 14px; }
.mc-doel { display: flex; gap: 7px; flex-wrap: wrap; }
.mc-doel button { display: inline-flex; align-items: center; padding: 9px 14px; border-radius: 11px;
    border: 1px solid var(--line); background: rgba(10, 18, 38, .6); cursor: pointer;
    transition: border-color .2s, background .2s; }
.mc-doel button b { font-size: 13px; font-weight: 750; letter-spacing: .3px; }
.mc-doel button:hover { border-color: var(--line2); }
.mc-doel button.on { border-color: rgba(240, 168, 0, .6); background: rgba(240, 168, 0, .08); }
.mc-doel button.on b { color: var(--gold2); }

/* ---------- betaalopties (financiering) ---------- */
.mc-finaud { display: inline-flex; gap: 5px; background: rgba(148, 163, 184, .06); border: 1px solid var(--line);
    border-radius: 10px; padding: 4px; margin-bottom: 12px; }
.mc-finaud button { padding: 8px 18px; border: 0; border-radius: 7px; background: transparent; font-size: 12.5px;
    font-weight: 750; color: var(--muted2); cursor: pointer; }
.mc-finaud button.on { background: rgba(240, 168, 0, .16); color: var(--gold2); }
.mc-fins { display: flex; flex-direction: column; gap: 9px; margin-bottom: 20px; }
.mc-fin { position: relative; display: flex; align-items: center; gap: 14px; text-align: left; padding: 13px 16px;
    border-radius: 12px; border: 1px solid var(--line); background: rgba(2, 6, 23, .45); cursor: pointer;
    transition: border-color .2s, background .2s; }
.mc-fin:hover { border-color: var(--line2); }
.mc-fin.on { border-color: rgba(240, 168, 0, .65); background: rgba(240, 168, 0, .06); box-shadow: 0 0 0 1px rgba(240, 168, 0, .3); }
.mc-fin .fb { position: absolute; top: -9px; right: 14px; font-size: 8.5px; font-weight: 800; letter-spacing: .6px;
    text-transform: uppercase; background: linear-gradient(160deg, var(--gold2), var(--gold)); color: #231800;
    padding: 2px 8px; border-radius: 99px; }
.mc-fin .fl { flex: 1; min-width: 0; }
.mc-fin .fl b { display: block; font-size: 13.5px; font-weight: 800; }
.mc-fin .fl small { display: block; font-family: var(--mono); font-size: 9.5px; letter-spacing: 1px; text-transform: uppercase;
    color: var(--muted); margin: 2px 0 4px; }
.mc-fin .fl p { font-size: 11.5px; color: var(--muted); line-height: 1.45; margin: 0; }
.mc-fin .fr { font-family: var(--mono); font-size: 14px; font-weight: 700; color: var(--gold2); white-space: nowrap; }
.mc-fin .fr i { font-style: normal; font-size: 10px; color: var(--muted); }
.mc-finleeg { font-size: 12.5px; color: var(--muted); padding: 10px 2px; }

/* ---------- overig ---------- */
.mc-field select { width: 100%; padding: 12px 14px; border-radius: 10px; border: 1px solid var(--line2);
    background: rgba(2, 6, 23, .6); color: var(--text); font-size: 15px; font-family: inherit; outline: none; }
.mc-field select:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(240, 168, 0, .14); }
.mc-ccard .pr i { font-style: normal; font-size: 10px; color: var(--muted); }

/* ---------- embed: ALTIJD de gestapelde weergave (zoals goedgekeurd):
   stappen bovenin, geen zijkolommen, prijsbalk onderaan ---------- */
.mc-embed .mc-main { grid-template-columns: minmax(0, 1fr); padding: 16px 16px 110px; gap: 14px; max-width: none; }
.mc-embed .mc-rail { position: static; }
.mc-embed .mc-checks { flex-direction: row; overflow-x: auto; scrollbar-width: none; gap: 7px; padding-bottom: 2px; max-width: 100%; }
.mc-embed .mc-checks::-webkit-scrollbar { display: none; }
.mc-embed .mc-checks li { flex-shrink: 0; }
.mc-embed .mc-checks button { padding: 9px 12px; }
.mc-embed .mc-checks .nr, .mc-embed .mc-checks .st { display: none; }
.mc-embed .mc-log { display: none; }
.mc-embed .mc-tele { display: none; }
.mc-embed .mc-mobilebar { display: flex; position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
    align-items: center; justify-content: space-between; padding: 10px 18px calc(10px + env(safe-area-inset-bottom, 0));
    background: rgba(4, 9, 24, .92); backdrop-filter: blur(12px); border-top: 1px solid var(--line); }
.mc-embed .mc-mobilebar .p small { display: block; font-family: var(--mono); font-size: 8.5px; letter-spacing: 1.6px;
    text-transform: uppercase; color: var(--muted); }
.mc-embed .mc-mobilebar .p b { font-size: 19px; font-weight: 900; }
.mc-embed .mc-mobilebar .r { font-family: var(--mono); font-size: 12px; color: var(--gold2); }

/* ---------- nette schuifbalk (console + embed) ---------- */
html { scrollbar-width: thin; scrollbar-color: rgba(148, 163, 184, .35) transparent; }
::-webkit-scrollbar { width: 9px; height: 9px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: rgba(148, 163, 184, .3); border-radius: 99px; border: 2px solid rgba(2, 6, 23, .8); }
::-webkit-scrollbar-thumb:hover { background: rgba(240, 168, 0, .5); }

/* ---------- stap 3: koop of huur ---------- */
.mc-koophuur { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 14px; }
@media (max-width: 560px) { .mc-koophuur { grid-template-columns: 1fr; } }
.mc-kh { position: relative; text-align: left; padding: 18px 18px 15px; border-radius: 14px; cursor: pointer;
    border: 1px solid var(--line); background: rgba(2, 6, 23, .45); transition: border-color .2s, background .2s, box-shadow .2s; }
.mc-kh:hover { border-color: var(--line2); }
.mc-kh.on { border-color: rgba(240, 168, 0, .65); background: rgba(240, 168, 0, .06); box-shadow: 0 0 0 1px rgba(240, 168, 0, .35); }
.mc-kh .kh-badge { position: absolute; top: -9px; right: 14px; font-size: 8.5px; font-weight: 800; letter-spacing: .6px;
    text-transform: uppercase; background: linear-gradient(160deg, var(--gold2), var(--gold)); color: #231800;
    padding: 2px 8px; border-radius: 99px; }
.mc-kh b { display: block; font-size: 16px; font-weight: 850; }
.mc-kh small { display: block; font-family: var(--mono); font-size: 9px; letter-spacing: 1.4px; text-transform: uppercase;
    color: var(--muted); margin: 2px 0 10px; }
.mc-kh .kh-prijs { display: block; font-size: 24px; font-weight: 900; letter-spacing: -.4px; font-variant-numeric: tabular-nums; }
.mc-kh.on .kh-prijs { color: var(--gold2); }
.mc-kh .kh-prijs i { font-style: normal; font-size: 12px; font-weight: 700; color: var(--muted); }
.mc-kh p { font-size: 11px; color: var(--muted); line-height: 1.45; margin: 6px 0 0; }
.mc-periodeveld { max-width: 340px; margin-bottom: 6px; }

/* ---------- offerte-runner (opsteltheater na versturen) ---------- */
.mc-runner { width: min(480px, 92vw); border: 1px solid var(--line2); border-radius: 16px;
    background: linear-gradient(160deg, var(--panel2), var(--panel)); padding: 28px 30px;
    box-shadow: 0 30px 80px rgba(1, 4, 14, .55); }
.mc-run-steps .s { display: flex; align-items: center; gap: 13px; padding: 10px 0; font-size: 14px;
    font-weight: 600; color: var(--muted); opacity: .35; transition: opacity .4s; }
.mc-run-steps .s.on { opacity: 1; color: var(--text); }
.mc-run-steps .s i { width: 21px; height: 21px; border-radius: 50%; border: 2px solid rgba(148, 163, 184, .4);
    flex-shrink: 0; position: relative; transition: border-color .3s, background .3s; }
.mc-run-steps .s.on i { border-color: var(--ok); background: rgba(52, 211, 153, .15); }
.mc-run-steps .s.on i::after { content: "✓"; position: absolute; inset: 0; display: flex; align-items: center;
    justify-content: center; font-size: 10px; color: var(--ok); font-weight: 800; }
.mc-run-steps .s:not(.on) i { animation: mcRunPulse 1.2s ease-in-out infinite; }
@keyframes mcRunPulse { 50% { border-color: rgba(240, 168, 0, .6); } }
.mc-run-steps .s b { color: var(--gold2); font-weight: 800; margin-left: 4px; font-family: var(--mono); font-size: 12px; }
.mc-runner .mc-success { border-top: 1px solid var(--line); margin-top: 14px; padding: 22px 0 0; max-width: none; animation: none; }
.mc-runner { width: min(520px, 92vw); padding: 30px 34px; }
.mc-run-head { text-align: center; margin-bottom: 16px; }
.mc-run-eyebrow { font-family: var(--mono); font-size: 10px; letter-spacing: 2.5px; color: var(--gold); font-weight: 700; }
.mc-run-head h3 { margin: 9px 0 4px; font-size: 19px; font-weight: 800; color: var(--text); }
.mc-run-head p { margin: 0; font-size: 12.5px; color: var(--muted); }
.mc-run-bar { height: 4px; border-radius: 99px; background: rgba(148, 163, 184, .16); margin-top: 16px; overflow: hidden; }
.mc-run-bar i { display: block; height: 100%; width: 0; border-radius: 99px; background: linear-gradient(90deg, var(--gold), var(--gold2)); }
.mc-runner.mc-run-live .mc-run-bar i { animation: mcRunFill 3.6s cubic-bezier(.25, .6, .3, 1) forwards; }
@keyframes mcRunFill { 0% { width: 0 } 70% { width: 82% } 100% { width: 100% } }
.mc-run-note { margin: 13px 0 0; font-size: 11.5px; color: var(--muted); text-align: center; }
.mc-runner.mc-done .mc-run-head, .mc-runner.mc-done .mc-run-bar, .mc-runner.mc-done .mc-run-note { display: none; }
@media (prefers-reduced-motion: reduce) { .mc-runner.mc-run-live .mc-run-bar i { animation: none; width: 100%; } }
@media (prefers-reduced-motion: reduce) { .mc-run-steps .s:not(.on) i { animation: none; } }

/* fade-hint op de horizontale checklist-strip (mobiel + embed) */
@media (max-width: 800px) { .mc-checks { -webkit-mask-image: linear-gradient(90deg, #000 88%, transparent); mask-image: linear-gradient(90deg, #000 88%, transparent); padding-right: 16px; } }
.mc-embed .mc-checks { -webkit-mask-image: linear-gradient(90deg, #000 88%, transparent); mask-image: linear-gradient(90deg, #000 88%, transparent); padding-right: 16px; }
