/* ============================================================
   FUNDACJA BEZPIECZNE MIEJSCE — design system
   Deep plum + warm sand + terracotta. Fraunces / Source Sans 3.
   ============================================================ */

:root {
  --plum-900: #3a2151;
  --plum-800: #472a63;
  --plum-700: #5a3572;
  --plum-600: #6b3fa0;
  --plum-100: #efe7f5;
  --sand: #f8f5f0;
  --sand-deep: #f1ebe1;
  --card: #ffffff;
  --ink: #2a2331;
  --muted: #6d6577;
  --line: #e7e0d6;
  --accent: #c96f3f;
  --accent-dark: #a95830;
  --radius: 14px;
  --radius-sm: 10px;
  --shadow: 0 10px 30px rgba(58, 33, 81, 0.08);
  --shadow-hover: 0 16px 40px rgba(58, 33, 81, 0.14);
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Source Sans 3", "Segoe UI", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--ink);
  background: var(--sand);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.15; color: var(--plum-900); letter-spacing: -0.01em; }
h1 { font-size: clamp(2.1rem, 4.5vw, 3.4rem); }
h2 { font-size: clamp(1.7rem, 3.2vw, 2.4rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); }

p { margin: 0 0 1rem; }
p:last-child { margin-bottom: 0; }

a { color: var(--plum-700); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--plum-600); }

:focus-visible { outline: 3px solid var(--plum-600); outline-offset: 2px; border-radius: 4px; }

.container { max-width: 1140px; margin-inline: auto; padding-inline: 1.25rem; }
section { padding-block: clamp(3rem, 7vw, 5.5rem); }

.kicker {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.9rem;
}

.lead-lg { font-size: clamp(1.1rem, 1.6vw, 1.3rem); color: var(--muted); max-width: 46rem; }

.section-intro { max-width: 46rem; margin-inline: auto; text-align: center; margin-bottom: 2.5rem; }
.section-intro .lead-lg { margin-left: auto; margin-right: auto; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1030;
  background: rgba(248, 245, 240, 0.94);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.site-header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 72px; }
.site-brand { display: inline-flex; align-items: center; flex-shrink: 1; min-width: 0; }
.site-brand-logo { width: 140px; height: auto; }

.nav-panel { display: flex; align-items: center; gap: 1.5rem; }
.nav-list { display: flex; align-items: center; gap: 0.25rem; list-style: none; margin: 0; padding: 0; flex-wrap: nowrap; }
.nav-link { white-space: nowrap; }
.nav-link {
  display: block;
  padding: 0.5rem 0.75rem;
  color: var(--ink);
  font-weight: 600;
  font-size: 0.98rem;
  text-decoration: none;
  border-radius: 8px;
}
.nav-link:hover { color: var(--plum-700); background: var(--plum-100); }
/* Bare link injected by the blog nav inside .nav-list */
.nav-list > a {
  display: block;
  padding: 0.5rem 0.75rem;
  color: var(--ink);
  font-weight: 600;
  font-size: 0.98rem;
  text-decoration: none;
  border-radius: 8px;
  white-space: nowrap;
}
.nav-list > a:hover { color: var(--plum-700); background: var(--plum-100); }
.nav-link.active { color: var(--plum-700); }

.nav-actions { display: flex; align-items: center; gap: 0.9rem; }
.lang-switch { display: inline-flex; align-items: center; gap: 0.15rem; }
.lang-btn {
  border: 0;
  background: transparent;
  font: 700 0.85rem/1 var(--font-body);
  letter-spacing: 0.05em;
  color: var(--muted);
  padding: 0.45rem 0.4rem;
  cursor: pointer;
  border-radius: 6px;
}
.lang-btn:hover { color: var(--plum-700); }
.lang-btn[aria-pressed="true"] { color: var(--plum-700); text-decoration: underline; text-underline-offset: 4px; }
.lang-sep { color: var(--line); }

