/* ── /prezentacja — karty wyboru, kroki, FAQ ─────────────
   Reużywa komponentów .kontakt-* (kontakt.css). */

html { scroll-behavior: smooth; }
#formularz { scroll-margin-top: 84px; }

.dp-options { max-width: 1080px; margin: 0 auto; padding: 8px 32px 8px; display: grid; grid-template-columns: 1fr 1fr; gap: 24px; position: relative; z-index: 1; }
.dp-option { background: #fff; border: 1px solid var(--border-strong); border-radius: var(--card-radius); padding: 28px; display: flex; flex-direction: column; box-shadow: 0 1px 2px rgba(17,17,17,0.05); }
.dp-option-tag { display: inline-flex; align-self: flex-start; align-items: center; padding: 5px 10px; border-radius: 4px; background: var(--brand-soft); color: var(--brand); font-size: 12px; font-weight: 700; margin-bottom: 16px; }
.dp-option h2 { margin: 0 0 8px; font-family: var(--font-heading); font-size: 20px; font-weight: 600; color: var(--text); }
.dp-option-desc { margin: 0; font-size: 15px; line-height: 1.6; color: var(--text-muted); }
.dp-option ul { list-style: none; margin: 16px 0 24px; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.dp-option li { display: flex; gap: 10px; font-size: 14.5px; line-height: 1.5; color: var(--body-text); }
.dp-option li svg { width: 17px; height: 17px; flex-shrink: 0; margin-top: 2px; color: var(--brand); }
.dp-option-cta { margin-top: auto; display: inline-flex; justify-content: center; align-items: center; gap: 8px; padding: 12px 20px; border-radius: var(--btn-radius); background: var(--brand); color: #fff; font-size: 14.5px; font-weight: 700; text-decoration: none; transition: filter .15s, transform .15s; }
.dp-option-cta:hover { filter: brightness(1.06); transform: translateY(-1px); }
.dp-option-cta svg { width: 13px; height: 13px; }
.dp-optional { font-weight: 400; color: var(--text-muted); }

.dp-steps { max-width: 1080px; margin: 0 auto; padding: 48px 32px 16px; position: relative; z-index: 1; }
.dp-steps > h2, .dp-faq > h2 { margin: 0 0 24px; text-align: center; font-family: var(--font-heading); font-size: var(--fs-subhead, clamp(1.5rem, 2.1vw, 1.9rem)); font-weight: 600; letter-spacing: -0.02em; color: var(--text); }
.dp-steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.dp-step { background: #fff; border: 1px solid var(--border); border-radius: var(--card-radius); padding: 22px; }
.dp-step-num { display: inline-flex; align-items: center; justify-content: center; width: 30px; height: 30px; border-radius: 4px; background: var(--brand-soft); color: var(--brand); font-family: var(--font-heading); font-size: 14px; font-weight: 700; margin-bottom: 12px; }
.dp-step h3 { margin: 0 0 6px; font-family: var(--font-heading); font-size: 15.5px; font-weight: 600; color: var(--text); }
.dp-step p { margin: 0; font-size: 14px; line-height: 1.55; color: var(--text-muted); }

.dp-faq { max-width: 760px; margin: 0 auto; padding: 40px 32px 72px; position: relative; z-index: 1; }
.dp-faq details { background: #fff; border: 1px solid var(--border); border-radius: var(--card-radius); margin-bottom: 10px; }
.dp-faq summary { cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 12px; padding: 16px 18px; font-size: 15px; font-weight: 600; color: var(--text); }
.dp-faq summary::-webkit-details-marker { display: none; }
.dp-faq summary::after { content: '+'; font-size: 18px; color: var(--text-muted); flex-shrink: 0; }
.dp-faq details[open] summary::after { content: '\2013'; }
.dp-faq details p { padding: 0 18px 16px; margin: 0; font-size: 14.5px; line-height: 1.6; color: var(--text-muted); }

@media (max-width: 900px) {
  .dp-options { grid-template-columns: 1fr; }
  .dp-steps-grid { grid-template-columns: 1fr; }
}
