/* ============================================================
   DEMO KLIENT — Storytelling autoplay (9 scen)
   ============================================================ */

.demo-klient { min-height: 100vh; padding-bottom: 80px; }

.demo-klient-intro {
  padding: 60px 0 40px;
  text-align: center;
  border-bottom: 1px solid var(--border);
  margin-bottom: 30px;
}
.demo-klient-intro .eyebrow { margin-bottom: 14px; }
.demo-klient-intro h1 {
  font-family: var(--font-serif);
  font-size: 44px;
  font-weight: 500;
  letter-spacing: -1.2px;
  line-height: 1.1;
  margin: 0 0 18px;
}
@media (max-width: 768px) { .demo-klient-intro h1 { font-size: 30px; } }
.demo-klient-lead {
  font-size: 16px;
  color: var(--text-2);
  max-width: 660px;
  margin: 0 auto;
  line-height: 1.6;
}

.demo-klient-stage {
  max-width: 1080px;
  margin: 0 auto 60px;
  padding: 0 20px;
}

.demo-klient-controls {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 18px;
  background: var(--bg-2);
  border: 1px solid var(--border-2);
  border-radius: 10px 10px 0 0;
  border-bottom: none;
}
.demo-klient-btn-play, .demo-klient-btn-restart {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--accent); color: white; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s; flex-shrink: 0;
}
.demo-klient-btn-play:hover, .demo-klient-btn-restart:hover { transform: scale(1.05); }
.demo-klient-btn-restart { background: var(--bg-3); color: var(--text-2); border: 1px solid var(--border); font-size: 16px; }

.demo-klient-progress { flex: 1; height: 4px; background: var(--bg-3); border-radius: 2px; overflow: hidden; }
.demo-klient-progress-bar { height: 100%; background: var(--accent); width: 0%; transition: width 0.1s linear; }

.demo-klient-scene-dots { display: flex; gap: 6px; }
.demo-klient-scene-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--border-2); cursor: pointer;
  transition: all 0.2s; border: none; padding: 0;
}
.demo-klient-scene-dot:hover { transform: scale(1.4); }
.demo-klient-scene-dot.active { background: var(--accent); width: 24px; border-radius: 4px; }
.demo-klient-scene-dot.completed { background: var(--accent); opacity: 0.4; }

.demo-klient-frame {
  position: relative;
  background: var(--bg-2);
  border: 1px solid var(--border-2);
  border-radius: 0 0 10px 10px;
  min-height: 580px;
  overflow: hidden;
  box-shadow: 0 20px 40px -16px rgba(31, 58, 92, 0.15);
}

.scene {
  position: absolute; inset: 0;
  padding: 30px 40px;
  display: flex; flex-direction: column;
  opacity: 0; visibility: hidden;
  transition: opacity 0.5s, visibility 0.5s;
}
.scene-active { opacity: 1; visibility: visible; }

.scene-caption {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--border);
  text-align: center;
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.6;
}
.scene-caption strong { color: var(--text); font-family: var(--font-serif); font-weight: 500; }

