.section-hero { position: relative; padding: 68px 0 54px; overflow: hidden; }
.section-hero::before { content: ""; position: absolute; top: -190px; right: -140px; width: 720px; height: 720px; border-radius: 50%; background: radial-gradient(circle, rgba(226,154,34,.25), rgba(199,122,19,.08) 45%, transparent 72%); pointer-events: none; }
.section-hero::after { content: ""; position: absolute; bottom: 4%; left: -160px; width: 520px; height: 420px; border-radius: 50%; background: radial-gradient(circle, rgba(41,92,74,.13), transparent 68%); pointer-events: none; }
.hero-grid { position: relative; z-index: 1; display: grid; gap: 38px; align-items: center; }
.hero-copy { display: grid; align-content: center; }
.hero-copy .lead { margin-top: 20px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.hero-proof { display: grid; grid-template-columns: 1fr; gap: 12px; margin-top: 28px; }
.proof-item { display: flex; gap: 12px; align-items: center; padding: 12px; border: 1px solid rgba(16,23,36,.09); border-radius: 18px; background: rgba(255,253,248,.72); box-shadow: 0 10px 24px rgba(16,23,36,.05); }
.proof-icon { width: 50px; height: 50px; min-width: 50px; display: grid; place-items: center; border-radius: 15px; background: var(--color-accent-soft); color: var(--color-accent); }
.proof-icon svg { width: 26px; height: 26px; }
.proof-text strong { display: block; color: var(--color-text); font-size: 14px; font-weight: 900; }
.proof-text span { display: block; color: var(--color-muted); font-size: 13px; }
.hero-visual { position: relative; min-height: 360px; display: grid; place-items: center; }
.window-demo { width: min(100%, 470px); border: 1px solid rgba(16,23,36,.10); border-radius: 32px; background: linear-gradient(145deg, #fffdf8, #f4eadc); box-shadow: var(--shadow-soft); padding: 22px; transform: perspective(900px) rotateY(-6deg) rotateX(2deg); }
.window-frame { position: relative; aspect-ratio: 1.18; border-radius: 24px; overflow: hidden; border: 12px solid #111724; background: linear-gradient(135deg, #bed9ef 0%, #f7d59a 58%, #ffe8b6 100%); box-shadow: inset 0 0 0 2px rgba(255,255,255,.4); }
.window-frame::before, .window-frame::after { content: ""; position: absolute; background: rgba(17,23,36,.92); z-index: 2; }
.window-frame::before { width: 12px; top: 0; bottom: 0; left: 50%; transform: translateX(-50%); }
.window-frame::after { height: 12px; left: 0; right: 0; top: 50%; transform: translateY(-50%); }
.window-shine { position: absolute; inset: -20%; background: linear-gradient(110deg, transparent 24%, rgba(255,255,255,.75) 40%, transparent 54%); transform: translateX(-34%); animation: shineMove 5.8s ease-in-out infinite; }
.blind-lines { position: absolute; inset: 8px; display: grid; gap: 10px; padding: 14px; opacity: .72; }
.blind-lines i { display: block; height: 7px; border-radius: 99px; background: rgba(255,255,255,.52); box-shadow: 0 2px 8px rgba(16,23,36,.08); }
.demo-labels { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 14px; }
.demo-label { padding: 12px; border: 1px solid rgba(16,23,36,.10); border-radius: 16px; background: rgba(255,255,255,.72); }
.demo-label strong { display: block; font-size: 13px; font-weight: 950; color: var(--color-text); }
.demo-label span { display: block; font-size: 12px; color: var(--color-muted); }
@keyframes shineMove { 0%, 42% { transform: translateX(-65%); } 64%, 100% { transform: translateX(68%); } }

/* FIX V4 — poprawne lamienie tekstu w kartach hero bez inline span */
.proof-item {
  align-items: flex-start;
  gap: 14px;
  padding: 18px;
}
.proof-text {
  display: block;
  min-width: 0;
}
.proof-text strong {
  display: block;
  margin: 0 0 6px;
  color: var(--color-text);
  font-size: 16px;
  line-height: 1.25;
  font-weight: 950;
}
.proof-text p {
  display: block;
  margin: 0;
  color: var(--color-muted);
  font-size: 15px;
  line-height: 1.55;
}
.proof-phone {
  display: inline-flex;
  margin-top: 6px;
  color: var(--color-accent);
  font-weight: 900;
  text-decoration: none;
}
.proof-phone:hover { text-decoration: underline; }
@media (max-width: 560px) {
  .proof-item { padding: 16px; }
  .proof-text strong { font-size: 15px; }
  .proof-text p { font-size: 14px; }
}
