/* ============ app.css — repera components ============ */

/* ---------- NAV ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  transition: background .3s, border-color .3s, backdrop-filter .3s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(8,8,12,0.6);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border-bottom: 1px solid var(--line);
}
.nav-inner { height: 64px; display: flex; align-items: center; justify-content: space-between; }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a { color: var(--ink-2); text-decoration: none; font-size: 15px; font-weight: 500; transition: color .2s; }
.nav-links a:hover { color: var(--ink); }
.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-phone { display: flex; align-items: center; gap: 8px; color: var(--ink-2); font-size: 15px; font-weight: 500; text-decoration: none; }
.nav-phone:hover { color: var(--ink); }
@media (max-width: 860px) { .nav-links, .nav-phone { display: none; } }

/* ---------- LOGO ---------- */
.logo { display: flex; align-items: center; gap: 11px; text-decoration: none; color: var(--ink); }
.logo-mark {
  width: 34px; height: 34px; border-radius: 10px; position: relative;
  background: linear-gradient(150deg, #2a95ff, var(--acc));
  display: grid; place-items: center;
  box-shadow: 0 6px 18px -6px var(--acc-glow), 0 1px 0 rgba(255,255,255,0.35) inset;
}
.logo-mark::after {
  content: ""; position: absolute; width: 13px; height: 13px; border-radius: 50%;
  border: 2.4px solid #fff; border-right-color: transparent; transform: rotate(-30deg);
}
.logo-word { font-size: 20px; font-weight: 600; letter-spacing: -0.03em; }
.logo-word b { font-weight: 600; }

/* ---------- HERO ---------- */
.hero { position: relative; padding: 132px 0 48px; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 48px; align-items: center; }
.hero-copy { max-width: 600px; }
.hero h1 { margin: 20px 0 22px; }
.hero .lead { max-width: 520px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 22px 28px; margin-top: 34px; }
.hero-trust .ht { display: flex; align-items: center; gap: 10px; color: var(--ink-2); font-size: 14.5px; font-weight: 500; }
.hero-trust .ht svg { color: var(--acc-2); flex: none; }

/* floating device visual */
.hero-visual { position: relative; height: 520px; display: grid; place-items: center; }
.device-stack { position: relative; width: 280px; height: 460px; }
.phone-shell {
  position: absolute; inset: 0; border-radius: 46px; padding: 12px;
  background: linear-gradient(160deg, #1b1d24, #0c0d12 60%);
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: 0 1px 0 rgba(255,255,255,0.18) inset, 0 60px 120px -30px rgba(0,0,0,0.9), 0 0 0 1px rgba(0,0,0,0.6);
}
.phone-screen {
  position: absolute; inset: 12px; border-radius: 36px; overflow: hidden;
  background: radial-gradient(120% 90% at 50% 0%, #16335e, #07080d 60%);
}
.phone-notch {
  position: absolute; top: 22px; left: 50%; transform: translateX(-50%);
  width: 96px; height: 28px; background: #050506; border-radius: 16px; z-index: 4;
}
.screen-content { position: absolute; inset: 0; padding: 64px 22px 22px; display: flex; flex-direction: column; }
.screen-badge {
  align-self: flex-start; display: flex; align-items: center; gap: 7px;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12);
  padding: 7px 12px; border-radius: 100px; font-size: 12px; font-weight: 600; color: #fff;
}
.screen-badge .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--ok); box-shadow: 0 0 8px var(--ok); }
.screen-title { margin-top: auto; font-size: 25px; font-weight: 600; letter-spacing: -0.03em; }
.screen-sub { color: var(--ink-2); font-size: 14px; margin-top: 6px; }
.screen-eta {
  margin-top: 16px; background: rgba(255,255,255,0.06); border: 1px solid var(--line);
  border-radius: 16px; padding: 14px; display: flex; align-items: center; gap: 12px;
}
.screen-eta .ic { width: 38px; height: 38px; border-radius: 11px; background: var(--acc-soft); color: var(--acc-2); display: grid; place-items: center; flex: none; }
.screen-eta b { font-size: 14px; }
.screen-eta span { display: block; color: var(--ink-3); font-size: 12px; }