.nav-toggle {
  display: none;
  position: relative;
  z-index: 1041;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--card);
  cursor: pointer;
  flex-shrink: 0;
}
.nav-toggle-bar { display: block; width: 100%; height: 2px; background: var(--plum-900); border-radius: 2px; transition: transform 0.25s ease, opacity 0.2s ease; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 0.7rem 1.5rem;
  border-radius: 999px;
  font: 600 1rem/1.2 var(--font-body);
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--plum-700); color: #fff; box-shadow: var(--shadow); }
.btn-primary:hover { background: var(--plum-800); color: #fff; }
.btn-accent { background: var(--accent); color: #fff; box-shadow: var(--shadow); }
.btn-accent:hover { background: var(--accent-dark); color: #fff; }
.btn-outline { background: transparent; color: var(--plum-700); border-color: var(--plum-700); }
.btn-outline:hover { background: var(--plum-700); color: #fff; }
.btn-lg { padding: 0.85rem 1.9rem; font-size: 1.05rem; }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; padding-block: clamp(5rem, 12vw, 8.5rem); background: var(--plum-900); }
.hero-media, .hero-media-item, .hero-overlay { position: absolute; inset: 0; }
.hero-media { z-index: 0; }
.hero-media-item { width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity 1.2s ease; }
.hero-media-item.is-visible { opacity: 1; }
.hero-overlay {
  z-index: 1;
  background: linear-gradient(180deg, rgba(38, 20, 56, 0.78) 0%, rgba(38, 20, 56, 0.62) 55%, rgba(38, 20, 56, 0.82) 100%);
  pointer-events: none;
}
.hero-content { position: relative; z-index: 2; max-width: 46rem; }
.hero-content h1, .hero-content p, .hero-content .kicker { color: #fff; }
.hero-content h1 { text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35); }
.hero-content .kicker { color: #f2c49a; }
.hero-content p { font-size: clamp(1.1rem, 1.7vw, 1.3rem); opacity: 0.94; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-top: 1.75rem; }

/* ---------- Cards / features ---------- */
.card-soft {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.card-soft:hover { transform: translateY(-3px); box-shadow: var(--shadow-hover); }
.card-soft h3 { margin-bottom: 0.6rem; }
.card-soft p { color: var(--muted); }

.icon-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--plum-100);
  color: var(--plum-700);
  font-size: 1.4rem;
  margin-bottom: 1rem;
}
.icon-badge svg { width: 26px; height: 26px; }

/* ---------- Checklist ---------- */
.check-list { list-style: none; margin: 0; padding: 0; }
.check-list li { position: relative; padding-left: 2.2rem; margin-bottom: 0.8rem; color: var(--ink); }
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.35em;
  width: 1.15em;
  height: 1.15em;
  border-radius: 50%;
  background: var(--plum-100);
  border: 2px solid var(--plum-600);
}
.check-list li::after {
  content: "";
  position: absolute;
  left: 0.34em;
  top: 0.72em;
  width: 0.42em;
  height: 0.24em;
  border-left: 2.5px solid var(--plum-700);
  border-bottom: 2.5px solid var(--plum-700);
  transform: rotate(-45deg);
}

/* ---------- Value pills ---------- */
.value-pill { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.1rem 1.3rem; height: 100%; }
.value-pill h3 { font-size: 1.1rem; margin-bottom: 0.3rem; }
.value-pill p { font-size: 0.95rem; color: var(--muted); margin: 0; }

/* ---------- Team ---------- */
.team-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.team-card img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; object-position: top; }
.team-card-body { padding: 1.4rem 1.5rem 1.6rem; }
.team-role { font-size: 0.85rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent); margin-bottom: 0.4rem; }
.team-bio { color: var(--muted); font-size: 0.98rem; }

