:root {
  --bg: #02030b;
  --panel: rgba(8, 10, 31, .92);
  --panel-2: #0b0e2d;
  --line: rgba(104, 156, 255, .24);
  --text: #f8f9ff;
  --muted: #a8aec8;
  --pink: #ff1f9d;
  --pink-2: #ff52b8;
  --blue: #1e9cff;
  --blue-2: #72cbff;
  --success: #56e39f;
  --danger: #ff7088;
  --radius: 22px;
  --shadow: 0 26px 90px rgba(0, 0, 0, .42), 0 0 0 1px rgba(90, 131, 255, .08);
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }
html { color-scheme: dark; }
body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 78% 5%, rgba(30, 156, 255, .18), transparent 30%),
    radial-gradient(circle at 12% 90%, rgba(255, 31, 157, .17), transparent 28%),
    linear-gradient(145deg, #010207 0%, #07091c 52%, #02030a 100%);
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  opacity: .22;
  background-image: linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, black, transparent 72%);
}
button, input, textarea { font: inherit; }
a { color: inherit; }
button, label, a { -webkit-tap-highlight-color: transparent; }

.site-shell { width: min(1480px, calc(100% - 40px)); margin: 0 auto; padding: 12px 0 28px; }
.site-header { display: flex; align-items: center; justify-content: space-between; gap: 28px; padding: 6px 0 14px; }
.brand { flex: 0 0 auto; display: block; width: 200px; aspect-ratio: 1000 / 563; overflow: hidden; }
.brand picture, .brand img { display: block; width: 100%; height: 100%; }
.brand img { object-fit: contain; filter: drop-shadow(0 0 16px rgba(30, 156, 255, .16)); }
.main-nav { display: flex; align-items: center; padding: 5px; border: 1px solid var(--line); background: rgba(8, 10, 31, .72); border-radius: 999px; backdrop-filter: blur(18px); }
.main-nav a { text-decoration: none; color: var(--muted); font-weight: 750; font-size: .92rem; padding: 11px 18px; border-radius: 999px; transition: .2s ease; }
.main-nav a:hover { color: #fff; }
.main-nav a.active { color: white; background: linear-gradient(115deg, rgba(255,31,157,.92), rgba(30,156,255,.9)); box-shadow: 0 8px 28px rgba(31, 111, 255, .22); }

.booking-layout { display: grid; grid-template-columns: minmax(0, 1fr) 390px; gap: 20px; align-items: stretch; min-height: calc(100vh - 136px); }
.booking-card, .summary-card, .provider-form-card, .requirements-card { border: 1px solid var(--line); box-shadow: var(--shadow); background: linear-gradient(160deg, rgba(11,14,45,.96), rgba(4,5,19,.95)); }
.booking-card { border-radius: 28px; padding: 24px 28px 20px; display: flex; flex-direction: column; min-width: 0; }
.booking-intro { display: flex; align-items: flex-start; justify-content: space-between; gap: 24px; }
.eyebrow { margin: 0 0 6px; color: var(--blue-2); text-transform: uppercase; letter-spacing: .17em; font-size: .72rem; font-weight: 850; }
h1, h2, p { margin-top: 0; }
.booking-intro h1 { margin-bottom: 4px; font-size: clamp(1.75rem, 2.5vw, 2.55rem); line-height: 1.05; letter-spacing: -.04em; }
.booking-intro p:not(.eyebrow) { margin-bottom: 0; color: var(--muted); font-size: .93rem; }
.availability-pill { flex: none; display: inline-flex; align-items: center; gap: 8px; padding: 9px 12px; border: 1px solid rgba(86,227,159,.3); border-radius: 999px; color: #b8f7d7; background: rgba(86,227,159,.07); font-size: .74rem; font-weight: 750; }
.availability-pill span { width: 7px; height: 7px; border-radius: 50%; background: var(--success); box-shadow: 0 0 14px var(--success); }

.progress-wrap { margin: 20px 0 18px; }
.progress-track { height: 3px; background: rgba(255,255,255,.09); border-radius: 99px; overflow: hidden; }
.progress-fill { width: 0; height: 100%; background: linear-gradient(90deg, var(--pink), var(--blue)); transition: width .3s ease; }
.progress-steps { list-style: none; padding: 0; margin: 9px 0 0; display: grid; grid-template-columns: repeat(6, 1fr); }
.progress-steps li { display: flex; gap: 7px; align-items: center; color: #777e9b; font-size: .74rem; font-weight: 700; }
.progress-steps li b { display: grid; place-items: center; width: 21px; height: 21px; border-radius: 50%; border: 1px solid rgba(255,255,255,.12); font-size: .66rem; }
.progress-steps li.active, .progress-steps li.done { color: #fff; }
.progress-steps li.active b { border-color: var(--pink); box-shadow: 0 0 16px rgba(255,31,157,.34); }
.progress-steps li.done b { background: var(--blue); border-color: var(--blue); }

.wizard { display: flex; min-height: 0; flex: 1; flex-direction: column; }
.wizard-step { flex: 1; min-height: 0; animation: stepIn .26s ease; }
.wizard-step[hidden] { display: none; }
@keyframes stepIn { from { opacity: 0; transform: translateY(5px); } to { opacity: 1; transform: none; } }
.step-heading { display: flex; align-items: flex-start; gap: 13px; margin-bottom: 18px; }
.step-number { flex: none; display: grid; place-items: center; width: 45px; height: 45px; border-radius: 14px; color: white; background: linear-gradient(145deg, var(--pink), #b32df4 45%, var(--blue)); font-weight: 900; box-shadow: 0 8px 24px rgba(255,31,157,.2); }
.step-heading h2 { margin: 0 0 4px; font-size: 1.35rem; letter-spacing: -.025em; }
.step-heading p { margin: 0; color: var(--muted); font-size: .86rem; line-height: 1.45; }
.compact-heading { margin-bottom: 13px; }

.procedure-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 11px; }
.procedure-card { display: grid; grid-template-columns: 34px 1fr; gap: 11px; align-items: start; min-height: 103px; padding: 14px; border: 1px solid rgba(100,141,255,.22); border-radius: 16px; background: linear-gradient(145deg, rgba(13,17,52,.82), rgba(4,5,19,.74)); }
.procedure-card > span { display: grid; place-items: center; width: 32px; height: 32px; border-radius: 11px; color: #fff; background: linear-gradient(145deg, var(--pink), var(--blue)); font-size: .78rem; font-weight: 900; }
.procedure-card strong { display: block; margin-bottom: 4px; font-size: .88rem; }
.procedure-card p { margin: 0; color: var(--muted); font-size: .76rem; line-height: 1.45; }
.procedure-note { margin: 12px 0 0; padding: 10px 12px; border-left: 3px solid var(--blue); border-radius: 0 11px 11px 0; color: #c6cbe0; background: rgba(30,156,255,.07); font-size: .75rem; line-height: 1.45; }

.date-field { display: grid; gap: 7px; width: min(520px, 100%); padding: 20px; border: 1px solid rgba(75,144,255,.28); border-radius: 18px; background: rgba(7,9,29,.68); }
.date-field > span, .contact-grid label > span { font-size: .8rem; font-weight: 800; color: #e7eaff; }
.date-field input, .contact-grid input, .contact-grid textarea {
  width: 100%; color: #fff; border: 1px solid rgba(127,155,255,.25); background: rgba(1,2,12,.74); border-radius: 12px; outline: none; transition: .2s ease;
}
.date-field input { min-height: 58px; padding: 0 15px; font-size: 1.15rem; font-weight: 800; color-scheme: dark; }
.date-field small { color: var(--muted); }
input:focus, textarea:focus { border-color: var(--blue) !important; box-shadow: 0 0 0 4px rgba(30,156,255,.12); }
input.invalid, textarea.invalid { border-color: var(--danger) !important; box-shadow: 0 0 0 4px rgba(255,112,136,.1); }

.choice-grid { display: grid; gap: 13px; }
.model-grid { grid-template-columns: repeat(2, 1fr); }
.quantity-grid { grid-template-columns: repeat(2, minmax(180px, 290px)); }
.choice-card { position: relative; cursor: pointer; }
.choice-card input { position: absolute; opacity: 0; pointer-events: none; }
.choice-content { min-height: 148px; display: flex; flex-direction: column; gap: 10px; padding: 18px; border: 1px solid rgba(100,141,255,.24); border-radius: 18px; background: linear-gradient(145deg, rgba(13,17,52,.9), rgba(4,5,19,.78)); transition: .2s ease; }
.choice-card:hover .choice-content { border-color: rgba(30,156,255,.58); transform: translateY(-1px); }
.choice-card input:checked + .choice-content { border-color: var(--pink); box-shadow: 0 0 0 2px rgba(255,31,157,.13), 0 14px 36px rgba(8,18,64,.45); background: linear-gradient(145deg, rgba(38,10,56,.85), rgba(6,17,51,.9)); }
.choice-card input:focus-visible + .choice-content { outline: 3px solid var(--blue); outline-offset: 2px; }
.choice-top { display: flex; justify-content: space-between; gap: 10px; align-items: center; }
.choice-top strong { font-size: 1.04rem; }
.tag { color: #c9eaff; background: rgba(30,156,255,.12); border: 1px solid rgba(30,156,255,.24); padding: 5px 8px; border-radius: 99px; font-size: .65rem; font-weight: 800; }
.price-lines { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.price-lines span { display: grid; gap: 2px; color: var(--muted); font-size: .73rem; padding: 8px 10px; border-radius: 10px; background: rgba(255,255,255,.035); }
.price-lines b { color: #fff; font-size: .82rem; }
.deposit-note { color: #ffb9e1; font-size: .76rem; font-weight: 750; }
.quantity-card .choice-content { min-height: 154px; align-items: center; justify-content: center; text-align: center; }
.big-number { line-height: .8; font-size: 2.8rem; font-weight: 950; color: transparent; background: linear-gradient(135deg, #fff 15%, var(--blue-2) 55%, var(--pink-2)); background-clip: text; -webkit-background-clip: text; }
.quantity-card strong { font-size: 1.03rem; }
.quantity-card .choice-content > span:last-child { color: var(--muted); font-size: .76rem; }

.extras-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 13px; }
.extra-card { position: relative; display: grid; grid-template-columns: 42px 1fr auto; align-items: center; gap: 12px; min-height: 105px; padding: 16px; cursor: pointer; border: 1px solid rgba(100,141,255,.24); border-radius: 18px; background: rgba(8,11,34,.77); transition: .2s ease; }
.extra-card:hover { border-color: rgba(30,156,255,.58); }
.extra-card:has(input:checked) { border-color: var(--pink); background: linear-gradient(145deg, rgba(39,9,56,.78), rgba(6,16,49,.88)); box-shadow: 0 0 0 2px rgba(255,31,157,.11); }
.extra-card input { position: absolute; right: 13px; top: 13px; accent-color: var(--pink); }
.extra-icon { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 13px; background: linear-gradient(145deg, rgba(255,31,157,.17), rgba(30,156,255,.16)); font-size: 1.25rem; }
.extra-card > span:nth-child(3) { display: grid; gap: 3px; }
.extra-card small { color: var(--muted); }
.extra-card > b { padding-right: 16px; font-size: .84rem; color: #d7edff; }

.contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.contact-grid label { display: grid; gap: 6px; }
.contact-grid label.full { grid-column: 1 / -1; }
.contact-grid input { height: 43px; padding: 0 12px; }
.contact-grid textarea { resize: vertical; min-height: 69px; max-height: 110px; padding: 10px 12px; }
.contact-grid em { font-style: normal; color: #7d849e; font-weight: 500; }
.consent-line { display: flex; align-items: flex-start; gap: 9px; margin-top: 10px; color: var(--muted); font-size: .76rem; line-height: 1.35; cursor: pointer; }
.consent-line input { margin-top: 2px; accent-color: var(--pink); }
.honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }

.wizard-actions { display: flex; gap: 10px; align-items: center; margin-top: 14px; padding-top: 14px; border-top: 1px solid rgba(255,255,255,.07); }
.action-spacer { flex: 1; }
.button { min-height: 44px; display: inline-flex; align-items: center; justify-content: center; gap: 9px; border-radius: 12px; padding: 0 17px; border: 0; cursor: pointer; color: #fff; font-weight: 850; transition: .2s ease; }
.button:hover { transform: translateY(-1px); }
.button:disabled { cursor: wait; opacity: .6; transform: none; }
.button-primary { background: linear-gradient(115deg, var(--pink), #b82ee8 46%, var(--blue)); box-shadow: 0 10px 28px rgba(169, 29, 213, .23); }
.button-primary span { font-size: 1.15em; }
.button-ghost { border: 1px solid rgba(255,255,255,.13); background: rgba(255,255,255,.045); }
.form-message { min-height: 0; margin-top: 8px; border-radius: 12px; font-size: .82rem; font-weight: 700; }
.form-message.success, .form-message.error { padding: 10px 12px; }
.form-message.success { color: #baf4d8; background: rgba(86,227,159,.09); border: 1px solid rgba(86,227,159,.25); }
.form-message.error { color: #ffc0ca; background: rgba(255,112,136,.09); border: 1px solid rgba(255,112,136,.25); }

.summary-card { position: sticky; top: 14px; height: fit-content; min-height: 540px; border-radius: 28px; padding: 25px; overflow: hidden; }
.summary-card::before { content: ""; position: absolute; inset: 0 0 auto; height: 4px; background: linear-gradient(90deg, var(--pink), var(--blue)); }
.summary-head { display: flex; justify-content: space-between; gap: 16px; align-items: flex-start; }
.summary-head h2 { margin-bottom: 0; font-size: 1.4rem; }
.summary-badge { padding: 6px 9px; border-radius: 99px; color: #cdeeff; border: 1px solid rgba(30,156,255,.25); background: rgba(30,156,255,.1); font-size: .72rem; font-weight: 800; }
.summary-date { display: flex; justify-content: space-between; gap: 14px; padding: 15px 0; margin-top: 12px; border-top: 1px solid rgba(255,255,255,.07); border-bottom: 1px solid rgba(255,255,255,.07); }
.summary-date span { color: var(--muted); font-size: .8rem; }
.summary-date strong { text-align: right; font-size: .82rem; }
.summary-lines { min-height: 150px; padding: 14px 0; display: grid; align-content: start; gap: 10px; }
.empty-summary { display: grid; place-items: center; min-height: 110px; text-align: center; color: #727a99; font-size: .83rem; border: 1px dashed rgba(105,133,212,.2); border-radius: 14px; }
.summary-line { display: flex; align-items: center; justify-content: space-between; gap: 14px; font-size: .82rem; }
.summary-line span { color: #c5cae0; }
.summary-line strong { color: #fff; white-space: nowrap; }
.summary-totals { padding-top: 13px; border-top: 1px solid rgba(255,255,255,.08); display: grid; gap: 10px; }
.summary-totals > div { display: flex; justify-content: space-between; gap: 15px; align-items: center; }
.summary-totals span { color: var(--muted); font-size: .81rem; }
.summary-totals span small { display: block; margin-top: 2px; font-size: .66rem; }
.summary-totals strong { font-size: .94rem; }
.summary-totals .grand-total { padding-top: 13px; margin-top: 2px; border-top: 1px solid rgba(255,255,255,.08); }
.summary-totals .grand-total span { color: white; font-weight: 850; }
.summary-totals .grand-total strong { font-size: 1.55rem; color: transparent; background: linear-gradient(95deg, var(--pink-2), var(--blue-2)); background-clip: text; -webkit-background-clip: text; }
.summary-note { margin: 18px 0 0; padding: 12px; border-radius: 12px; background: rgba(255,255,255,.035); color: #878eaa; font-size: .7rem; line-height: 1.45; }
.mobile-total-bar, .mobile-summary-panel, .panel-backdrop { display: none; }

/* Verhuurpartnerpagina */
.provider-shell { min-height: 100vh; }
.provider-layout { min-height: calc(100vh - 136px); display: grid; grid-template-columns: .92fr 1.08fr; gap: 28px; align-items: center; padding: 24px 3vw 50px; }
.provider-copy { max-width: 620px; }
.provider-copy h1 { margin-bottom: 18px; font-size: clamp(2.5rem, 5vw, 5.3rem); line-height: .94; letter-spacing: -.065em; }
.provider-lead { max-width: 600px; color: #bac0d6; font-size: 1.06rem; line-height: 1.7; }
.requirements-card { margin: 28px 0 20px; border-radius: 20px; padding: 20px; background: linear-gradient(145deg, rgba(20,16,57,.8), rgba(5,11,34,.9)); }
.requirements-card h2 { font-size: 1rem; }
.requirements-card ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; color: #c7cce0; }
.requirements-card li { display: flex; gap: 10px; align-items: center; }
.requirements-card li span { display: grid; place-items: center; width: 23px; height: 23px; border-radius: 50%; color: #baf4d8; background: rgba(86,227,159,.1); }
.coverage-note { margin: 0 0 20px; padding: 13px 15px; border: 1px solid rgba(30,156,255,.22); border-radius: 14px; color: #c7cce0; background: rgba(30,156,255,.065); font-size: .86rem; line-height: 1.55; }
.coverage-note strong { color: #fff; }
.text-link { color: var(--blue-2); text-decoration: none; font-weight: 800; }
.provider-form-card { border-radius: 28px; padding: 30px; }
.provider-fields { grid-template-columns: repeat(2, 1fr); gap: 14px; }
.provider-fields input { height: 50px; }
.provider-fields textarea { min-height: 105px; }
.important-consent { padding: 12px; border-radius: 12px; color: #fff; border: 1px solid rgba(255,31,157,.2); background: rgba(255,31,157,.06); }
.provider-submit { width: 100%; min-height: 52px; margin-top: 18px; }

@media (max-width: 1080px) {
  .site-shell { width: min(100% - 26px, 980px); }
  .booking-layout { grid-template-columns: minmax(0, 1fr) 320px; }
  .booking-card { padding-inline: 22px; }
  .price-lines { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid label:last-of-type:not(.full) { grid-column: 1 / -1; }
  .summary-card { padding: 20px; }
  .provider-layout { padding-inline: 0; }
}

@media (max-width: 780px) {
  body { padding-bottom: calc(78px + env(safe-area-inset-bottom)); }
  .site-shell { width: min(100% - 20px, 620px); padding-top: 4px; }
  .site-header { gap: 10px; padding: 4px 0 12px; }
  .brand { width: 145px; }
  .main-nav { padding: 3px; }
  .main-nav a { padding: 9px 10px; font-size: .72rem; }
  .booking-layout { display: block; min-height: auto; }
  .booking-card { min-height: calc(100vh - 174px); border-radius: 22px; padding: 18px 16px 16px; }
  .booking-intro { display: block; }
  .booking-intro h1 { font-size: 1.75rem; }
  .booking-intro p:not(.eyebrow) { font-size: .82rem; }
  .availability-pill { display: none; }
  .progress-wrap { margin: 16px 0 18px; }
  .progress-steps li { justify-content: center; }
  .progress-steps li span { display: none; }
  .progress-steps li b { width: 24px; height: 24px; }
  .step-heading { margin-bottom: 16px; }
  .step-number { width: 41px; height: 41px; border-radius: 12px; }
  .step-heading h2 { font-size: 1.16rem; }
  .step-heading p { font-size: .78rem; }
  .procedure-grid { grid-template-columns: 1fr; gap: 9px; }
  .procedure-card { min-height: 0; padding: 12px; }
  .procedure-card p { font-size: .74rem; }
  .date-field { padding: 15px; }
  .date-field input { min-height: 55px; }
  .model-grid, .extras-grid { grid-template-columns: 1fr; }
  .choice-content { min-height: 128px; padding: 15px; }
  .price-lines { grid-template-columns: 1fr 1fr; }
  .quantity-grid { grid-template-columns: repeat(2, 1fr); }
  .quantity-card .choice-content { min-height: 140px; }
  .extra-card { min-height: 88px; padding: 13px; grid-template-columns: 38px 1fr auto; }
  .extra-icon { width: 38px; height: 38px; }
  .contact-grid { grid-template-columns: 1fr; gap: 9px; }
  .contact-grid label, .contact-grid label:last-of-type:not(.full) { grid-column: 1; }
  .contact-grid input { height: 46px; }
  .contact-grid textarea { min-height: 78px; }
  .wizard-actions { position: sticky; bottom: 0; margin: 12px -4px -4px; padding: 12px 4px 4px; background: linear-gradient(to top, #07091f 72%, transparent); }
  .button { min-height: 48px; }
  .summary-card { display: none; }
  .mobile-total-bar { position: fixed; z-index: 30; display: flex; left: 0; right: 0; bottom: 0; align-items: center; justify-content: space-between; gap: 16px; padding: 10px max(14px, env(safe-area-inset-right)) calc(10px + env(safe-area-inset-bottom)) max(14px, env(safe-area-inset-left)); background: rgba(4,5,19,.96); border-top: 1px solid rgba(30,156,255,.35); backdrop-filter: blur(20px); box-shadow: 0 -14px 35px rgba(0,0,0,.35); }
  .mobile-total-bar div { display: grid; }
  .mobile-total-bar small { color: var(--muted); font-size: .65rem; }
  .mobile-total-bar strong { font-size: 1.25rem; }
  .mobile-total-bar button { color: #fff; border: 1px solid rgba(255,31,157,.38); background: rgba(255,31,157,.09); border-radius: 10px; padding: 10px 12px; font-weight: 800; }
  .mobile-summary-panel { position: fixed; z-index: 42; display: block; left: 10px; right: 10px; bottom: calc(76px + env(safe-area-inset-bottom)); max-height: 70vh; overflow: auto; padding: 20px; border: 1px solid rgba(30,156,255,.35); border-radius: 20px; background: #090c29; box-shadow: 0 30px 80px rgba(0,0,0,.65); }
  .mobile-summary-panel[hidden] { display: none; }
  .mobile-summary-panel h2 { font-size: 1.2rem; }
  .mobile-summary-panel .summary-lines { min-height: 0; }
  .panel-close { position: absolute; top: 8px; right: 10px; border: 0; background: none; color: white; font-size: 1.6rem; }
  .panel-backdrop { position: fixed; z-index: 41; display: block; inset: 0; background: rgba(0,0,0,.58); }
  .panel-backdrop[hidden] { display: none; }

  .provider-layout { display: block; min-height: auto; padding: 20px 0 28px; }
  .provider-copy h1 { font-size: 3.1rem; }
  .provider-lead { font-size: .95rem; }
  .requirements-card { margin: 20px 0; }
  .provider-form-card { margin-top: 24px; border-radius: 22px; padding: 20px 16px; }
  .provider-fields { grid-template-columns: 1fr; }
}

@media (max-width: 410px) {
  .brand { width: 128px; }
  .main-nav a { padding-inline: 8px; font-size: .67rem; }
  .price-lines { grid-template-columns: 1fr; }
  .quantity-grid { gap: 9px; }
  .quantity-card .choice-content { min-height: 130px; padding-inline: 8px; }
  .extra-card > b { font-size: .72rem; padding-right: 10px; }
  .provider-copy h1 { font-size: 2.65rem; }
}