.float-card {
  position: absolute; border-radius: 18px; padding: 13px 15px; display: flex; align-items: center; gap: 11px;
  background: rgba(20,21,28,0.72); border: 1px solid var(--line-2);
  backdrop-filter: blur(18px); box-shadow: var(--shadow-pop); z-index: 6;
}
.float-card .fi { width: 36px; height: 36px; border-radius: 10px; display: grid; place-items: center; flex: none; }
.float-card b { font-size: 13.5px; display: block; }
.float-card span { font-size: 12px; color: var(--ink-3); }
.fc-1 { top: 26px; right: -26px; }
.fc-2 { bottom: 70px; left: -42px; }
@media (prefers-reduced-motion: no-preference) {
  .float-card { animation: floaty 6s ease-in-out infinite; }
  .fc-2 { animation-delay: -3s; }
  @keyframes floaty { 0%,100%{ transform: translateY(0); } 50%{ transform: translateY(-12px); } }
}

@media (max-width: 920px) {
  .hero-grid { grid-template-columns: 1fr; gap: 8px; }
  .hero-visual { order: -1; height: 440px; }
  .hero { padding: 104px 0 30px; }
  .device-stack { width: 264px; height: 432px; }
  /* Eén kolom: tweede zwevende kaart weglaten zodat de schermtekst
     (Aankomst-blok) nooit bedekt wordt. fc-1 staat in de lege zone. */
  .fc-2 { display: none; }
}
@media (max-width: 560px) {
  .hero-visual { height: 416px; }
  .device-stack { width: 246px; height: 412px; }
  /* Eén kaart in de lege zone rechtsboven; de tweede zou onvermijdelijk
     schermtekst bedekken op smalle schermen, dus die verbergen we
     (de garantie staat al in de trust-rij hieronder). */
  .fc-1 { top: 20px; right: -4px; bottom: auto; }
  .float-card { padding: 10px 13px; border-radius: 15px; }
  .float-card .fi { width: 32px; height: 32px; }
  .float-card b { font-size: 12.5px; }
  .float-card span { font-size: 11px; }
}
@media (max-width: 380px) {
  .hero-visual { height: 388px; }
  .device-stack { width: 228px; height: 384px; }
  .fc-1 { right: 0; }
}