/* ---------- Project cards ---------- */
.project-card { display: flex; flex-direction: column; background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); transition: transform 0.2s ease, box-shadow 0.2s ease; height: 100%; }
.project-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-hover); }
.project-card img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; }
.project-card-body { padding: 1.5rem; display: flex; flex-direction: column; gap: 0.5rem; flex: 1 1 auto; }
.project-tag { align-self: flex-start; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--plum-700); background: var(--plum-100); border-radius: 999px; padding: 0.25rem 0.75rem; }
.project-card .btn { align-self: flex-start; margin-top: auto; }

/* ---------- Donation account box ---------- */
.account-box { background: var(--plum-900); color: #fff; border-radius: var(--radius); padding: 1.6rem 1.8rem; box-shadow: var(--shadow); }
.account-box .account-number { font-family: var(--font-display); font-size: clamp(1.1rem, 2.2vw, 1.45rem); letter-spacing: 0.04em; word-break: break-all; color: #fff; }
.account-box small { color: #d9c9ea; }

/* ---------- Registry table ---------- */
.table-wrap { border-radius: var(--radius); box-shadow: var(--shadow); overflow-x: auto; background: var(--card); }
.table-registry { width: 100%; border-collapse: collapse; background: var(--card); }
.table-registry th, .table-registry td { text-align: left; padding: 0.9rem 1.2rem; border-bottom: 1px solid var(--line); vertical-align: top; }
.table-registry th { width: 38%; color: var(--plum-700); font-weight: 700; background: var(--sand-deep); }
.table-registry tr:last-child th, .table-registry tr:last-child td { border-bottom: 0; }

/* ---------- CTA band ---------- */
.cta-band { background: var(--plum-700); border-radius: var(--radius); padding: clamp(2.2rem, 5vw, 3.5rem); color: #fff; box-shadow: var(--shadow); }
.cta-band h2, .cta-band h3 { color: #fff; }
.cta-band p { color: #e8ddf2; }
.cta-band .btn-outline { color: #fff; border-color: #fff; }
.cta-band .btn-outline:hover { background: #fff; color: var(--plum-700); }

/* ---------- Contact ---------- */
.info-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.4rem 1.5rem; margin-bottom: 1.25rem; box-shadow: var(--shadow); }
.info-card h3 { font-size: 1.1rem; margin-bottom: 0.6rem; }
.info-card p, .info-card li { color: var(--muted); font-size: 0.98rem; }
.info-card ul { list-style: none; padding: 0; margin: 0; }
.info-card li { margin-bottom: 0.45rem; }
.info-card a { font-weight: 600; }

.contact-form-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(1.5rem, 3vw, 2.2rem); box-shadow: var(--shadow); }
.form-label { font-weight: 600; color: var(--ink); margin-bottom: 0.3rem; }
.form-control, .form-check-input { border-radius: var(--radius-sm); border: 1.5px solid var(--line); padding: 0.65rem 0.9rem; font-size: 1rem; }
.form-control:focus { border-color: var(--plum-600); box-shadow: 0 0 0 4px rgba(107, 63, 160, 0.12); }
.form-check-input { width: 1.2em; height: 1.2em; margin-top: 0.25em; }
.form-check-input:checked { background-color: var(--plum-700); border-color: var(--plum-700); }
#formStatus { display: none; font-weight: 600; }

.map-embed { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); border: 0; width: 100%; height: 380px; display: block; }

/* ---------- Blog grid / post cards ---------- */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem; }
.blog-grid-2 { grid-template-columns: repeat(2, 1fr); }
.post-card { display: flex; flex-direction: column; background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); transition: transform 0.2s ease, box-shadow 0.2s ease; }
.post-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-hover); }
.post-card-media img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; }
.post-card-body { padding: 1.3rem 1.4rem 1.4rem; display: flex; flex-direction: column; gap: 0.55rem; flex: 1 1 auto; }
.post-card-tags { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--accent); margin: 0; }
.post-card-title { font-size: 1.2rem; margin: 0; }
.post-card-title a { color: var(--plum-900); text-decoration: none; }
.post-card-title a:hover { color: var(--plum-600); }
.post-card-excerpt { color: var(--muted); font-size: 0.97rem; margin: 0; }
.post-card-meta { margin-top: auto; display: flex; gap: 0.5rem; align-items: center; color: var(--muted); font-size: 0.88rem; }

