/* ── ZALICZKI I PŁATNOŚCI (podstrona funkcji) ───────────
   Reużywa komponentów z strona-zapisow.css (.hero-std, .sz-contrast,
   .sz-bullets, .sz-objection, .final-cta). Tu tylko nowe elementy:
   panel statusu płatności (hero), karty form, sekcja „bez prowizji". */

/* ── Hero — panel statusu płatności ─────────────────── */
.zp-roster {
  background: #fff; border: 1px solid var(--border-strong); border-radius: 4px;
  box-shadow: 0 10px 30px rgba(17,17,17,0.06); overflow: hidden;
}
.zp-roster-head {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 18px 20px; border-bottom: 1px solid var(--border);
}
.zp-roster-title { margin: 0; font-family: var(--font-heading); font-size: 15px; font-weight: 600; color: var(--text); }
.zp-roster-sub { margin: 2px 0 0; font-size: 12px; color: var(--text-muted); }
.zp-roster-badge {
  flex-shrink: 0; font-size: 11.5px; font-weight: 700; color: var(--brand);
  background: var(--brand-soft); padding: 5px 10px; border-radius: 4px; white-space: nowrap;
}
.zp-roster-list { padding: 6px 8px; }
.zp-roster-row { display: flex; align-items: center; gap: 12px; padding: 11px 12px; }
.zp-roster-row + .zp-roster-row { border-top: 1px solid var(--border); }
.zp-ava {
  width: 34px; height: 34px; border-radius: 50%; flex-shrink: 0;
  background: var(--brand-soft); color: var(--brand);
  display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 13px;
}
.zp-roster-info { display: flex; flex-direction: column; flex: 1; min-width: 0; }
.zp-roster-name { font-size: 13.5px; font-weight: 600; color: var(--text); }
.zp-roster-method { font-size: 11.5px; color: var(--text-muted); }
.zp-tag { flex-shrink: 0; font-size: 10.5px; font-weight: 700; padding: 4px 9px; border-radius: 4px; white-space: nowrap; }
.zp-tag.paid { color: #15803d; background: #dcfce7; }
.zp-tag.partial { color: #b45309; background: #fef3c7; }
.zp-tag.wait { color: #6b7280; background: #eef0f2; }

/* ── Sekcja 3 — Rozwiązanie (copy + makieta zasad) ──── */
.zp-solution-grid {
  display: grid; grid-template-columns: 0.95fr 1.05fr; gap: 56px; align-items: center;
}
.zp-solution-copy { text-align: left; }
.zp-solution-copy .sz-eyebrow { margin-bottom: 14px; }
.zp-solution-copy h2 {
  margin: 0 0 14px; font-family: var(--font-heading); font-size: var(--fs-section, clamp(1.7rem, 2.7vw, 2.3rem));
  font-weight: 600; line-height: 1.18; letter-spacing: -0.01em; color: var(--text); text-wrap: balance;
}
.zp-solution-copy > p { margin: 0; max-width: 46ch; font-size: 16px; line-height: 1.65; color: var(--text-muted); }
.zp-solution-copy .sz-bullets { display: flex; margin-top: 24px; }

.zp-reel { width: 320px; margin: 0 auto; }
.zp-reel-window { position: relative; height: 156px; overflow: hidden; border-radius: 4px; }
.zp-reel-strip { animation: zpReel 13s infinite; }
.zp-reel-card { height: 156px; display: flex; align-items: center; justify-content: center; }
@keyframes zpReel {
  0% { transform: translateY(0); }
  16% { transform: translateY(0); animation-timing-function: cubic-bezier(0.5,0,0.12,1.12); }
  22% { transform: translateY(-156px); }
  38% { transform: translateY(-156px); animation-timing-function: cubic-bezier(0.5,0,0.12,1.12); }
  44% { transform: translateY(-312px); }
  60% { transform: translateY(-312px); animation-timing-function: cubic-bezier(0.5,0,0.12,1.12); }
  66% { transform: translateY(-468px); }
  82% { transform: translateY(-468px); animation-timing-function: cubic-bezier(0.5,0,0.12,1.12); }
  88% { transform: translateY(-624px); }
  100% { transform: translateY(-624px); }
}

.zp-rc {
  width: 288px; background: #fff; border: 1px solid var(--border-strong); border-radius: 4px;
  box-shadow: 0 6px 18px rgba(17,17,17,0.07); padding: 15px 16px;
}
.zp-rc-label { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: var(--text-muted); margin-bottom: 10px; }
.zp-rc-row { display: flex; align-items: center; gap: 12px; }
.zp-rc-ic {
  width: 38px; height: 38px; border-radius: 4px; flex-shrink: 0;
  background: var(--brand-soft); color: var(--brand); display: flex; align-items: center; justify-content: center;
}
.zp-rc-ic svg { width: 19px; height: 19px; }
.zp-rc-title { font-size: 13px; font-weight: 600; color: var(--text); line-height: 1.3; }
.zp-rc-sub { font-size: 11.5px; color: var(--text-muted); margin-top: 2px; }
.zp-rc-pill {
  margin-left: auto; flex-shrink: 0; font-size: 9px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase;
  color: var(--brand); background: var(--brand-soft); padding: 3px 7px; border-radius: 4px;
}
.zp-rc-paid { display: flex; align-items: center; gap: 12px; }
.zp-paid-check {
  width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0;
  background: #dcfce7; color: #15803d; display: flex; align-items: center; justify-content: center;
}
.zp-paid-check svg { width: 20px; height: 20px; }

/* karta 3 — powiadomienie SMS na ekranie telefonu (górna część urządzenia) */
.zp-phone-top {
  width: 234px; height: 150px; margin: 0 auto; background: #1c2530;
  border-radius: 30px 30px 7px 7px; padding: 7px 7px 0;
  box-shadow: 0 12px 30px rgba(17,17,17,0.22);
}
.zp-phone-scr {
  position: relative; height: 100%; border-radius: 24px 24px 0 0; overflow: hidden;
  background: linear-gradient(160deg, #3f6079 0%, #243643 100%);
}
.zp-scr-notch {
  position: absolute; top: 7px; left: 50%; transform: translateX(-50%);
  width: 72px; height: 17px; background: #0c1116; border-radius: 4px;
}
.zp-scr-status {
  display: flex; justify-content: space-between; align-items: center;
  padding: 8px 16px 0; color: #fff; font-size: 11px; font-weight: 700;
}
.zp-scr-ico { display: inline-flex; align-items: center; gap: 5px; }
.zp-scr-ico svg { height: 10px; width: auto; }
.zp-ios-notif {
  display: flex; gap: 10px; margin: 13px 10px 0; background: rgba(255,255,255,0.96);
  border-radius: 4px; padding: 9px 11px; box-shadow: 0 6px 16px rgba(0,0,0,0.25);
}
.zp-ios-app {
  width: 32px; height: 32px; border-radius: 4px; flex-shrink: 0; background: var(--brand); color: #fff;
  display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 15px;
}
.zp-ios-body { flex: 1; min-width: 0; }
.zp-ios-head { display: flex; justify-content: space-between; align-items: baseline; }
.zp-ios-name { font-size: 10.5px; font-weight: 700; letter-spacing: 0.02em; color: #111; }
.zp-ios-time { font-size: 9.5px; color: #6b7280; }
.zp-ios-text { font-size: 11.5px; line-height: 1.4; color: #1c2530; margin-top: 2px; }

@media (prefers-reduced-motion: reduce) {
  .zp-reel-strip { animation: none; transform: translateY(0); }
}

/* ── Sekcja 4 — Formy płatności (3 karty) ───────────── */
.zp-forms { max-width: 1120px; margin: 0 auto; padding: 12px 32px 76px; }
.zp-forms-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.zp-form-card {
  background: #fff; border: 1px solid var(--border-strong); border-radius: 4px;
  padding: 26px 24px; box-shadow: 0 1px 2px rgba(17,17,17,0.04);
}
.zp-form-card.is-active { border-color: var(--brand); background: var(--brand-soft); }
.zp-form-ic {
  width: 40px; height: 40px; border-radius: 4px; margin-bottom: 16px;
  background: var(--brand-soft); color: var(--brand);
  display: flex; align-items: center; justify-content: center;
}
.zp-form-card.is-active .zp-form-ic { background: #fff; }
.zp-form-ic svg { width: 21px; height: 21px; }
.zp-form-card h3 { margin: 0 0 7px; font-family: var(--font-heading); font-size: 16px; font-weight: 600; color: var(--text); }
.zp-form-card p { margin: 0; font-size: 14px; line-height: 1.6; color: var(--text-muted); }

/* ── Równy rytm pionowy sekcji (gap ≈ 112px między sekcjami) ─── */
.zp-page .hero-std { padding-bottom: 88px; }
.zp-page .sz-problem { padding-top: 24px; padding-bottom: 88px; }
.zp-page .sz-solution { padding-top: 24px; padding-bottom: 88px; }
.zp-page .zp-forms { padding-top: 24px; padding-bottom: 88px; }
.zp-page .sz-objection { padding-top: 24px; padding-bottom: 88px; }
.zp-page .final-cta { padding-top: 24px; }

/* ── Responsywność ──────────────────────────────────── */
@media (max-width: 960px) {
  .zp-forms-grid { grid-template-columns: 1fr; }
  .zp-solution-grid { grid-template-columns: 1fr; gap: 36px; }
}
@media (max-width: 600px) {
  .zp-forms { padding-left: 20px; padding-right: 20px; }
  .zp-roster-head { padding: 14px 16px; }
}