/* ---------- LOGO STRIP / DEVICES ---------- */
.strip { padding: 22px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.strip-inner { display: flex; align-items: center; justify-content: center; gap: clamp(18px, 5vw, 54px); flex-wrap: wrap; color: var(--ink-3); }
.strip-item { display: flex; align-items: center; gap: 10px; font-size: 15px; font-weight: 500; }

/* ---------- SECTION ---------- */
section { position: relative; }
.sec { padding: clamp(72px, 11vw, 120px) 0; }
/* ankerlinks landen onder de sticky nav i.p.v. erachter */
section[id], header[id] { scroll-margin-top: 84px; }
.sec-head { max-width: 660px; margin-bottom: 52px; }
.sec-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.sec-head h2 { margin: 16px 0 16px; }

/* steps / how it works */
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.step-card { border-radius: var(--r-lg); padding: 30px 26px; position: relative; overflow: hidden; }
.step-num { font-size: 13px; font-weight: 700; letter-spacing: 0.1em; color: var(--acc-2); }
.step-ic { width: 52px; height: 52px; border-radius: 15px; background: var(--acc-soft); color: var(--acc-2); display: grid; place-items: center; margin: 18px 0 18px; }
.step-card h3 { font-size: 21px; margin-bottom: 9px; }
.step-card p { color: var(--ink-2); font-size: 15.5px; }
.step-card .line-num { position: absolute; top: 18px; right: 22px; font-size: 56px; font-weight: 700; color: rgba(255,255,255,0.05); letter-spacing: -0.04em; }
@media (max-width: 820px) { .steps-grid { grid-template-columns: 1fr; } }

/* why / features */
.feat-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.feat { border-radius: var(--r-lg); padding: 28px; display: flex; gap: 18px; align-items: flex-start; }
.feat .fic { width: 48px; height: 48px; border-radius: 14px; flex: none; display: grid; place-items: center;
  background: linear-gradient(160deg, var(--acc-soft), rgba(79,195,255,0.06)); color: var(--acc-2);
  border: 1px solid rgba(79,195,255,0.18); }
.feat h3 { font-size: 19px; margin-bottom: 7px; }
.feat p { color: var(--ink-2); font-size: 15px; }
.feat-wide { grid-column: 1 / -1; display: grid; grid-template-columns: 1.2fr 1fr; gap: 30px; align-items: center;
  padding: 0; overflow: hidden; }
.feat-wide .fw-copy { padding: 36px; }
.feat-wide .fw-stat { padding: 36px; border-left: 1px solid var(--line); display: grid; gap: 22px; }
.fw-stat .st b { font-size: 38px; font-weight: 600; letter-spacing: -0.03em; display: block; }
.fw-stat .st span { color: var(--ink-3); font-size: 14px; }
@media (max-width: 820px) {
  .feat-grid { grid-template-columns: 1fr; }
  .feat-wide { grid-template-columns: 1fr; }
  .feat-wide .fw-stat { border-left: 0; border-top: 1px solid var(--line); grid-template-columns: 1fr 1fr; }
}

/* coverage */
.cover { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.cover-map { position: relative; border-radius: var(--r-xl); overflow: hidden; aspect-ratio: 4/3.4;
  background: radial-gradient(120% 100% at 30% 10%, #12233f, #07080d 70%); border: 1px solid var(--line); }
.cover-map svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.cover-chips { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 24px; }
.chip { padding: 8px 14px; border-radius: 100px; background: var(--glass-2); border: 1px solid var(--line);
  font-size: 13.5px; font-weight: 500; color: var(--ink-2); }
.chip.more { color: var(--acc-2); border-color: rgba(79,195,255,0.3); }
@media (max-width: 820px) { .cover { grid-template-columns: 1fr; } }

/* reviews */
.rev-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.rev { border-radius: var(--r-lg); padding: 26px; display: flex; flex-direction: column; }
.rev-stars { display: flex; gap: 3px; color: #ffc444; margin-bottom: 14px; }
.rev p { font-size: 15.5px; color: var(--ink); line-height: 1.55; flex: 1; }
.rev-by { display: flex; align-items: center; gap: 11px; margin-top: 20px; }
.rev-av { width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center; font-weight: 600; font-size: 14px; color: #fff;
  background: linear-gradient(150deg, #2a95ff, var(--acc)); }
.rev-by b { font-size: 14px; display: block; }
.rev-by span { font-size: 12.5px; color: var(--ink-3); }
@media (max-width: 820px) { .rev-grid { grid-template-columns: 1fr; } }

/* CTA band */
.ctaband { border-radius: var(--r-xl); padding: clamp(40px, 7vw, 72px); text-align: center; position: relative; overflow: hidden; }
.ctaband::before { content:""; position: absolute; inset: 0;
  background: radial-gradient(70% 120% at 50% -10%, rgba(10,132,255,0.35), transparent 60%); }
.ctaband > * { position: relative; }
.ctaband h2 { margin-bottom: 16px; }
.ctaband .lead { max-width: 560px; margin: 0 auto 30px; }

/* footer */
.foot { border-top: 1px solid var(--line); padding: 56px 0 40px; }
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 30px; margin-bottom: 40px; }
.foot h4 { font-size: 13px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--ink-3); margin-bottom: 16px; font-weight: 600; }
.foot a, .foot p { color: var(--ink-2); text-decoration: none; font-size: 14.5px; display: block; margin-bottom: 11px; }
.foot a:hover { color: var(--ink); }
.foot-bottom { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap;
  border-top: 1px solid var(--line); padding-top: 24px; color: var(--ink-3); font-size: 13.5px; }
@media (max-width: 720px) { .foot-grid { grid-template-columns: 1fr 1fr; gap: 28px 20px; } }

/* ============ WIZARD ============ */
.wz-overlay { position: fixed; top: 0; left: 0; right: 0; z-index: 100; display: flex; align-items: flex-end; justify-content: center;
  height: 100vh; height: 100dvh; /* dvh = zichtbaar viewport, sluit de browser-URL-balk uit */
  background: rgba(3,3,6,0.6); backdrop-filter: blur(8px); opacity: 0; transition: opacity .3s; }
.wz-overlay.open { opacity: 1; }
@media (min-width: 760px) { .wz-overlay { align-items: center; padding: 24px; } }

.wz-sheet {
  width: 100%; max-width: 560px; background: linear-gradient(180deg, #131418, #0c0c10);
  border: 1px solid var(--line-2); box-shadow: var(--shadow-pop);
  border-radius: 28px 28px 0 0; display: flex; flex-direction: column;
  height: 92vh; max-height: 92vh;
  height: 92dvh; max-height: 92dvh; /* volgt het zichtbare viewport — bovenkant nooit achter de URL-balk */
  transform: translateY(40px); transition: transform .35s cubic-bezier(.2,.85,.25,1);
}
.wz-overlay.open .wz-sheet { transform: none; }
@media (min-width: 760px) { .wz-sheet { border-radius: 28px; height: auto; max-height: 88vh; max-height: 88dvh; } }

.wz-head { padding: 16px 20px 14px; border-bottom: 1px solid var(--line); flex: none; }
.wz-grip { width: 38px; height: 4px; border-radius: 4px; background: rgba(255,255,255,0.18); margin: 0 auto 14px; }
@media (min-width: 760px) { .wz-grip { display: none; } }
.wz-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.wz-step-label { font-size: 13px; color: var(--ink-3); font-weight: 600; letter-spacing: 0.02em; }
.wz-x { width: 34px; height: 34px; border-radius: 50%; background: var(--glass-2); border: 1px solid var(--line);
  color: var(--ink-2); display: grid; place-items: center; cursor: pointer; transition: .2s; flex: none; }
.wz-x:hover { background: var(--glass-hi); color: var(--ink); }
.wz-back { background: none; border: 0; color: var(--ink-2); cursor: pointer; display: flex; align-items: center; gap: 6px;
  font-family: inherit; font-size: 14px; font-weight: 500; padding: 6px 4px; margin-left: -4px; transition: .2s; }
.wz-back:hover { color: var(--ink); }
.wz-back.hide { visibility: hidden; }
.wz-prog { height: 4px; border-radius: 4px; background: rgba(255,255,255,0.08); overflow: hidden; }
.wz-prog i { display: block; height: 100%; border-radius: 4px; background: linear-gradient(90deg, var(--acc), var(--acc-2)); transition: width .4s cubic-bezier(.2,.8,.2,1); }

.wz-body { flex: 1; overflow-y: auto; padding: 24px 20px 16px; -webkit-overflow-scrolling: touch; }
.wz-title { font-size: 25px; font-weight: 600; letter-spacing: -0.03em; line-height: 1.1; }
.wz-desc { color: var(--ink-2); font-size: 15px; margin: 8px 0 22px; }

/* option tiles */
.wz-tiles { display: grid; gap: 12px; }
.wz-tiles.cols2 { grid-template-columns: 1fr 1fr; }
.wz-tiles.cols3 { grid-template-columns: repeat(3, 1fr); }
.tile {
  text-align: left; cursor: pointer; font-family: inherit; color: var(--ink);
  background: var(--glass); border: 1.5px solid var(--line); border-radius: var(--r-md);
  padding: 18px; transition: border-color .18s, background .18s, transform .12s; position: relative;
  display: flex; align-items: center; gap: 14px;
}
.tile:hover { border-color: var(--line-2); background: var(--glass-2); }
.tile:active { transform: scale(0.985); }
.tile.sel { border-color: var(--acc); background: var(--acc-soft); }
.tile.sel .tile-check { opacity: 1; transform: scale(1); }
.tile-check { position: absolute; top: 14px; right: 14px; width: 22px; height: 22px; border-radius: 50%;
  background: var(--acc); color: #fff; display: grid; place-items: center; opacity: 0; transform: scale(0.6); transition: .2s; }
.tile-ic { width: 46px; height: 46px; border-radius: 13px; background: var(--glass-2); border: 1px solid var(--line);
  display: grid; place-items: center; color: var(--ink); flex: none; }
.tile.sel .tile-ic { background: rgba(10,132,255,0.2); color: var(--acc-2); border-color: transparent; }
.tile-big { flex-direction: column; align-items: flex-start; padding: 22px 18px; gap: 16px; }
.tile-big .tile-ic { width: 54px; height: 54px; }
.tile-tt { font-size: 16px; font-weight: 600; letter-spacing: -0.01em; display: block; }
.tile-ss { font-size: 13px; color: var(--ink-3); margin-top: 2px; display: block; }
.tile-body { flex: 1; min-width: 0; }
.tile-price { font-size: 14px; font-weight: 600; color: var(--acc-2); white-space: nowrap; }
.tile-price small { color: var(--ink-3); font-weight: 500; font-size: 11px; display: block; text-align: right; }
.tile-dur { font-size: 12.5px; color: var(--ink-3); display: block; margin-top: 3px; }
@media (max-width: 420px) { .wz-tiles.cols3 { grid-template-columns: 1fr; } }

/* form fields */
.wz-field { margin-bottom: 16px; }
.wz-field.row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.wz-label { font-size: 13px; font-weight: 600; color: var(--ink-2); margin-bottom: 7px; display: block; }
.wz-input, .wz-select {
  width: 100%; font-family: inherit; font-size: 16px; color: var(--ink);
  background: var(--glass); border: 1.5px solid var(--line); border-radius: 13px; padding: 14px 15px;
  transition: border-color .18s, background .18s; outline: none;
}
.wz-input::placeholder { color: var(--ink-4); }
.wz-input:focus, .wz-select:focus { border-color: var(--acc); background: var(--glass-2); }
.wz-input.err, .wz-select.err { border-color: #ff5a5a; }
.wz-err { color: #ff7a7a; font-size: 12.5px; margin-top: 6px; }
.wz-select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='none' stroke='%23888' stroke-width='2'%3E%3Cpath d='M3 5l4 4 4-4'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 15px center; padding-right: 40px; }
.wz-select option { background: #16171c; }

/* date & time */
.cal { background: var(--glass); border: 1px solid var(--line); border-radius: var(--r-md); padding: 16px; margin-bottom: 18px; }
.cal-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.cal-head b { font-size: 15px; font-weight: 600; }
.cal-nav { display: flex; gap: 8px; }
.cal-nav button { width: 30px; height: 30px; border-radius: 9px; background: var(--glass-2); border: 1px solid var(--line);
  color: var(--ink-2); cursor: pointer; display: grid; place-items: center; transition: .2s; }
.cal-nav button:hover:not(:disabled) { background: var(--glass-hi); color: var(--ink); }
.cal-nav button:disabled { opacity: 0.3; cursor: not-allowed; }
.cal-dow { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; margin-bottom: 6px; }
.cal-dow span { text-align: center; font-size: 11px; color: var(--ink-3); font-weight: 600; padding: 4px 0; }
.cal-days { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; }
.cal-day { aspect-ratio: 1; border: 0; background: none; color: var(--ink); font-family: inherit; font-size: 14px; font-weight: 500;
  border-radius: 10px; cursor: pointer; transition: .15s; display: grid; place-items: center; position: relative; }
.cal-day:hover:not(:disabled) { background: var(--glass-2); }
.cal-day:disabled { color: var(--ink-4); cursor: not-allowed; }
.cal-day.sel { background: var(--acc); color: #fff; font-weight: 600; }
.cal-day.today::after { content:""; position: absolute; bottom: 5px; width: 4px; height: 4px; border-radius: 50%; background: var(--acc-2); }
.cal-day.sel.today::after { background: #fff; }

.slots { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.slot { padding: 11px 4px; border-radius: 11px; background: var(--glass); border: 1.5px solid var(--line);
  color: var(--ink); font-family: inherit; font-size: 14px; font-weight: 600; cursor: pointer; transition: .15s; }
.slot:hover { border-color: var(--line-2); background: var(--glass-2); }
.slot.sel { border-color: var(--acc); background: var(--acc-soft); color: var(--acc-2); }
.slot-group-label { font-size: 12.5px; font-weight: 600; color: var(--ink-3); margin: 16px 0 9px; }
@media (max-width: 420px) { .slots { grid-template-columns: repeat(3, 1fr); } }

/* summary */
.sum-row { display: flex; justify-content: space-between; align-items: center; padding: 14px 0; border-bottom: 1px solid var(--line); gap: 16px; }
.sum-row:last-of-type { border-bottom: 0; }
.sum-row .sk { color: var(--ink-3); font-size: 14px; flex: none; }
.sum-row .sv { font-size: 14.5px; font-weight: 500; text-align: right; }
.sum-price { margin-top: 18px; padding: 20px; border-radius: var(--r-md); background: var(--acc-soft); border: 1px solid rgba(10,132,255,0.3); }
.sum-price .sp-top { display: flex; justify-content: space-between; align-items: baseline; }
.sum-price .sp-top b { font-size: 30px; font-weight: 600; letter-spacing: -0.02em; }
.sum-price .sp-top span { font-size: 14px; color: var(--ink-2); }
.sum-price small { color: var(--ink-3); font-size: 12.5px; display: block; margin-top: 8px; line-height: 1.5; }
.sum-note { display: flex; gap: 10px; align-items: flex-start; margin-top: 16px; color: var(--ink-2); font-size: 13.5px; }
.sum-note svg { color: var(--ok); flex: none; margin-top: 1px; }

/* success */
.wz-success { text-align: center; padding: 30px 8px 10px; }
.success-ring { width: 86px; height: 86px; border-radius: 50%; margin: 0 auto 22px; display: grid; place-items: center;
  background: radial-gradient(circle, rgba(52,211,153,0.25), transparent 70%); color: var(--ok); }
.success-ring svg { animation: pop .5s cubic-bezier(.2,1.4,.4,1) both; }
@keyframes pop { from { transform: scale(0); } to { transform: scale(1); } }
.wz-success h3 { font-size: 26px; margin-bottom: 12px; }
.wz-success p { color: var(--ink-2); font-size: 15.5px; max-width: 380px; margin: 0 auto; }
.success-card { margin: 24px 0; text-align: left; border-radius: var(--r-md); border: 1px solid var(--line); background: var(--glass); padding: 18px; }

/* footer of wizard */
.wz-foot { flex: none; padding: 14px 20px calc(14px + env(safe-area-inset-bottom)); border-top: 1px solid var(--line);
  background: rgba(12,12,16,0.7); backdrop-filter: blur(12px); }
.wz-foot-price { display: flex; align-items: baseline; gap: 7px; margin-bottom: 11px; }
.wz-foot-price b { font-size: 18px; font-weight: 600; }
.wz-foot-price span { font-size: 12.5px; color: var(--ink-3); }
.wz-next { width: 100%; }
.wz-next:disabled { opacity: 0.4; cursor: not-allowed; }

/* trigger pulse used on hero CTA */
.cta-live { display: inline-flex; align-items: center; gap: 8px; }
.cta-live .pulse { width: 8px; height: 8px; border-radius: 50%; background: var(--ok); position: relative; }
.cta-live .pulse::after { content:""; position: absolute; inset: -4px; border-radius: 50%; border: 1px solid var(--ok); animation: ping 1.8s ease-out infinite; }
@keyframes ping { 0%{ transform: scale(0.6); opacity: 1; } 100%{ transform: scale(1.8); opacity: 0; } }