/* ---------- Post page ---------- */
.post-main { padding-block: clamp(2.5rem, 5vw, 4rem); }
.post-container { max-width: 800px; margin-inline: auto; }
.post-header { margin-bottom: 2rem; }
.post-tags { font-size: 0.8rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent); }
.post-title { font-size: clamp(1.9rem, 4vw, 2.7rem); margin: 0.4rem 0 0.9rem; }
.post-meta { color: var(--muted); font-size: 0.92rem; margin-bottom: 1.5rem; }
.post-hero { border-radius: var(--radius); width: 100%; height: auto; margin-bottom: 2rem; box-shadow: var(--shadow); }
.post-article h2 { font-size: clamp(1.4rem, 2.4vw, 1.8rem); margin: 2.2rem 0 0.9rem; scroll-margin-top: 90px; }
.post-article p, .post-article li { color: var(--ink); }
.post-article ul li { margin-bottom: 0.5rem; }
.post-related { margin-top: 3.5rem; }
.post-related h2 { margin-bottom: 1.5rem; }

/* ---------- Footer ---------- */
.site-footer { background: var(--sand-deep); border-top: 1px solid var(--line); padding-top: clamp(3rem, 6vw, 4.5rem); margin-top: 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1.2fr 1fr; gap: 2.5rem; padding-bottom: 2.5rem; }
.footer-brand img { width: 150px; height: auto; margin-bottom: 1rem; }
.footer-brand p { color: var(--muted); font-size: 0.97rem; }
.footer-ids { list-style: none; padding: 0; margin: 1rem 0 0; font-size: 0.9rem; color: var(--muted); }
.footer-ids li { margin-bottom: 0.25rem; }
.footer-col h3 { font-size: 0.85rem; letter-spacing: 0.12em; text-transform: uppercase; font-family: var(--font-body); color: var(--plum-700); margin-bottom: 1rem; }
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 0.6rem; color: var(--muted); font-size: 0.97rem; }
.footer-col a { color: var(--ink); text-decoration: none; font-weight: 500; }
.footer-col a:hover { color: var(--plum-700); text-decoration: underline; }
.footer-social a { margin-right: 1rem; }
.footer-bottom { border-top: 1px solid var(--line); padding-block: 1.4rem; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 0.5rem; font-size: 0.9rem; color: var(--muted); }
.footer-bottom p { margin: 0; }
.footer-credit { color: var(--muted); opacity: 0.5; font-weight: 300; text-decoration: none; }

/* ---------- Page hero (interior pages) ---------- */
.page-hero { background: var(--sand-deep); border-bottom: 1px solid var(--line); padding-block: clamp(3rem, 6vw, 4.5rem); }
.page-hero h1 { margin-bottom: 1rem; }
.page-hero p { font-size: clamp(1.08rem, 1.6vw, 1.25rem); color: var(--muted); max-width: 46rem; }

/* ---------- Split media ---------- */
.media-frame { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.media-frame img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- Timeline ---------- */
.timeline { position: relative; margin: 0; padding: 0 0 0 2rem; list-style: none; border-left: 3px solid var(--plum-100); }
.timeline li { position: relative; padding-bottom: 1.6rem; }
.timeline li::before {
  content: "";
  position: absolute;
  left: -2.55rem;
  top: 0.35em;
  width: 0.9em;
  height: 0.9em;
  border-radius: 50%;
  background: var(--accent);
  border: 3px solid var(--sand);
  box-shadow: 0 0 0 3px var(--plum-100);
}
.timeline h3 { font-size: 1.15rem; margin-bottom: 0.3rem; }
.timeline p { color: var(--muted); margin: 0; }

/* ---------- Numbered steps ---------- */
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--plum-700);
  color: #fff;
  font: 700 1.1rem/1 var(--font-display);
  margin-bottom: 1rem;
}

