/* ── Hero ── */
.help-hero {
  background: linear-gradient(180deg, #0b1c2d 0%, #0f2438 100%);
  padding: 64px 0 56px;
  text-align: center;
}
.help-hero h1 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  color: #fcfcfa;
  margin: 0 0 12px;
}
.help-hero p {
  font-size: 1rem;
  color: #94a3b8;
  margin: 0 auto;
  max-width: 560px;
}

/* ── Szybkie linki ── */
.quick-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 40px 0 0;
}
.quick-link {
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 100px;
  text-decoration: none;
  color: #e2e8f0;
  font-weight: 500;
  font-size: 0.88rem;
  white-space: nowrap;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.quick-link:hover {
  background: rgba(14,165,164,0.25);
  border-color: #0ea5a4;
  color: #fff;
}

/* ── Sekcje tematyczne ── */
.help-section {
  padding: 56px 0;
}
.help-section + .help-section {
  border-top: 1px solid var(--procuro-border);
}
.help-section-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--procuro-navy-800);
  margin: 0 0 8px;
}
.help-section-sub {
  font-size: 0.95rem;
  color: var(--procuro-muted);
  margin: 0 0 32px;
}

/* ── FAQ – lista Q&A ── */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  border: 1px solid var(--procuro-border);
  border-radius: 12px;
  overflow: hidden;
}
.faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  text-align: left;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--procuro-navy-800);
  transition: background 0.15s;
}
.faq-q:hover { background: var(--procuro-bg-light); }
.faq-q svg {
  flex-shrink: 0;
  transition: transform 0.2s;
  color: var(--procuro-teal-500);
}
.faq-item.open .faq-q svg { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  font-size: 0.93rem;
  color: var(--procuro-muted);
  line-height: 1.7;
  padding: 0 22px;
}
.faq-item.open .faq-a {
  max-height: 600px;
  padding: 0 22px 20px;
}

/* ── Kroki (numbered steps) ── */
.steps {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.step {
  display: flex;
  gap: 18px;
}
.step-num {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0ea5a4, #0891b2);
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.step-body h4 {
  margin: 0 0 4px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--procuro-navy-800);
}
.step-body p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--procuro-muted);
  line-height: 1.6;
}

/* ── Tip box ── */
.tip {
  background: rgba(14,165,164,.07);
  border-left: 3px solid var(--procuro-teal-500);
  border-radius: 0 10px 10px 0;
  padding: 14px 18px;
  font-size: 0.9rem;
  color: var(--procuro-navy-700);
  line-height: 1.6;
  margin-top: 24px;
}
.tip strong { color: var(--procuro-teal-500); }

/* ── Karta kontaktowa ── */
.contact-banner {
  background: linear-gradient(135deg, #0b1c2d, #102a43);
  border-radius: 20px;
  padding: 48px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  margin: 56px 0;
}
.contact-banner h2 {
  margin: 0 0 8px;
  font-size: 1.4rem;
  font-weight: 700;
  color: #fcfcfa;
}
.contact-banner p {
  margin: 0;
  color: #94a3b8;
  font-size: 0.95rem;
}

/* ── 2-col layout ── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

/* ── Inline badge ── */
.badge-ai {
  display: inline-block;
  background: linear-gradient(135deg, #0ea5a4, #0891b2);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 1px 7px;
  border-radius: 6px;
  vertical-align: middle;
  letter-spacing: .03em;
}
.badge-pro {
  display: inline-block;
  background: #0b1c2d;
  color: #0ea5a4;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 1px 7px;
  border-radius: 6px;
  border: 1px solid #0ea5a4;
  vertical-align: middle;
}

/* ── Responsive ── */
@media (max-width: 720px) {
  .two-col { grid-template-columns: 1fr; }
  .contact-banner { padding: 32px 24px; }
  .quick-links { gap: 8px; }
  .help-hero { padding: 40px 0 32px; }
  .help-section { padding: 36px 0; }
  .contact-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .contact-banner a.procuro-btn {
    width: 100%;
    justify-content: center;
  }
}