/* === SCENA 0 — INTRO === */
.scene-intro {
  flex: 1;
  display: flex; flex-direction: column;
  justify-content: center; align-items: center;
  text-align: center;
  background: linear-gradient(135deg, #0a0b0e 0%, #1a1d23 100%);
  margin: -30px -40px;
  padding: 30px 40px;
  color: white;
  position: relative; overflow: hidden;
}
.scene-intro::before {
  content: ""; position: absolute;
  top: -50%; right: -20%;
  width: 70%; height: 200%;
  background: radial-gradient(circle, rgba(110, 231, 183, 0.1) 0%, transparent 60%);
}
.scene-intro-clock {
  font-family: var(--font-serif);
  font-size: 96px; font-weight: 500;
  line-height: 1; letter-spacing: -3px;
  margin-bottom: 18px;
  color: #6ee7b7;
}
.scene-intro-title { font-family: var(--font-serif); font-size: 28px; font-weight: 500; letter-spacing: -0.5px; margin-bottom: 6px; }
.scene-intro-subtitle { font-size: 14px; opacity: 0.85; margin-bottom: 32px; }
.scene-intro-meta { font-family: var(--font-mono); font-size: 11px; opacity: 0.6; letter-spacing: 0.05em; text-transform: uppercase; }

/* === PHONE FRAME === */
.scene-fullpanel, .scene-app-open, .scene-scan, .scene-question, .scene-reply, .scene-accepted, .scene-ai-advisor {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.phone-frame {
  width: 280px;
  height: 540px;
  background: #1a1a1a;
  border-radius: 38px;
  padding: 8px;
  position: relative;
  box-shadow: 0 24px 60px -16px rgba(0, 0, 0, 0.4);
  flex-shrink: 0;
}
.phone-notch {
  position: absolute;
  top: 8px; left: 50%;
  transform: translateX(-50%);
  width: 90px; height: 24px;
  background: #1a1a1a;
  border-radius: 0 0 14px 14px;
  z-index: 10;
}
.phone-screen-dark {
  width: 100%; height: 100%;
  background: #0a0b0e;
  border-radius: 30px;
  overflow: hidden;
  padding: 38px 14px 14px;
  display: flex; flex-direction: column;
  color: #f0f2f5;
  position: relative;
}
.phone-screen-scrollable {
  overflow-y: auto;
  padding: 38px 12px 14px;
}
.phone-screen-scrollable::-webkit-scrollbar { width: 0; }

.phone-topbar {
  display: flex; justify-content: space-between; align-items: center;
  padding-bottom: 10px;
  border-bottom: 1px solid #2a2d33;
  margin-bottom: 12px;
  flex-shrink: 0;
}
.phone-brand { display: flex; gap: 8px; align-items: center; }
.phone-logo-icon { width: 22px; height: 22px; border-radius: 6px; background: linear-gradient(135deg, #6ee7b7, #93c5fd); }
.phone-logo-name { font-family: var(--font-serif); font-size: 14px; font-weight: 500; }
.phone-logo-sub { font-size: 9px; color: #6b7280; }
.phone-avatar {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: linear-gradient(135deg, #6ee7b7, #93c5fd);
  color: #0a0b0e;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 11px;
}

/* === SCENA 1 — PEŁNY PANEL FINANSOWY === */
.phone-hero-card {
  background: linear-gradient(135deg, #11141a 0%, #1a1d23 100%);
  border: 1px solid #2a2d33;
  border-radius: 10px;
  padding: 14px 16px;
  margin-bottom: 8px;
  position: relative; overflow: hidden;
}
.phone-hero-card::before {
  content: ""; position: absolute;
  top: -50%; right: -20%;
  width: 70%; height: 200%;
  background: radial-gradient(circle, rgba(110, 231, 183, 0.15), transparent 70%);
}
.phone-hero-label {
  font-size: 9px; color: #6b7280;
  letter-spacing: 0.06em; text-transform: uppercase;
  margin-bottom: 4px;
  position: relative; z-index: 2;
}
.phone-hero-value {
  font-family: var(--font-serif);
  font-size: 26px; font-weight: 500;
  color: #f0f2f5;
  letter-spacing: -1px; line-height: 1;
  margin-bottom: 6px;
  position: relative; z-index: 2;
}
.phone-hero-value .suffix { font-size: 14px; color: #a1a8b3; font-weight: 400; }
.phone-hero-trend {
  display: inline-flex; gap: 4px; align-items: center;
  font-size: 10px; color: #6ee7b7; font-weight: 500;
  position: relative; z-index: 2;
}

.phone-grid-2 {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 6px; margin-bottom: 8px;
}
.phone-mini-card {
  background: #11141a; border: 1px solid #2a2d33;
  padding: 10px; border-radius: 8px;
}
.phone-mini-card.phone-cashflow { padding: 10px 12px; }
.phone-mini-icon {
  width: 22px; height: 22px;
  border-radius: 6px;
  background: rgba(110, 231, 183, 0.1); color: #6ee7b7;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 6px;
}
.phone-mini-label {
  font-family: var(--font-serif); font-size: 10px;
  font-weight: 500; color: #f0f2f5; margin-bottom: 4px;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.phone-mini-progress {
  height: 4px; background: #2a2d33; border-radius: 2px;
  overflow: hidden; margin-bottom: 4px;
}
.phone-mini-progress-fill { height: 100%; background: #6ee7b7; border-radius: 2px; }
.phone-mini-progress-fill.warn { background: #fbbf24; }
.phone-mini-meta { font-size: 9px; color: #6b7280; font-family: var(--font-mono); }

.phone-mini-card-title {
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--font-serif); font-size: 10px;
  font-weight: 500; color: #f0f2f5; margin-bottom: 6px;
}
.phone-ai-badge {
  background: rgba(147, 197, 253, 0.15); color: #93c5fd;
  font-size: 8px; padding: 1px 6px; border-radius: 999px;
  font-family: var(--font-mono); letter-spacing: 0.05em; font-weight: 600;
}
.phone-chart { width: 100%; height: 32px; display: block; }

.phone-alert {
  background: rgba(251, 191, 36, 0.08);
  border: 1px solid rgba(251, 191, 36, 0.25);
  border-left: 3px solid #fbbf24;
  border-radius: 6px;
  padding: 7px 10px;
  display: flex; gap: 6px; align-items: center;
  font-size: 10px; color: #a1a8b3;
}
.phone-alert svg { color: #fbbf24; flex-shrink: 0; }
.phone-alert strong { color: #fbbf24; }

/* === SCENA 2 (panel z hero greeting) === */
.phone-hero { margin-bottom: 14px; }
.phone-greeting { font-family: var(--font-serif); font-size: 22px; font-weight: 500; letter-spacing: -0.5px; margin-bottom: 2px; }
.phone-subtitle { font-size: 11px; color: #6b7280; }

.phone-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 14px; }
.phone-stat { background: #11141a; border: 1px solid #2a2d33; padding: 12px; border-radius: 8px; }
.phone-stat-value { font-family: var(--font-serif); font-size: 22px; font-weight: 700; letter-spacing: -0.5px; line-height: 1; }
.phone-stat-value.accent { color: #6ee7b7; }
.phone-stat-value.warn { color: #fbbf24; }
.phone-stat-label { font-size: 10px; color: #6b7280; margin-top: 4px; }

.phone-action-card {
  background: #11141a; border: 1px dashed #2a2d33;
  padding: 22px 16px; border-radius: 10px;
  text-align: center; cursor: pointer;
}
.phone-pulse { animation: pulse-card 1.6s ease-in-out infinite; }
@keyframes pulse-card { 0%, 100% { border-color: #2a2d33; transform: scale(1); } 50% { border-color: #6ee7b7; transform: scale(1.02); } }
.phone-action-icon { color: #6ee7b7; margin: 0 auto 6px; display: flex; justify-content: center; }
.phone-action-title { font-family: var(--font-serif); font-size: 14px; font-weight: 500; margin-bottom: 4px; }
.phone-action-sub { font-size: 10px; color: #6ee7b7; font-family: var(--font-mono); }

/* === SCENA 3 — SKAN === */
.phone-camera-view {
  flex: 1; background: #000; border-radius: 8px;
  margin-bottom: 12px; position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.phone-camera-overlay {
  position: absolute; inset: 12px;
  border: 2px dashed rgba(255, 255, 255, 0.3);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 8px; z-index: 1;
}
.phone-camera-frame-icon { width: 40px; height: 40px; border: 2px solid rgba(255, 255, 255, 0.5); border-radius: 4px; position: relative; }
.phone-camera-frame-icon::before, .phone-camera-frame-icon::after { content: ""; position: absolute; width: 12px; height: 12px; border: 2px solid white; }
.phone-camera-frame-icon::before { top: -4px; left: -4px; border-right: none; border-bottom: none; }
.phone-camera-frame-icon::after { bottom: -4px; right: -4px; border-left: none; border-top: none; }
.phone-camera-text { color: rgba(255, 255, 255, 0.6); font-size: 10px; font-family: var(--font-mono); letter-spacing: 0.04em; text-transform: uppercase; }

.phone-paragon-flying {
  position: absolute; z-index: 2;
  transform: rotate(-4deg) scale(0.85);
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.phone-paragon-flying.captured { transform: rotate(0deg) scale(0.95); }
.paragon-real {
  background: #fef9ee; padding: 14px 16px;
  font-family: 'Courier New', monospace;
  font-size: 10px; color: #2a1f0e; width: 160px;
  border-radius: 2px; box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}
.paragon-real-vendor { font-weight: 700; text-align: center; font-size: 12px; margin-bottom: 8px; }
.paragon-real-line { display: flex; justify-content: space-between; margin: 3px 0; }
.paragon-real-line.bold { font-weight: 700; font-size: 11px; }
.paragon-real-divider { border-top: 1px dashed #2a1f0e; margin: 6px 0; }

.phone-capture-btn {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  border: 3px solid white;
  margin: 0 auto; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
}
.phone-capture-btn.flashing { animation: capture-flash 0.4s; }
@keyframes capture-flash { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.15); background: white; } }
.phone-capture-inner { width: 44px; height: 44px; border-radius: 50%; background: white; }
.phone-status-line { text-align: center; font-size: 11px; color: #6b7280; margin-top: 12px; font-family: var(--font-mono); letter-spacing: 0.04em; }

/* === SCENA 4 — AI process split === */
.scene-ai-process { flex: 1; display: flex; align-items: center; justify-content: center; }
.scene-split-2col { display: grid; grid-template-columns: 1fr auto 1.2fr; gap: 18px; align-items: center; width: 100%; max-width: 760px; }
@media (max-width: 768px) { .scene-split-2col { grid-template-columns: 1fr; } .scene-arrow { transform: rotate(90deg); } }
.scene-arrow { color: var(--accent); display: flex; justify-content: center; }

.phone-mini, .office-mini { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.phone-mini-frame { background: #1a1a1a; border-radius: 24px; padding: 6px; width: 200px; box-shadow: 0 12px 32px -10px rgba(0, 0, 0, 0.4); }
.phone-mini-screen { background: #0a0b0e; border-radius: 18px; padding: 16px 12px; color: #f0f2f5; min-height: 220px; }

.phone-status-card { text-align: center; padding: 10px 0; border-bottom: 1px solid #2a2d33; margin-bottom: 12px; }
.phone-status-icon { color: #6ee7b7; display: flex; justify-content: center; margin-bottom: 6px; }
.phone-status-title { font-family: var(--font-serif); font-size: 13px; font-weight: 500; margin-bottom: 4px; }
.phone-status-time { font-size: 10px; color: #6b7280; font-family: var(--font-mono); }

.phone-status-doc { background: #11141a; border: 1px solid #2a2d33; padding: 10px; border-radius: 6px; }
.phone-status-doc-vendor { font-family: var(--font-serif); font-size: 12px; font-weight: 500; margin-bottom: 4px; }
.phone-status-doc-status { font-size: 9px; font-family: var(--font-mono); letter-spacing: 0.04em; text-transform: uppercase; }
.phone-status-doc-status.pending { color: #fbbf24; }
.phone-status-doc-status.accepted { color: #6ee7b7; }

.phone-mini-label, .office-mini-label { font-size: 11px; color: var(--text-3); font-family: var(--font-mono); letter-spacing: 0.04em; text-transform: uppercase; }

.office-mini-frame { background: var(--bg); border: 1px solid var(--border); border-radius: 8px; width: 320px; overflow: hidden; box-shadow: 0 12px 32px -10px rgba(31, 58, 92, 0.15); }
.office-mini-titlebar { background: var(--bg-3); padding: 8px 12px; font-family: var(--font-mono); font-size: 10px; color: var(--text-3); border-bottom: 1px solid var(--border); }

.office-mini-doc { padding: 14px 16px; }
.office-mini-doc-header { display: flex; gap: 8px; align-items: center; margin-bottom: 12px; padding-bottom: 10px; border-bottom: 1px solid var(--border); }
.office-mini-doc-icon { color: var(--accent); display: flex; }
.office-mini-doc-vendor { font-family: var(--font-serif); font-size: 14px; font-weight: 500; }

.office-mini-fields { display: flex; flex-direction: column; gap: 6px; }
.office-mini-field {
  display: flex; justify-content: space-between; align-items: center;
  padding: 6px 10px;
  background: var(--bg-3); border: 1px solid var(--border);
  border-radius: 4px;
  opacity: 0; transform: translateX(-10px);
  transition: all 0.4s;
}
.office-mini-field.revealed { opacity: 1; transform: translateX(0); background: var(--accent-soft); border-color: var(--accent); }
.office-mini-field-label { font-size: 10px; color: var(--text-3); letter-spacing: 0.04em; text-transform: uppercase; }
.office-mini-field-value { font-family: var(--font-serif); font-size: 12px; font-weight: 500; color: var(--text); }

/* === SCENA 5 — Pytanie === */
.phone-toast {
  position: absolute; top: 38px; left: 16px; right: 16px;
  background: #11141a;
  border: 1px solid #6ee7b7;
  border-left: 4px solid #6ee7b7;
  padding: 12px 14px; border-radius: 8px;
  display: flex; gap: 12px; align-items: center;
  z-index: 10;
  opacity: 0; transform: translateY(-10px);
  transition: opacity 0.4s, transform 0.4s;
}
.phone-toast.show { opacity: 1; transform: translateY(0); }
.phone-toast-icon { color: #6ee7b7; display: flex; }
.phone-toast-title { font-family: var(--font-serif); font-size: 12px; font-weight: 500; color: #f0f2f5; }
.phone-toast-body { font-size: 11px; color: #a1a8b3; }

.phone-section-title { font-size: 10px; color: #6b7280; font-family: var(--font-mono); letter-spacing: 0.06em; text-transform: uppercase; margin: 8px 0 12px; }

.phone-msg {
  display: flex; flex-direction: column;
  max-width: 80%; margin-bottom: 10px;
  opacity: 0;
  animation: msg-in 0.4s forwards;
}
.phone-msg.phone-msg-tenant { align-self: flex-start; align-items: flex-start; }
.phone-msg.phone-msg-client { align-self: flex-end; align-items: flex-end; margin-left: auto; }
.phone-msg-bubble { padding: 8px 12px; border-radius: 12px; font-size: 11.5px; line-height: 1.4; }
.phone-msg-tenant .phone-msg-bubble { background: #1a1d23; border: 1px solid #2a2d33; color: #f0f2f5; border-bottom-left-radius: 3px; }
.phone-msg-client .phone-msg-bubble { background: #6ee7b7; color: #0a0b0e; font-weight: 500; border-bottom-right-radius: 3px; }
.phone-msg-bubble strong { color: #6ee7b7; }
.phone-msg-client .phone-msg-bubble strong { color: #1a4d3e; }
.phone-msg-meta { font-size: 9px; color: #6b7280; margin-top: 3px; padding: 0 4px; }
@keyframes msg-in { to { opacity: 1; } }

.phone-msg-show { opacity: 0; animation: msg-show 0.6s forwards; }
@keyframes msg-show { to { opacity: 1; } }

.phone-input-bar {
  margin-top: auto;
  display: flex; gap: 8px; align-items: center;
  background: #11141a;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid #2a2d33;
}
.phone-input-text { flex: 1; font-size: 11px; color: #6b7280; }
.phone-input-send {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: #6ee7b7;
  color: #0a0b0e;
  display: flex; align-items: center; justify-content: center;
}

/* === SCENA 7 — AKCEPTACJA === */
.phone-success-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: rgba(110, 231, 183, 0.15);
  border: 2px solid #6ee7b7;
  color: #6ee7b7;
  display: flex; align-items: center; justify-content: center;
  margin: 30px auto 18px;
}
.phone-success-title { font-family: var(--font-serif); font-size: 18px; font-weight: 500; text-align: center; margin-bottom: 8px; }
.phone-success-sub { font-size: 11px; color: #a1a8b3; text-align: center; line-height: 1.5; margin-bottom: 24px; padding: 0 14px; }

.phone-doc-card { background: #11141a; border: 1px solid #6ee7b7; padding: 14px; border-radius: 8px; text-align: center; }
.phone-doc-vendor { font-family: var(--font-serif); font-size: 14px; font-weight: 500; margin-bottom: 4px; }
.phone-doc-meta { font-size: 10px; color: #6b7280; font-family: var(--font-mono); margin-bottom: 8px; }
.phone-doc-status {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 10px; padding: 3px 10px; border-radius: 999px;
  font-family: var(--font-mono); letter-spacing: 0.04em;
}
.phone-doc-status.accepted { background: rgba(110, 231, 183, 0.15); color: #6ee7b7; }

/* === SCENA 9 — WYNIK === */
.scene-results {
  flex: 1;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; padding: 20px;
}
.results-headline {
  font-family: var(--font-serif);
  font-size: 32px; font-weight: 500;
  letter-spacing: -1px; margin-bottom: 30px;
  color: var(--text);
}
@media (max-width: 768px) { .results-headline { font-size: 22px; } }

.results-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  width: 100%; max-width: 720px; margin-bottom: 32px;
}
@media (max-width: 768px) { .results-grid { grid-template-columns: repeat(2, 1fr); } }

.result-card {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: 8px; padding: 22px 14px;
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.6s, transform 0.6s;
}
.result-card.show { opacity: 1; transform: translateY(0); }
.result-card-1.show { transition-delay: 0s; }
.result-card-2.show { transition-delay: 0.15s; }
.result-card-3.show { transition-delay: 0.3s; }
.result-card-4.show { transition-delay: 0.45s; }

.result-icon {
  width: 48px; height: 48px;
  background: var(--accent-soft); color: var(--accent);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 10px;
}
.result-label { font-family: var(--font-serif); font-size: 13px; color: var(--text); line-height: 1.4; font-weight: 500; }

.results-quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 15px;
  color: var(--text-2);
  max-width: 560px;
  line-height: 1.6;
  position: relative;
  padding: 0 24px;
}
.results-quote::before, .results-quote::after { content: '"'; font-size: 28px; color: var(--accent); font-style: normal; position: absolute; }
.results-quote::before { left: 0; top: -10px; }
.results-quote::after { right: 0; bottom: -20px; }

/* === CTA === */
.demo-klient-cta {
  background: var(--bg-3);
  padding: 60px 0;
  text-align: center;
  border-top: 1px solid var(--border);
}
.demo-klient-cta h2 { font-family: var(--font-serif); font-size: 38px; font-weight: 500; letter-spacing: -1px; line-height: 1.2; margin: 0 0 16px; }
@media (max-width: 768px) { .demo-klient-cta h2 { font-size: 26px; } }
.demo-klient-cta p { font-size: 15px; color: var(--text-2); max-width: 560px; margin: 0 auto 32px; line-height: 1.6; }
.demo-klient-cta-buttons { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