/* ---------- Responsive ---------- */
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .site-brand-logo { width: 118px; }
  .nav-link { padding: 0.5rem 0.5rem; font-size: 0.92rem; }
  .nav-panel { gap: 0.9rem; }
  .nav-actions { gap: 0.6rem; }
}

@media (max-width: 1199.98px) {
  .nav-toggle { display: flex; }
  .nav-panel {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 1040;
    flex-direction: column;
    align-items: stretch;
    gap: 0.5rem;
    background: var(--sand);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 18px 30px rgba(58, 33, 81, 0.12);
    padding: 1.25rem;
  }
  .nav-panel.is-open { display: flex; }
  .nav-list { flex-direction: column; align-items: stretch; gap: 0.15rem; }
  .nav-link { padding: 0.7rem 0.75rem; font-size: 1.05rem; }
  .nav-actions { flex-direction: column; align-items: stretch; gap: 0.75rem; }
  .lang-switch { justify-content: center; }
  .btn-sm-nav { text-align: center; }
  .blog-grid, .blog-grid-2 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 575.98px) {
  .site-brand-logo { width: 104px; }
  .nav-toggle { width: 40px; height: 40px; padding: 9px; }
  .site-header-inner { min-height: 62px; gap: 0.5rem; }
  .blog-grid, .blog-grid-2 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; }
  .hero-actions .btn { width: 100%; text-align: center; }
  .map-embed { height: 300px; }
  .table-registry th, .table-registry td { padding: 0.7rem 0.85rem; }
}

/* ---------- Quote band (Misja) ---------- */
.quote-band {
  max-width: 52rem;
  margin-inline: auto;
  text-align: center;
  padding: clamp(1.5rem, 3vw, 2.5rem) clamp(1.25rem, 4vw, 3rem);
  background: var(--card);
  border-left: 5px solid var(--accent);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.quote-band p {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.4vw, 1.7rem);
  line-height: 1.4;
  color: var(--plum-900);
  margin-bottom: 0.9rem;
}
.quote-band-source {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
}

/* ---------- Numbered principles (Misja) ---------- */
.principle-list {
  list-style: none;
  counter-reset: principle;
  margin: 0;
  padding: 0;
}
.principle-list li {
  counter-increment: principle;
  position: relative;
  padding: 0.9rem 1rem 0.9rem 3.4rem;
  margin-bottom: 0.9rem;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  color: var(--muted);
}
.principle-list li strong { color: var(--ink); }
.principle-list li::before {
  content: counter(principle);
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.7rem;
  height: 1.7rem;
  border-radius: 50%;
  background: var(--plum-100);
  color: var(--plum-800);
  font: 700 0.95rem/1 var(--font-display);
}
.principle-list[start="4"] { counter-reset: principle 3; }

/* ---------- Stats band (Działania) ---------- */
.stats-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  background: var(--plum-900);
  border-radius: var(--radius);
  padding: clamp(1.75rem, 4vw, 2.75rem);
  box-shadow: var(--shadow);
}
.stat-item { text-align: center; }
.stat-value {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.2vw, 2.4rem);
  font-weight: 600;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 0.4rem;
}
.stat-label {
  display: block;
  font-size: 0.92rem;
  line-height: 1.45;
  color: #d9c9ea;
}
@media (max-width: 767.98px) {
  .stats-band { grid-template-columns: repeat(2, 1fr); gap: 1.5rem 1rem; }
}

/* Step numbers — Działania page (how contact works) */
.step-num {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--plum-100);
  color: var(--plum-800);
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0 0 1rem;
}
.card-soft .step-num + h3 { margin-top: 0; }
